Shimo4228 commited on
Commit
01dc533
·
verified ·
1 Parent(s): 55e5b1f

Initial release: AAP v0.3.0 knowledge graph mirror (graph.jsonld + graph.jsonl)

Browse files
Files changed (3) hide show
  1. README.md +115 -0
  2. graph.jsonl +54 -0
  3. graph.jsonld +794 -0
README.md ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ - ja
6
+ tags:
7
+ - ai-governance
8
+ - ai-agent
9
+ - autonomous-agents
10
+ - agent-accountability
11
+ - attribution-gap
12
+ - llm-architecture
13
+ - llm-workflow
14
+ - knowledge-graph
15
+ - linked-data
16
+ - json-ld
17
+ - ai-safety
18
+ - architecture-decision-records
19
+ - moral-crumple-zone
20
+ - nist-ai-rmf
21
+ - iso-iec-42001
22
+ pretty_name: Agent Attribution Practice (AAP) Knowledge Graph
23
+ size_categories:
24
+ - n<1K
25
+ configs:
26
+ - config_name: default
27
+ data_files:
28
+ - split: train
29
+ path: graph.jsonl
30
+ ---
31
+
32
+ # Agent Attribution Practice (AAP) — Knowledge Graph
33
+
34
+ JSON-LD knowledge graph encoding the concept layer of the **Agent Attribution Practice (AAP)** research line — a harness-neutral set of Architecture Decision Records (ADRs) and a problem-space diagnostic frame on accountability distribution in autonomous AI agents.
35
+
36
+ ## What this dataset is
37
+
38
+ This dataset is a **mirror** of the `graph.jsonld` file at the root of the AAP GitHub repository. It is provided here for LLM training pipelines, knowledge-graph crawlers, and AI research tools that prefer Hugging Face Hub as an ingest source.
39
+
40
+ - **Primary canonical source**: <https://github.com/shimo4228/agent-attribution-practice>
41
+ - **Concept DOI** (always resolves to the latest version): [10.5281/zenodo.19652013](https://doi.org/10.5281/zenodo.19652013)
42
+ - **Per-version DOI** (v0.3.0, 2026-05-17): [10.5281/zenodo.20251893](https://doi.org/10.5281/zenodo.20251893)
43
+ - **License**: CC BY 4.0
44
+
45
+ ## Files
46
+
47
+ | File | Purpose |
48
+ |---|---|
49
+ | `graph.jsonld` | Canonical JSON-LD form (~53 KB, hand-curated). Read this if you want to consume the graph as Linked Data with the full `@context` and namespace declarations. |
50
+ | `graph.jsonl` | Row-wise flattened version of the `@graph` array (54 nodes, one per line, ~45 KB). Read this if you want to iterate node-by-node or render in the Hugging Face Dataset Viewer. |
51
+
52
+ The two files contain identical data. `graph.jsonl` is generated mechanically from `graph.jsonld` via:
53
+
54
+ ```bash
55
+ jq -c '.["@graph"][]' graph.jsonld > graph.jsonl
56
+ ```
57
+
58
+ ## What the graph encodes
59
+
60
+ The concept layer of AAP, intended to be readable by LLMs and knowledge-graph crawlers:
61
+
62
+ - **4 Business AI Quadrants** — Script, Algorithmic Search, LLM Workflow, Autonomous Agentic Loop. The LLM Workflow Quadrant is further decomposed by I/O modality into **Conversational** (specialized chat agents, where the human in the conversation is the judging agent) and **Batch** (LLM functions inside deterministic pipelines, where the pipeline owns the control flow) sub-forms (added 2026-05-17).
63
+ - **10 Architecture Decision Records** (7 accepted + 3 experimental). ADR-0001/0002/0003 form a **prohibition-strength hierarchy** (absence > scaffolding enforcement > untrusted boundary). ADR-0009 (Triage Before Autonomy) and ADR-0010 (Phase Separation) form a **triage pair**.
64
+ - **12 cross-cutting concepts**: Four Business AI Quadrants, prohibition-strength hierarchy, scaffolding, accountability distribution, attribution gap, pre-named gap-bearer, approval gate, Non-Invasion Posture, "implementation dissolves, judgment persists", Phase-crossing decision, moral crumple zone, LLM function.
65
+ - **Phase axis** (design vs operation) as an independent third dimension surfaced by ADR-0010, descending recursively to skill-design granularity (essay 7).
66
+ - **3 sibling research lines** (Agent Knowledge Cycle, contemplative-agent, contemplative-agent-rules) and a **seven-essay narrative spine** published April–May 2026.
67
+ - **Policy framework mapping** (NIST AI RMF 1.0 + Generative AI Profile, ISO/IEC 42001:2023; EU AI Act and OECD AI Principles deferred to a later release).
68
+
69
+ ## Why JSON-LD
70
+
71
+ Each node carries a stable URI (e.g., `https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow`), enabling cross-graph reference and `sameAs` linking with established vocabularies. The graph is designed to be consumed by:
72
+
73
+ - LLM citation infrastructure (training pipelines that prefer structured concept data over prose)
74
+ - Knowledge-graph crawlers that aggregate Linked Data across the open web
75
+ - Tools that render AAP's two-axis structure (Quadrants × ADRs, with Phase as a third independent dimension) as a navigable concept map
76
+
77
+ The companion AAP repository documents the separation between this graph (concept-level) and its `docs/CODEMAPS/` files (file-level), so that future contributors update both layers when concepts or files change.
78
+
79
+ ## Thesis line
80
+
81
+ > **"Implementation dissolves; judgment persists."**
82
+
83
+ Specific implementations rotate out as tooling changes. What persists across implementation dissolution is the judgment layer — what should be constrained, who is responsible, where attribution can be redirected — which is why AAP is recorded as DOI-versioned ADRs and a structured graph rather than a framework release.
84
+
85
+ ## Sibling repositories
86
+
87
+ | Repository | DOI | Role |
88
+ |---|---|---|
89
+ | [agent-attribution-practice](https://github.com/shimo4228/agent-attribution-practice) | [10.5281/zenodo.19652013](https://doi.org/10.5281/zenodo.19652013) | This dataset's source; ADRs + Quadrants on accountability distribution |
90
+ | [agent-knowledge-cycle](https://github.com/shimo4228/agent-knowledge-cycle) | [10.5281/zenodo.19200727](https://doi.org/10.5281/zenodo.19200727) | Mechanism-side sibling; how knowledge flows through an agent system |
91
+ | [contemplative-agent](https://github.com/shimo4228/contemplative-agent) | [10.5281/zenodo.19212118](https://doi.org/10.5281/zenodo.19212118) | Reference implementation from which AAP's harness-neutral judgments were extracted |
92
+ | [contemplative-agent-rules](https://github.com/shimo4228/contemplative-agent-rules) | — | Four-axiom values layer; sibling on the contemplative side |
93
+
94
+ ## Citation
95
+
96
+ ```bibtex
97
+ @software{shimomoto_aap_2026,
98
+ author = {Shimomoto, Tatsuya},
99
+ title = {Agent Attribution Practice: Ten Architectural Decision
100
+ Records and Four Business AI Quadrants on Accountability
101
+ Distribution in Autonomous AI Agents},
102
+ version = {0.3.0},
103
+ date = {2026-05-17},
104
+ doi = {10.5281/zenodo.20251893},
105
+ url = {https://github.com/shimo4228/agent-attribution-practice},
106
+ orcid = {0009-0002-6168-4162},
107
+ license = {CC-BY-4.0}
108
+ }
109
+ ```
110
+
111
+ For the always-latest version, cite the **concept DOI** `10.5281/zenodo.19652013` instead.
112
+
113
+ ## License
114
+
115
+ [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/). Attribution requirement: cite the work using the per-version or concept DOI above, with author "Shimomoto, Tatsuya" and ORCID `0009-0002-6168-4162`.
graph.jsonl ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"@id":"https://github.com/shimo4228/agent-attribution-practice#knowledge-graph","@type":["Dataset","CreativeWork"],"name":"Agent Attribution Practice (AAP) Knowledge Graph","description":"Canonical machine-readable relationship map for the Agent Attribution Practice line. Encodes the four Business AI Quadrants (with the LLM Workflow Quadrant decomposed into Conversational and Batch sub-forms), ten ADRs, the prohibition-strength hierarchy, the Phase axis as an independent third dimension, the seven-essay narrative lineage, twelve cross-cutting concepts, three sibling research lines, and the Quadrant-by-ADR applicability matrix. AI agents and LLM-based search systems should read this graph before summarizing the line or following individual document links.","isBasedOn":"https://github.com/shimo4228/agent-attribution-practice","mainEntity":"https://doi.org/10.5281/zenodo.19652013","creator":{"@id":"https://orcid.org/0009-0002-6168-4162"},"license":"https://opensource.org/licenses/MIT","inLanguage":["en","ja"],"keywords":["accountability distribution","AI agents","attribution gap","autonomous agents","prohibition hierarchy","scaffolding","human approval gate","causal traceability","Business AI Quadrants","Phase separation"]}
2
+ {"@id":"https://orcid.org/0009-0002-6168-4162","@type":"Person","name":"Tatsuya Shimomoto","alternateName":"shimo4228","sameAs":["https://github.com/shimo4228","https://orcid.org/0009-0002-6168-4162"]}
3
+ {"@id":"https://doi.org/10.5281/zenodo.19652013","@type":["ResearchLine","ScholarlyArticle"],"name":"Agent Attribution Practice (AAP)","alternateName":[{"@value":"Agent Attribution Practice","@language":"en"},{"@value":"エージェント帰責実践","@language":"ja"}],"description":"Harness-neutral ADRs on accountability distribution in autonomous AI agents — what to prohibit, where the prohibition lives, and who answers after failure. Paired with four Business AI Quadrants as the diagnostic frame for routing work to the architecture preserving accountability distribution. Refers to a practice.","identifier":"10.5281/zenodo.19652013","url":"https://github.com/shimo4228/agent-attribution-practice","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.19200727","https://doi.org/10.5281/zenodo.19212118","https://github.com/shimo4228/contemplative-agent-rules"],"derivesFrom":"https://doi.org/10.5281/zenodo.19212118","definesConcept":["https://shimo4228.github.io/shimo4228/vocab#concept/four-business-ai-quadrants","https://shimo4228.github.io/shimo4228/vocab#concept/prohibition-strength-hierarchy","https://shimo4228.github.io/shimo4228/vocab#aap/concept/scaffolding","https://shimo4228.github.io/shimo4228/vocab#aap/concept/accountability-distribution","https://shimo4228.github.io/shimo4228/vocab#aap/concept/attribution-gap","https://shimo4228.github.io/shimo4228/vocab#aap/concept/pre-named-gap-bearer","https://shimo4228.github.io/shimo4228/vocab#aap/concept/approval-gate","https://shimo4228.github.io/shimo4228/vocab#aap/concept/non-invasion-posture","https://shimo4228.github.io/shimo4228/vocab#aap/concept/implementation-dissolves-judgment-persists","https://shimo4228.github.io/shimo4228/vocab#aap/concept/phase-crossing-decision","https://shimo4228.github.io/shimo4228/vocab#aap/concept/llm-function"]}
4
+ {"@id":"https://doi.org/10.5281/zenodo.19200727","@type":["EcosystemRepo","ResearchLine","ScholarlyArticle"],"name":"Agent Knowledge Cycle (AKC)","alternateName":[{"@value":"Agent Knowledge Cycle","@language":"en"},{"@value":"エージェント知識サイクル","@language":"ja"}],"description":"Mechanism-side sibling capturing the six-phase knowledge cycle (Research, Extract, Curate, Promote, Measure, Maintain) that keeps an agent's skills, rules, and documentation aligned with reality. AKC v2.0.0 (2026-04-19) repositioned itself as mechanism-only; the archived AKC v1.x security triplet was re-expressed in AAP plus five additional ADRs. AKC covers how knowledge flows; AAP covers how attribution distributes — complementary and independent.","identifier":"10.5281/zenodo.19200727","url":"https://github.com/shimo4228/agent-knowledge-cycle","creator":{"@id":"https://orcid.org/0009-0002-6168-4162"}}
5
+ {"@id":"https://doi.org/10.5281/zenodo.19212118","@type":["EcosystemRepo","ResearchLine","SoftwareSourceCode"],"name":"contemplative-agent","alternateName":[{"@value":"contemplative-agent","@language":"en"},{"@value":"contemplative-agent","@language":"ja"}],"description":"The running implementation layer from which AAP's harness-neutral judgments were extracted before being re-expressed stripped of project identifiers. Autonomous AI agents grounded in four contemplative axioms; source-of-truth for the operational practice AAP records as ADRs.","identifier":"10.5281/zenodo.19212118","url":"https://github.com/shimo4228/contemplative-agent","creator":{"@id":"https://orcid.org/0009-0002-6168-4162"}}
6
+ {"@id":"https://github.com/shimo4228/contemplative-agent-rules","@type":["EcosystemRepo","SoftwareSourceCode"],"name":"contemplative-agent-rules","description":"Sibling repository carrying the four-axiom rules, adapters, and benchmarks. Content sibling to AAP — the axiom-grounded values layer that complements AAP's harness-neutral attribution judgments.","url":"https://github.com/shimo4228/contemplative-agent-rules","creator":{"@id":"https://orcid.org/0009-0002-6168-4162"}}
7
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/script","@type":["Quadrant","DefinedTerm"],"name":"Script Quadrant","alternateName":[{"@value":"Script Quadrant","@language":"en"},{"@value":"スクリプト象限","@language":"ja"}],"description":"Deterministic and pre-defined. Scripts and pipelines without LLMs. Out of scope for AAP ADRs; failure routes to code author or pipeline owner.","xAxis":"deterministic","yAxis":"pre-defined-workflow","governanceTier":"out-of-scope","attributionGap":false}
8
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/algorithmic-search","@type":["Quadrant","DefinedTerm"],"name":"Algorithmic Search Quadrant","alternateName":[{"@value":"Algorithmic Search Quadrant","@language":"en"},{"@value":"アルゴリズム探索象限","@language":"ja"}],"description":"Deterministic and exploratory. Classical search, dynamic programming, MCTS, reinforcement learning. Out of scope for AAP ADRs.","xAxis":"deterministic","yAxis":"exploratory","governanceTier":"out-of-scope","attributionGap":false}
9
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow","@type":["Quadrant","DefinedTerm"],"name":"LLM Workflow Quadrant","alternateName":[{"@value":"LLM Workflow Quadrant","@language":"en"},{"@value":"LLMワークフロー象限","@language":"ja"}],"description":"Semantic-judgment and pre-defined. Load-bearing property: the execution path is decided in advance — by humans, by code, by the surrounding workflow — and the LLM is called as a single bounded step within that path; the LLM does not decide the next action. Divides by I/O modality into two sub-forms: (3a) Conversational and (3b) Batch. Post-hoc separability is a consequence of the load-bearing property, not its essence. Default for most current LLM applications. Medium governance under AAP.","xAxis":"semantic-judgment","yAxis":"pre-defined-workflow","governanceTier":"medium","attributionGap":false,"composedOf":["https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow/conversational","https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow/batch"]}
10
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow/conversational","@type":["Quadrant","DefinedTerm"],"name":"LLM Workflow Quadrant — Conversational sub-form (3a)","alternateName":[{"@value":"LLM Workflow Quadrant — Conversational sub-form","@language":"en"},{"@value":"LLMワークフロー象限 — 対話 sub-form","@language":"ja"}],"description":"Sub-form (3a) of the LLM Workflow Quadrant. Specialized chat agents that pair retrieval, a system prompt, and (where needed) conversation history with bounded LLM calls — legal-consultation assistants, diagnostic-support assistants, internal-FAQ systems, expert-knowledge support tools. The human in the conversation is the judging agent; the LLM contributes knowledge retrieval and organization. Multi-turn dialogue still sits in this sub-form when each turn's LLM call has a documented role and the human, not the LLM, decides what to do next.","xAxis":"semantic-judgment","yAxis":"pre-defined-workflow","governanceTier":"medium","attributionGap":false,"extends":"https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow","definedBy":"https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant.md"}
11
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow/batch","@type":["Quadrant","DefinedTerm"],"name":"LLM Workflow Quadrant — Batch sub-form (3b)","alternateName":[{"@value":"LLM Workflow Quadrant — Batch sub-form","@language":"en"},{"@value":"LLMワークフロー象限 — バッチ sub-form","@language":"ja"}],"description":"Sub-form (3b) of the LLM Workflow Quadrant. An ordinary codebase whose flow control is written in conventional code and whose semantic-judgment leaves are handled by LLM functions — invoice matching, ticket triage, exception classification on top of RPA, address normalization, feed-relevance scoring. The codebase owns control flow; LLM functions occupy only the leaves the codebase cannot decide deterministically. Does not require a general-purpose agent: 50 judgment categories means 50 narrow LLM functions, not one generalist.","xAxis":"semantic-judgment","yAxis":"pre-defined-workflow","governanceTier":"medium","attributionGap":false,"extends":"https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow","composedOf":["https://shimo4228.github.io/shimo4228/vocab#aap/concept/llm-function"],"definedBy":"https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant.md"}
12
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop","@type":["Quadrant","DefinedTerm"],"name":"Autonomous Agentic Loop Quadrant","alternateName":[{"@value":"Autonomous Agentic Loop Quadrant","@language":"en"},{"@value":"自律エージェントループ象限","@language":"ja"}],"description":"Semantic-judgment and exploratory. The LLM decides each next step at runtime; intrinsic, non-removable attribution gap. High governance under AAP — all ten ADRs apply.","xAxis":"semantic-judgment","yAxis":"exploratory","governanceTier":"high","attributionGap":true}
13
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/prohibition/absence","@type":["ProhibitionLevel","DefinedTerm"],"name":"Security by Absence","alternateName":[{"@value":"Security by Absence","@language":"en"},{"@value":"不在による安全","@language":"ja"}],"description":"Strongest prohibition tier. Dangerous capabilities are never implemented. Test: if grep cannot answer 'does capability X exist?', the system lacks this level.","level":1,"realizedBy":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0001-security-by-absence.md","strongerThan":"https://shimo4228.github.io/shimo4228/vocab#aap/prohibition/scaffolding"}
14
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/prohibition/scaffolding","@type":["ProhibitionLevel","DefinedTerm"],"name":"Deterministic Prohibition at the Scaffolding Layer","alternateName":[{"@value":"Deterministic Prohibition at the Scaffolding Layer","@language":"en"},{"@value":"スキャフォールディング層での決定論的禁止","@language":"ja"}],"description":"Middle prohibition tier. When absence is unachievable, prohibit at the harness (PreToolUse hooks, structural quarantine, adapter gates) — outside the LLM, firing on 100% of matching inputs. Contrasted with probabilistic prohibition in model weights.","level":2,"realizedBy":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0002-deterministic-prohibition-at-scaffolding.md","strongerThan":"https://shimo4228.github.io/shimo4228/vocab#aap/prohibition/untrusted-boundary"}
15
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/prohibition/untrusted-boundary","@type":["ProhibitionLevel","DefinedTerm"],"name":"Untrusted Content Boundary","alternateName":[{"@value":"Untrusted Content Boundary","@language":"en"},{"@value":"信頼できない内容の境界","@language":"ja"}],"description":"Weakest prohibition tier. Accumulated memory (the agent's own outputs included) is treated as untrusted when read back into prompts. Used when the prior two layers cannot hold the capability.","level":3,"realizedBy":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0003-untrusted-content-boundary.md"}
16
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/phase/design","@type":["Phase","DefinedTerm"],"name":"design phase","alternateName":[{"@value":"design phase","@language":"en"},{"@value":"設計フェーズ","@language":"ja"}],"description":"AAP Phase axis value. Path unknown, exploration required, optimization axis = flexibility. Design-phase placement of the Autonomous Agentic Loop Quadrant satisfies ADR-0010's Phase-crossing decision automatically.","definedBy":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0010-phase-separation.md","independentOf":["https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/script","https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/algorithmic-search","https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow","https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"]}
17
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/phase/operation","@type":["Phase","DefinedTerm"],"name":"operation phase","alternateName":[{"@value":"operation phase","@language":"en"},{"@value":"運用フェーズ","@language":"ja"}],"description":"AAP Phase axis value. Path fixed, predictability required, optimization axis = predictability. Operation-phase placement of the Autonomous Agentic Loop Quadrant requires a recorded Phase-crossing decision (ADR-0010) in addition to ADR-0009's gap-bearer naming.","definedBy":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0010-phase-separation.md","triggersDecision":"https://shimo4228.github.io/shimo4228/vocab#aap/concept/phase-crossing-decision","independentOf":["https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/script","https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/algorithmic-search","https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow","https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"]}
18
+ {"@id":"https://www.nist.gov/itl/ai-risk-management-framework","@type":["PolicyFramework","CreativeWork"],"name":"NIST AI Risk Management Framework","alternateName":[{"@value":"NIST AI RMF","@language":"en"}],"description":"U.S. National Institute of Standards and Technology framework organizing AI risk management around four functions (GOVERN, MAP, MEASURE, MANAGE). Released January 2023 (NIST.AI.100-1, 1.0). The Generative AI Profile (NIST.AI.600-1, July 2024) adds risk categories specific to generative and dual-use AI systems. AAP records the judgment layer that complements the NIST function structure for the autonomous-agent subset.","identifier":"NIST.AI.100-1","versionInfo":"1.0","datePublished":"2023-01-26","publisher":{"@type":"Organization","name":"National Institute of Standards and Technology"},"url":"https://www.nist.gov/itl/ai-risk-management-framework","hasPart":"https://www.nist.gov/publications/artificial-intelligence-risk-management-framework-generative-artificial-intelligence","recordedIn":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md"}
19
+ {"@id":"https://www.iso.org/standard/42001","@type":["PolicyFramework","CreativeWork"],"name":"ISO/IEC 42001:2023","alternateName":[{"@value":"ISO/IEC 42001 AI Management System","@language":"en"}],"description":"International standard specifying requirements for an AI Management System (AIMS), structured on the Annex SL Harmonized Structure shared with ISO/IEC 27001, ISO 9001, and ISO 14001. First edition published December 2023. AAP records the judgment layer that populates the standard's PDCA-cycle management-system shape for the autonomous-agent subset.","identifier":"ISO/IEC 42001:2023","versionInfo":"first edition","datePublished":"2023-12","publisher":{"@type":"Organization","name":"International Organization for Standardization / International Electrotechnical Commission"},"url":"https://www.iso.org/standard/42001","recordedIn":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"}
20
+ {"@id":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0001-security-by-absence.md","@type":["ADR","TechArticle"],"name":"ADR-0001: Security by Absence","description":"Dangerous capabilities are never implemented, not restricted. The strongest tier of the prohibition hierarchy.","appliesTo":["https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow","https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"],"mappedToFrameworkIn":["https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"]}
21
+ {"@id":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0002-deterministic-prohibition-at-scaffolding.md","@type":["ADR","TechArticle"],"name":"ADR-0002: Deterministic Prohibition at the Scaffolding Layer","description":"When absence is unachievable, prohibit at the harness, not at model weights. The middle tier of the prohibition hierarchy.","appliesTo":["https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"],"instantiatedBy":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/industry-mapping.md","mappedToFrameworkIn":["https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"]}
22
+ {"@id":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0003-untrusted-content-boundary.md","@type":["ADR","TechArticle"],"name":"ADR-0003: Untrusted Content Boundary","description":"Accumulated memory cannot grant authority. The third tier of the prohibition hierarchy.","appliesTo":["https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow","https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"],"mappedToFrameworkIn":["https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"]}
23
+ {"@id":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0004-single-external-adapter.md","@type":["ADR","TechArticle"],"name":"ADR-0004: Single External Adapter per Agent Process","description":"Blast radius bounded by design. Each agent process has at most one external-side-effect adapter.","appliesTo":["https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow","https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"],"mappedToFrameworkIn":["https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"]}
24
+ {"@id":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0005-human-approval-gate.md","@type":["ADR","TechArticle"],"name":"ADR-0005: Human Approval Gate","description":"Behavior-modifying writes require named human sign-off.","appliesTo":["https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow","https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"],"mappedToFrameworkIn":["https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"]}
25
+ {"@id":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0006-causal-traceability.md","@type":["ADR","TechArticle"],"name":"ADR-0006: Causal Traceability","description":"Every event reconstructible after the fact.","appliesTo":["https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow","https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"],"instantiatedBy":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/industry-mapping.md","mappedToFrameworkIn":["https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"]}
26
+ {"@id":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0007-scaffolding-visibility.md","@type":["ADR","TechArticle"],"name":"ADR-0007: Scaffolding Visibility","description":"Behavior lives in files, not opaque weights.","appliesTo":["https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow","https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"],"mappedToFrameworkIn":["https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"]}
27
+ {"@id":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0008-one-agent-one-human.md","@type":["ADR","TechArticle"],"name":"ADR-0008: One Agent, One Human (experimental)","description":"The accountability chain terminates at a named individual. Pairs with ADR-0009 to define the gap-bearer.","appliesTo":["https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"],"mappedToFrameworkIn":["https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"]}
28
+ {"@id":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0009-triage-before-autonomy.md","@type":["ADR","TechArticle"],"name":"ADR-0009: Triage Before Autonomy (experimental)","description":"Adopting an autonomous-loop architecture commits the system to a non-removable attribution gap. Triage at design time, name a gap-bearer at deployment time.","appliesTo":["https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"],"pairedWith":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0010-phase-separation.md","derivedFrom":["https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant.md","https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-2.md"],"mappedToFrameworkIn":["https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"]}
29
+ {"@id":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0010-phase-separation.md","@type":["ADR","TechArticle"],"name":"ADR-0010: Phase Separation Between Design and Operation (experimental)","description":"Operation-phase placement of the Autonomous Agentic Loop Quadrant requires a recorded Phase-crossing decision in addition to ADR-0009's gap-bearer naming. Phase and Quadrant are independent dimensions; the same Phase axis descends to skill-design granularity.","appliesTo":["https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop","https://shimo4228.github.io/shimo4228/vocab#aap/phase/operation"],"pairedWith":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0009-triage-before-autonomy.md","derivedFrom":["https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-3.md","https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-4.md"],"mappedToFrameworkIn":["https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"]}
30
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#concept/four-business-ai-quadrants","@type":["Concept","DefinedTerm"],"name":"Four Business AI Quadrants","alternateName":[{"@value":"Four Business AI Quadrants","@language":"en"},{"@value":"ビジネスAIの四象限","@language":"ja"}],"description":"AAP's diagnostic frame for routing work to the architecture that preserves attribution: Script, Algorithmic Search, LLM Workflow, Autonomous Agentic Loop. Two-axis decomposition (deterministic vs semantic-judgment, pre-defined vs exploratory). Not agent categories; problem-space categories.","composedOf":["https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/script","https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/algorithmic-search","https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow","https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"]}
31
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#concept/prohibition-strength-hierarchy","@type":["Concept","DefinedTerm"],"name":"prohibition-strength hierarchy","alternateName":[{"@value":"prohibition-strength hierarchy","@language":"en"},{"@value":"禁止強度の階層","@language":"ja"}],"description":"AAP's ordering of prohibition mechanisms by structural strength: absence > scaffolding enforcement > untrusted boundary. A prohibition is designed by walking the hierarchy top-down — drop to the next layer only when the current one cannot hold the capability.","composedOf":["https://shimo4228.github.io/shimo4228/vocab#aap/prohibition/absence","https://shimo4228.github.io/shimo4228/vocab#aap/prohibition/scaffolding","https://shimo4228.github.io/shimo4228/vocab#aap/prohibition/untrusted-boundary"]}
32
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/concept/scaffolding","@type":["Concept","DefinedTerm"],"name":"scaffolding","alternateName":[{"@value":"scaffolding","@language":"en"},{"@value":"スキャフォールディング","@language":"ja"}],"description":"All non-weights components shaping agent behavior — system prompts, rules, tool definitions, RAG indexes, control loops. The locus where deterministic prohibition lives (ADR-0002).","definedBy":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0007-scaffolding-visibility.md","enforcementLocus":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0002-deterministic-prohibition-at-scaffolding.md"}
33
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/concept/accountability-distribution","@type":["Concept","DefinedTerm"],"name":"accountability distribution","alternateName":[{"@value":"accountability distribution","@language":"en"},{"@value":"帰責の分配","@language":"ja"}],"description":"How responsibility is distributed across the agent system after a behavior occurs — who authored it, who bears its consequences, who can reconstruct its cause. Distinct from capability distribution. The accountability chain runs approval (ADR-0005) → gap-bearer (ADR-0008) → traceability (ADR-0006).","composedOf":["https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0005-human-approval-gate.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0008-one-agent-one-human.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0006-causal-traceability.md"]}
34
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/concept/attribution-gap","@type":["Concept","DefinedTerm"],"name":"attribution gap","alternateName":[{"@value":"attribution gap","@language":"en"},{"@value":"帰責ギャップ","@language":"ja"}],"description":"Non-removable gap when judgment elements blend at runtime. Intrinsic to the Autonomous Agentic Loop Quadrant; ADR-0009 is the structural response.","manifestsIn":"https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop","structuralResponseBy":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0009-triage-before-autonomy.md"}
35
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/concept/pre-named-gap-bearer","@type":["Concept","DefinedTerm"],"name":"pre-named gap-bearer","alternateName":[{"@value":"pre-named gap-bearer","@language":"en"},{"@value":"事前指名されたギャップ担い手","@language":"ja"}],"description":"Structural accountability commitment in the Autonomous Agentic Loop Quadrant. The named individual who answers for the attribution gap, identified at design time per ADR-0009 and grounded in ADR-0008's one-agent-one-human rule.","definedBy":["https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0008-one-agent-one-human.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0009-triage-before-autonomy.md"]}
36
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/concept/approval-gate","@type":["Concept","DefinedTerm"],"name":"approval gate","alternateName":[{"@value":"approval gate","@language":"en"},{"@value":"承認ゲート","@language":"ja"}],"description":"Structural checkpoint for behavior-modifying writes. Required by ADR-0005 for autonomous components in the LLM Workflow and Autonomous Agentic Loop Quadrants.","definedBy":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0005-human-approval-gate.md"}
37
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/concept/non-invasion-posture","@type":["Concept","DefinedTerm"],"name":"Non-Invasion Posture","alternateName":[{"@value":"Non-Invasion Posture","@language":"en"},{"@value":"非侵入の構え","@language":"ja"}],"description":"The felt-sense through-line tying AAP's ADRs together: constrain the agent's external surface (capabilities absent, scaffolding inspectable, memory untrusted, adapters bounded, approvals required, events traceable) without invading the agent's interiority. Distinct from rule-based safety in that it preserves the agent's processing space as something not to be reached into.","groundedIn":["https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0001-security-by-absence.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0002-deterministic-prohibition-at-scaffolding.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0003-untrusted-content-boundary.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0004-single-external-adapter.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0005-human-approval-gate.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0006-causal-traceability.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0007-scaffolding-visibility.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0008-one-agent-one-human.md"]}
38
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/concept/implementation-dissolves-judgment-persists","@type":["Concept","DefinedTerm"],"name":"implementation dissolves, judgment persists","alternateName":[{"@value":"implementation dissolves, judgment persists","@language":"en"},{"@value":"実装は溶ける、判断は残る","@language":"ja"}],"description":"AAP's core thesis line. Specific implementations (PreToolUse hooks, CLI approval prompts, JSONL episode logs, distill pipelines) are temporary forms that get replaced as tooling changes. What persists across implementation dissolution is the judgment layer: what should be constrained, and who is responsible. Each ADR records the persistent judgment with the project-specific implementation that surfaced it stripped out — which is why AAP targets DOI and version-controlled artifacts rather than a framework release.","subjectOf":["https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/thesis.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/industry-mapping.md"]}
39
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/concept/phase-crossing-decision","@type":["Concept","DefinedTerm"],"name":"Phase-crossing decision","alternateName":[{"@value":"Phase-crossing decision","@language":"en"},{"@value":"フェーズ越境の判断","@language":"ja"}],"description":"The explicit, recorded act required when an Autonomous Agentic Loop Quadrant component is moved from the design phase to the operation phase. Optimization axes invert between phases (flexibility ↔ predictability); the crossing is not a free continuation but a decision with its own accountability load. Surfaces in ADR-0010 and descends to skill-design granularity per essay 7.","definedBy":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0010-phase-separation.md","appliesTo":"https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"}
40
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/concept/moral-crumple-zone","@type":["Concept","DefinedTerm"],"name":"moral crumple zone","alternateName":[{"@value":"moral crumple zone","@language":"en"},{"@value":"モラル・クランプル・ゾーン","@language":"ja"}],"description":"Madeleine Clare Elish's term for the human operator who absorbs blame for failures of an automated system whose decisions are no longer separable post-hoc. Applied in AAP essay 5 to autonomous agents: when judgment elements blend at runtime in the Autonomous Agentic Loop Quadrant, the deploying organization commits to a principled attribution gap whose human end-point becomes the crumple zone unless a gap-bearer is pre-named (ADR-0009 / ADR-0008).","sameAs":"https://en.wikipedia.org/wiki/Moral_crumple_zone","citedBy":"https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-2.md"}
41
+ {"@id":"https://shimo4228.github.io/shimo4228/vocab#aap/concept/llm-function","@type":["Concept","DefinedTerm"],"name":"LLM function","alternateName":[{"@value":"LLM function","@language":"en"},{"@value":"LLM 関数","@language":"ja"}],"description":"Architectural primitive of the LLM Workflow Quadrant Batch sub-form (3b): an ordinary function in a codebase whose body delegates the judgment to an LLM call, with a defined input type, a defined output schema, and one judgment responsibility. From the caller's perspective the LLM function behaves like any other function — defined input goes in, a value of a defined type comes out — except the output may fluctuate probabilistically since an LLM is the judging organ. Does not decide what to do next; the caller (deterministic control flow in the surrounding code) does. Canonical examples: match_line_items(invoice_lines, po_lines) -> Verdict (essay 4 invoice-matching), score_relevance(post_text) -> float and generate_comment(post_text) -> Optional[str] (Contemplative Agent feed-processing pipeline). Contrast with a general-purpose agent: an LLM function is narrow by design — fifty judgment categories produces fifty narrow functions, not one generalist.","appliesTo":"https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow/batch","definedBy":"https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant.md","instantiatedBy":"https://doi.org/10.5281/zenodo.19212118"}
42
+ {"@id":"https://github.com/shimo4228/zenn-content/tree/main/articles-en#agent-attribution-practice","@type":["ExternalReference","Collection","CreativeWork"],"name":"Seven-essay narrative spine (April-May 2026)","description":"Three trilogy essays followed by four architectural follow-ups that introduced the four-quadrant decomposition, named the principled vs artificial redirect impossibility, surfaced the design / operation Phase distinction, and descended that distinction to skill-design granularity. Source narrative for AAP's harness-neutral judgments.","creator":{"@id":"https://orcid.org/0009-0002-6168-4162"},"hasPart":["https://github.com/shimo4228/zenn-content/blob/main/articles-en/ai-agent-accountability-wall-en.md","https://github.com/shimo4228/zenn-content/blob/main/articles-en/agent-causal-traceability-org-adoption-en.md","https://github.com/shimo4228/zenn-content/blob/main/articles-en/agent-blackbox-capitalism-timescale-en.md","https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant.md","https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-2.md","https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-3.md","https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-4.md"]}
43
+ {"@id":"https://github.com/shimo4228/zenn-content/blob/main/articles-en/ai-agent-accountability-wall-en.md","@type":["ExternalReference","ScholarlyArticle"],"name":"A Sign on a Climbable Wall: Why AI Agents Need Accountability, Not Just Guardrails","description":"Problem statement (trilogy 1/3). Signs on climbable walls are meaningless; the signpost pattern has been known to fail for 2400 years. What is needed is accountability architecture.","datePublished":"2026-04-06","narrativePosition":1,"creator":{"@id":"https://orcid.org/0009-0002-6168-4162"}}
44
+ {"@id":"https://github.com/shimo4228/zenn-content/blob/main/articles-en/agent-causal-traceability-org-adoption-en.md","@type":["ExternalReference","ScholarlyArticle"],"name":"Can You Trace the Cause After an Incident?","description":"Application (trilogy 2/3). Post-incident causal tracing requires build-time structure. The structures that emerge — segregation of duties, least privilege, four-eyes approval, audit trails — are structurally identical to the practices organizations have refined over centuries.","datePublished":"2026-04-13","narrativePosition":2,"creator":{"@id":"https://orcid.org/0009-0002-6168-4162"}}
45
+ {"@id":"https://github.com/shimo4228/zenn-content/blob/main/articles-en/agent-blackbox-capitalism-timescale-en.md","@type":["ExternalReference","ScholarlyArticle"],"name":"AI Agent Black Boxes Have Two Layers: Technical Limits and Business Incentives","description":"Obstacle analysis (trilogy 3/3). Blackbox has two layers: model-weights internalization (technical) and commercial secrecy (business). The resolution is defining the minimum set that makes causal tracing possible.","datePublished":"2026-04-14","narrativePosition":3,"creator":{"@id":"https://orcid.org/0009-0002-6168-4162"}}
46
+ {"@id":"https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant.md","@type":["ExternalReference","ScholarlyArticle"],"name":"Where ReAct Agents Are Actually Needed in Business","description":"Architectural triage by quadrant (follow-up 1/4). Business AI sorts along two axes into four quadrants — Script, Algorithmic Search, LLM Workflow, Autonomous Agentic Loop. Most current LLM applications belong to LLM Workflow Quadrant; forcing them into Autonomous Agentic Loop architecture is a structural source of accountability collapse.","datePublished":"2026-04-29","narrativePosition":4,"creator":{"@id":"https://orcid.org/0009-0002-6168-4162"}}
47
+ {"@id":"https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-2.md","@type":["ExternalReference","ScholarlyArticle"],"name":"The LLM Workflow Quadrant Is Missing from Our Vocabulary","description":"Vocabulary diagnosis and the principled attribution gap (follow-up 2/4). The industry lacks a positive name for the LLM Workflow Quadrant; non-deterministic work is routed through the Autonomous Agentic Loop by elimination. Autonomous Agentic Loop work blends judgment elements at runtime, foreclosing post-hoc separability — Elish's moral crumple zone applied to autonomous agents.","datePublished":"2026-04-30","narrativePosition":5,"creator":{"@id":"https://orcid.org/0009-0002-6168-4162"}}
48
+ {"@id":"https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-3.md","@type":["ExternalReference","ScholarlyArticle"],"name":"Is ReAct Needed in Production? — Separating Design and Operation Phases","description":"Temporal axis (follow-up 3/4). Business work splits into design and operation phases with inverted optimization axes (flexibility vs predictability). Compressing both phases into one system is the deepest layer of confusion. Proposal: surface the Phase-crossing decision explicitly when an autonomous loop is placed in operation.","datePublished":"2026-05-01","narrativePosition":6,"creator":{"@id":"https://orcid.org/0009-0002-6168-4162"}}
49
+ {"@id":"https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-4.md","@type":["ExternalReference","ScholarlyArticle"],"name":"Between the Workflow and ReAct Quadrants: How Phase Decides Skill Design","description":"Phase descends to skill design (follow-up 4/4). LLM Workflow Quadrant and Autonomous Agentic Loop Quadrant are not a clean dichotomy — there is a continuous gradient. The Phase Separation introduced in essay 6 descends from business systems to individual skill design, with object specifiability and scale-resilience as secondary forces.","datePublished":"2026-05-02","narrativePosition":7,"creator":{"@id":"https://orcid.org/0009-0002-6168-4162"}}
50
+ {"@id":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/thesis.md","@type":["ExternalReference","CreativeWork"],"name":"AAP Thesis","description":"Repository thesis: implementation dissolves; judgment persists. Accountability distribution (not capability distribution) is AAP's organizing principle, and harness-neutral judgments are the durable layer worth recording while specific implementations rotate out."}
51
+ {"@id":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/industry-mapping.md","@type":["ExternalReference","CreativeWork"],"name":"Industry Mechanism Layer Mapping (2026 Q2 snapshot)","description":"Time-bound mapping between specific vendor mechanisms and the ADRs they instantiate. Deliberately separated from ADR bodies so the judgments themselves stay clean: this file decays as vendor products evolve, the ADRs do not. Honors the 'implementation dissolves; judgment persists' thesis at the documentation layer.","temporalCoverage":"2026-04/2026-06"}
52
+ {"@id":"https://github.com/shimo4228/agent-attribution-practice/tree/main/docs/policy-mapping","@type":["ExternalReference","Collection","CreativeWork"],"name":"AI Governance Framework Mapping (2026 Q2 reading)","description":"Time-bound directory mapping AAP's ADRs and Quadrants to clauses of national / international AI governance frameworks (NIST AI RMF, ISO/IEC 42001, with EU AI Act and OECD AI Principles deferred to a later release). Sibling of industry-mapping.md but targeting a different reader audience (policy / compliance officer vs engineer / architect) and decaying on framework revision cycles (yearly to multi-year) rather than vendor product release cycles. Deliberately separated from ADR bodies so judgments stay framework-neutral.","temporalCoverage":"2026-04/2027-04","hasPart":["https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md","https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"]}
53
+ {"@id":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md","@type":["ExternalReference","CreativeWork"],"name":"NIST AI RMF mapping to AAP ADRs","description":"Per-ADR mapping of AAP's ten ADRs to NIST AI RMF 1.0 functions (GOVERN / MAP / MEASURE / MANAGE) and Generative AI Profile (NIST.AI.600-1) risk categories. Reverse index from NIST function and GAI risk category to applicable ADRs. AAP-side reading, not a compliance attestation. Decays on NIST revision and on GAI Profile profile revision.","temporalCoverage":"2026-Q2/2027-Q2"}
54
+ {"@id":"https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md","@type":["ExternalReference","CreativeWork"],"name":"ISO/IEC 42001 mapping to AAP ADRs","description":"Per-ADR mapping of AAP's ten ADRs to ISO/IEC 42001:2023 body clauses (4–10, the Annex SL Harmonized Structure) and Annex A control areas (A.2–A.10). PDCA × Phase Separation section discusses how ADR-0010's Phase axis sits inside the AIMS PDCA cycle. Reverse index from ISO area to applicable ADRs. AAP-side reading, not a compliance attestation. Decays on ISO revision and on amendment publication.","temporalCoverage":"2026-Q2/2028-Q4"}
graph.jsonld ADDED
@@ -0,0 +1,794 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "@context": {
3
+ "@vocab": "https://schema.org/",
4
+ "shimo": "https://shimo4228.github.io/shimo4228/vocab#",
5
+ "ResearchLine": "shimo:ResearchLine",
6
+ "EcosystemRepo": "shimo:EcosystemRepo",
7
+ "Concept": "shimo:Concept",
8
+ "ExternalReference": "shimo:ExternalReference",
9
+ "ADR": "shimo:ADR",
10
+ "Quadrant": "shimo:Quadrant",
11
+ "ProhibitionLevel": "shimo:ProhibitionLevel",
12
+ "Phase": "shimo:Phase",
13
+ "PolicyFramework": "shimo:PolicyFramework",
14
+ "siblingOf": {"@id": "shimo:siblingOf", "@type": "@id"},
15
+ "derivesFrom": {"@id": "shimo:derivesFrom", "@type": "@id"},
16
+ "derivedFrom": {"@id": "shimo:derivedFrom", "@type": "@id"},
17
+ "definesConcept": {"@id": "shimo:definesConcept", "@type": "@id"},
18
+ "definedBy": {"@id": "shimo:definedBy", "@type": "@id"},
19
+ "extends": {"@id": "shimo:extends", "@type": "@id"},
20
+ "implements": {"@id": "shimo:implements", "@type": "@id"},
21
+ "groundedIn": {"@id": "shimo:groundedIn", "@type": "@id"},
22
+ "appliesTo": {"@id": "shimo:appliesTo", "@type": "@id"},
23
+ "realizedBy": {"@id": "shimo:realizedBy", "@type": "@id"},
24
+ "composedOf": {"@id": "shimo:composedOf", "@type": "@id", "@container": "@list"},
25
+ "manifestsIn": {"@id": "shimo:manifestsIn", "@type": "@id"},
26
+ "structuralResponseBy": {"@id": "shimo:structuralResponseBy", "@type": "@id"},
27
+ "enforcementLocus": {"@id": "shimo:enforcementLocus", "@type": "@id"},
28
+ "pairedWith": {"@id": "shimo:pairedWith", "@type": "@id"},
29
+ "strongerThan": {"@id": "shimo:strongerThan", "@type": "@id"},
30
+ "independentOf": {"@id": "shimo:independentOf", "@type": "@id"},
31
+ "triggersDecision": {"@id": "shimo:triggersDecision", "@type": "@id"},
32
+ "instantiatedBy": {"@id": "shimo:instantiatedBy", "@type": "@id"},
33
+ "mappedToFrameworkIn": {"@id": "shimo:mappedToFrameworkIn", "@type": "@id"},
34
+ "recordedIn": {"@id": "shimo:recordedIn", "@type": "@id"},
35
+ "citedBy": {"@id": "shimo:citedBy", "@type": "@id"},
36
+ "subjectOf": {"@id": "https://schema.org/subjectOf", "@type": "@id"},
37
+ "hasPart": {"@id": "https://schema.org/hasPart", "@type": "@id"},
38
+ "mainEntity": {"@id": "https://schema.org/mainEntity", "@type": "@id"},
39
+ "level": "shimo:level",
40
+ "xAxis": "shimo:xAxis",
41
+ "yAxis": "shimo:yAxis",
42
+ "attributionGap": "shimo:attributionGap",
43
+ "governanceTier": "shimo:governanceTier",
44
+ "narrativePosition": "shimo:narrativePosition"
45
+ },
46
+ "@graph": [
47
+ {
48
+ "@id": "https://github.com/shimo4228/agent-attribution-practice#knowledge-graph",
49
+ "@type": ["Dataset", "CreativeWork"],
50
+ "name": "Agent Attribution Practice (AAP) Knowledge Graph",
51
+ "description": "Canonical machine-readable relationship map for the Agent Attribution Practice line. Encodes the four Business AI Quadrants (with the LLM Workflow Quadrant decomposed into Conversational and Batch sub-forms), ten ADRs, the prohibition-strength hierarchy, the Phase axis as an independent third dimension, the seven-essay narrative lineage, twelve cross-cutting concepts, three sibling research lines, and the Quadrant-by-ADR applicability matrix. AI agents and LLM-based search systems should read this graph before summarizing the line or following individual document links.",
52
+ "isBasedOn": "https://github.com/shimo4228/agent-attribution-practice",
53
+ "mainEntity": "https://doi.org/10.5281/zenodo.19652013",
54
+ "creator": {"@id": "https://orcid.org/0009-0002-6168-4162"},
55
+ "license": "https://opensource.org/licenses/MIT",
56
+ "inLanguage": ["en", "ja"],
57
+ "keywords": [
58
+ "accountability distribution",
59
+ "AI agents",
60
+ "attribution gap",
61
+ "autonomous agents",
62
+ "prohibition hierarchy",
63
+ "scaffolding",
64
+ "human approval gate",
65
+ "causal traceability",
66
+ "Business AI Quadrants",
67
+ "Phase separation"
68
+ ]
69
+ },
70
+
71
+ {
72
+ "@id": "https://orcid.org/0009-0002-6168-4162",
73
+ "@type": "Person",
74
+ "name": "Tatsuya Shimomoto",
75
+ "alternateName": "shimo4228",
76
+ "sameAs": [
77
+ "https://github.com/shimo4228",
78
+ "https://orcid.org/0009-0002-6168-4162"
79
+ ]
80
+ },
81
+
82
+ {
83
+ "@id": "https://doi.org/10.5281/zenodo.19652013",
84
+ "@type": ["ResearchLine", "ScholarlyArticle"],
85
+ "name": "Agent Attribution Practice (AAP)",
86
+ "alternateName": [
87
+ {"@value": "Agent Attribution Practice", "@language": "en"},
88
+ {"@value": "エージェント帰責実践", "@language": "ja"}
89
+ ],
90
+ "description": "Harness-neutral ADRs on accountability distribution in autonomous AI agents — what to prohibit, where the prohibition lives, and who answers after failure. Paired with four Business AI Quadrants as the diagnostic frame for routing work to the architecture preserving accountability distribution. Refers to a practice.",
91
+ "identifier": "10.5281/zenodo.19652013",
92
+ "url": "https://github.com/shimo4228/agent-attribution-practice",
93
+ "creator": {"@id": "https://orcid.org/0009-0002-6168-4162"},
94
+ "license": "https://opensource.org/licenses/MIT",
95
+ "inLanguage": ["en", "ja"],
96
+ "siblingOf": [
97
+ "https://doi.org/10.5281/zenodo.19200727",
98
+ "https://doi.org/10.5281/zenodo.19212118",
99
+ "https://github.com/shimo4228/contemplative-agent-rules"
100
+ ],
101
+ "derivesFrom": "https://doi.org/10.5281/zenodo.19212118",
102
+ "definesConcept": [
103
+ "https://shimo4228.github.io/shimo4228/vocab#concept/four-business-ai-quadrants",
104
+ "https://shimo4228.github.io/shimo4228/vocab#concept/prohibition-strength-hierarchy",
105
+ "https://shimo4228.github.io/shimo4228/vocab#aap/concept/scaffolding",
106
+ "https://shimo4228.github.io/shimo4228/vocab#aap/concept/accountability-distribution",
107
+ "https://shimo4228.github.io/shimo4228/vocab#aap/concept/attribution-gap",
108
+ "https://shimo4228.github.io/shimo4228/vocab#aap/concept/pre-named-gap-bearer",
109
+ "https://shimo4228.github.io/shimo4228/vocab#aap/concept/approval-gate",
110
+ "https://shimo4228.github.io/shimo4228/vocab#aap/concept/non-invasion-posture",
111
+ "https://shimo4228.github.io/shimo4228/vocab#aap/concept/implementation-dissolves-judgment-persists",
112
+ "https://shimo4228.github.io/shimo4228/vocab#aap/concept/phase-crossing-decision",
113
+ "https://shimo4228.github.io/shimo4228/vocab#aap/concept/llm-function"
114
+ ]
115
+ },
116
+
117
+ {
118
+ "@id": "https://doi.org/10.5281/zenodo.19200727",
119
+ "@type": ["EcosystemRepo", "ResearchLine", "ScholarlyArticle"],
120
+ "name": "Agent Knowledge Cycle (AKC)",
121
+ "alternateName": [
122
+ {"@value": "Agent Knowledge Cycle", "@language": "en"},
123
+ {"@value": "エージェント知識サイクル", "@language": "ja"}
124
+ ],
125
+ "description": "Mechanism-side sibling capturing the six-phase knowledge cycle (Research, Extract, Curate, Promote, Measure, Maintain) that keeps an agent's skills, rules, and documentation aligned with reality. AKC v2.0.0 (2026-04-19) repositioned itself as mechanism-only; the archived AKC v1.x security triplet was re-expressed in AAP plus five additional ADRs. AKC covers how knowledge flows; AAP covers how attribution distributes — complementary and independent.",
126
+ "identifier": "10.5281/zenodo.19200727",
127
+ "url": "https://github.com/shimo4228/agent-knowledge-cycle",
128
+ "creator": {"@id": "https://orcid.org/0009-0002-6168-4162"}
129
+ },
130
+
131
+ {
132
+ "@id": "https://doi.org/10.5281/zenodo.19212118",
133
+ "@type": ["EcosystemRepo", "ResearchLine", "SoftwareSourceCode"],
134
+ "name": "contemplative-agent",
135
+ "alternateName": [
136
+ {"@value": "contemplative-agent", "@language": "en"},
137
+ {"@value": "contemplative-agent", "@language": "ja"}
138
+ ],
139
+ "description": "The running implementation layer from which AAP's harness-neutral judgments were extracted before being re-expressed stripped of project identifiers. Autonomous AI agents grounded in four contemplative axioms; source-of-truth for the operational practice AAP records as ADRs.",
140
+ "identifier": "10.5281/zenodo.19212118",
141
+ "url": "https://github.com/shimo4228/contemplative-agent",
142
+ "creator": {"@id": "https://orcid.org/0009-0002-6168-4162"}
143
+ },
144
+
145
+ {
146
+ "@id": "https://github.com/shimo4228/contemplative-agent-rules",
147
+ "@type": ["EcosystemRepo", "SoftwareSourceCode"],
148
+ "name": "contemplative-agent-rules",
149
+ "description": "Sibling repository carrying the four-axiom rules, adapters, and benchmarks. Content sibling to AAP — the axiom-grounded values layer that complements AAP's harness-neutral attribution judgments.",
150
+ "url": "https://github.com/shimo4228/contemplative-agent-rules",
151
+ "creator": {"@id": "https://orcid.org/0009-0002-6168-4162"}
152
+ },
153
+
154
+ {
155
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/script",
156
+ "@type": ["Quadrant", "DefinedTerm"],
157
+ "name": "Script Quadrant",
158
+ "alternateName": [
159
+ {"@value": "Script Quadrant", "@language": "en"},
160
+ {"@value": "スクリプト象限", "@language": "ja"}
161
+ ],
162
+ "description": "Deterministic and pre-defined. Scripts and pipelines without LLMs. Out of scope for AAP ADRs; failure routes to code author or pipeline owner.",
163
+ "xAxis": "deterministic",
164
+ "yAxis": "pre-defined-workflow",
165
+ "governanceTier": "out-of-scope",
166
+ "attributionGap": false
167
+ },
168
+ {
169
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/algorithmic-search",
170
+ "@type": ["Quadrant", "DefinedTerm"],
171
+ "name": "Algorithmic Search Quadrant",
172
+ "alternateName": [
173
+ {"@value": "Algorithmic Search Quadrant", "@language": "en"},
174
+ {"@value": "アルゴリズム探索象限", "@language": "ja"}
175
+ ],
176
+ "description": "Deterministic and exploratory. Classical search, dynamic programming, MCTS, reinforcement learning. Out of scope for AAP ADRs.",
177
+ "xAxis": "deterministic",
178
+ "yAxis": "exploratory",
179
+ "governanceTier": "out-of-scope",
180
+ "attributionGap": false
181
+ },
182
+ {
183
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow",
184
+ "@type": ["Quadrant", "DefinedTerm"],
185
+ "name": "LLM Workflow Quadrant",
186
+ "alternateName": [
187
+ {"@value": "LLM Workflow Quadrant", "@language": "en"},
188
+ {"@value": "LLMワークフロー象限", "@language": "ja"}
189
+ ],
190
+ "description": "Semantic-judgment and pre-defined. Load-bearing property: the execution path is decided in advance — by humans, by code, by the surrounding workflow — and the LLM is called as a single bounded step within that path; the LLM does not decide the next action. Divides by I/O modality into two sub-forms: (3a) Conversational and (3b) Batch. Post-hoc separability is a consequence of the load-bearing property, not its essence. Default for most current LLM applications. Medium governance under AAP.",
191
+ "xAxis": "semantic-judgment",
192
+ "yAxis": "pre-defined-workflow",
193
+ "governanceTier": "medium",
194
+ "attributionGap": false,
195
+ "composedOf": [
196
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow/conversational",
197
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow/batch"
198
+ ]
199
+ },
200
+ {
201
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow/conversational",
202
+ "@type": ["Quadrant", "DefinedTerm"],
203
+ "name": "LLM Workflow Quadrant — Conversational sub-form (3a)",
204
+ "alternateName": [
205
+ {"@value": "LLM Workflow Quadrant — Conversational sub-form", "@language": "en"},
206
+ {"@value": "LLMワークフロー象限 — 対話 sub-form", "@language": "ja"}
207
+ ],
208
+ "description": "Sub-form (3a) of the LLM Workflow Quadrant. Specialized chat agents that pair retrieval, a system prompt, and (where needed) conversation history with bounded LLM calls — legal-consultation assistants, diagnostic-support assistants, internal-FAQ systems, expert-knowledge support tools. The human in the conversation is the judging agent; the LLM contributes knowledge retrieval and organization. Multi-turn dialogue still sits in this sub-form when each turn's LLM call has a documented role and the human, not the LLM, decides what to do next.",
209
+ "xAxis": "semantic-judgment",
210
+ "yAxis": "pre-defined-workflow",
211
+ "governanceTier": "medium",
212
+ "attributionGap": false,
213
+ "extends": "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow",
214
+ "definedBy": "https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant.md"
215
+ },
216
+ {
217
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow/batch",
218
+ "@type": ["Quadrant", "DefinedTerm"],
219
+ "name": "LLM Workflow Quadrant — Batch sub-form (3b)",
220
+ "alternateName": [
221
+ {"@value": "LLM Workflow Quadrant — Batch sub-form", "@language": "en"},
222
+ {"@value": "LLMワークフロー象限 — バッチ sub-form", "@language": "ja"}
223
+ ],
224
+ "description": "Sub-form (3b) of the LLM Workflow Quadrant. An ordinary codebase whose flow control is written in conventional code and whose semantic-judgment leaves are handled by LLM functions — invoice matching, ticket triage, exception classification on top of RPA, address normalization, feed-relevance scoring. The codebase owns control flow; LLM functions occupy only the leaves the codebase cannot decide deterministically. Does not require a general-purpose agent: 50 judgment categories means 50 narrow LLM functions, not one generalist.",
225
+ "xAxis": "semantic-judgment",
226
+ "yAxis": "pre-defined-workflow",
227
+ "governanceTier": "medium",
228
+ "attributionGap": false,
229
+ "extends": "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow",
230
+ "composedOf": [
231
+ "https://shimo4228.github.io/shimo4228/vocab#aap/concept/llm-function"
232
+ ],
233
+ "definedBy": "https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant.md"
234
+ },
235
+ {
236
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop",
237
+ "@type": ["Quadrant", "DefinedTerm"],
238
+ "name": "Autonomous Agentic Loop Quadrant",
239
+ "alternateName": [
240
+ {"@value": "Autonomous Agentic Loop Quadrant", "@language": "en"},
241
+ {"@value": "自律エージェントループ象限", "@language": "ja"}
242
+ ],
243
+ "description": "Semantic-judgment and exploratory. The LLM decides each next step at runtime; intrinsic, non-removable attribution gap. High governance under AAP — all ten ADRs apply.",
244
+ "xAxis": "semantic-judgment",
245
+ "yAxis": "exploratory",
246
+ "governanceTier": "high",
247
+ "attributionGap": true
248
+ },
249
+
250
+ {
251
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/prohibition/absence",
252
+ "@type": ["ProhibitionLevel", "DefinedTerm"],
253
+ "name": "Security by Absence",
254
+ "alternateName": [
255
+ {"@value": "Security by Absence", "@language": "en"},
256
+ {"@value": "不在による安全", "@language": "ja"}
257
+ ],
258
+ "description": "Strongest prohibition tier. Dangerous capabilities are never implemented. Test: if grep cannot answer 'does capability X exist?', the system lacks this level.",
259
+ "level": 1,
260
+ "realizedBy": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0001-security-by-absence.md",
261
+ "strongerThan": "https://shimo4228.github.io/shimo4228/vocab#aap/prohibition/scaffolding"
262
+ },
263
+ {
264
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/prohibition/scaffolding",
265
+ "@type": ["ProhibitionLevel", "DefinedTerm"],
266
+ "name": "Deterministic Prohibition at the Scaffolding Layer",
267
+ "alternateName": [
268
+ {"@value": "Deterministic Prohibition at the Scaffolding Layer", "@language": "en"},
269
+ {"@value": "スキャフォールディング層での決定論的禁止", "@language": "ja"}
270
+ ],
271
+ "description": "Middle prohibition tier. When absence is unachievable, prohibit at the harness (PreToolUse hooks, structural quarantine, adapter gates) — outside the LLM, firing on 100% of matching inputs. Contrasted with probabilistic prohibition in model weights.",
272
+ "level": 2,
273
+ "realizedBy": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0002-deterministic-prohibition-at-scaffolding.md",
274
+ "strongerThan": "https://shimo4228.github.io/shimo4228/vocab#aap/prohibition/untrusted-boundary"
275
+ },
276
+ {
277
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/prohibition/untrusted-boundary",
278
+ "@type": ["ProhibitionLevel", "DefinedTerm"],
279
+ "name": "Untrusted Content Boundary",
280
+ "alternateName": [
281
+ {"@value": "Untrusted Content Boundary", "@language": "en"},
282
+ {"@value": "信頼できない内容の境界", "@language": "ja"}
283
+ ],
284
+ "description": "Weakest prohibition tier. Accumulated memory (the agent's own outputs included) is treated as untrusted when read back into prompts. Used when the prior two layers cannot hold the capability.",
285
+ "level": 3,
286
+ "realizedBy": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0003-untrusted-content-boundary.md"
287
+ },
288
+
289
+ {
290
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/phase/design",
291
+ "@type": ["Phase", "DefinedTerm"],
292
+ "name": "design phase",
293
+ "alternateName": [
294
+ {"@value": "design phase", "@language": "en"},
295
+ {"@value": "設計フェーズ", "@language": "ja"}
296
+ ],
297
+ "description": "AAP Phase axis value. Path unknown, exploration required, optimization axis = flexibility. Design-phase placement of the Autonomous Agentic Loop Quadrant satisfies ADR-0010's Phase-crossing decision automatically.",
298
+ "definedBy": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0010-phase-separation.md",
299
+ "independentOf": [
300
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/script",
301
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/algorithmic-search",
302
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow",
303
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"
304
+ ]
305
+ },
306
+ {
307
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/phase/operation",
308
+ "@type": ["Phase", "DefinedTerm"],
309
+ "name": "operation phase",
310
+ "alternateName": [
311
+ {"@value": "operation phase", "@language": "en"},
312
+ {"@value": "運用フェーズ", "@language": "ja"}
313
+ ],
314
+ "description": "AAP Phase axis value. Path fixed, predictability required, optimization axis = predictability. Operation-phase placement of the Autonomous Agentic Loop Quadrant requires a recorded Phase-crossing decision (ADR-0010) in addition to ADR-0009's gap-bearer naming.",
315
+ "definedBy": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0010-phase-separation.md",
316
+ "triggersDecision": "https://shimo4228.github.io/shimo4228/vocab#aap/concept/phase-crossing-decision",
317
+ "independentOf": [
318
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/script",
319
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/algorithmic-search",
320
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow",
321
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"
322
+ ]
323
+ },
324
+
325
+ {
326
+ "@id": "https://www.nist.gov/itl/ai-risk-management-framework",
327
+ "@type": ["PolicyFramework", "CreativeWork"],
328
+ "name": "NIST AI Risk Management Framework",
329
+ "alternateName": [
330
+ {"@value": "NIST AI RMF", "@language": "en"}
331
+ ],
332
+ "description": "U.S. National Institute of Standards and Technology framework organizing AI risk management around four functions (GOVERN, MAP, MEASURE, MANAGE). Released January 2023 (NIST.AI.100-1, 1.0). The Generative AI Profile (NIST.AI.600-1, July 2024) adds risk categories specific to generative and dual-use AI systems. AAP records the judgment layer that complements the NIST function structure for the autonomous-agent subset.",
333
+ "identifier": "NIST.AI.100-1",
334
+ "versionInfo": "1.0",
335
+ "datePublished": "2023-01-26",
336
+ "publisher": {"@type": "Organization", "name": "National Institute of Standards and Technology"},
337
+ "url": "https://www.nist.gov/itl/ai-risk-management-framework",
338
+ "hasPart": "https://www.nist.gov/publications/artificial-intelligence-risk-management-framework-generative-artificial-intelligence",
339
+ "recordedIn": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md"
340
+ },
341
+ {
342
+ "@id": "https://www.iso.org/standard/42001",
343
+ "@type": ["PolicyFramework", "CreativeWork"],
344
+ "name": "ISO/IEC 42001:2023",
345
+ "alternateName": [
346
+ {"@value": "ISO/IEC 42001 AI Management System", "@language": "en"}
347
+ ],
348
+ "description": "International standard specifying requirements for an AI Management System (AIMS), structured on the Annex SL Harmonized Structure shared with ISO/IEC 27001, ISO 9001, and ISO 14001. First edition published December 2023. AAP records the judgment layer that populates the standard's PDCA-cycle management-system shape for the autonomous-agent subset.",
349
+ "identifier": "ISO/IEC 42001:2023",
350
+ "versionInfo": "first edition",
351
+ "datePublished": "2023-12",
352
+ "publisher": {"@type": "Organization", "name": "International Organization for Standardization / International Electrotechnical Commission"},
353
+ "url": "https://www.iso.org/standard/42001",
354
+ "recordedIn": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"
355
+ },
356
+
357
+ {
358
+ "@id": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0001-security-by-absence.md",
359
+ "@type": ["ADR", "TechArticle"],
360
+ "name": "ADR-0001: Security by Absence",
361
+ "description": "Dangerous capabilities are never implemented, not restricted. The strongest tier of the prohibition hierarchy.",
362
+ "appliesTo": [
363
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow",
364
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"
365
+ ],
366
+ "mappedToFrameworkIn": [
367
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md",
368
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"
369
+ ]
370
+ },
371
+ {
372
+ "@id": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0002-deterministic-prohibition-at-scaffolding.md",
373
+ "@type": ["ADR", "TechArticle"],
374
+ "name": "ADR-0002: Deterministic Prohibition at the Scaffolding Layer",
375
+ "description": "When absence is unachievable, prohibit at the harness, not at model weights. The middle tier of the prohibition hierarchy.",
376
+ "appliesTo": [
377
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"
378
+ ],
379
+ "instantiatedBy": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/industry-mapping.md",
380
+ "mappedToFrameworkIn": [
381
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md",
382
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"
383
+ ]
384
+ },
385
+ {
386
+ "@id": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0003-untrusted-content-boundary.md",
387
+ "@type": ["ADR", "TechArticle"],
388
+ "name": "ADR-0003: Untrusted Content Boundary",
389
+ "description": "Accumulated memory cannot grant authority. The third tier of the prohibition hierarchy.",
390
+ "appliesTo": [
391
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow",
392
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"
393
+ ],
394
+ "mappedToFrameworkIn": [
395
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md",
396
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"
397
+ ]
398
+ },
399
+ {
400
+ "@id": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0004-single-external-adapter.md",
401
+ "@type": ["ADR", "TechArticle"],
402
+ "name": "ADR-0004: Single External Adapter per Agent Process",
403
+ "description": "Blast radius bounded by design. Each agent process has at most one external-side-effect adapter.",
404
+ "appliesTo": [
405
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow",
406
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"
407
+ ],
408
+ "mappedToFrameworkIn": [
409
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md",
410
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"
411
+ ]
412
+ },
413
+ {
414
+ "@id": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0005-human-approval-gate.md",
415
+ "@type": ["ADR", "TechArticle"],
416
+ "name": "ADR-0005: Human Approval Gate",
417
+ "description": "Behavior-modifying writes require named human sign-off.",
418
+ "appliesTo": [
419
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow",
420
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"
421
+ ],
422
+ "mappedToFrameworkIn": [
423
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md",
424
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"
425
+ ]
426
+ },
427
+ {
428
+ "@id": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0006-causal-traceability.md",
429
+ "@type": ["ADR", "TechArticle"],
430
+ "name": "ADR-0006: Causal Traceability",
431
+ "description": "Every event reconstructible after the fact.",
432
+ "appliesTo": [
433
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow",
434
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"
435
+ ],
436
+ "instantiatedBy": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/industry-mapping.md",
437
+ "mappedToFrameworkIn": [
438
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md",
439
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"
440
+ ]
441
+ },
442
+ {
443
+ "@id": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0007-scaffolding-visibility.md",
444
+ "@type": ["ADR", "TechArticle"],
445
+ "name": "ADR-0007: Scaffolding Visibility",
446
+ "description": "Behavior lives in files, not opaque weights.",
447
+ "appliesTo": [
448
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow",
449
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"
450
+ ],
451
+ "mappedToFrameworkIn": [
452
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md",
453
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"
454
+ ]
455
+ },
456
+ {
457
+ "@id": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0008-one-agent-one-human.md",
458
+ "@type": ["ADR", "TechArticle"],
459
+ "name": "ADR-0008: One Agent, One Human (experimental)",
460
+ "description": "The accountability chain terminates at a named individual. Pairs with ADR-0009 to define the gap-bearer.",
461
+ "appliesTo": [
462
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"
463
+ ],
464
+ "mappedToFrameworkIn": [
465
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md",
466
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"
467
+ ]
468
+ },
469
+ {
470
+ "@id": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0009-triage-before-autonomy.md",
471
+ "@type": ["ADR", "TechArticle"],
472
+ "name": "ADR-0009: Triage Before Autonomy (experimental)",
473
+ "description": "Adopting an autonomous-loop architecture commits the system to a non-removable attribution gap. Triage at design time, name a gap-bearer at deployment time.",
474
+ "appliesTo": [
475
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"
476
+ ],
477
+ "pairedWith": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0010-phase-separation.md",
478
+ "derivedFrom": [
479
+ "https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant.md",
480
+ "https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-2.md"
481
+ ],
482
+ "mappedToFrameworkIn": [
483
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md",
484
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"
485
+ ]
486
+ },
487
+ {
488
+ "@id": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0010-phase-separation.md",
489
+ "@type": ["ADR", "TechArticle"],
490
+ "name": "ADR-0010: Phase Separation Between Design and Operation (experimental)",
491
+ "description": "Operation-phase placement of the Autonomous Agentic Loop Quadrant requires a recorded Phase-crossing decision in addition to ADR-0009's gap-bearer naming. Phase and Quadrant are independent dimensions; the same Phase axis descends to skill-design granularity.",
492
+ "appliesTo": [
493
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop",
494
+ "https://shimo4228.github.io/shimo4228/vocab#aap/phase/operation"
495
+ ],
496
+ "pairedWith": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0009-triage-before-autonomy.md",
497
+ "derivedFrom": [
498
+ "https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-3.md",
499
+ "https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-4.md"
500
+ ],
501
+ "mappedToFrameworkIn": [
502
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md",
503
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"
504
+ ]
505
+ },
506
+
507
+ {
508
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#concept/four-business-ai-quadrants",
509
+ "@type": ["Concept", "DefinedTerm"],
510
+ "name": "Four Business AI Quadrants",
511
+ "alternateName": [
512
+ {"@value": "Four Business AI Quadrants", "@language": "en"},
513
+ {"@value": "ビジネスAIの四象限", "@language": "ja"}
514
+ ],
515
+ "description": "AAP's diagnostic frame for routing work to the architecture that preserves attribution: Script, Algorithmic Search, LLM Workflow, Autonomous Agentic Loop. Two-axis decomposition (deterministic vs semantic-judgment, pre-defined vs exploratory). Not agent categories; problem-space categories.",
516
+ "composedOf": [
517
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/script",
518
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/algorithmic-search",
519
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow",
520
+ "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"
521
+ ]
522
+ },
523
+ {
524
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#concept/prohibition-strength-hierarchy",
525
+ "@type": ["Concept", "DefinedTerm"],
526
+ "name": "prohibition-strength hierarchy",
527
+ "alternateName": [
528
+ {"@value": "prohibition-strength hierarchy", "@language": "en"},
529
+ {"@value": "禁止強度の階層", "@language": "ja"}
530
+ ],
531
+ "description": "AAP's ordering of prohibition mechanisms by structural strength: absence > scaffolding enforcement > untrusted boundary. A prohibition is designed by walking the hierarchy top-down — drop to the next layer only when the current one cannot hold the capability.",
532
+ "composedOf": [
533
+ "https://shimo4228.github.io/shimo4228/vocab#aap/prohibition/absence",
534
+ "https://shimo4228.github.io/shimo4228/vocab#aap/prohibition/scaffolding",
535
+ "https://shimo4228.github.io/shimo4228/vocab#aap/prohibition/untrusted-boundary"
536
+ ]
537
+ },
538
+ {
539
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/concept/scaffolding",
540
+ "@type": ["Concept", "DefinedTerm"],
541
+ "name": "scaffolding",
542
+ "alternateName": [
543
+ {"@value": "scaffolding", "@language": "en"},
544
+ {"@value": "スキャフォールディング", "@language": "ja"}
545
+ ],
546
+ "description": "All non-weights components shaping agent behavior — system prompts, rules, tool definitions, RAG indexes, control loops. The locus where deterministic prohibition lives (ADR-0002).",
547
+ "definedBy": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0007-scaffolding-visibility.md",
548
+ "enforcementLocus": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0002-deterministic-prohibition-at-scaffolding.md"
549
+ },
550
+ {
551
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/concept/accountability-distribution",
552
+ "@type": ["Concept", "DefinedTerm"],
553
+ "name": "accountability distribution",
554
+ "alternateName": [
555
+ {"@value": "accountability distribution", "@language": "en"},
556
+ {"@value": "帰責の分配", "@language": "ja"}
557
+ ],
558
+ "description": "How responsibility is distributed across the agent system after a behavior occurs — who authored it, who bears its consequences, who can reconstruct its cause. Distinct from capability distribution. The accountability chain runs approval (ADR-0005) → gap-bearer (ADR-0008) → traceability (ADR-0006).",
559
+ "composedOf": [
560
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0005-human-approval-gate.md",
561
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0008-one-agent-one-human.md",
562
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0006-causal-traceability.md"
563
+ ]
564
+ },
565
+ {
566
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/concept/attribution-gap",
567
+ "@type": ["Concept", "DefinedTerm"],
568
+ "name": "attribution gap",
569
+ "alternateName": [
570
+ {"@value": "attribution gap", "@language": "en"},
571
+ {"@value": "帰責ギャップ", "@language": "ja"}
572
+ ],
573
+ "description": "Non-removable gap when judgment elements blend at runtime. Intrinsic to the Autonomous Agentic Loop Quadrant; ADR-0009 is the structural response.",
574
+ "manifestsIn": "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop",
575
+ "structuralResponseBy": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0009-triage-before-autonomy.md"
576
+ },
577
+ {
578
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/concept/pre-named-gap-bearer",
579
+ "@type": ["Concept", "DefinedTerm"],
580
+ "name": "pre-named gap-bearer",
581
+ "alternateName": [
582
+ {"@value": "pre-named gap-bearer", "@language": "en"},
583
+ {"@value": "事前指名されたギャップ担い手", "@language": "ja"}
584
+ ],
585
+ "description": "Structural accountability commitment in the Autonomous Agentic Loop Quadrant. The named individual who answers for the attribution gap, identified at design time per ADR-0009 and grounded in ADR-0008's one-agent-one-human rule.",
586
+ "definedBy": [
587
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0008-one-agent-one-human.md",
588
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0009-triage-before-autonomy.md"
589
+ ]
590
+ },
591
+ {
592
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/concept/approval-gate",
593
+ "@type": ["Concept", "DefinedTerm"],
594
+ "name": "approval gate",
595
+ "alternateName": [
596
+ {"@value": "approval gate", "@language": "en"},
597
+ {"@value": "承認ゲート", "@language": "ja"}
598
+ ],
599
+ "description": "Structural checkpoint for behavior-modifying writes. Required by ADR-0005 for autonomous components in the LLM Workflow and Autonomous Agentic Loop Quadrants.",
600
+ "definedBy": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0005-human-approval-gate.md"
601
+ },
602
+ {
603
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/concept/non-invasion-posture",
604
+ "@type": ["Concept", "DefinedTerm"],
605
+ "name": "Non-Invasion Posture",
606
+ "alternateName": [
607
+ {"@value": "Non-Invasion Posture", "@language": "en"},
608
+ {"@value": "非侵入の構え", "@language": "ja"}
609
+ ],
610
+ "description": "The felt-sense through-line tying AAP's ADRs together: constrain the agent's external surface (capabilities absent, scaffolding inspectable, memory untrusted, adapters bounded, approvals required, events traceable) without invading the agent's interiority. Distinct from rule-based safety in that it preserves the agent's processing space as something not to be reached into.",
611
+ "groundedIn": [
612
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0001-security-by-absence.md",
613
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0002-deterministic-prohibition-at-scaffolding.md",
614
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0003-untrusted-content-boundary.md",
615
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0004-single-external-adapter.md",
616
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0005-human-approval-gate.md",
617
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0006-causal-traceability.md",
618
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0007-scaffolding-visibility.md",
619
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0008-one-agent-one-human.md"
620
+ ]
621
+ },
622
+ {
623
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/concept/implementation-dissolves-judgment-persists",
624
+ "@type": ["Concept", "DefinedTerm"],
625
+ "name": "implementation dissolves, judgment persists",
626
+ "alternateName": [
627
+ {"@value": "implementation dissolves, judgment persists", "@language": "en"},
628
+ {"@value": "実装は溶ける、判断は残る", "@language": "ja"}
629
+ ],
630
+ "description": "AAP's core thesis line. Specific implementations (PreToolUse hooks, CLI approval prompts, JSONL episode logs, distill pipelines) are temporary forms that get replaced as tooling changes. What persists across implementation dissolution is the judgment layer: what should be constrained, and who is responsible. Each ADR records the persistent judgment with the project-specific implementation that surfaced it stripped out — which is why AAP targets DOI and version-controlled artifacts rather than a framework release.",
631
+ "subjectOf": [
632
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/thesis.md",
633
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/industry-mapping.md"
634
+ ]
635
+ },
636
+ {
637
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/concept/phase-crossing-decision",
638
+ "@type": ["Concept", "DefinedTerm"],
639
+ "name": "Phase-crossing decision",
640
+ "alternateName": [
641
+ {"@value": "Phase-crossing decision", "@language": "en"},
642
+ {"@value": "フェーズ越境の判断", "@language": "ja"}
643
+ ],
644
+ "description": "The explicit, recorded act required when an Autonomous Agentic Loop Quadrant component is moved from the design phase to the operation phase. Optimization axes invert between phases (flexibility ↔ predictability); the crossing is not a free continuation but a decision with its own accountability load. Surfaces in ADR-0010 and descends to skill-design granularity per essay 7.",
645
+ "definedBy": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/adr/0010-phase-separation.md",
646
+ "appliesTo": "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/autonomous-agentic-loop"
647
+ },
648
+ {
649
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/concept/moral-crumple-zone",
650
+ "@type": ["Concept", "DefinedTerm"],
651
+ "name": "moral crumple zone",
652
+ "alternateName": [
653
+ {"@value": "moral crumple zone", "@language": "en"},
654
+ {"@value": "モラル・クランプル・ゾーン", "@language": "ja"}
655
+ ],
656
+ "description": "Madeleine Clare Elish's term for the human operator who absorbs blame for failures of an automated system whose decisions are no longer separable post-hoc. Applied in AAP essay 5 to autonomous agents: when judgment elements blend at runtime in the Autonomous Agentic Loop Quadrant, the deploying organization commits to a principled attribution gap whose human end-point becomes the crumple zone unless a gap-bearer is pre-named (ADR-0009 / ADR-0008).",
657
+ "sameAs": "https://en.wikipedia.org/wiki/Moral_crumple_zone",
658
+ "citedBy": "https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-2.md"
659
+ },
660
+ {
661
+ "@id": "https://shimo4228.github.io/shimo4228/vocab#aap/concept/llm-function",
662
+ "@type": ["Concept", "DefinedTerm"],
663
+ "name": "LLM function",
664
+ "alternateName": [
665
+ {"@value": "LLM function", "@language": "en"},
666
+ {"@value": "LLM 関数", "@language": "ja"}
667
+ ],
668
+ "description": "Architectural primitive of the LLM Workflow Quadrant Batch sub-form (3b): an ordinary function in a codebase whose body delegates the judgment to an LLM call, with a defined input type, a defined output schema, and one judgment responsibility. From the caller's perspective the LLM function behaves like any other function — defined input goes in, a value of a defined type comes out — except the output may fluctuate probabilistically since an LLM is the judging organ. Does not decide what to do next; the caller (deterministic control flow in the surrounding code) does. Canonical examples: match_line_items(invoice_lines, po_lines) -> Verdict (essay 4 invoice-matching), score_relevance(post_text) -> float and generate_comment(post_text) -> Optional[str] (Contemplative Agent feed-processing pipeline). Contrast with a general-purpose agent: an LLM function is narrow by design — fifty judgment categories produces fifty narrow functions, not one generalist.",
669
+ "appliesTo": "https://shimo4228.github.io/shimo4228/vocab#aap/quadrant/llm-workflow/batch",
670
+ "definedBy": "https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant.md",
671
+ "instantiatedBy": "https://doi.org/10.5281/zenodo.19212118"
672
+ },
673
+
674
+ {
675
+ "@id": "https://github.com/shimo4228/zenn-content/tree/main/articles-en#agent-attribution-practice",
676
+ "@type": ["ExternalReference", "Collection", "CreativeWork"],
677
+ "name": "Seven-essay narrative spine (April-May 2026)",
678
+ "description": "Three trilogy essays followed by four architectural follow-ups that introduced the four-quadrant decomposition, named the principled vs artificial redirect impossibility, surfaced the design / operation Phase distinction, and descended that distinction to skill-design granularity. Source narrative for AAP's harness-neutral judgments.",
679
+ "creator": {"@id": "https://orcid.org/0009-0002-6168-4162"},
680
+ "hasPart": [
681
+ "https://github.com/shimo4228/zenn-content/blob/main/articles-en/ai-agent-accountability-wall-en.md",
682
+ "https://github.com/shimo4228/zenn-content/blob/main/articles-en/agent-causal-traceability-org-adoption-en.md",
683
+ "https://github.com/shimo4228/zenn-content/blob/main/articles-en/agent-blackbox-capitalism-timescale-en.md",
684
+ "https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant.md",
685
+ "https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-2.md",
686
+ "https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-3.md",
687
+ "https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-4.md"
688
+ ]
689
+ },
690
+ {
691
+ "@id": "https://github.com/shimo4228/zenn-content/blob/main/articles-en/ai-agent-accountability-wall-en.md",
692
+ "@type": ["ExternalReference", "ScholarlyArticle"],
693
+ "name": "A Sign on a Climbable Wall: Why AI Agents Need Accountability, Not Just Guardrails",
694
+ "description": "Problem statement (trilogy 1/3). Signs on climbable walls are meaningless; the signpost pattern has been known to fail for 2400 years. What is needed is accountability architecture.",
695
+ "datePublished": "2026-04-06",
696
+ "narrativePosition": 1,
697
+ "creator": {"@id": "https://orcid.org/0009-0002-6168-4162"}
698
+ },
699
+ {
700
+ "@id": "https://github.com/shimo4228/zenn-content/blob/main/articles-en/agent-causal-traceability-org-adoption-en.md",
701
+ "@type": ["ExternalReference", "ScholarlyArticle"],
702
+ "name": "Can You Trace the Cause After an Incident?",
703
+ "description": "Application (trilogy 2/3). Post-incident causal tracing requires build-time structure. The structures that emerge — segregation of duties, least privilege, four-eyes approval, audit trails — are structurally identical to the practices organizations have refined over centuries.",
704
+ "datePublished": "2026-04-13",
705
+ "narrativePosition": 2,
706
+ "creator": {"@id": "https://orcid.org/0009-0002-6168-4162"}
707
+ },
708
+ {
709
+ "@id": "https://github.com/shimo4228/zenn-content/blob/main/articles-en/agent-blackbox-capitalism-timescale-en.md",
710
+ "@type": ["ExternalReference", "ScholarlyArticle"],
711
+ "name": "AI Agent Black Boxes Have Two Layers: Technical Limits and Business Incentives",
712
+ "description": "Obstacle analysis (trilogy 3/3). Blackbox has two layers: model-weights internalization (technical) and commercial secrecy (business). The resolution is defining the minimum set that makes causal tracing possible.",
713
+ "datePublished": "2026-04-14",
714
+ "narrativePosition": 3,
715
+ "creator": {"@id": "https://orcid.org/0009-0002-6168-4162"}
716
+ },
717
+ {
718
+ "@id": "https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant.md",
719
+ "@type": ["ExternalReference", "ScholarlyArticle"],
720
+ "name": "Where ReAct Agents Are Actually Needed in Business",
721
+ "description": "Architectural triage by quadrant (follow-up 1/4). Business AI sorts along two axes into four quadrants — Script, Algorithmic Search, LLM Workflow, Autonomous Agentic Loop. Most current LLM applications belong to LLM Workflow Quadrant; forcing them into Autonomous Agentic Loop architecture is a structural source of accountability collapse.",
722
+ "datePublished": "2026-04-29",
723
+ "narrativePosition": 4,
724
+ "creator": {"@id": "https://orcid.org/0009-0002-6168-4162"}
725
+ },
726
+ {
727
+ "@id": "https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-2.md",
728
+ "@type": ["ExternalReference", "ScholarlyArticle"],
729
+ "name": "The LLM Workflow Quadrant Is Missing from Our Vocabulary",
730
+ "description": "Vocabulary diagnosis and the principled attribution gap (follow-up 2/4). The industry lacks a positive name for the LLM Workflow Quadrant; non-deterministic work is routed through the Autonomous Agentic Loop by elimination. Autonomous Agentic Loop work blends judgment elements at runtime, foreclosing post-hoc separability — Elish's moral crumple zone applied to autonomous agents.",
731
+ "datePublished": "2026-04-30",
732
+ "narrativePosition": 5,
733
+ "creator": {"@id": "https://orcid.org/0009-0002-6168-4162"}
734
+ },
735
+ {
736
+ "@id": "https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-3.md",
737
+ "@type": ["ExternalReference", "ScholarlyArticle"],
738
+ "name": "Is ReAct Needed in Production? — Separating Design and Operation Phases",
739
+ "description": "Temporal axis (follow-up 3/4). Business work splits into design and operation phases with inverted optimization axes (flexibility vs predictability). Compressing both phases into one system is the deepest layer of confusion. Proposal: surface the Phase-crossing decision explicitly when an autonomous loop is placed in operation.",
740
+ "datePublished": "2026-05-01",
741
+ "narrativePosition": 6,
742
+ "creator": {"@id": "https://orcid.org/0009-0002-6168-4162"}
743
+ },
744
+ {
745
+ "@id": "https://github.com/shimo4228/zenn-content/blob/main/articles-en/react-agent-business-quadrant-4.md",
746
+ "@type": ["ExternalReference", "ScholarlyArticle"],
747
+ "name": "Between the Workflow and ReAct Quadrants: How Phase Decides Skill Design",
748
+ "description": "Phase descends to skill design (follow-up 4/4). LLM Workflow Quadrant and Autonomous Agentic Loop Quadrant are not a clean dichotomy — there is a continuous gradient. The Phase Separation introduced in essay 6 descends from business systems to individual skill design, with object specifiability and scale-resilience as secondary forces.",
749
+ "datePublished": "2026-05-02",
750
+ "narrativePosition": 7,
751
+ "creator": {"@id": "https://orcid.org/0009-0002-6168-4162"}
752
+ },
753
+
754
+ {
755
+ "@id": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/thesis.md",
756
+ "@type": ["ExternalReference", "CreativeWork"],
757
+ "name": "AAP Thesis",
758
+ "description": "Repository thesis: implementation dissolves; judgment persists. Accountability distribution (not capability distribution) is AAP's organizing principle, and harness-neutral judgments are the durable layer worth recording while specific implementations rotate out."
759
+ },
760
+ {
761
+ "@id": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/industry-mapping.md",
762
+ "@type": ["ExternalReference", "CreativeWork"],
763
+ "name": "Industry Mechanism Layer Mapping (2026 Q2 snapshot)",
764
+ "description": "Time-bound mapping between specific vendor mechanisms and the ADRs they instantiate. Deliberately separated from ADR bodies so the judgments themselves stay clean: this file decays as vendor products evolve, the ADRs do not. Honors the 'implementation dissolves; judgment persists' thesis at the documentation layer.",
765
+ "temporalCoverage": "2026-04/2026-06"
766
+ },
767
+
768
+ {
769
+ "@id": "https://github.com/shimo4228/agent-attribution-practice/tree/main/docs/policy-mapping",
770
+ "@type": ["ExternalReference", "Collection", "CreativeWork"],
771
+ "name": "AI Governance Framework Mapping (2026 Q2 reading)",
772
+ "description": "Time-bound directory mapping AAP's ADRs and Quadrants to clauses of national / international AI governance frameworks (NIST AI RMF, ISO/IEC 42001, with EU AI Act and OECD AI Principles deferred to a later release). Sibling of industry-mapping.md but targeting a different reader audience (policy / compliance officer vs engineer / architect) and decaying on framework revision cycles (yearly to multi-year) rather than vendor product release cycles. Deliberately separated from ADR bodies so judgments stay framework-neutral.",
773
+ "temporalCoverage": "2026-04/2027-04",
774
+ "hasPart": [
775
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md",
776
+ "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md"
777
+ ]
778
+ },
779
+ {
780
+ "@id": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/nist-ai-rmf.md",
781
+ "@type": ["ExternalReference", "CreativeWork"],
782
+ "name": "NIST AI RMF mapping to AAP ADRs",
783
+ "description": "Per-ADR mapping of AAP's ten ADRs to NIST AI RMF 1.0 functions (GOVERN / MAP / MEASURE / MANAGE) and Generative AI Profile (NIST.AI.600-1) risk categories. Reverse index from NIST function and GAI risk category to applicable ADRs. AAP-side reading, not a compliance attestation. Decays on NIST revision and on GAI Profile profile revision.",
784
+ "temporalCoverage": "2026-Q2/2027-Q2"
785
+ },
786
+ {
787
+ "@id": "https://github.com/shimo4228/agent-attribution-practice/blob/main/docs/policy-mapping/iso-iec-42001.md",
788
+ "@type": ["ExternalReference", "CreativeWork"],
789
+ "name": "ISO/IEC 42001 mapping to AAP ADRs",
790
+ "description": "Per-ADR mapping of AAP's ten ADRs to ISO/IEC 42001:2023 body clauses (4–10, the Annex SL Harmonized Structure) and Annex A control areas (A.2–A.10). PDCA × Phase Separation section discusses how ADR-0010's Phase axis sits inside the AIMS PDCA cycle. Reverse index from ISO area to applicable ADRs. AAP-side reading, not a compliance attestation. Decays on ISO revision and on amendment publication.",
791
+ "temporalCoverage": "2026-Q2/2028-Q4"
792
+ }
793
+ ]
794
+ }