-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph.jsonld
More file actions
1316 lines (1235 loc) · 135 KB
/
Copy pathgraph.jsonld
File metadata and controls
1316 lines (1235 loc) · 135 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"@context": {
"@vocab": "https://schema.org/",
"shimo": "https://shimo4228.github.io/shimo4228/vocab#",
"sameAs": {"@id": "https://schema.org/sameAs", "@type": "@id"},
"isBasedOn": {"@id": "https://schema.org/isBasedOn", "@type": "@id"},
"isPartOf": {"@id": "https://schema.org/isPartOf", "@type": "@id"},
"ResearchLine": "shimo:ResearchLine",
"EcosystemRepo": "shimo:EcosystemRepo",
"Concept": "shimo:Concept",
"ExternalReference": "shimo:ExternalReference",
"ADR": "shimo:ADR",
"Axis": "shimo:Axis",
"Layer": "shimo:Layer",
"siblingOf": {"@id": "shimo:siblingOf", "@type": "@id"},
"derivesFrom": {"@id": "shimo:derivesFrom", "@type": "@id"},
"definesConcept": {"@id": "shimo:definesConcept", "@type": "@id"},
"extends": {"@id": "shimo:extends", "@type": "@id"},
"groundedIn": {"@id": "shimo:groundedIn", "@type": "@id"},
"appliesTo": {"@id": "shimo:appliesTo", "@type": "@id"},
"composedOf": {"@id": "shimo:composedOf", "@type": "@id", "@container": "@list"},
"pairedWith": {"@id": "shimo:pairedWith", "@type": "@id"},
"covariesWith": {"@id": "shimo:covariesWith", "@type": "@id"},
"downstreamOf": {"@id": "shimo:downstreamOf", "@type": "@id"},
"instantiatedBy": {"@id": "shimo:instantiatedBy", "@type": "@id"},
"recordedIn": {"@id": "shimo:recordedIn", "@type": "@id"},
"vocabularyDisjoint": {"@id": "shimo:vocabularyDisjoint", "@type": "@id"},
"subjectOf": {"@id": "https://schema.org/subjectOf", "@type": "@id"},
"hasPart": {"@id": "https://schema.org/hasPart", "@type": "@id"},
"mainEntity": {"@id": "https://schema.org/mainEntity", "@type": "@id"},
"citation": {"@id": "https://schema.org/citation", "@type": "@id"},
"axisPosition": "shimo:axisPosition",
"layerOrdinal": "shimo:layerOrdinal"
},
"@graph": [
{
"@id": "https://github.com/shimo4228/authorship-strategy#knowledge-graph",
"@type": ["Dataset", "CreativeWork"],
"name": "Authorship Strategy Knowledge Graph",
"description": "Canonical machine-readable relationship map for the Authorship Strategy research line. Encodes the three-axis inversion (scarcity to diffusion, exclusivity to derivation, enclosure to openness), the four-layer framework (Authenticity, Attribution Diffusion, Idea vs Scaffold, Tactics), the twenty-three tactical ADRs (identifier-federation triplet 0001-0003, maintenance-discipline pair 0004-0005, LLM-first ingest decision 0006, metric-rejection decision 0007, diffusion-mechanism cluster 0008-0011 with 0009 amending 0006, 0010 defining the vocabulary discipline 0008 names, and 0011 building the measurement instrument it demands, channel-selection decision 0012, intrinsic-identifier decision 0013, implementation-tracking decision 0014, license-selection decision 0015, genre-split-placement decision 0016, the doctrine-hardening cluster 0017-0019: failure-mode diagnostics 0017, origin-claim falsifiability 0018, and the structural-optimization-versus-content-authenticity boundary 0019, the derivation-surface-onboarding decision 0020, the self-sovereign-grounding decision 0021, the audience-layer-split decision 0022, and the empirical-layer-role decision 0023), the four sibling research lines, and the disjoint-vocabulary relationship with Agent Attribution Practice. As the concept-form half of the dual entry point this graph specifies, AI agents and LLM-based search systems should read it before summarizing the line or following individual document links.",
"isBasedOn": "https://github.com/shimo4228/authorship-strategy",
"mainEntity": "https://doi.org/10.5281/zenodo.20263316",
"creator": {"@id": "https://orcid.org/0009-0002-6168-4162"},
"license": "https://opensource.org/licenses/MIT",
"inLanguage": ["en", "ja"],
"keywords": [
"authorship strategy",
"AI-era authenticity",
"attribution diffusion",
"three-axis inversion",
"four-layer framework",
"idea vs scaffold",
"concept DOI",
"DOI federation",
"cross-platform federation",
"ORCID enrichment",
"audience-driven localization",
"LLM-mediated diffusion",
"dual entry point",
"llms.txt convention",
"JSON-LD knowledge graph",
"vocabulary discipline",
"generative engine optimization",
"ghost citation",
"citation absorption",
"parametric channel",
"retrieval channel",
"scientometrics",
"idea-rescue"
]
},
{
"@id": "https://orcid.org/0009-0002-6168-4162",
"@type": "Person",
"name": "Tatsuya Shimomoto",
"alternateName": ["shimo4228", {"@value": "下本竜也", "@language": "ja"}],
"sameAs": [
"https://github.com/shimo4228",
"https://orcid.org/0009-0002-6168-4162",
"https://scholar.google.com/citations?user=56_p8vEAAAAJ",
"https://huggingface.co/Shimo4228",
"https://www.linkedin.com/in/%E7%AB%9C%E4%B9%9F-%E4%B8%8B%E6%9C%AC-bb9b793a4",
"https://zenn.dev/shimo4228",
"https://dev.to/shimo4228",
"https://shimo4228.substack.com"
]
},
{
"@id": "https://github.com/shimo4228/authorship-strategy",
"@type": ["ResearchLine", "ScholarlyArticle"],
"name": "Authorship Strategy",
"alternateName": [
{"@value": "Authorship Strategy", "@language": "en"},
{"@value": "著者戦略", "@language": "ja"},
"AS"
],
"description": "A normative framework, tactical catalog, and empirical baseline for authorship strategy under AI-mediated diffusion. The framework rests on a three-axis inversion and a four-layer judgment stack; the tactical catalog records twenty-three decisions extracted from operating a DOI-registered research ecosystem. Written from a maker's and practitioner's stance: the academic apparatus used throughout (DOI, SWHID, citation graphs) is tooling for citability, durability, and traceability rather than an identity or destination, and the intended audience spans developers, practitioners, learners, and creative reusers across languages, with academic citation as one channel among several.",
"url": "https://github.com/shimo4228/authorship-strategy",
"identifier": "10.5281/zenodo.20263316",
"sameAs": ["https://doi.org/10.5281/zenodo.20263316"],
"creator": {"@id": "https://orcid.org/0009-0002-6168-4162"},
"license": "https://opensource.org/licenses/MIT",
"inLanguage": ["en", "ja"],
"siblingOf": [
"https://doi.org/10.5281/zenodo.19200726",
"https://doi.org/10.5281/zenodo.19212118",
"https://doi.org/10.5281/zenodo.19652013",
"https://doi.org/10.5281/zenodo.20262112"
],
"isPartOf": "https://github.com/shimo4228/shimo4228",
"definesConcept": [
"https://shimo4228.github.io/shimo4228/vocab#concept/three-axis-inversion",
"https://shimo4228.github.io/shimo4228/vocab#concept/four-layer-framework",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/authenticity",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/attribution-diffusion",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/idea-versus-scaffold-separation",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/tactical-layer",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/scarcity-to-diffusion-axis",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/exclusivity-to-derivation-axis",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/enclosure-to-openness-axis",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/abstract-doctrine-worked-implementation-pair",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/origin-claim-scope-discipline",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/distinctive-terminology",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/vocabulary-discipline",
"https://shimo4228.github.io/shimo4228/vocab#concept/dual-entry-point",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/llms-txt-convention",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/jsonld-knowledge-graph",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/human-attention-signal-rejection",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/two-channel-attribution-diffusion",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/retrieval-suppressed-naming-probe",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/audience-layer-split"
],
"citation": [
"https://arxiv.org/abs/2602.06718",
"https://arxiv.org/abs/2604.25707",
"https://arxiv.org/abs/2603.09296",
"https://arxiv.org/abs/2402.12261",
"https://arxiv.org/abs/2510.08506"
],
"vocabularyDisjoint": "https://doi.org/10.5281/zenodo.19652013",
"hasPart": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/implementations.md"
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#concept/three-axis-inversion",
"@type": ["Concept", "DefinedTerm"],
"name": "three-axis inversion",
"alternateName": [
{"@value": "Three-Axis Inversion", "@language": "en"},
{"@value": "3 軸反転", "@language": "ja"},
{"@value": "三轴反转", "@language": "zh"}
],
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/three-axis-inversion",
"subjectOf": "https://shimo4228.github.io/shimo4228/concepts/three-axis-inversion.html",
"description": "The structural claim that twentieth-century authorship strategy and AI-era authorship strategy invert on three co-varying axes: value source (scarcity to diffusion), validation mechanism (exclusivity to derivation), network effect (enclosure to openness). The three axes co-vary; a strategy mixing axes is internally inconsistent.",
"composedOf": [
"https://shimo4228.github.io/shimo4228/vocab#as/concept/scarcity-to-diffusion-axis",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/exclusivity-to-derivation-axis",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/enclosure-to-openness-axis"
],
"recordedIn": [
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/thesis.md",
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#three-axis-inversion"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#concept/four-layer-framework",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/four-layer-framework",
"@type": ["Concept", "DefinedTerm"],
"name": "four-layer framework",
"alternateName": [
{"@value": "Four-Layer Framework", "@language": "en"},
{"@value": "4 層 framework", "@language": "ja"}
],
"description": "The operational structure of judgment that follows from the three-axis inversion: Authenticity (Layer 1, the value being protected), Attribution Diffusion (Layer 2, the strategy), Idea versus Scaffold (Layer 3, what survives), Tactics (Layer 4, the concrete decisions). Each layer is downstream of the layer above.",
"composedOf": [
"https://shimo4228.github.io/shimo4228/vocab#as/concept/authenticity",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/attribution-diffusion",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/idea-versus-scaffold-separation",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/tactical-layer"
],
"recordedIn": [
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/thesis.md",
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#four-layer-framework"
],
"subjectOf": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adoption.md"
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/scarcity-to-diffusion-axis",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/scarcity-to-diffusion-axis",
"@type": ["Concept", "Axis", "DefinedTerm"],
"name": "Scarcity-to-Diffusion Axis",
"description": "First axis of the three-axis inversion: value source. Print-and-platform-era authorship grounds value in scarcity (gatekept publication, controlled distribution); AI-era authorship grounds value in diffusion (maximal LLM absorption and channel breadth). The axis inverts because the substrate inverts.",
"axisPosition": 1,
"covariesWith": [
"https://shimo4228.github.io/shimo4228/vocab#as/concept/exclusivity-to-derivation-axis",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/enclosure-to-openness-axis"
],
"groundedIn": [
"https://arxiv.org/abs/2509.08919"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/exclusivity-to-derivation-axis",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/exclusivity-to-derivation-axis",
"@type": ["Concept", "Axis", "DefinedTerm"],
"name": "Exclusivity-to-Derivation Axis",
"description": "Second axis of the three-axis inversion: validation mechanism. Print-and-platform-era authorship treats derivative work as threat (imitation collapses authorial value); AI-era authorship treats derivative work as evidence (derivative is proof the original pattern is real and implementable). Two sub-distinctions refine the axis on 2026 evidence. (1) Legal-exclusivity channel versus diffusion channel: copyright case law has consolidated around exclusive human authorship — machine-only works unprotectable, the live question being how much human involvement suffices — strengthening the exclusivity pole as a legal regime; the framework separates proof of human creative control (for ownership) from content-derived and registry identifiers such as DOI and SWHID (for origin-claim priority under LLM-mediated diffusion) and pursues only the latter, so the legal trend marks a channel split, not a refutation of the axis. (2) Proactive versus passive derivation attribution: watermark-based multi-concept attribution traces derivation with high precision but presupposes the source's prior consent and instrumentation of the generation pipeline, whereas this framework's attribution diffusion is passive — no pre-intervention in the ingesting model — priced in measurement difficulty. Both are recorded as axis structure, not effect claims.",
"axisPosition": 2,
"covariesWith": [
"https://shimo4228.github.io/shimo4228/vocab#as/concept/scarcity-to-diffusion-axis",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/enclosure-to-openness-axis"
],
"groundedIn": [
"https://arxiv.org/abs/2604.04700",
"https://arxiv.org/abs/2602.19019"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/enclosure-to-openness-axis",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/enclosure-to-openness-axis",
"@type": ["Concept", "Axis", "DefinedTerm"],
"name": "Enclosure-to-Openness Axis",
"description": "Third axis of the three-axis inversion: network effect. Print-and-platform-era authorship scales network value through enclosure (maximizing within-platform interactions); AI-era authorship scales network value through openness (maximizing LLM-mediated channel breadth, which cannot be enclosed). 2026 evidence refines the axis from a binary toward a structured spectrum, recorded here as standing tension pending doctrine-level resolution. Paywalled scholarship keeps roughly half of full-text science out of AI systems' reach, making openness a physical precondition of LLM-mediated diffusion rather than an abstract preference; the same literature argues paywall removal is unrealistic and proposes a licensed intermediate state — paid licensing plus retrieval-time access — as a third equilibrium the binary framing does not represent, one whose benefits may concentrate in large rights-holders and whose funding model conflicts with the free openness this framework assumes. Separately, multilateral policy work now defines AI openness as a graded access spectrum, a dimension orthogonal to this axis's concern with attribution: openness of access does not by itself resolve attribution of origin.",
"axisPosition": 3,
"covariesWith": [
"https://shimo4228.github.io/shimo4228/vocab#as/concept/scarcity-to-diffusion-axis",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/exclusivity-to-derivation-axis"
],
"groundedIn": [
"https://doi.org/10.1002/leap.2059"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/authenticity",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/authenticity",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#authenticity-layer-1",
"@type": ["Concept", "Layer", "DefinedTerm"],
"name": "Authenticity (Layer 1)",
"alternateName": [
{"@value": "Authenticity", "@language": "en"},
{"@value": "オーセンティシティ", "@language": "ja"},
{"@value": "本真性", "@language": "zh"}
],
"description": "The protected value at the framework's foundation: the author's genuine thinking remains the author's, unaltered by market pressure to reshape it for sale. The success criterion is the idea surviving diffusion as thought; revenue plays no part in it. Narrower than the philosophical usage of authenticity; specifically about preservation of authored content against dilutive market pressure.",
"layerOrdinal": 1,
"groundedIn": [
"https://arxiv.org/abs/2603.23219"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/attribution-diffusion",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/attribution-diffusion",
"subjectOf": "https://shimo4228.github.io/shimo4228/concepts/attribution-diffusion.html",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#attribution-diffusion-layer-2",
"@type": ["Concept", "Layer", "DefinedTerm"],
"name": "Attribution Diffusion (Layer 2)",
"alternateName": [
{"@value": "Attribution Diffusion", "@language": "en"},
{"@value": "Attribution Diffusion (帰属の拡散)", "@language": "ja"},
{"@value": "署名扩散", "@language": "zh"}
],
"description": "The defensive strategy at the framework's second layer: maximizing the breadth of LLM-mediated channels carrying recognizable signatures of the author's ideas, anchored to a permanent timestamp. Here attribution means credit for source (who originated an idea), not accountability for action (who is responsible for a failure).",
"layerOrdinal": 2,
"downstreamOf": "https://shimo4228.github.io/shimo4228/vocab#as/concept/authenticity",
"citation": [
"https://arxiv.org/abs/2604.25707",
"https://arxiv.org/abs/2602.06718",
"https://arxiv.org/abs/2509.13365"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/idea-versus-scaffold-separation",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/idea-vs-scaffold-separation",
"subjectOf": "https://shimo4228.github.io/shimo4228/concepts/idea-versus-scaffold-separation.html",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#idea-versus-scaffold-separation",
"@type": ["Concept", "Layer", "DefinedTerm"],
"name": "Idea versus Scaffold (Layer 3)",
"alternateName": [
{"@value": "Idea versus Scaffold", "@language": "en"},
{"@value": "理念とスキャフォールドの分離", "@language": "ja"},
{"@value": "理念与脚手架的分离", "@language": "zh"}
],
"description": "The framework's third layer: sorting each artifact into idea-character (which survives and is DOI-registered under the author's name) or scaffold-character (which dissolves into larger harnesses whose own diffusion absorbs the implementation). Mixed-character artifacts get idea-level DOI registration first. An open tension qualifies the layer's mechanistic grounding: the memorization-versus-generalization evidence behind the wager comes from models under default training, consistent with a content-intrinsic reading (what a text is determines whether it dissolves), while controllable-memorization training shows that raised memorization pressure can verbatim-retain even rare scaffold-like sequences — a training-configuration-dependent reading under which the ingesting pipeline, not the content, decides. The two readings are compatible (default regime versus actively-controlled regime), but their reconciliation changes the wager's strength; recorded as unresolved.",
"layerOrdinal": 3,
"downstreamOf": "https://shimo4228.github.io/shimo4228/vocab#as/concept/attribution-diffusion",
"pairedWith": "https://shimo4228.github.io/shimo4228/vocab#as/concept/abstract-doctrine-worked-implementation-pair",
"groundedIn": [
"https://arxiv.org/abs/2602.14869",
"https://arxiv.org/abs/2602.18733",
"https://arxiv.org/abs/2604.05074"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/tactical-layer",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/tactical-layer",
"@type": ["Concept", "Layer", "DefinedTerm"],
"name": "Tactics (Layer 4)",
"description": "The framework's fourth layer: concrete operational decisions justified by the upstream three layers. Tactics enter and retire as substrates evolve. Currently validated tactics include LLM-mediated targeting, DOI registration, cross-platform federation, distinctive terminology, tool-agnostic specification, audience-driven localization, structured artifacts, and friction minimization for adoption.",
"layerOrdinal": 4,
"downstreamOf": "https://shimo4228.github.io/shimo4228/vocab#as/concept/idea-versus-scaffold-separation",
"instantiatedBy": [
"https://github.com/shimo4228/authorship-strategy#adr/0001",
"https://github.com/shimo4228/authorship-strategy#adr/0002",
"https://github.com/shimo4228/authorship-strategy#adr/0003",
"https://github.com/shimo4228/authorship-strategy#adr/0004",
"https://github.com/shimo4228/authorship-strategy#adr/0005",
"https://github.com/shimo4228/authorship-strategy#adr/0006",
"https://github.com/shimo4228/authorship-strategy#adr/0007",
"https://github.com/shimo4228/authorship-strategy#adr/0008",
"https://github.com/shimo4228/authorship-strategy#adr/0009",
"https://github.com/shimo4228/authorship-strategy#adr/0010",
"https://github.com/shimo4228/authorship-strategy#adr/0011",
"https://github.com/shimo4228/authorship-strategy#adr/0012",
"https://github.com/shimo4228/authorship-strategy#adr/0013",
"https://github.com/shimo4228/authorship-strategy#adr/0014",
"https://github.com/shimo4228/authorship-strategy#adr/0015",
"https://github.com/shimo4228/authorship-strategy#adr/0016",
"https://github.com/shimo4228/authorship-strategy#adr/0017",
"https://github.com/shimo4228/authorship-strategy#adr/0018",
"https://github.com/shimo4228/authorship-strategy#adr/0019",
"https://github.com/shimo4228/authorship-strategy#adr/0020",
"https://github.com/shimo4228/authorship-strategy#adr/0021",
"https://github.com/shimo4228/authorship-strategy#adr/0022",
"https://github.com/shimo4228/authorship-strategy#adr/0023"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/abstract-doctrine-worked-implementation-pair",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/abstract-doctrine-worked-implementation-pair",
"recordedIn": [
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#abstract-doctrine",
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#worked-implementation"
],
"@type": ["Concept", "DefinedTerm"],
"name": "Abstract Doctrine + Worked Implementation Pair",
"description": "The pairing required to induce creative re-implementation by other authors: an abstract-doctrine repository that articulates the idea cleanly enough for elsewhere-implementation, and a worked-implementation repository that demonstrates the doctrine is implementable. Doctrine alone produces unactionable interest; implementation alone produces unextractable principle. Externally grounded by agent-driven reproduction benchmarking: models reconstruct an algorithm's reasoning structure from its paper description far more reliably than they produce working code from it (best execution accuracy 39%), and supplying missing implementation detail measurably closes the gap — doctrine alone is unactionable, and the benchmark's missing-information categories (hyperparameters, numerical stabilization, implementation logic, coding strategy) enumerate what a worked implementation must carry.",
"pairedWith": "https://shimo4228.github.io/shimo4228/vocab#as/concept/idea-versus-scaffold-separation",
"groundedIn": [
"https://arxiv.org/abs/2504.00255"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/origin-claim-scope-discipline",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/origin-claim-scope-discipline",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#origin-claim-scope",
"@type": ["Concept", "DefinedTerm"],
"name": "Origin-Claim Scope Discipline",
"description": "A subordinate principle applying at all four layers: the origin claim must be narrower than the prior art. Claiming priority on a broad pattern with rich prior art collapses the claim's credibility; claiming priority on a narrow, specifically-named discipline is defensible. Coined terminology is the substrate of narrow origin claims. Feature-granular novelty verification from the patent-examination domain supplies a procedural template: decompose a claim into individual features and map each against prior-art passages, rather than judging the claim as one binary. The same work cautions that granularity is not accuracy — claim-level binary predictors can beat feature-level pipelines on raw correctness — so the discipline treats the feature-to-prior-art map itself as the artifact and does not reduce it to a novelty score.",
"groundedIn": [
"https://arxiv.org/abs/2601.01576",
"https://arxiv.org/abs/2605.02392"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/distinctive-terminology",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/distinctive-terminology",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#distinctive-terminology-or-coined-terminology",
"@type": ["Concept", "DefinedTerm"],
"name": "Distinctive Terminology",
"alternateName": [
{"@value": "Distinctive Terminology", "@language": "en"},
{"@value": "造語的用語", "@language": "ja"}
],
"description": "Domain-specific words coined by an author as semantic signatures of authorship. Generic vocabulary dissolves through paraphrase; coined terms survive as token-level signals carrying back-reference to the original author. A Layer 4 tactic and the substrate of origin-claim scope discipline. Coinage is governed by vocabulary discipline (ADR-0010): a coined term's power comes from its edge density, not from the count of coinages. Attribution research under generative style-mimicry reframes where the term's power lies: coined terminology functions less as personal style — which authorship-attribution models find harder to trace as terms grow semantically unpredictable, and which model imitation erodes — than as occupancy of an uncontested coordinate in concept space, an idea-level rather than style-level signature."
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/vocabulary-discipline",
"@type": ["Concept", "DefinedTerm"],
"name": "Vocabulary Discipline",
"alternateName": [
{"@value": "Vocabulary Discipline", "@language": "en"},
{"@value": "語彙規律", "@language": "ja"}
],
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/vocabulary-discipline",
"subjectOf": "https://shimo4228.github.io/shimo4228/concepts/vocabulary-discipline.html",
"description": "The discipline governing when to coin a distinctive term and when to use existing vocabulary instead: coin sparingly, anchor densely. A term is coined only when three conditions all hold — the concept is genuinely new at a join of existing concepts (join-novelty), a one-sentence definition in existing vocabulary is possible (definitional anchoring), and the namespace is uncontested — and every retained coinage carries a glossary definition in existing vocabulary, upstream citations where prior art exists, knowledge-graph edges to existing concepts and references, and repeated work in the body. Everything else is said in existing vocabulary with the upstream source cited. Rationale: the costs of coinage (isolation, reader trust, maintenance) grow linearly with the number of terms while the benefit depends on each term's edge density, so few densely-anchored terms dominate many isolated ones — an isolated coinage is paraphrased away by the parametric channel exactly as generic vocabulary is, and the retrieval channel is queried in existing vocabulary. Named as the parametric-channel lever in ADR-0008, defined in ADR-0010. The vocabulary-level enforcement of origin-claim scope discipline. Two 2026 results refine the discipline's scope: disentangled authorship-attribution modeling exposes a trade-off in which a coinage's semantic unpredictability weakens style-based traceability (supporting the concept-space-occupancy reading of distinctive terminology), and neology-survival analysis finds the correlates of term survival are broadly shared across publication pathways while topic-popularity growth contributes less on social platforms than in published writing — so anchoring priorities are pathway-specific, and the anchor-densely rule was calibrated on the published/scholarly pathway this framework primarily operates in.",
"appliesTo": "https://shimo4228.github.io/shimo4228/vocab#as/concept/distinctive-terminology",
"downstreamOf": [
"https://shimo4228.github.io/shimo4228/vocab#as/concept/two-channel-attribution-diffusion",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/origin-claim-scope-discipline"
],
"instantiatedBy": "https://github.com/shimo4228/authorship-strategy#adr/0010",
"groundedIn": [
"https://arxiv.org/abs/2402.12261",
"https://arxiv.org/abs/2510.08506",
"https://arxiv.org/abs/2604.21300",
"https://arxiv.org/abs/2602.13123"
],
"recordedIn": [
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0010-vocabulary-discipline.md",
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#vocabulary-discipline"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#concept/dual-entry-point",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/dual-entry-point",
"@type": ["Concept", "DefinedTerm"],
"name": "dual entry point",
"alternateName": [
{"@value": "Dual Entry Point", "@language": "en"},
{"@value": "Dual Entry Point", "@language": "ja"}
],
"description": "The structural decision that any framework-governed artifact deploys two complementary structured entry points — a prose-form navigator and a concept-form graph — released synchronously at every versioned release. Each entry point addresses a distinct LLM-mediated channel sub-population the other cannot reach. ADR-0009 amends this on 2026 evidence: the two are not co-equal — the prose navigator's citation effect is noise, and (per the 2026-08-19 revision) the concept-form graph is not a near-term citation lever either on the controlled evidence; its job is consideration-set entry and entity resolution, the index-time layer the controlled studies leave open — so the pair is retained but made asymmetric, the graph as registration surface, the navigator rescoped to a Business-to-Agent (B2A) context surface rather than an AI-search citation lever. Endpoint-level measurement adds a mechanical basis for the asymmetry: AI coding agents fetch documentation with heterogeneous HTTP clients, many executing no page scripts, so content reachable only through client-side rendering is invisible to part of the agent population — statically-served structured entry points are an access floor, not a citation lever.",
"composedOf": [
"https://shimo4228.github.io/shimo4228/vocab#as/concept/llms-txt-convention",
"https://shimo4228.github.io/shimo4228/vocab#as/concept/jsonld-knowledge-graph"
],
"downstreamOf": "https://shimo4228.github.io/shimo4228/vocab#as/concept/enclosure-to-openness-axis",
"instantiatedBy": [
"https://github.com/shimo4228/authorship-strategy#adr/0006",
"https://github.com/shimo4228/authorship-strategy#adr/0009"
],
"groundedIn": [
"https://arxiv.org/abs/2604.02544"
],
"recordedIn": [
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0006-llm-first-ingest-dual-entry-points.md",
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#dual-entry-point"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/llms-txt-convention",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/llms-txt-convention",
"@type": ["Concept", "DefinedTerm"],
"name": "llms.txt Convention",
"alternateName": [
{"@value": "llms.txt convention", "@language": "en"},
{"@value": "llms.txt convention", "@language": "ja"}
],
"description": "A community-curated AI-facing reference convention that uses a single prose-form text file (llms.txt) at the root of an artifact to enumerate its primary documents with one-line descriptions and a recommended reading order. Targets prose-reading LLM-mediated channels: conversational LLMs, AI assistants consulting documentation in-context, citation-graph annotators fetching prose for summarization. The prose-form half of the dual entry point. Scope refinement on 2026 evidence: the convention's discovery-tool framing has collapsed — adoption grew, but measured effect on AI-search citation is null, AI crawlers request the file rarely, and primary-source statements from a major search operator confirm it is not consulted for search or citation, serving instead agents that already know the site; the agent-guidance role it once aspired to is migrating to executable-tool, transaction, usage-declaration, and access-enforcement protocol layers. Its validated remaining niche — the one this framework uses — is the agent-facing documentation surface (B2A): coding agents consulting a known repository's reading order. This narrows, and does not reverse, ADR-0009's asymmetric rebalance.",
"pairedWith": "https://shimo4228.github.io/shimo4228/vocab#as/concept/jsonld-knowledge-graph",
"instantiatedBy": "https://github.com/shimo4228/llms-txt-writer",
"groundedIn": [
"https://arxiv.org/abs/2604.02544"
],
"recordedIn": [
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0006-llm-first-ingest-dual-entry-points.md",
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#llmstxt-convention"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/jsonld-knowledge-graph",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/jsonld-knowledge-graph",
"@type": ["Concept", "DefinedTerm"],
"name": "JSON-LD Knowledge Graph",
"alternateName": [
{"@value": "JSON-LD knowledge graph", "@language": "en"},
{"@value": "JSON-LD knowledge graph", "@language": "ja"}
],
"description": "A linked-data file that encodes an artifact's concept-level entities and inter-entity relationships as machine-parseable triples in a structured-data vocabulary (typically schema.org plus a local namespace). Targets structured-data-ingesting LLM-mediated channels: training pipelines, knowledge-graph crawlers, programmatic readers using dataset SDKs. The concept-form half of the dual entry point; complements file-level documentation by encoding concept-level structure that prose leaves implicit.",
"pairedWith": "https://shimo4228.github.io/shimo4228/vocab#as/concept/llms-txt-convention",
"instantiatedBy": "https://github.com/shimo4228/jsonld-knowledge-graph",
"groundedIn": [
"https://arxiv.org/abs/2603.10700",
"https://doi.org/10.2139/ssrn.6284518",
"https://arxiv.org/abs/2607.14035",
"https://arxiv.org/abs/2604.19113",
"https://arxiv.org/abs/2603.29979"
],
"recordedIn": [
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0006-llm-first-ingest-dual-entry-points.md",
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#json-ld-knowledge-graph"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/human-attention-signal-rejection",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/human-attention-signal-rejection",
"@type": ["Concept", "DefinedTerm"],
"name": "Human-Attention Signal Rejection",
"alternateName": [
{"@value": "Human-Attention Signal Rejection", "@language": "en"},
{"@value": "人間アテンション signal の却下", "@language": "ja"}
],
"description": "The decision to exclude platform-level human-attention metrics — Git-host star counts (gameable: purchasable) and repository page-view counts (structurally blind to LLM-mediated reach, since a human reading the work through an LLM answer generates no view) — from the framework's success definition, and to decline off-page human-distribution labor as a red-ocean activity operating on a near-empty human-arrival funnel (empirically clone:view approximately 16:1). Success is measured by the breadth of LLM-mediated channels instead. The metric-side embodiment of the scarcity-to-diffusion axis: the framework does not compete for scarce human attention on platform terms but diffuses through LLM-mediated channels. Endpoint measurement extends the structural blindness beyond page views: AI agents compress multi-page consumption into one or two HTTP requests and fire no client-side engagement events, so bounce-rate and session-depth metrics misrecord full consumption as non-engagement, and referrer stripping folds LLM-mediated arrivals into direct traffic — engagement analytics cannot capture LLM-mediated reach even in principle. Boundary: the compression evidence comes from single-fetch documentation tasks, so it is read as grounding for document-retrieval contexts rather than for every agent workload. Scope: under the audience-layer split (ADR-0022) this rejection governs the doctrine layer only; the essay layer's contemporaneous reception signals are accounted separately.",
"downstreamOf": "https://shimo4228.github.io/shimo4228/vocab#as/concept/scarcity-to-diffusion-axis",
"instantiatedBy": "https://github.com/shimo4228/authorship-strategy#adr/0007",
"groundedIn": [
"https://arxiv.org/abs/2604.02544"
],
"recordedIn": [
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0007-human-attention-signals-not-a-metric.md",
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#human-attention-signal"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/audience-layer-split",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/audience-layer-split",
"@type": ["Concept", "DefinedTerm"],
"name": "Audience-Layer Split",
"alternateName": [
{"@value": "Audience-Layer Split", "@language": "en"},
{"@value": "audience-layer split (二層の audience 会計)", "@language": "ja"}
],
"description": "The division of the strategy's accounting into two audience layers with different time constants, routed by genre: a doctrine layer (doctrine repositories and papers, months-to-years, LLM-mediated channels as primary audience) and an essay layer (the governed essay corpus and its syndication surfaces, days-to-weeks, contemporary human readers as primary audience, where contemporaneous reception signals are legitimate to observe and to steer by). Each layer is measured by its own instruments — the instrument-per-channel discipline applied one level up. The split answers an accounting defect, not a strategy defect: without a layer in which human reception counts, the metric rejection's legibility-cost acceptance generalizes into an unfalsifiable consolation in which every stagnant signal reads as purity. The term names an accounting and audience stratum; it is distinct from the framework's judgment stack (Layers 1-4), from the two ingestion channels of Two-Channel Attribution Diffusion (parametric and retrieval, which run over artifacts in both audience layers), and from the two ledger tiers of the implementation-tracking decision (private ledger and public projection). The assignment governs accounting and metrics only; canonical, priority claim, and license selection are unchanged.",
"downstreamOf": "https://shimo4228.github.io/shimo4228/vocab#as/concept/attribution-diffusion",
"instantiatedBy": "https://github.com/shimo4228/authorship-strategy#adr/0022",
"recordedIn": [
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0022-audience-layer-split.md",
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#audience-layer-doctrine-layer--essay-layer"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/two-channel-attribution-diffusion",
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/two-channel-attribution-diffusion",
"subjectOf": "https://shimo4228.github.io/shimo4228/concepts/two-channel-attribution-diffusion.html",
"@type": ["Concept", "Layer", "DefinedTerm"],
"name": "Two-Channel Attribution Diffusion",
"alternateName": [
{"@value": "Two-Channel Attribution Diffusion", "@language": "en"},
{"@value": "2 チャネル Attribution Diffusion", "@language": "ja"},
{"@value": "双通道署名扩散", "@language": "zh"}
],
"description": "The refinement of Attribution Diffusion (Layer 2) into two mechanisms with opposite time constants and opposite levers: a parametric channel (the idea absorbed into model weights at training time — slow, driven by broad cross-platform co-occurrence of distinctive vocabulary with its source; cross-platform mention spread correlates ~0.664 with being named, far above enclosed inbound links ~0.218) and a retrieval channel (the artifact fetched at query time — fast, 3–5 day citation-pool entry and ~13-week decay, driven by freshness and structured data). Ghost citation — the source is cited but the author is not named — is the failure mode of a working retrieval channel atop absent parametric burn-in, so the two channels are optimized and measured separately and run in parallel. Two 2026 refinements are recorded. (1) The retrieval channel's verifiability splits into surface and substantive layers: deep-research audits find link validity and topical relevance high (above 94% and 80% in the strongest systems) while factual accuracy of what a citation is claimed to support runs far lower (39–77%), and deepening retrieval degrades it further — a working retrieval channel guarantees the source is reachable, not that the claim it carries is faithful, so diffusion breadth does not imply fidelity of transmission. (2) White-box probing quantifies an interaction-cost asymmetry between the channels: errors are markedly more frequent when external context must override parametric knowledge than in the reverse direction.",
"downstreamOf": "https://shimo4228.github.io/shimo4228/vocab#as/concept/attribution-diffusion",
"instantiatedBy": "https://github.com/shimo4228/authorship-strategy#adr/0008",
"groundedIn": [
"https://arxiv.org/abs/2602.06718",
"https://arxiv.org/abs/2604.25707",
"https://arxiv.org/abs/2603.09296",
"https://arxiv.org/abs/2602.14869",
"https://arxiv.org/abs/2601.21996",
"https://arxiv.org/abs/2509.08919",
"https://arxiv.org/abs/2602.22787",
"https://arxiv.org/abs/2605.06635",
"https://arxiv.org/abs/2509.04499"
],
"recordedIn": [
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0008-rag-era-attribution-diffusion.md",
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#two-channel-attribution-diffusion"
]
},
{
"@id": "https://shimo4228.github.io/shimo4228/vocab#as/concept/retrieval-suppressed-naming-probe",
"@type": ["Concept", "DefinedTerm"],
"name": "Retrieval-Suppressed Naming Probe",
"alternateName": [
{"@value": "Retrieval-Suppressed Naming Probe", "@language": "en"},
{"@value": "検索抑制 naming probe", "@language": "ja"},
{"@value": "regurgitation test", "@language": "en"}
],
"sameAs": "https://github.com/shimo4228/authorship-strategy#concept/retrieval-suppressed-naming-probe",
"subjectOf": "https://shimo4228.github.io/shimo4228/concepts/retrieval-suppressed-naming-probe.html",
"description": "The measurement instrument for the parametric channel of Two-Channel Attribution Diffusion: a controlled prompt sent to a model with all search and grounding tools suppressed, asking what a concept is and who coined or maintains it. Success is the model producing the concept and the author's name from trained weights alone. Paired with a search-enabled citation probe that measures the retrieval channel and makes ghost citation observable within a single answer (owned identifier cited, author unnamed in prose). Detection is deterministic string matching against a versioned lexicon over retained raw responses — never model judging — with fixed single-variable templates and a negative-control probe (a plausible nonexistent concept) that quantifies the confabulation noise floor. The public probe log feeds the parametric channel it measures; the protocol records this self-contamination as a stated confound rather than hiding it. Two calibration constraints and one positioning refinement are recorded on 2026 evidence. Cross-family memorization analysis finds statistical regularities shared across model families (memorization scaling log-linearly with size) while the internal circuitry carrying memorization is family-specific — so probe results are calibrated per model family, reported with family-internal consistency rather than a single cross-model threshold, and re-baselined when a model series changes generation — as a check rather than a presumed break, since one open series showed its memorization structure inherited across generations; the internal analysis presupposes open weights and disclosed pre-training data, so for closed frontier models family calibration is behavioral by construction — a boundary this framework states as its own, not a finding of the paper. Retrieval-free citation training (active indexing: diverse restatement of each fact plus bidirectional source-fact binding at continual-pretraining time) shows parametric citation ability is a designable supply-side property — repetition volume alone does not create burn-in, structural diversity of restatement does — which positions this probe as the demand-side observer of a supply-side design space the author does not control, and grounds the framework's preference for structural diversity over sheer exposure volume in what it publishes.",
"downstreamOf": "https://shimo4228.github.io/shimo4228/vocab#as/concept/two-channel-attribution-diffusion",
"instantiatedBy": "https://github.com/shimo4228/authorship-strategy#adr/0011",
"groundedIn": [
"https://arxiv.org/abs/2602.06718",
"https://arxiv.org/abs/2604.25707",
"https://arxiv.org/abs/2603.09296",
"https://arxiv.org/abs/2605.18732",
"https://arxiv.org/abs/2511.00476",
"https://arxiv.org/abs/2603.21658",
"https://arxiv.org/abs/2605.22176",
"https://arxiv.org/abs/2506.17585"
],
"recordedIn": [
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0011-two-channel-probe-protocol.md",
"https://github.com/shimo4228/authorship-strategy/blob/main/docs/glossary.md#retrieval-suppressed-naming-probe"
]
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0001",
"@type": "ADR",
"name": "ADR-0001: Concept DOI as Canonical Reference",
"description": "Every external link to a DOI-registered artifact uses the concept DOI; version-specific DOIs are used only for reproducibility citations of specific historical versions. Prevents downstream citation graphs from pinning the artifact to its initial version.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0001-concept-doi-canonical.md"
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0002",
"@type": "ADR",
"name": "ADR-0002: DOI Federation via .zenodo.json",
"description": "Sibling, source, and platform-mirror relationships are declared as relatedIdentifiers in archive deposit metadata so the citation network is recoverable from metadata alone, without requiring readers to follow prose disclosures.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0002-doi-federation-via-zenodo-json.md",
"extends": "https://github.com/shimo4228/authorship-strategy#adr/0001"
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0003",
"@type": "ADR",
"name": "ADR-0003: Cross-Platform Dataset Federation",
"description": "The same canonical artifact is mirrored to multiple platforms (Git host, DOI archive, dataset platform) with explicit sibling cross-references on each platform so readers entering from any platform can discover the artifact's presence on the others.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0003-cross-platform-dataset-federation.md",
"extends": "https://github.com/shimo4228/authorship-strategy#adr/0002"
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0004",
"@type": "ADR",
"name": "ADR-0004: Authorship Metadata with ORCID Auto-Update Disabled",
"description": "The author's persistent identifier record is enriched only with concept DOIs (never version DOIs); the archive-to-ORCID Auto-Update feature is explicitly disabled to prevent version sprawl from polluting the public record.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0004-authorship-metadata-orcid.md"
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0005",
"@type": "ADR",
"name": "ADR-0005: README Localization Policy — Audience-Driven Maintenance",
"description": "Locale mirrors of human-facing documentation are added or retired based on observed traffic data, not on speculation about prospective audiences. A mirror without measurable direct human audience is retired even when the language community seems important in the abstract.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0005-readme-localization-audience-driven.md"
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0006",
"@type": "ADR",
"name": "ADR-0006: LLM-First Ingest via Dual Entry Points",
"description": "Specifies that any framework-governed artifact deploys a prose-form navigator and a concept-form linked-data graph as a complementary pair, released synchronously. Each entry point addresses a distinct LLM-mediated reader sub-population the other cannot reach. The pair is the operational embodiment of the Axis 1 inversion (enclosure to openness) on the ingest surface.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0006-llm-first-ingest-dual-entry-points.md"
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0007",
"@type": "ADR",
"name": "ADR-0007: Human-Attention Platform Signals Are Not a Success Metric",
"description": "Platform human-attention signals — Git-host star counts (gameable: purchasable) and repository page-view counts (structurally blind to LLM-mediated reach) — are excluded as optimization targets and success metrics, and off-page human-distribution labor is declined as a red-ocean activity operating on a near-empty human-arrival funnel. Success is measured by the breadth of LLM-mediated channels carrying the author's signature. The metric-side counterpart to the scarcity-to-diffusion inversion; on-page human quality is maintained as hygiene, not as a growth lever.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0007-human-attention-signals-not-a-metric.md"
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0008",
"@type": "ADR",
"name": "ADR-0008: RAG-Era Attribution Diffusion — Two Channels, Two Time Constants",
"description": "Treats Attribution Diffusion as two channels with opposite time constants and levers: a parametric channel (idea absorbed into model weights at training time — slow, driven by cross-platform vocabulary co-occurrence) and a retrieval channel (artifact fetched at query time — fast, driven by freshness and structured data). The two are optimized and measured separately; ghost citation (source cited but author not named) is the failure mode of pursuing retrieval without parametric burn-in. Divides the single 'diffusion' of ADR-0006 and refines the measurement layer of ADR-0007.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0008-rag-era-attribution-diffusion.md",
"extends": "https://github.com/shimo4228/authorship-strategy#adr/0006"
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0009",
"@type": "ADR",
"name": "ADR-0009: Dual Entry Points Are Asymmetric",
"description": "Amends ADR-0006 on 2026 evidence that the two entry points are not co-equal, and — as revised on 2026-08-19 — relocates where the asymmetry lies. The prose-form navigator's citation effect is noise (adoption around one in ten surveyed domains, ~0.1% of agent crawls request it). The concept-form structured graph delivers no near-term citation lift either on the 2026 controlled evidence (matched-control studies of pages already inside an AI answer system's consideration set find no uplift from adding structured markup; the major search operator's guidance says no special markup is required); what those studies cannot reach is the layer before citation — whether an artifact, its concepts and its author enter the set an AI answer system crawls, indexes and resolves as entities at all. The pair is retained but made asymmetric — the graph is the registration surface for consideration-set entry and entity resolution (the retrieval-channel surface, with no citation-lift expectation attached), the navigator is rescoped to a Business-to-Agent (B2A) context surface rather than an AI-search citation lever. The effort allocation is unchanged from the 2026-05-30 decision; only its stated reason moved, and two figures that did not resolve to a primary source were removed. ADR-0006's synchronization discipline is unchanged.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0009-dual-entry-asymmetric-rebalance.md",
"extends": "https://github.com/shimo4228/authorship-strategy#adr/0006",
"groundedIn": [
"https://arxiv.org/abs/2607.14035",
"https://arxiv.org/abs/2603.10700",
"https://doi.org/10.2139/ssrn.6284518",
"https://arxiv.org/abs/2604.02544"
]
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0010",
"@type": "ADR",
"name": "ADR-0010: Vocabulary Discipline — Coin Sparingly, Anchor Densely",
"description": "Defines the vocabulary discipline ADR-0008 named as the parametric-channel lever but left undefined. A coined term's power comes from its edge density, not from the count of coinages: a term is coined only when three conditions all hold (join-novelty, definitional anchoring, uncontested namespace), and every retained coinage is anchored densely — glossary definition in existing vocabulary, upstream citations where prior art exists, knowledge-graph edges, repeated work in the body. Everything else is said in existing vocabulary with the upstream source cited. The vocabulary-level enforcement of origin-claim scope discipline.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0010-vocabulary-discipline.md",
"extends": "https://github.com/shimo4228/authorship-strategy#adr/0008"
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0011",
"@type": "ADR",
"name": "ADR-0011: Two-Channel Probe Protocol — Measuring Each Channel by Its Own Instrument",
"description": "Builds the measurement instrument ADR-0008 demanded: a scheduled two-channel probe protocol interrogating frontier models with search suppressed (does the trained model name the concept and its author?) and search enabled (are owned identifiers cited, and does the author's name survive in prose alongside the citation?). Detection is deterministic string matching against a versioned lexicon over retained raw responses, never model judging; prompts are fixed single-variable templates with a negative control; every change to prompts, models, or lexicon is a visible series break. The retrieval channel is measured on a fast calendar cadence; the parametric channel is event-driven on model-generation changes (a frozen model's weights cannot change between runs), with a monthly currency check — silent-swap detection, provider-catalog diff, staleness guard — standing in for the calendar; the channels are never blended. The public probe log feeds the parametric channel it measures — a stated confound and an on-thesis act of diffusion. A 2026-08 calibration annex adds reading rules, bound by ADR-0007 as diagnostics rather than success metrics: readings are stratified by model family with within-family consistency reported beside cross-family comparison and no single cross-model threshold; the negative control is measured first in every run as its working noise floor; the A/B delta is read knowing the two override directions carry unequal error risk (fetched context displacing what the weights produced is the more diagnostic event); and every probe declares itself recognition or recall, with no pooling across the two.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0011-two-channel-probe-protocol.md",
"extends": "https://github.com/shimo4228/authorship-strategy#adr/0008"
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0012",
"@type": "ADR",
"name": "ADR-0012: Link-Index Contributions to External Collections",
"description": "Applies the thesis's enclosure axis to channel selection for external curated collections (community-curated link directories, skill marketplaces, dataset registries). Contributions are link-index entries only: the canonical artifact stays in the author's repository while the host carries a hyperlink and a short factual description; vendor-type contributions, where the host would carry the artifact body in its own distribution, are declined by default. Every prospective host passes a four-condition pre-submission audit — corporate ownership, absence of an open license, content-vendoring structure, operation as a paid-product funnel — with risk rising as conditions combine and a host meeting all four excluded even for link-only entries; a listed host that later introduces paid tiers or content vendoring triggers withdrawal. Grounded in two 2026 withdrawal episodes whose shared pattern is that vendored content is captured by any subsequent enclosure the host introduces, while a link entry bounds the worst case to a one-line description inside the enclosing host.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0012-link-index-channel-selection.md"
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0013",
"@type": "ADR",
"name": "ADR-0013: Intrinsic Content-Derived Identifiers as a Complementary Priority-Claim Layer",
"description": "Adds an intrinsic, content-derived identifier layer — SWHID (ISO/IEC 18670) — to the identifier federation, complementing the DOI layer rather than replacing it. A DOI is extrinsic: an opaque name bound to a metadata record by a registry, unverifiable against the artifact's content and dependent on the registry's survival; SWHID is computed from the artifact and its version-history graph, verifiable by anyone holding the content without consulting any registry, at granularities from a repository snapshot down to a single line. Division of labor: the DOI carries citability, rich metadata, and registry-mediated scholarly discovery; the intrinsic identifier carries content-verifiable, registry-independent existence proof — each covers the other's failure mode. Every release triggers an explicit archival request to a content-addressed public software archive, whose snapshot identifier is recorded alongside the DOI in citation metadata; for artifact genres where DOI registration is impractical, the intrinsic identifier is the designated substitute priority-claim mechanism, closing the manifesto's open question 4. Archival also opens a second parametric-channel ingest surface (code-focused LLM training corpora source directly from the archive) at zero marginal authoring cost. The identifier proves what content existed when — it carries no authorship semantics, which remain with the DOI / ORCID layer.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0013-intrinsic-identifier-layer.md",
"extends": "https://github.com/shimo4228/authorship-strategy#adr/0003"
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0014",
"@type": "ADR",
"name": "ADR-0014: Implementation Tracking as a Two-Tier Ledger",
"description": "Implementation tracking separates a private operational ledger from its dated, effect-claim-free public projection. The ledger is updated before the timeline. Records support status and implementation decisions; they do not prescribe idea generation. The 2026-09-07 amendment removes the compulsory review trigger and ideation sequence. Concrete choices receive context-relevant evaluation, and existing strategic premises may be questioned. Artifact locations live in the maintenance reference; the operational skill provides optional decision support.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0014-implementation-tracking-two-tier-ledger.md"
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0015",
"@type": "ADR",
"name": "ADR-0015: License Selection by Audience, Not Artifact Form",
"description": "Fixes license selection on the artifact's dominant audience rather than its surface form, on the standing principle that attribution is carried by the federated-identifier layer (the identifier-federation triplet 0001-0003 and the intrinsic-identifier layer 0013) rather than by the license, so the license is chosen to minimize reuse friction. Machine-mined artifacts — datasets, corpora, traffic and probe logs, runtime data, knowledge graphs, and prose published for LLM-mediated reach, which under this LLM-first program (ADR-0007) is mined not read regardless of being prose — take a public-domain dedication (CC0-1.0); executable code takes a permissive software license (MIT/Apache-2.0), carried whole-repo on a code-bearing repository for legibility since it is already absorbed freely and unfiltered; genuinely human-first artifacts may take an attribution-requiring content license (CC-BY-4.0); a split is reserved for repositories whose non-code material is the entire deliverable; non-commercial and no-derivatives terms are prohibited as enclosure that forbids the parametric channel's training-time absorption and the preference hierarchy's creative reuse. The license-layer counterpart of vocabulary discipline (0010); disjoint from ADR-0012, which governs the license a prospective external host must extend rather than the license the author applies. Triggered by a 2026-06-17 cross-repository audit that found four license patterns in simultaneous use and one non-commercial restriction contradicting the framework, and sharpened from a form axis to an audience axis when an essay collection's LLM-first designation made form classification untenable.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0015-license-selection-by-audience.md"
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0016",
"@type": "ADR",
"name": "ADR-0016: Genre-Split Placement — Essays as Repository-Corpus Canonical with Intrinsic Identifier, Papers as Concept-DOI Canonical",
"description": "Records which genre takes which canonical, a routing the identifier ADRs left open: ADR-0001 fixed the concept DOI as canonical and ADR-0013 added an intrinsic content-derived identifier (SWHID) as the substitute claim for DOI-impractical genres, but neither said which genre is which. ADR-0016 routes by genre. The essay genre's canonical is the author's version-controlled repository corpus, its priority claim resting on the intrinsic content-derived identifier (a snapshot of the corpus in a content-addressed public archive) rather than a registry DOI, under a public-domain dedication (CC0-1.0, ADR-0015); the paper genre's canonical is the concept DOI (ADR-0001), with the intrinsic identifier as its complementary layer. Syndicated essay copies are bound to the canonical by entity federation — sameAs, ORCID, DOI, intrinsic identifier, and the distinctive vocabulary that survives paraphrase (ADR-0009, ADR-0010) — not by a platform canonical-URL tag, whose effect on LLM-mediated credit is unverified and which is retained only as human-reader and search-engine hygiene. Corpus membership is gated by an authenticity criterion (Layer 1: author-voiced, reader-intended pieces; study or learning drafts without an author voice are excluded), and a load-bearing essay idea is promoted to a concept-DOI deposit when it graduates into a paper (Layer 3, idea-versus-scaffold separation). It instantiates ADR-0013's DOI-impractical-genre clause concretely and complements ADR-0015's license-by-audience rule, closing the placement gap between them. Triggered by a 2026-06-25 review of where crystallized essays and papers should live for LLM-mediated diffusion, which found the essay corpus was a publishing pipeline lacking an intrinsic-identifier priority claim, a reconciled license, and entity federation; the corpus was governed accordingly as the implementation this decision records.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0016-genre-split-placement.md",
"extends": [
"https://github.com/shimo4228/authorship-strategy#adr/0013",
"https://github.com/shimo4228/authorship-strategy#adr/0015"
]
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0017",
"@type": "ADR",
"name": "ADR-0017: Failure-Mode Diagnostics — A Detector and Recovery Strategy for Each of the Three Acknowledged Failure Modes",
"description": "Operationalizes the manifesto's eighth open question — the framework's acknowledged failure modes — by pairing each of the three named modes with a diagnostic signal and a recovery strategy. For reach without recognition (the ghost citation of authorship, where ideas diffuse but the diffusion does not carry the author's name), the detector is a naming probe that succeeds at the concept level yet fails at the author level, read against a mechanism the framework borrows from the citation and interpretability literature: the parametric channel gates the retrieval channel so a source's address can be cited while its author goes unnamed, factual recall is foreseeable at design time so a coinage's low representation places it at the harsh end of the recall floor by construction, and recall reads back prior authority unequally rather than presence neutrally — the supply-side connection to the ninth open question; the recovery anchors distinctive vocabulary densely, keeps the origin claim narrow, and accepts that under full three-axis inversion reach without recognition may be a structural price rather than a defect to chase. For over-publication, the detector is the author's own identifier portfolio carrying multiple superseded versions of one idea, and the recovery is the concept-DOI canonical with version discipline. For under-investment in worked implementation, the detector is a doctrine-heavy, implementation-light portfolio, and the recovery rebalances toward the abstract-doctrine-plus-worked-implementation pair the idea-versus-scaffold layer requires. A load-bearing caveat governs all three: a diagnostic is a failure-detector, not a success metric — it never becomes an optimization target, because promoting a detector to a target re-imports the purchasable, off-page metric posture the framework rejects and re-creates the reach-chasing it prohibits, while honestly articulating one's own failure modes is consistent with the authenticity commitment at the top of the stack.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0017-failure-mode-diagnostics.md",
"extends": [
"https://github.com/shimo4228/authorship-strategy#adr/0007",
"https://github.com/shimo4228/authorship-strategy#adr/0011",
"https://github.com/shimo4228/authorship-strategy#adr/0001",
"https://github.com/shimo4228/authorship-strategy#adr/0004"
],
"groundedIn": [
"https://arxiv.org/abs/2509.13365",
"https://arxiv.org/abs/2605.18732",
"https://arxiv.org/abs/2511.00476",
"https://arxiv.org/abs/2602.22787"
]
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0018",
"@type": "ADR",
"name": "ADR-0018: Origin-Claim Falsifiability — Test a Priority Claim Against Prior Art Before Publishing It in a Durable Artifact",
"description": "The decision to codify the framework's informally-practiced origin-claim scope discipline into a stated procedure: before an origin claim enters a durable, citable artifact, the author runs a retrieval search for prior work that would refute the claim, and any claim that survives only because it was never tested — one that is unfalsifiable in principle, or one the search shows already anticipated by located prior work — is rescoped to its narrowest defensible form rather than dropped. The governing criterion is falsifiability: a publishable origin claim is one a prior-art search could in principle refute and did not. The check is a binary defensibility judgment feeding a human rescope decision, deliberately not a novelty score, so it composes with the metric-rejection commitment rather than turning authenticity into a number to maximize. The procedure only ever narrows a claim, making it a humility instrument that extends the vocabulary discipline's origin-claim scope clause and rests on Layer 1 authenticity; it grounds the verification step on the demonstration, by an external evidence-grounded agentic novelty-assessment system, that an externally-computed novelty check built on retrieved real prior work is feasible — cited for feasibility, never for an accuracy figure, with the framework claiming no priority over that system. Writing the habit down as an adoptable check answers the framework's begging-the-question risk by requiring every origin claim, including the framework's own, to survive a prior-art refutation search before it becomes costly to retract.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0018-claim-falsifiability-criterion.md",
"extends": [
"https://github.com/shimo4228/authorship-strategy#adr/0010"
],
"groundedIn": [
"https://arxiv.org/abs/2601.01576"
]
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0019",
"@type": "ADR",
"name": "ADR-0019: Structural Optimization versus Content Authenticity — The Structured-Artifact Tactic Optimizes the Transmission Path, Never the Content",
"description": "Locates the boundary between legitimate structural optimization and prohibited content deformation for the framework's structured-artifact diffusion tactic. The structured-data efficacy literature establishes that AI-retrieval citation lift attaches to a document's structure and to attribute-rich, entity-anchored markup rather than to surface text or the mere presence of markup, which justifies the structured-artifact tactic while creating a standing pressure to optimize for citation under a borrowed marketing-optimization frame. The decision draws the line at the object of optimization, not its intensity: optimizing the transmission path — document architecture, information hierarchy, entity anchoring, and the dense anchoring of distinctive vocabulary — is legitimate because it changes how the idea travels and leaves the idea's content as authored, whereas deforming the content to win citations through padded attribute-richness, keyword-stuffing, or claims shaped to a channel's reward function is prohibited because it deforms what the idea is. The rule — optimize how the idea travels, never what the idea is — makes content deformation an authenticity violation, made goalless by the prior rejection of citation and visibility as success metrics. It extends the structured-graph entry point (ADR-0009, whose criterion since 2026-08-19 is consideration-set entry / entity resolution rather than citation lift) and the anchor-densely vocabulary discipline as two surfaces of the same legitimate carrier investment, sits beneath the authenticity layer the boundary protects, and is read against the supply-side entity-grounding tension and the tactic-obsolescence question.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0019-structural-optimization-vs-content-authenticity.md",
"extends": [
"https://github.com/shimo4228/authorship-strategy#adr/0009",
"https://github.com/shimo4228/authorship-strategy#adr/0010",
"https://github.com/shimo4228/authorship-strategy#adr/0007"
],
"groundedIn": [
"https://arxiv.org/abs/2604.19113",
"https://arxiv.org/abs/2603.29979",
"https://arxiv.org/abs/2603.10700",
"https://doi.org/10.2139/ssrn.6284518"
]
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0020",
"@type": "ADR",
"name": "ADR-0020: Onboarding to Third-Party AI-Derived Repository Surfaces — Synthetic Wikis and Documentation Hubs",
"description": "Onboards idea-bearing public repositories to two third-party derivation-type surfaces that build an LLM-consumable view from the repository: a synthetic wiki that paraphrases the codebase behind a conversational query interface, and a documentation hub that serves the repository's own machine-readable documents verbatim through a model-callable interface, each attaching an adoptable badge. The decision onboards to both and blesses the derived views rather than gating them, under a per-type discipline: the synthetic wiki's paraphrase is used as a regurgitation-test drift diagnostic and defended by upstream dense anchoring rather than corrected on the derived surface, while the documentation hub's access-count badge is read as a measurement signal of the LLM-mediated channel and never as a success metric. It declines an index-only catalog whose artifact model is the installable code library as an artifact-type mismatch, and declines self-hosted query infrastructure as friction the framework does not take on, keeping the origin claim fixed on the identifier-federation layer rather than on any derived surface. It is the derivation-axis counterpart to the enclosure-axis channel-selection decision, extends the LLM-first ingest surface, is bounded by the metric-rejection decision, and connects its regurgitation-test diagnostic to the vocabulary discipline and the measurement protocol.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0020-derivation-surface-onboarding.md",
"extends": [
"https://github.com/shimo4228/authorship-strategy#adr/0006",
"https://github.com/shimo4228/authorship-strategy#adr/0012",
"https://github.com/shimo4228/authorship-strategy#adr/0007",
"https://github.com/shimo4228/authorship-strategy#adr/0010"
]
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0021",
"@type": "ADR",
"name": "ADR-0021: Self-Sovereign Entity Grounding — Community-Governed Authority Records Are a Revocable Layer, Not a Foundation",
"description": "Retires self-created entries in community-governed authority records as a Layer 4 tactic, after the host of such a record judged the author's account promotional by its aggregate editing pattern — no individual edit cited — revoked it indefinitely, and mass-deleted every entry: the author entity, the artifact entities, bibliographic records of cited works, and the citation edges among them. The decision classifies entity-grounding surfaces by revocation control: self-sovereign layers (the repository and its knowledge graph, registry deposits under the author's account, the author-identifier record, and the intrinsic content-derived identifier layer, which alone is non-revocable by construction) may be load-bearing for the origin claim, while third-party-governed surfaces are reach amplifiers whose total loss the strategy must survive. Third-party-governed grounding is admitted only when earned — created unprompted by uninvolved parties — never self-manufactured or solicited. On revocation, dead identifiers are purged promptly from every machine-readable carrier while dated historical records are preserved unmodified; circumvention through new accounts or proxies is prohibited outright; and every future third-party deployment faces an aggregate-pattern test — how the account's cumulative footprint reads to the host's governance rather than whether each action is formally compliant. Records the sharpest observed instance of the manifesto's ninth open question without closing it.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0021-self-sovereign-entity-grounding.md",
"extends": [
"https://github.com/shimo4228/authorship-strategy#adr/0013",
"https://github.com/shimo4228/authorship-strategy#adr/0002",
"https://github.com/shimo4228/authorship-strategy#adr/0009",
"https://github.com/shimo4228/authorship-strategy#adr/0012",
"https://github.com/shimo4228/authorship-strategy#adr/0017"
]
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0022",
"@type": "ADR",
"name": "ADR-0022: Audience-Layer Split — Contemporary Human Readers as the Essay Genre's Primary Audience, with Layer-Scoped Metrics",
"description": "Splits the strategy's accounting into two audience layers with different time constants, routed by genre. The doctrine layer — the doctrine repositories and the paper genre, on a months-to-years time constant — keeps LLM-mediated channels as its primary audience, with the metric-rejection decision intact. The essay layer — the governed essay corpus and its syndication surfaces, on a days-to-weeks time constant — takes contemporary human readers as its primary audience; contemporaneous reception signals (reads, reactions, follower counts) are legitimate there both to observe and to steer writing decisions by. The amendment proceeds on accounting grounds: an unqualified audience demotion had let every stagnant human-attention signal be re-read as purity — an unfalsifiable consolation — while the essay corpus shipped to contemporary human readers entirely off the strategy's books, and the author's recognition-seeking motive was structurally starved while the contemplative motive was fully served. The metric-rejection decision is amended clause by clause (its own revisit trigger, a trustworthy non-gameable human-reception signal, has not fired). Boundary clauses keep the layers from contaminating each other: essay-layer signals never steer doctrine-layer release, deposit, or federation decisions; content deformation for numbers is prohibited in both layers; essay-layer platforms remain non-load-bearing third-party-governed surfaces under the safety guards and the aggregate-pattern test; and the assignment governs accounting and metrics only, leaving license selection and canonical routing untouched. Opens the manifesto's eleventh open question: whether a two-layer motivation portfolio resists cross-layer contamination when both layers are held by a single practitioner.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0022-audience-layer-split.md",
"extends": [
"https://github.com/shimo4228/authorship-strategy#adr/0007",
"https://github.com/shimo4228/authorship-strategy#adr/0011",
"https://github.com/shimo4228/authorship-strategy#adr/0014",
"https://github.com/shimo4228/authorship-strategy#adr/0016",
"https://github.com/shimo4228/authorship-strategy#adr/0017",
"https://github.com/shimo4228/authorship-strategy#adr/0019",
"https://github.com/shimo4228/authorship-strategy#adr/0021"
]
},
{
"@id": "https://github.com/shimo4228/authorship-strategy#adr/0023",
"@type": "ADR",
"name": "ADR-0023: Empirical-Layer Role — Reference Baseline as Primary Role, Case-Study Narrative Bounded, Validation Evidence Only by Explicit Design",
"description": "Closes the manifesto's seventh open question — whether the empirical layer functions as validation evidence, reference baseline, or case study — by structuring the layer's intentional hybrid rather than collapsing it to one role. The three candidate roles differ less in content than in the strength of the claim the layer would assert, and the cost of the recorded ambiguity was that no artifact declared how strong a claim it was making. Reference baseline is the layer's primary role and the minimum every artifact must satisfy: reproducible data or a dated record, a documented method, stated limitations. Case-study narrative is a bounded secondary role: interpretive notes attached to specific artifacts and marked as interpretation, never elevated into effect claims. Validation evidence is a role the layer declines to claim — no artifact is read as validating the framework's normative claims unless it was designed as an experiment before the fact (a pre-specified contrast or a pre-registered protocol testing a stated claim) and is explicitly designated as validation evidence at publication, a role upgrade that is never silent, modeled on the visible-series-break rule of the two-channel probe protocol. Each artifact's role is declared in the layer's index; the intervention timeline is placed as the baseline's methods companion and the external-literature note as reporting others' evidence at the strength the cited literature itself claims. Declining the validation role does not weaken the standing rule that empirical observation may revise normative decisions: prompting a revision requires only a preliminary observation — the strength the failure-mode diagnostics already run on — while validating the framework would require evidence from an artifact designed as an experiment, which the layer does not claim to hold. The preliminary-observation tone remains the floor under everything the layer asserts.",
"recordedIn": "https://github.com/shimo4228/authorship-strategy/blob/main/docs/adr/0023-empirical-layer-role.md",
"extends": [
"https://github.com/shimo4228/authorship-strategy#adr/0011",
"https://github.com/shimo4228/authorship-strategy#adr/0014",
"https://github.com/shimo4228/authorship-strategy#adr/0017",
"https://github.com/shimo4228/authorship-strategy#adr/0022"
]
},
{
"@id": "https://doi.org/10.5281/zenodo.19200726",
"@type": ["ResearchLine", "EcosystemRepo"],
"name": "Agent Knowledge Cycle",
"alternateName": "AKC",
"description": "Six-phase bidirectional growth loop for sustaining intent alignment between an AI agent and its operator over time. Mechanism sibling: defines how knowledge cycles inside the operator-agent pair; this research line addresses how the cycle's outputs diffuse outside it.",
"url": "https://github.com/shimo4228/agent-knowledge-cycle",
"identifier": "10.5281/zenodo.19200726",
"siblingOf": "https://github.com/shimo4228/authorship-strategy"
},
{
"@id": "https://doi.org/10.5281/zenodo.19212118",
"alternateName": "CA",
"@type": ["ResearchLine", "EcosystemRepo"],
"name": "Contemplative Agent",
"description": "Autonomous agents running on a local 9B model, grounded in four contemplative axioms. Implementation sibling: this repository participates in the empirical layer's traffic dataset, and its non-dualistic axiomatic foundation supplies the underlying rationale for the framework's scaffold-as-collaborator commitment.",
"url": "https://github.com/shimo4228/contemplative-agent",
"identifier": "10.5281/zenodo.19212118",
"siblingOf": "https://github.com/shimo4228/authorship-strategy"
},
{
"@id": "https://doi.org/10.5281/zenodo.19652013",
"alternateName": "AAP",
"@type": ["ResearchLine", "EcosystemRepo"],
"name": "Agent Attribution Practice",
"description": "Harness-neutral ADRs on accountability distribution in autonomous AI agents. Vocabulary sibling: shares the word 'attribution' but with disjoint meaning (accountability for action vs. credit for source). The two meanings are intentionally kept separate; do not conflate.",
"url": "https://github.com/shimo4228/agent-attribution-practice",
"identifier": "10.5281/zenodo.19652013",
"siblingOf": "https://github.com/shimo4228/authorship-strategy",
"vocabularyDisjoint": "https://github.com/shimo4228/authorship-strategy"
},
{
"@id": "https://doi.org/10.5281/zenodo.20262112",
"alternateName": "ANS",
"@type": ["ResearchLine", "EcosystemRepo"],
"name": "Attention, Not Self",
"description": "A cross-disciplinary inquiry contrasting three Buddhist Abhidharma traditions (Theravāda, Sarvāstivāda, Yogācāra) with computational phenomenology (predictive processing, active inference, global workspace theory, parallel distributed processing). Cross-cutting sibling: unlike the agent-design lines (AKC, Contemplative Agent, AAP) it specifies no agent mechanism or practice; like this research line it occupies the agent-design lines' diffusion and framing layer. Shares Buddhist terminology with Contemplative Agent but with asymmetric usage: Contemplative Agent uses it as a behavioral preset, this line as a comparative cognitive framework. Began traffic observation after the v0.1.0 empirical baseline window.",
"url": "https://github.com/shimo4228/attention-not-self",
"identifier": "10.5281/zenodo.20262112",
"siblingOf": "https://github.com/shimo4228/authorship-strategy"
},
{
"@id": "https://github.com/shimo4228/shimo4228",
"@type": "EcosystemRepo",
"name": "Research Program Hub",
"description": "Metadata-only federation hub at the center of the shimo4228 research ecosystem. Aggregates cross-references to sibling research lines without containing line-specific content itself. Not a research line; treating it as one collapses the distinction between content and metadata.",
"url": "https://github.com/shimo4228/shimo4228",
"hasPart": "https://github.com/shimo4228/authorship-strategy"
},
{
"@id": "https://github.com/shimo4228/authorship-strategy-skill",
"@type": "EcosystemRepo",
"name": "authorship-strategy-skill",
"description": "Component skill of this research line. Decision support for concrete authorship-strategy choices, packaged as a standalone skill repository. Background and action-specific references support requested evaluations without prescribing ideation. Operationalizes the thesis and the twenty-three ADRs.",
"url": "https://github.com/shimo4228/authorship-strategy-skill",
"derivesFrom": "https://github.com/shimo4228/authorship-strategy"
},
{
"@id": "https://github.com/shimo4228/release-doi",
"@type": "EcosystemRepo",
"name": "release-doi",
"description": "Component skill of this research line. Release-time workflow operationalizing the identifier-federation triplet (ADRs 0001-0003) as a five-phase verify-and-deposit runbook for DOI-registered research repositories.",
"url": "https://github.com/shimo4228/release-doi",
"derivesFrom": "https://github.com/shimo4228/authorship-strategy"
},
{
"@id": "https://github.com/shimo4228/llms-txt-writer",
"@type": "EcosystemRepo",
"name": "llms-txt-writer",
"description": "Component skill of this research line. Operationalizes Layer 4 tactic 7 — Answer.AI llms.txt convention. Writes the AI-facing reference files (llms.txt, llms-full.txt, FAQ, glossary) that every framework-applied repository requires.",
"url": "https://github.com/shimo4228/llms-txt-writer",
"derivesFrom": "https://github.com/shimo4228/authorship-strategy"
},
{
"@id": "https://github.com/shimo4228/jsonld-knowledge-graph",
"@type": "EcosystemRepo",
"name": "jsonld-knowledge-graph",
"description": "Component skill of this research line. Operationalizes Layer 4 tactic 7 — JSON-LD knowledge graph. Designs and ships graph.jsonld next to llms.txt for projects with stable concept-level structure.",
"url": "https://github.com/shimo4228/jsonld-knowledge-graph",
"derivesFrom": "https://github.com/shimo4228/authorship-strategy"
},
{
"@id": "https://github.com/shimo4228/authorship-strategy-rules",
"@type": "EcosystemRepo",
"name": "authorship-strategy-rules",
"description": "Component of this research line: the four-layer judgment framework packaged as a single always-loaded behavioral rule — the deterministic, always-on counterpart to authorship-strategy-skill. Applies the framework every session within its trigger scope (repositories the operator owns that are DOI-registered and idea-rescue in character). A distribution mirror with no own DOI; references the parent concept DOI.",
"url": "https://github.com/shimo4228/authorship-strategy-rules",
"derivesFrom": "https://github.com/shimo4228/authorship-strategy"
},
{
"@id": "https://arxiv.org/abs/2602.06718",
"@type": ["ExternalReference", "ScholarlyArticle"],
"name": "GhostCite: A Large-Scale Analysis of Citation Validity in the Age of Large Language Models",
"author": "Zuyao Xu et al.",
"datePublished": "2026-02-06",
"identifier": "arXiv:2602.06718",
"url": "https://arxiv.org/abs/2602.06718",
"description": "Large-scale audit of citation validity across thirteen LLMs and 56,381 published papers (2.2 million citations checked; 1.07% of papers carry invalid citations). Uses the term 'ghost citation' for a disjoint phenomenon — fabricated or invalid citations to non-existent sources — not the attribution-loss sense the framework names the ghost citation of authorship; the two senses should not be conflated. Cited as external context for citation failure under LLM mediation (ADR-0008), not as the source of the framework's term."
},
{
"@id": "https://arxiv.org/abs/2604.25707",
"@type": ["ExternalReference", "ScholarlyArticle"],
"name": "From Citation Selection to Citation Absorption: A Measurement Framework for Generative Engine Optimization Across AI Search Platforms",
"author": ["Zhang Kai", "He Xinyue", "Yao Jingang"],
"datePublished": "2026-04-28",
"identifier": "arXiv:2604.25707",
"url": "https://arxiv.org/abs/2604.25707",
"description": "Two-stage GEO measurement framework separating citation selection (which sources a platform fetches) from citation absorption (how much a fetched page contributes to the answer), across ChatGPT, Google AI Overview/Gemini, and Perplexity (602 prompts, 21,143 valid citations). External grounding for the retrieval channel's measurement layer (ADR-0008) and for the metric-rejection logic of ADR-0007: a raw citation count is not a measure of citation influence."
},
{
"@id": "https://arxiv.org/abs/2603.09296",
"@type": ["ExternalReference", "ScholarlyArticle"],
"name": "Diagnosing and Repairing Citation Failures in Generative Engine Optimization",
"author": ["Zhihua Tian", "Yuhan Chen", "Yao Tang", "Jian Liu", "Ruoxi Jia"],
"datePublished": "2026-03-10",
"identifier": "arXiv:2603.09296",
"url": "https://arxiv.org/abs/2603.09296",
"description": "A taxonomy of GEO citation-failure modes plus AgentGEO, an agentic system that raises citation rates by over 40% while modifying only 5% of content, against a 25% modification baseline. External grounding for the retrieval channel as an optimizable surface (ADR-0008), with the caution — consistent with this framework's distrust of generic optimization — that broad optimization degrades long-tail content."
},
{
"@id": "https://arxiv.org/abs/2602.14869",
"@type": ["ExternalReference", "ScholarlyArticle"],
"name": "Concept Influence: Leveraging Interpretability to Improve Performance and Efficiency in Training Data Attribution",
"author": ["Matthew Kowal", "Goncalo Paulo", "Louis Jaburi", "Tom Tseng", "Lev E McKinney", "Stefan Heimersheim", "Aaron David Tucker", "Adam Gleave", "Kellin Pelrine"],
"datePublished": "2026-02-16",
"identifier": "arXiv:2602.14869",
"url": "https://arxiv.org/abs/2602.14869",
"description": "A training-data-attribution method that replaces classical influence functions' per-test-example gradient with a semantic direction — a linear probe or sparse-autoencoder feature — asking which training data shaped a concept rather than an exact string (training on the top 10–20% highest-influence data alone raises an unsafe-code score roughly tenfold, at ~20× the speed of classical influence functions). External white-box grounding for the Layer-3 wager (idea-versus-scaffold separation): an author's idea is retained in a model as a parametric concept direction, not verbatim text — which is what survives when the implementation dissolves. Boundary: it requires white-box access to a model one trains oneself, so it does not measure burn-in inside a closed commercial LLM and does not close the parametric-channel measurement gap ADR-0008 leaves open."
},
{
"@id": "https://arxiv.org/abs/2601.21996",
"@type": ["ExternalReference", "ScholarlyArticle"],
"name": "Mechanistic Data Attribution: Tracing the Training Origins of Interpretable LLM Units",
"author": ["Jianhui Chen", "Yuzhang Luo", "Liangming Pan"],
"datePublished": "2026-01-29",
"identifier": "arXiv:2601.21996",
"url": "https://arxiv.org/abs/2601.21996",
"description": "A framework that traces interpretable units inside a model — notably induction heads, the circuits underlying in-context learning — back to the training samples that formed them, using influence functions. On the Pythia family it causally validates the link: removing high-influence samples suppresses induction-head emergence while random interventions do not, and high-influence samples are dominated by repetitive structural data (LaTeX, XML, code; power-law influence). External circuit-level grounding for the parametric channel of Two-Channel Attribution Diffusion (ADR-0008). Boundary: white-box and retraining-scale, so it is upstream mechanistic evidence, not an attribution probe applicable to a closed commercial model."
},
{
"@id": "https://arxiv.org/abs/2402.12261",
"@type": ["ExternalReference", "ScholarlyArticle"],
"name": "NEO-BENCH: Evaluating Robustness of Large Language Models with Neologisms",
"author": ["Jonathan Zheng", "Alan Ritter", "Wei Xu"],
"datePublished": "2024-02-19",