@event4u/agent-config 1.18.0 → 1.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (181) hide show
  1. package/.agent-src/commands/agent-handoff.md +14 -10
  2. package/.agent-src/commands/chat-history/import.md +170 -0
  3. package/.agent-src/commands/chat-history/learn.md +178 -0
  4. package/.agent-src/commands/chat-history/show.md +17 -18
  5. package/.agent-src/commands/chat-history.md +26 -25
  6. package/.agent-src/commands/council/default.md +77 -82
  7. package/.agent-src/commands/create-pr.md +28 -8
  8. package/.agent-src/commands/feature/roadmap.md +22 -0
  9. package/.agent-src/commands/roadmap/create.md +38 -6
  10. package/.agent-src/commands/roadmap/execute.md +36 -9
  11. package/.agent-src/commands/sync-gitignore.md +1 -1
  12. package/.agent-src/contexts/communication/rules-auto/skill-quality-mechanics.md +76 -0
  13. package/.agent-src/contexts/communication/rules-auto/slash-command-routing-policy-mechanics.md +3 -3
  14. package/.agent-src/contexts/communication/rules-auto/user-interaction-mechanics.md +5 -12
  15. package/.agent-src/rules/agent-authority.md +1 -0
  16. package/.agent-src/rules/agent-docs.md +1 -0
  17. package/.agent-src/rules/analysis-skill-routing.md +1 -0
  18. package/.agent-src/rules/architecture.md +1 -0
  19. package/.agent-src/rules/artifact-drafting-protocol.md +1 -0
  20. package/.agent-src/rules/artifact-engagement-recording.md +1 -0
  21. package/.agent-src/rules/ask-when-uncertain.md +1 -0
  22. package/.agent-src/rules/augment-portability.md +1 -0
  23. package/.agent-src/rules/augment-source-of-truth.md +1 -0
  24. package/.agent-src/rules/autonomous-execution.md +1 -0
  25. package/.agent-src/rules/capture-learnings.md +1 -0
  26. package/.agent-src/rules/cli-output-handling.md +2 -2
  27. package/.agent-src/rules/command-suggestion-policy.md +1 -0
  28. package/.agent-src/rules/commit-conventions.md +1 -0
  29. package/.agent-src/rules/commit-policy.md +1 -0
  30. package/.agent-src/rules/context-hygiene.md +22 -0
  31. package/.agent-src/rules/direct-answers.md +11 -2
  32. package/.agent-src/rules/docker-commands.md +1 -0
  33. package/.agent-src/rules/docs-sync.md +1 -0
  34. package/.agent-src/rules/downstream-changes.md +1 -0
  35. package/.agent-src/rules/e2e-testing.md +1 -0
  36. package/.agent-src/rules/guidelines.md +1 -0
  37. package/.agent-src/rules/improve-before-implement.md +1 -0
  38. package/.agent-src/rules/language-and-tone.md +38 -6
  39. package/.agent-src/rules/laravel-translations.md +1 -0
  40. package/.agent-src/rules/markdown-safe-codeblocks.md +1 -0
  41. package/.agent-src/rules/minimal-safe-diff.md +1 -0
  42. package/.agent-src/rules/missing-tool-handling.md +1 -0
  43. package/.agent-src/rules/model-recommendation.md +1 -0
  44. package/.agent-src/rules/no-attribution-footers.md +48 -0
  45. package/.agent-src/rules/no-cheap-questions.md +1 -0
  46. package/.agent-src/rules/no-roadmap-references.md +2 -1
  47. package/.agent-src/rules/non-destructive-by-default.md +1 -0
  48. package/.agent-src/rules/onboarding-gate.md +26 -0
  49. package/.agent-src/rules/package-ci-checks.md +1 -0
  50. package/.agent-src/rules/php-coding.md +1 -0
  51. package/.agent-src/rules/preservation-guard.md +1 -0
  52. package/.agent-src/rules/review-routing-awareness.md +1 -0
  53. package/.agent-src/rules/reviewer-awareness.md +1 -0
  54. package/.agent-src/rules/roadmap-progress-sync.md +22 -0
  55. package/.agent-src/rules/role-mode-adherence.md +2 -2
  56. package/.agent-src/rules/rule-type-governance.md +1 -0
  57. package/.agent-src/rules/runtime-safety.md +1 -0
  58. package/.agent-src/rules/scope-control.md +1 -0
  59. package/.agent-src/rules/security-sensitive-stop.md +1 -0
  60. package/.agent-src/rules/size-enforcement.md +1 -0
  61. package/.agent-src/rules/skill-improvement-trigger.md +1 -0
  62. package/.agent-src/rules/skill-quality.md +50 -0
  63. package/.agent-src/rules/slash-command-routing-policy.md +39 -0
  64. package/.agent-src/rules/think-before-action.md +1 -0
  65. package/.agent-src/rules/token-efficiency.md +1 -0
  66. package/.agent-src/rules/tool-safety.md +1 -0
  67. package/.agent-src/rules/ui-audit-gate.md +1 -0
  68. package/.agent-src/rules/upstream-proposal.md +1 -0
  69. package/.agent-src/rules/user-interaction.md +22 -5
  70. package/.agent-src/rules/verify-before-complete.md +1 -0
  71. package/.agent-src/skills/ai-council/SKILL.md +4 -5
  72. package/.agent-src/skills/dcf-modeling/SKILL.md +89 -0
  73. package/.agent-src/skills/funnel-analysis/SKILL.md +100 -0
  74. package/.agent-src/skills/md-language-check/SKILL.md +1 -1
  75. package/.agent-src/skills/okr-tree-modeling/SKILL.md +93 -0
  76. package/.agent-src/skills/rice-prioritization/SKILL.md +100 -0
  77. package/.agent-src/skills/roadmap-management/SKILL.md +29 -4
  78. package/.agent-src/skills/subagent-orchestration/SKILL.md +34 -2
  79. package/.agent-src/skills/unit-economics-modeling/SKILL.md +104 -0
  80. package/.agent-src/skills/using-git-worktrees/SKILL.md +1 -0
  81. package/.agent-src/skills/verify-completion-evidence/SKILL.md +8 -1
  82. package/.agent-src/templates/agent-settings.md +21 -26
  83. package/.agent-src/templates/roadmaps.md +8 -3
  84. package/.agent-src/templates/scripts/work_engine/hook_bootstrap.py +16 -5
  85. package/.agent-src/templates/scripts/work_engine/hooks/__init__.py +4 -4
  86. package/.agent-src/templates/scripts/work_engine/hooks/builtin/__init__.py +4 -4
  87. package/.agent-src/templates/scripts/work_engine/hooks/builtin/_chat_history_base.py +7 -51
  88. package/.agent-src/templates/scripts/work_engine/hooks/builtin/chat_history_append.py +1 -2
  89. package/.agent-src/templates/scripts/work_engine/hooks/builtin/chat_history_halt_append.py +1 -2
  90. package/.agent-src/templates/scripts/work_engine/hooks/builtin/decision_trace.py +163 -0
  91. package/.agent-src/templates/scripts/work_engine/hooks/builtin/memory_visibility.py +110 -0
  92. package/.agent-src/templates/scripts/work_engine/hooks/settings.py +36 -0
  93. package/.agent-src/templates/scripts/work_engine/scoring/decision_trace.py +141 -0
  94. package/.agent-src/templates/scripts/work_engine/scoring/memory_visibility.py +125 -0
  95. package/.agent-src/templates/skill.md +30 -1
  96. package/.claude-plugin/marketplace.json +8 -4
  97. package/AGENTS.md +44 -3
  98. package/CHANGELOG.md +173 -0
  99. package/README.md +22 -22
  100. package/config/agent-settings.template.yml +42 -13
  101. package/config/gitignore-block.txt +4 -4
  102. package/docs/architecture.md +3 -3
  103. package/docs/catalog.md +18 -13
  104. package/docs/contracts/adr-chat-history-split.md +10 -1
  105. package/docs/contracts/adr-settings-sync-engine.md +127 -0
  106. package/docs/contracts/command-clusters.md +1 -1
  107. package/docs/contracts/cross-wing-handoff.md +133 -0
  108. package/docs/contracts/decision-trace-v1.md +146 -0
  109. package/docs/contracts/file-ownership-matrix.json +348 -126
  110. package/docs/contracts/hook-architecture-v1.md +220 -0
  111. package/docs/contracts/memory-visibility-v1.md +122 -0
  112. package/docs/contracts/one-off-script-lifecycle.md +109 -0
  113. package/docs/contracts/rule-interactions.yml +22 -0
  114. package/docs/customization.md +2 -1
  115. package/docs/development.md +4 -1
  116. package/docs/getting-started.md +21 -29
  117. package/docs/guidelines/agent-infra/ask-when-uncertain-demos.md +1 -1
  118. package/docs/guidelines/agent-infra/layered-settings.md +32 -13
  119. package/docs/hook-payload-capture.md +221 -0
  120. package/docs/migrations/commands-1.15.0.md +17 -12
  121. package/docs/skills-catalog.md +5 -4
  122. package/llms.txt +4 -3
  123. package/package.json +1 -1
  124. package/scripts/agent-config +45 -1
  125. package/scripts/ai_council/_default_prices.py +4 -4
  126. package/scripts/ai_council/bundler.py +3 -3
  127. package/scripts/ai_council/clients.py +25 -9
  128. package/scripts/ai_council/modes.py +3 -4
  129. package/scripts/ai_council/one_off_archive/2026-05/README.md +22 -0
  130. package/scripts/ai_council/one_off_archive/2026-05/_one_off_roundtrip.py +13 -8
  131. package/scripts/ai_council/one_off_archive/2026-05/_one_off_tier_retrofit.py +180 -0
  132. package/scripts/ai_council/pricing.py +10 -9
  133. package/scripts/ai_council/session.py +92 -0
  134. package/scripts/build_rule_trigger_matrix.py +1 -9
  135. package/scripts/capture_showcase_session.py +361 -0
  136. package/scripts/chat_history.py +963 -597
  137. package/scripts/check_always_budget.py +7 -2
  138. package/scripts/check_references.py +12 -2
  139. package/scripts/context_hygiene_hook.py +14 -6
  140. package/scripts/council_cli.py +407 -0
  141. package/scripts/hook_manifest.yaml +217 -0
  142. package/scripts/hooks/__init__.py +1 -0
  143. package/scripts/hooks/augment-chat-history.sh +10 -0
  144. package/scripts/hooks/augment-dispatcher.sh +72 -0
  145. package/scripts/hooks/cline-dispatcher.sh +86 -0
  146. package/scripts/hooks/cowork-dispatcher.sh +98 -0
  147. package/scripts/hooks/cursor-dispatcher.sh +76 -0
  148. package/scripts/hooks/dispatch_hook.py +383 -0
  149. package/scripts/hooks/envelope.py +98 -0
  150. package/scripts/hooks/gemini-dispatcher.sh +117 -0
  151. package/scripts/hooks/state_io.py +122 -0
  152. package/scripts/hooks/windsurf-dispatcher.sh +123 -0
  153. package/scripts/hooks_status.py +157 -0
  154. package/scripts/install-hooks.sh +2 -2
  155. package/scripts/install.py +725 -87
  156. package/scripts/install.sh +38 -1
  157. package/scripts/lint_handoffs.py +214 -0
  158. package/scripts/lint_hook_manifest.py +217 -0
  159. package/scripts/lint_one_off_age.py +184 -0
  160. package/scripts/lint_rule_tiers.py +78 -0
  161. package/scripts/lint_showcase_sessions.py +148 -0
  162. package/scripts/minimal_safe_diff_hook.py +245 -0
  163. package/scripts/onboarding_gate_hook.py +13 -8
  164. package/scripts/readme_linter.py +12 -3
  165. package/scripts/redact_hook_capture.py +148 -0
  166. package/scripts/roadmap_progress_hook.py +5 -0
  167. package/scripts/schemas/skill.schema.json +5 -0
  168. package/scripts/skill_linter.py +163 -1
  169. package/scripts/sync_agent_settings.py +32 -129
  170. package/scripts/sync_yaml_rt.py +734 -0
  171. package/scripts/update_prices.py +3 -3
  172. package/scripts/verify_before_complete_hook.py +216 -0
  173. package/.agent-src/commands/chat-history/checkpoint.md +0 -126
  174. package/.agent-src/commands/chat-history/clear.md +0 -103
  175. package/.agent-src/commands/chat-history/resume.md +0 -183
  176. package/.agent-src/rules/chat-history-cadence.md +0 -109
  177. package/.agent-src/rules/chat-history-ownership.md +0 -123
  178. package/.agent-src/rules/chat-history-visibility.md +0 -96
  179. package/.agent-src/templates/scripts/work_engine/hooks/builtin/chat_history_heartbeat.py +0 -50
  180. package/.agent-src/templates/scripts/work_engine/hooks/builtin/chat_history_turn_check.py +0 -49
  181. package/scripts/check_phase_coupling.py +0 -148
@@ -6,7 +6,7 @@
6
6
  },
7
7
  "metadata": {
8
8
  "description": "Shared agent configuration \u2014 skills for AI coding tools (Claude Code, Augment, Cursor, Cline, Windsurf, Gemini CLI).",
9
- "version": "1.18.0"
9
+ "version": "1.20.0"
10
10
  },
11
11
  "plugins": [
12
12
  {
@@ -39,9 +39,8 @@
39
39
  "./.claude/skills/bug-fix",
40
40
  "./.claude/skills/bug-investigate",
41
41
  "./.claude/skills/chat-history",
42
- "./.claude/skills/chat-history-checkpoint",
43
- "./.claude/skills/chat-history-clear",
44
- "./.claude/skills/chat-history-resume",
42
+ "./.claude/skills/chat-history-import",
43
+ "./.claude/skills/chat-history-learn",
45
44
  "./.claude/skills/chat-history-show",
46
45
  "./.claude/skills/check-current-md",
47
46
  "./.claude/skills/check-refs",
@@ -74,6 +73,7 @@
74
73
  "./.claude/skills/dashboard-design",
75
74
  "./.claude/skills/data-flow-mapper",
76
75
  "./.claude/skills/database",
76
+ "./.claude/skills/dcf-modeling",
77
77
  "./.claude/skills/dependency-upgrade",
78
78
  "./.claude/skills/description-assist",
79
79
  "./.claude/skills/design-review",
@@ -105,6 +105,7 @@
105
105
  "./.claude/skills/fix-refs",
106
106
  "./.claude/skills/fix-seeder",
107
107
  "./.claude/skills/flux",
108
+ "./.claude/skills/funnel-analysis",
108
109
  "./.claude/skills/git-workflow",
109
110
  "./.claude/skills/github-ci",
110
111
  "./.claude/skills/grafana",
@@ -150,6 +151,7 @@
150
151
  "./.claude/skills/module-explore",
151
152
  "./.claude/skills/module-management",
152
153
  "./.claude/skills/multi-tenancy",
154
+ "./.claude/skills/okr-tree-modeling",
153
155
  "./.claude/skills/onboard",
154
156
  "./.claude/skills/openapi",
155
157
  "./.claude/skills/optimize",
@@ -195,6 +197,7 @@
195
197
  "./.claude/skills/requesting-code-review",
196
198
  "./.claude/skills/review-changes",
197
199
  "./.claude/skills/review-routing",
200
+ "./.claude/skills/rice-prioritization",
198
201
  "./.claude/skills/roadmap",
199
202
  "./.claude/skills/roadmap-create",
200
203
  "./.claude/skills/roadmap-execute",
@@ -227,6 +230,7 @@
227
230
  "./.claude/skills/threat-model",
228
231
  "./.claude/skills/threat-modeling",
229
232
  "./.claude/skills/traefik",
233
+ "./.claude/skills/unit-economics-modeling",
230
234
  "./.claude/skills/universal-project-analysis",
231
235
  "./.claude/skills/update-form-request-messages",
232
236
  "./.claude/skills/upstream-contribute",
package/AGENTS.md CHANGED
@@ -14,6 +14,18 @@ when they install the package.
14
14
 
15
15
  ## What this repo is
16
16
 
17
+ `event4u/agent-config` is a **governed skill suite** for two cognition
18
+ clusters: engineering depth (Wing 1) and senior cross-department
19
+ cognition (Wings 2–4: Product + Foundation, GTM + Growth, Money +
20
+ Strategy + Ops). The differentiator is **depth over breadth, decisions
21
+ over boilerplate, under a shared Iron-Law floor** (`commit-policy`,
22
+ `non-destructive-by-default`, `language-and-tone`, `skill-quality`,
23
+ `direct-answers`). The same agent that ships a refactor commit also
24
+ runs DCF sensitivity, OKR-tree decomposition, and launch-funnel
25
+ diagnosis — under the same governance.
26
+
27
+ Mechanically the package is:
28
+
17
29
  - A distribution package, not an application of any framework.
18
30
  - `type: library` in `composer.json`; no `app/` directory, no application
19
31
  runtime (no Laravel, Symfony, Next.js, or other framework app code).
@@ -21,6 +33,26 @@ when they install the package.
21
33
  - Installed into consumer projects via `scripts/install.sh` (Bash) and
22
34
  `scripts/install.py` (Python bridge).
23
35
 
36
+ ## The four wings
37
+
38
+ The skill suite is organized as four wings under one Iron-Law floor.
39
+ Each wing has its own roadmap, its own personas, and its own plate;
40
+ they compose via the cross-wing handoff contract
41
+ ([`docs/contracts/cross-wing-handoff.md`](docs/contracts/cross-wing-handoff.md) (beta),
42
+ landing in `road-to-suite-closure.md` Phase 3).
43
+
44
+ | Wing | Cognition cluster |
45
+ |---|---|
46
+ | **1 — Engineering** | Code craft, debugging, refactoring, release discipline; depth-first |
47
+ | **2 — Product + Foundation** | Roles cluster (PM, designer, QA, EM); product discovery, prioritization, delivery shape |
48
+ | **3 — GTM + Growth** | CMO + marketing + sales + lifecycle; channel-agnostic positioning + funnel cognition |
49
+ | **4 — Money + Strategy + Ops** | CFO + COO + board-level strategy, valuation, org-design; stage-agnostic financial + operational cognition |
50
+
51
+ Per-wing plates (roadmaps, persona maps, decision logs) live under
52
+ `agents/roadmaps/` and `agents/contexts/`. Roadmaps are transient
53
+ working layers — agents that need a wing's plate look it up by wing
54
+ number rather than by file path (per `no-roadmap-references`).
55
+
24
56
  ## Source of truth
25
57
 
26
58
  | Directory | Purpose | Editable? |
@@ -48,6 +80,15 @@ No application code or framework runtime (no Laravel / Symfony / Next.js /
48
80
  Express). The `composer.json` / `package.json` are thin distribution
49
81
  manifests.
50
82
 
83
+ **Cognition-only floor for Wings 2–4.** Wings 2, 3, and 4 enforce a
84
+ no-SaaS-auth, no-vendor-SDK, no-stage-prescription floor: cognition
85
+ artifacts (markdown tables, scoring rubrics, walkthroughs) must work
86
+ in any host without external dependencies. The structural-malice
87
+ check in `skill_linter.py` enforces this boundary mechanically (no
88
+ credential exfiltration, no remote execution, no shell injection in
89
+ subprocess calls — see `.agent-src.uncompressed/rules/skill-quality.md`
90
+ § Structural Malice Floor).
91
+
51
92
  ## Working on this repo
52
93
 
53
94
  ```bash
@@ -102,9 +143,9 @@ and
102
143
 
103
144
  ```
104
145
  .agent-src.uncompressed/ ← edit here
105
- skills/ (129 skills)
106
- rules/ (58 rules)
107
- commands/ (95 commands)
146
+ skills/ (134 skills)
147
+ rules/ (56 rules)
148
+ commands/ (94 commands)
108
149
  personas/ (7 personas)
109
150
  templates/ (AGENTS.md, copilot-instructions.md, skill.md, …)
110
151
  contexts/
package/CHANGELOG.md CHANGED
@@ -318,6 +318,179 @@ our recommendation order, not its support status.
318
318
  users" tension without removing any path that an existing user
319
319
  might rely on.
320
320
 
321
+ ## [1.20.0](https://github.com/event4u-app/agent-config/compare/1.19.0...1.20.0) (2026-05-06)
322
+
323
+ ### Features
324
+
325
+ * **rules:** add no-attribution-footers + create-pr strip-pass ([7f72630](https://github.com/event4u-app/agent-config/commit/7f72630e0f334b30df6bc8ffc0fabb82fcca2fe3))
326
+ * **orchestration:** mode-6 do-in-worktrees for cross-wing chains ([9087e50](https://github.com/event4u-app/agent-config/commit/9087e50f753fa5c4ef0eb1a048a64f7ccb4994af))
327
+ * **cognition:** port five senior-tier cognition skills (Wings 3+4) ([aa958e7](https://github.com/event4u-app/agent-config/commit/aa958e772f82f05f3b23f9bbdd38ff0c8a89bd51))
328
+ * **handoff:** cross-wing handoff contract + lint ([cb8e73a](https://github.com/event4u-app/agent-config/commit/cb8e73a8e0dd433d8e166ab926f585914aa5dbf1))
329
+ * **skill-quality:** senior-tier authoring standard + structural malice lint ([bcbf8de](https://github.com/event4u-app/agent-config/commit/bcbf8de61f4d6b47fe244c80722886f512315caf))
330
+ * **chat-history:** surface helper-built summary in session picker ([0bdd61b](https://github.com/event4u-app/agent-config/commit/0bdd61b1f00ed911ee5dbf764e9598f24d80fb54))
331
+ * **infra:** relocate chat-history + prices to agents/ folder ([2727f26](https://github.com/event4u-app/agent-config/commit/2727f26bb986b4ed7414f466561ae600ca3a24ba))
332
+ * **council:** add --model per-invocation override ([b21a20c](https://github.com/event4u-app/agent-config/commit/b21a20c16b49392070c62fc21af8ab887b8df978))
333
+ * **settings:** expose chat_history.text_limits in template ([7941d7f](https://github.com/event4u-app/agent-config/commit/7941d7fd9a4a66fde046646661c0f8a467fc6900))
334
+ * add docs-verified hook extractors for cursor/cline/windsurf/gemini ([5fa2e14](https://github.com/event4u-app/agent-config/commit/5fa2e14dd5cd2b88156d36d5cc47d9fad918758a))
335
+ * **hooks:** universal capture + redact tooling for verified-platforms roadmap ([32a6ecd](https://github.com/event4u-app/agent-config/commit/32a6ecdc1f68c7187aa73a98e2116fb2f26ee201))
336
+ * **hooks:** cowork platform support + hook-manifest tightening ([6016286](https://github.com/event4u-app/agent-config/commit/601628601dde7bb15e0e5ae4d3d23fbdeac8d3a9))
337
+ * **chat-history:** schema v4 — stateless multi-session, position-based pruning, work-engine hook fix ([364990b](https://github.com/event4u-app/agent-config/commit/364990b3768af8d19bb6ecca916d3e5dac8c56c4))
338
+ * **chat-history:** shrink session sidecar to {fp, started_at} ([c00a3e2](https://github.com/event4u-app/agent-config/commit/c00a3e27691637c1ffe9ca6b05d1f0531c95e85d))
339
+ * **chat-history:** add /chat-history learn for selective historical context import ([2a88511](https://github.com/event4u-app/agent-config/commit/2a885111399eac7a5756edfaea5981e403e93177))
340
+ * **chat-history:** add session isolation (schema v3) with read filter and sessions API ([6fd118d](https://github.com/event4u-app/agent-config/commit/6fd118d0f138068789e2167226a524ef92b82eab))
341
+ * **contexts:** drop handshake context, slim platform-hooks doc ([ad39197](https://github.com/event4u-app/agent-config/commit/ad39197a089d79b00263625a4c84bb1ed1937193))
342
+ * **commands:** trim /chat-history to show-only ([ba1d305](https://github.com/event4u-app/agent-config/commit/ba1d305e2ca6365a0668113ce94a3c3afc78bcee))
343
+ * **work-engine:** drop chat-history turn-check + heartbeat hooks ([7883e64](https://github.com/event4u-app/agent-config/commit/7883e640bf880bf371ad1dd14a37b1f79d9aaf88))
344
+ * **chat-history:** auto-adopt on session_start + delete cooperative rules ([579a1bc](https://github.com/event4u-app/agent-config/commit/579a1bcdea2b4fe7dbff8d650997c35d5366d292))
345
+
346
+ ### Bug Fixes
347
+
348
+ * **no-roadmap-refs:** drop roadmap file links from stable artifacts ([b4a56f4](https://github.com/event4u-app/agent-config/commit/b4a56f499d1c070ad658fb9a87b6d272f1d05b79))
349
+ * **public-links:** tag cross-wing-handoff as beta, drop link into agents/contexts/ ([89ac1ac](https://github.com/event4u-app/agent-config/commit/89ac1ac13ce52d26914abe14de2336f68f4e252f))
350
+ * **check-refs:** allow runtime-bootstrapped agents/.agent-prices.md ([5b45a17](https://github.com/event4u-app/agent-config/commit/5b45a176cc42a04a771a01aa9384a0ad8da0b222))
351
+ * **roadmap:** demote Kill-switch headings so check-roadmap-trackable stops parsing them as phases ([3029195](https://github.com/event4u-app/agent-config/commit/3029195c75eb16b95f57dd2c04401f8ead63f5e9))
352
+ * **roadmap:** repair remaining check-refs errors in event-driven-discipline ([bd8f908](https://github.com/event4u-app/agent-config/commit/bd8f908f9d5955cb8aa8a6b8c841076f0ee4dc91))
353
+ * **roadmap:** repair broken refs in event-driven-discipline ([6584a52](https://github.com/event4u-app/agent-config/commit/6584a5221a0fdb05b2f69d7a6b5c9c4c7b8ee163))
354
+ * **chat-history:** migrate stale v3 header in-place on first hook write ([d239a39](https://github.com/event4u-app/agent-config/commit/d239a3903a81a569ee2cd372dd3c6c709153bbb8))
355
+ * **lint:** add skills frontmatter to /chat-history learn ([01e8db3](https://github.com/event4u-app/agent-config/commit/01e8db31a1822c275dff6410fed2622ba9683fad))
356
+ * **readme:** drop agents/contexts/ deep-link, mark hook-architecture-v1 as beta ([eeacbeb](https://github.com/event4u-app/agent-config/commit/eeacbeb1e748e98613102f0008756a5db155159b))
357
+
358
+ ### Documentation
359
+
360
+ * **roadmaps:** add productization + kernel-and-router roadmaps ([1f7fbd4](https://github.com/event4u-app/agent-config/commit/1f7fbd4aca67e33a086d90e8a9e316ab0d7d8815))
361
+ * **roadmap:** add road-to-package-optimization + dashboard sync ([016597f](https://github.com/event4u-app/agent-config/commit/016597ff468bc74cfefa0af9e86052cce872d865))
362
+ * **analysis:** add package-optimizer design comparison ([607cf7f](https://github.com/event4u-app/agent-config/commit/607cf7f2b1786b62b36265798f66daa057d37e8f))
363
+ * **council:** add package-optimizer design Q&A ([2211a59](https://github.com/event4u-app/agent-config/commit/2211a59fc8ae408a18a01101ac33711eda8a8285))
364
+ * **roadmap:** add road-to-token-optimization + dashboard sync ([6348108](https://github.com/event4u-app/agent-config/commit/6348108162993e5947eea3d5612e43c4fdc18686))
365
+ * **analysis:** add token-optimizer design comparison ([05462cf](https://github.com/event4u-app/agent-config/commit/05462cf17ebab4dd9c02b9683bc741e5be3c8a12))
366
+ * **council:** add token-optimizer skill design Q&A ([eb6f9c3](https://github.com/event4u-app/agent-config/commit/eb6f9c3aad9c4ef20707181f8f3454f37f405761))
367
+ * **roadmap:** add road-to-ruflo-adoption + dashboard sync ([009d94d](https://github.com/event4u-app/agent-config/commit/009d94d26c83c28dc0b2bac52b7109ff5f6a72d9))
368
+ * **analysis:** add ruflo harvest comparison ([55d371c](https://github.com/event4u-app/agent-config/commit/55d371c1d427d20391f875430541d47b81fb9095))
369
+ * **council:** add ruflo harvest prioritization Q&A ([7452d39](https://github.com/event4u-app/agent-config/commit/7452d3966bd6f7ce8e8f6e03e88a6bc6acb6fef8))
370
+ * **roadmap:** add road-to-mobile-adoption + dashboard sync ([ca092df](https://github.com/event4u-app/agent-config/commit/ca092df913d00870d3227e212e507075462f0d87))
371
+ * **analysis:** add mobile harvest comparison ([6791a78](https://github.com/event4u-app/agent-config/commit/6791a780276da3fccd100d6f5fd6b6e29c466673))
372
+ * **council:** add mobile harvest prioritization Q&A ([48cc665](https://github.com/event4u-app/agent-config/commit/48cc6655927447e18fea455c89c7c7066c4ec9f6))
373
+ * **roadmap:** add road-to-deep-research-adoption + dashboard sync ([9adc2d8](https://github.com/event4u-app/agent-config/commit/9adc2d8b0dd7ee0cdd2b919a4d776cab0f9f4b7a))
374
+ * **analysis:** add deep-research harvest comparison ([4f5ead5](https://github.com/event4u-app/agent-config/commit/4f5ead50ee02de32016262fe6189208c7f9c6cbc))
375
+ * **council:** add deep-research harvest prioritization Q&A ([1b08ea5](https://github.com/event4u-app/agent-config/commit/1b08ea5bdac158bb119f0851684f391e69e26c72))
376
+ * add Microck deep-scan harvest analysis, council artifacts, and roadmap ([36baf23](https://github.com/event4u-app/agent-config/commit/36baf23ef898ab860163fcacfa9239a403032df0))
377
+ * add Microck methodology comparison analysis ([1e34e78](https://github.com/event4u-app/agent-config/commit/1e34e788877a9f6101af5426587de63156e267dd))
378
+ * add markitdown adoption analysis, council artifacts, and roadmap ([276b5d4](https://github.com/event4u-app/agent-config/commit/276b5d4374547386d407b1a01995620c90754363))
379
+ * **suite:** lock identity as four-wing governed skill suite ([47c8211](https://github.com/event4u-app/agent-config/commit/47c8211ab7b42fa97352f747e2081fba82fe92b5))
380
+ * **roadmap:** expand event-driven-discipline with platform tiers ([11edf9b](https://github.com/event4u-app/agent-config/commit/11edf9bb7666eaac18f7b8937437ff07db2b28f7))
381
+ * sync active command count to 94 (drift fix) ([9be26bc](https://github.com/event4u-app/agent-config/commit/9be26bc6f4a2dbfd2bb53fe7052ce5717a6f9c47))
382
+ * **roadmap:** event-driven agent discipline v3 ([71728cd](https://github.com/event4u-app/agent-config/commit/71728cde49a08f74c9fb44b133befcd4b6b89796))
383
+ * **hooks:** relocate payload capture guide to docs/ ([4d39510](https://github.com/event4u-app/agent-config/commit/4d395108d461137e4df15adb04eed5fdd2a27dbb))
384
+ * **rules,roadmap:** inline user-interaction failure-mode catalog + chat-history verified-platforms roadmap ([7ec07a0](https://github.com/event4u-app/agent-config/commit/7ec07a0733179373bcf3df6affcefe75ce341440))
385
+ * **chat-history:** document v3 sidecar shape and legacy kill-switch ([2d1a393](https://github.com/event4u-app/agent-config/commit/2d1a39316c595810b24cc5e14fb153a2cf6a48c3))
386
+ * bump remaining 92 → 93 command counts in browse + tools blurb ([1eeb019](https://github.com/event4u-app/agent-config/commit/1eeb019e34f1dfa0747e65eee304b8897c650389))
387
+ * regenerate index/catalog and tag sidecar-shrink complexity ([c8e25d8](https://github.com/event4u-app/agent-config/commit/c8e25d86f6b19b10c06a7d845dc81da840ea6fb6))
388
+ * bump command count to 93 across README, AGENTS, and architecture ([1902f22](https://github.com/event4u-app/agent-config/commit/1902f2230c433f1f33bf2ae4ad2cfbf2cfc3274c))
389
+ * **chat-history:** document session-isolation read contract in platform-hooks context ([a59602e](https://github.com/event4u-app/agent-config/commit/a59602e8ad160f2da90ca8553b4e7c5fd8f62a60))
390
+
391
+ ### Refactoring
392
+
393
+ * **work-engine:** remove obsolete chat-history heartbeat hook ([df2c6f1](https://github.com/event4u-app/agent-config/commit/df2c6f101edd60f77877c6162753c5b7d13f1992))
394
+ * **chat-history:** split learn into import + project-learning workflow ([e11daa5](https://github.com/event4u-app/agent-config/commit/e11daa5c389ca1a4f3dd9b5ca123c57e145476c8))
395
+
396
+ ### Tests
397
+
398
+ * **budget:** re-baseline TOP5_CEILING after language-and-tone re-sync ([3ac7b7b](https://github.com/event4u-app/agent-config/commit/3ac7b7b5b92d7a1cdfd6b80c6d77151034847939))
399
+
400
+ ### Chores
401
+
402
+ * **matrix:** regenerate ownership matrix after no-attribution-footers add ([1bb7a9e](https://github.com/event4u-app/agent-config/commit/1bb7a9e452089f57f29c5aa74673fe682ecc682b))
403
+ * **index:** regenerate after no-attribution-footers rule add ([0a95647](https://github.com/event4u-app/agent-config/commit/0a9564795b7d1c0a9e353927c07d9f15459f5ee8))
404
+ * **tools:** regenerate .windsurfrules after no-attribution-footers trim ([d2a780b](https://github.com/event4u-app/agent-config/commit/d2a780b9c538c22fdc56ebcb1c245b23dababdee))
405
+ * **rules:** trim no-attribution-footers to satisfy long_rule budget ([c407192](https://github.com/event4u-app/agent-config/commit/c40719271caddb1ccb0bf7e144aa42a295e391a5))
406
+ * **ci:** unblock PR #44 — broken refs + word-count regression ([eccede0](https://github.com/event4u-app/agent-config/commit/eccede000451c4cec5b547deca1d78e0d3d916b5))
407
+ * regenerate roadmap progress dashboard ([0c68f5b](https://github.com/event4u-app/agent-config/commit/0c68f5b354a61865836cde2e07fbfb19a3446e31))
408
+ * **ownership-matrix:** regenerate after suite-closure work ([0b7f992](https://github.com/event4u-app/agent-config/commit/0b7f9920702df1e8b5b7db47d596caec312e0c17))
409
+ * **roadmaps:** tag wing roadmaps with complexity: structural ([1e0c9c6](https://github.com/event4u-app/agent-config/commit/1e0c9c6b32e5ba16f34e62efb56a5a563a42b11c))
410
+ * **index:** regenerate agents/index and docs/catalog ([9a3c1cb](https://github.com/event4u-app/agent-config/commit/9a3c1cb5c6730e5d48c85b85cf055f6e0302a5a7))
411
+ * **sync:** refresh compression hashes and gitignore ([5f91975](https://github.com/event4u-app/agent-config/commit/5f91975f81c2c1ba0bf079b8366750e2aec1e984))
412
+ * **roadmaps:** regenerate roadmaps-progress dashboard ([3d85dbd](https://github.com/event4u-app/agent-config/commit/3d85dbd854cbabc0c85c47685bdb96a22338a9fa))
413
+ * **council:** remove unused playwright transport-mode scaffold ([672c512](https://github.com/event4u-app/agent-config/commit/672c5126e477ec43e4cc50d17e34f7ee3bca9a53))
414
+ * **council:** default transport mode to manual instead of api ([4a41dfb](https://github.com/event4u-app/agent-config/commit/4a41dfbbaf879f5333ba5b665d5a0e32c4fac82d))
415
+ * **roadmap:** regenerate roadmaps-progress dashboard ([6b01795](https://github.com/event4u-app/agent-config/commit/6b01795a267d5f69c5754ef7d59fbb125187be3a))
416
+ * **ownership:** regenerate file-ownership matrix ([383d580](https://github.com/event4u-app/agent-config/commit/383d5808d5a0234149a69deb744625b1bc983b95))
417
+ * **compress:** re-compress language-and-tone + user-interaction mirrors ([66a9f91](https://github.com/event4u-app/agent-config/commit/66a9f91520775f0097e33f688b2a2fa458c2d14b))
418
+ * **index:** regenerate index + catalog after command-count sync ([03cf603](https://github.com/event4u-app/agent-config/commit/03cf603e84feedb7eea1845f39f258dbf0225f3a))
419
+ * **hashes:** refresh compression hashes for language-and-tone + user-interaction ([fc361b4](https://github.com/event4u-app/agent-config/commit/fc361b49f19c14ddc3e4b8aa33093d1f9fa4ca7c))
420
+ * add chat history cross agend hardening ([b9b9adb](https://github.com/event4u-app/agent-config/commit/b9b9adb2fb14ca089e92070a57821762269517b6))
421
+ * **rules:** tighten language-and-tone and user-interaction iron laws ([57fa47d](https://github.com/event4u-app/agent-config/commit/57fa47d4331f0c2043165d82a3cbb2941c6278f9))
422
+ * **roadmap:** archive road-to-verified-chat-history-platforms ([b1881f0](https://github.com/event4u-app/agent-config/commit/b1881f084d2d2f9eba225d7144345163fcb0e1b3))
423
+ * **handoff:** close cowork chat-history handoff after council verification ([99190c9](https://github.com/event4u-app/agent-config/commit/99190c9f0f3c475ca11bab0e0482b20e82c1717c))
424
+ * **roadmap:** regenerate roadmap-progress dashboard ([c7e2ff1](https://github.com/event4u-app/agent-config/commit/c7e2ff14b6d7afc593a2d9b12775f16fe491e452))
425
+ * **roadmap:** archive sidecar-shrink roadmap with council notes ([3cd3826](https://github.com/event4u-app/agent-config/commit/3cd3826d86197e8e5297cef300d97ca23d7efc40))
426
+ * regenerate file-ownership matrix for /chat-history learn ([537e13e](https://github.com/event4u-app/agent-config/commit/537e13e2ccea293d9f15a0a68ee27bf21f1ddbb7))
427
+ * **roadmaps:** archive hook-only and session-isolation; add sidecar-shrink follow-up ([099a81d](https://github.com/event4u-app/agent-config/commit/099a81de5b90bd28dd7e4748612cf2efaf71ff28))
428
+ * **docs:** drop roadmap citations from superseded markers ([369eb7e](https://github.com/event4u-app/agent-config/commit/369eb7e33b831daf3cf3a1348637596913923bbe))
429
+ * **docs:** sync command counts to 92 after chat-history trim ([0b20e8f](https://github.com/event4u-app/agent-config/commit/0b20e8f05332974ad6ace222dfa152b086a42bf8))
430
+ * **docs+settings:** hook-only sweep + remove dead phase-coupling guard ([5a66dc9](https://github.com/event4u-app/agent-config/commit/5a66dc954959c0dd02babb0661014fbf387ffec4))
431
+
432
+ ## [1.19.0](https://github.com/event4u-app/agent-config/compare/1.18.0...1.19.0) (2026-05-05)
433
+
434
+ ### Features
435
+
436
+ * **rules:** treat slash command as operator and prose as target ([f73947e](https://github.com/event4u-app/agent-config/commit/f73947e93bc8121524d811a5f17d548499023751))
437
+ * **ai-council:** auto-prune session folders past retention window ([bbfaa93](https://github.com/event4u-app/agent-config/commit/bbfaa93fd28bc3a84030c30ab9cea429ac68bea5))
438
+ * **settings-sync:** additive sync with verbatim user-line preservation ([f996cf3](https://github.com/event4u-app/agent-config/commit/f996cf3811e924d2ffecbc3d11bac447308efc5a))
439
+ * **roadmap:** add quality_cadence setting to throttle /roadmap execute pipeline runs ([d5ef7bf](https://github.com/event4u-app/agent-config/commit/d5ef7bf85e70c95103c6fc65507f99fdd35050dd))
440
+ * **ci:** add lint_showcase_sessions gate ([c4f48bb](https://github.com/event4u-app/agent-config/commit/c4f48bba05d266899282742320b7f83bc636cc7c))
441
+ * **council:** add CLI entry-point with estimate/run/render subcommands (Phase 6.7) ([f20f599](https://github.com/event4u-app/agent-config/commit/f20f5993dda1325f19f8e26a130ef37f995b5a9d))
442
+ * **taskfile:** modularize Taskfile.yml into taskfiles/ groups (Phase 6.1) ([41cbe46](https://github.com/event4u-app/agent-config/commit/41cbe46d6f9289c98bb3f717dcac74c44154fc21))
443
+ * **hooks:** add verify-before-complete and minimal-safe-diff concerns ([2507aef](https://github.com/event4u-app/agent-config/commit/2507aefcc88857fd120cfd09d5c93555cb89b868))
444
+ * **governance:** one-off-script lifecycle + showcase capture + tier-retrofit archive ([0940f91](https://github.com/event4u-app/agent-config/commit/0940f91d74a759de6601f5367e8fd3e2925f4c51))
445
+ * **work_engine:** decision-trace + memory-visibility hooks, scoring, contracts ([91cb0a5](https://github.com/event4u-app/agent-config/commit/91cb0a547971ff5f9597997bc36607ca6049be89))
446
+ * **rules:** tier frontmatter sweep across all 58 rules + lint + budget rebaseline ([a9c3694](https://github.com/event4u-app/agent-config/commit/a9c3694bb22cbd87574c1ffd53d0cb9b76a60479))
447
+ * **hooks:** per-platform bridges, install integration, hooks:status, smoke ([c33058a](https://github.com/event4u-app/agent-config/commit/c33058a49a20c6d4d21a7933b85ea3b618a6d433))
448
+ * **hooks:** universal dispatcher, manifest, envelope, state I/O ([28c4f8c](https://github.com/event4u-app/agent-config/commit/28c4f8c7f0e7bd50b6403dfeab0dcaa623dd5ca3))
449
+ * add collision check to roadmap creation flow ([19b65d5](https://github.com/event4u-app/agent-config/commit/19b65d5f2500ddb7c8bfcbb7466c33de0d64043c))
450
+
451
+ ### Bug Fixes
452
+
453
+ * **ai-council:** use max_completion_tokens for OpenAI o1 models ([8d9e179](https://github.com/event4u-app/agent-config/commit/8d9e179a36d3ba2c68de09ba426782fd43792b85))
454
+ * **skills/roadmap-management:** drop task-ci literal to satisfy portability lint ([790af5e](https://github.com/event4u-app/agent-config/commit/790af5e61a3af3472027d2eef1d939106c95d6ea))
455
+ * **install.sh:** avoid SIGPIPE race in clean_stale that deleted live files ([08670d6](https://github.com/event4u-app/agent-config/commit/08670d66c6285a84d15e44d00e5cfecc6870a4e7))
456
+ * **roadmaps:** re-anchor relative paths in archived 3a protocol ([e0017de](https://github.com/event4u-app/agent-config/commit/e0017de1b55b43e2c8ea5b3f9b51f077cb68e0e3))
457
+
458
+ ### Performance
459
+
460
+ * **ci:** parallelise test suite — bash xargs -P + pytest-xdist ([2e74b31](https://github.com/event4u-app/agent-config/commit/2e74b3104d0a881832cbebb4dcaddecc865b65c3))
461
+ * **ai-council/bundler:** fix catastrophic regex backtracking in redact() ([0e277e7](https://github.com/event4u-app/agent-config/commit/0e277e7ca36b452cc1cc4d8abdeaaa14e9aebbaf))
462
+
463
+ ### Documentation
464
+
465
+ * **roadmaps:** add chat-history hook-only reduction roadmap ([529f3b7](https://github.com/event4u-app/agent-config/commit/529f3b7c06fae8b560ce0bb436fc701b1418a024))
466
+ * **roadmaps:** add road-to-proof-not-features draft ([4664bd4](https://github.com/event4u-app/agent-config/commit/4664bd42a0e0bd8ff9eddc6d8907ff9a217a8f11))
467
+ * tighten wording in three rules and one command ([14ed864](https://github.com/event4u-app/agent-config/commit/14ed8640f18e3bfc52819bb150066ecc453fb17a))
468
+ * **roadmap:** archive road-to-feedback-consolidation (43/43 done) ([f053c6d](https://github.com/event4u-app/agent-config/commit/f053c6df94620a4cbf89e75ba73a7bb369c9395b))
469
+ * **roadmap:** close Phase 1 — showcase infra shipped, sessions deferred ([49a156b](https://github.com/event4u-app/agent-config/commit/49a156b40eecd728841b2eaef3565850f1020e0a))
470
+ * **roadmap:** close Phase 6 — mark 6.1/6.4/6.5/6.7 complete (89%) ([4b645cf](https://github.com/event4u-app/agent-config/commit/4b645cf9fc9acb7b7bc227f790e00c3efae66790))
471
+ * **readme:** 3-path entry table + tier-coverage drift sentinel (Phase 6.4 + 6.5) ([ae712f0](https://github.com/event4u-app/agent-config/commit/ae712f034e5eb67481175835d7a9eded921ee222))
472
+ * **roadmap:** mark Phase 5 complete (Tier-1 hook concerns shipped) ([433c5d1](https://github.com/event4u-app/agent-config/commit/433c5d1efb352de26671caed0e24a6b1e673eab6))
473
+ * **readme:** trim under 500-line linter ceiling ([2c3b496](https://github.com/event4u-app/agent-config/commit/2c3b496552cdd73b02e7b08d5c231a9f86e326c3))
474
+ * **agents:** roadmap progress, ownership matrix, agents index sync ([2368e37](https://github.com/event4u-app/agent-config/commit/2368e37aee886125997bfda4299599ebea9a14ec))
475
+ * add feedback consolidation roadmap and regenerate dashboard ([96fce45](https://github.com/event4u-app/agent-config/commit/96fce45055b2da367b8a45536c7a5bdcd1e03d84))
476
+
477
+ ### Refactoring
478
+
479
+ * **hooks:** concerns share atomic-write state I/O + dispatcher-friendly stdin ([5cac705](https://github.com/event4u-app/agent-config/commit/5cac705edfd46ad8d27ffd0008bdf4723317a4eb))
480
+
481
+ ### Tests
482
+
483
+ * **hooks:** parity tests for tier-1 hook concerns ([540468c](https://github.com/event4u-app/agent-config/commit/540468cd150447d6b588d3015865660a555e4f8d))
484
+
485
+ ### Chores
486
+
487
+ * **tools:** regenerate .windsurfrules with slash-command-routing-policy operator/target sections ([7825600](https://github.com/event4u-app/agent-config/commit/78256000a2da9cc313eb272059bb363acbc5290e))
488
+ * **rules:** sync compressed slash-command-routing-policy with operator/target sections ([916357c](https://github.com/event4u-app/agent-config/commit/916357c7d185d717187845478e8318025330d3a9))
489
+ * **rules:** promote verify-before-complete and minimal-safe-diff to tier 2a ([d62fb84](https://github.com/event4u-app/agent-config/commit/d62fb845a14065706c46c4425b261b57ac155c27))
490
+ * ignore .agent-chat-history.session sidecar ([42741c8](https://github.com/event4u-app/agent-config/commit/42741c87f83bf24416eb3916cbced865ae642688))
491
+ * **infra:** wire lint-rule-tiers + lint-hook-manifest + lint-one-off-age tasks; pyproject pytest importlib; .windsurfrules Copilot fallback ([5b88093](https://github.com/event4u-app/agent-config/commit/5b8809398dd332a3ebad3478f7a38cf48ef119e1))
492
+ * **roadmaps:** archive structural-optimization companion artefacts ([928c884](https://github.com/event4u-app/agent-config/commit/928c88469787cd037c54acd0006039ee9b86f9bb))
493
+
321
494
  ## [1.18.0](https://github.com/event4u-app/agent-config/compare/1.17.0...1.18.0) (2026-05-04)
322
495
 
323
496
  ### Features
package/README.md CHANGED
@@ -7,20 +7,22 @@ Give your AI agents an audit-disciplined orchestration contract — testing, Git
7
7
  > Your agent picks up the project's stack, runs tests, prepares PRs, fixes CI — and follows your team's coding standards while doing it. Stack-aware skill sets ship for PHP (Laravel · Symfony · Zend/Laminas), JavaScript (Next.js · React · Node), and cross-stack concerns (API · testing · security · observability).
8
8
 
9
9
  <p align="center">
10
- <strong>129 Skills</strong> · <strong>58 Rules</strong> · <strong>95 Commands</strong> · <strong>51 Guidelines</strong> · <strong>8 AI Tools</strong>
10
+ <strong>134 Skills</strong> · <strong>56 Rules</strong> · <strong>94 Commands</strong> · <strong>51 Guidelines</strong> · <strong>8 AI Tools</strong>
11
11
  </p>
12
12
 
13
13
  ---
14
14
 
15
15
  ## Start here
16
16
 
17
- New to agent-config? 60 seconds, three links:
17
+ Three ways in, depending on what you're doing today:
18
18
 
19
- 1. **[Install](#quickstart)** `composer require` or `npm install`, then run the installer.
20
- 2. **[First command](#2-minute-demo-implement-ticket)** — `/implement-ticket` or `/work` walkthrough.
21
- 3. **[Where the rules live](#documentation)** `.augment/`, `.claude/`, `.cursor/`, and friends.
19
+ | Path | Audience | What it does |
20
+ |---|---|---|
21
+ | **[`/onboard`](.agent-src/commands/onboard.md)** | New user, fresh install | Captures name, IDE, rtk, and cost profile; sets `onboarding.onboarded=true` |
22
+ | **[`task ci`](docs/development.md#ci--verification)** | Contributor working **on** this package | Runs the full sync + lint + test pipeline; must be green before push |
23
+ | **[`task generate-tools`](docs/development.md#tool-generation)** | Multi-agent user / consumer project | Rebuilds `.claude/`, `.cursor/`, `.clinerules/`, `.windsurfrules` from the source |
22
24
 
23
- ---
25
+ If none of those apply yet — start with the [Quickstart](#quickstart) and pick a path once it's installed.
24
26
 
25
27
  ## Quickstart
26
28
 
@@ -63,6 +65,14 @@ project-locally for all supported AI tools. Task is required for
63
65
  *contributors* who want to rebuild the compressed content locally — see
64
66
  [CONTRIBUTING.md](CONTRIBUTING.md).
65
67
 
68
+ **Verify hook coverage** after installing — every supported platform
69
+ (Augment, Claude Code, Cowork, Cursor, Cline, Windsurf, Gemini CLI,
70
+ Copilot fallback) is wired through one universal dispatcher per
71
+ [`hook-architecture-v1`](docs/contracts/hook-architecture-v1.md) (beta). Run
72
+ `./agent-config hooks:status` for the matrix (`--strict` for CI,
73
+ `--format json` for tooling). The installer also dry-fires the
74
+ dispatcher per bridge as a post-install smoke test (skip: `--no-smoke`).
75
+
66
76
  ### For individual use (optional)
67
77
 
68
78
  Install directly in your agent for global, cross-project use:
@@ -332,7 +342,7 @@ Nothing runs automatically without your control. [Configure modes →](docs/cust
332
342
  | [`/jira-ticket`](.agent-src/commands/jira-ticket.md) | Read ticket from branch, implement feature |
333
343
  | [`/compress`](.agent-src/commands/compress.md) | Compress skills for token efficiency |
334
344
 
335
- → [Browse all 95 active commands](.agent-src/commands/)
345
+ → [Browse all 94 active commands](.agent-src/commands/)
336
346
 
337
347
  ---
338
348
 
@@ -357,7 +367,7 @@ Every developer gets the same behavior. No per-user setup needed.
357
367
  native slash-commands)
358
368
 
359
369
  > **What this means in practice:** Augment Code and Claude Code get the full
360
- > package (rules + 129 skills + 95 native commands). Cursor, Cline, Windsurf,
370
+ > package (rules + 134 skills + 94 native commands). Cursor, Cline, Windsurf,
361
371
  > Gemini CLI, and GitHub Copilot only get the **rules** natively; skills and
362
372
  > commands are available to them as documentation the agent can read, not as
363
373
  > first-class features.
@@ -479,20 +489,10 @@ task lint-skills # Lint skills, rules, commands
479
489
 
480
490
  ## Requirements
481
491
 
482
- **To install the package into a consumer project:**
483
-
484
- - **Bash** — primary installer is `scripts/install`, orchestrating
485
- `scripts/install.sh` (payload sync) and `scripts/install.py` (bridges).
486
- Available on macOS, Linux, and WSL.
487
- - **Python 3.10+** — required for the bridge stage only. Pre-installed
488
- on macOS 12.3+ and all major Linux distros. If missing, the
489
- orchestrator skips bridges and completes the payload sync.
490
- - **Composer or npm** — to pull the package itself.
491
-
492
- **Platform support:** macOS 12.3+, Linux (modern distros), and Windows
493
- (WSL2) are fully supported. Git Bash works but symlinks require
494
- Developer Mode; native PowerShell / cmd is not supported. Contributors
495
- rebuilding `.augment/` locally also need [Task](https://taskfile.dev/).
492
+ - **Bash** — `scripts/install` orchestrates payload sync (`install.sh`) and bridges (`install.py`).
493
+ - **Python 3.10+** — bridge stage only; missing → orchestrator skips bridges.
494
+ - **Composer or npm** — to pull the package.
495
+ - **Platform:** macOS 12.3+, Linux, WSL2. Git Bash needs Developer Mode for symlinks; native PowerShell / cmd unsupported. Contributors rebuilding `.augment/` also need [Task](https://taskfile.dev/).
496
496
 
497
497
  ## License
498
498
 
@@ -84,7 +84,7 @@ eloquent:
84
84
 
85
85
  # --- Chat history (crash recovery) ---
86
86
  #
87
- # Persistent JSONL log at .agent-chat-history (project root, git-ignored).
87
+ # Persistent JSONL log at agents/.agent-chat-history (git-ignored).
88
88
  # Keeps a durable record of the conversation so a crashed or switched
89
89
  # agent session can be resumed. See scripts/chat_history.py for the API.
90
90
  chat_history:
@@ -105,12 +105,19 @@ chat_history:
105
105
  # compress = mark for summarization on the next agent turn
106
106
  on_overflow: __CHAT_HISTORY_ON_OVERFLOW__
107
107
 
108
- # Heartbeat marker visibility (token-cost knob)
109
- # on = print the 📒 marker every reply (~20 tokens/reply, legacy)
110
- # off = never print (zero tokens, drift only visible by reading the file)
111
- # hybrid = print only on drift states (missing/foreign/returning); silent otherwise
112
- # YAML 1.1 booleanizes bare on/off both are accepted, no quoting needed.
113
- heartbeat: hybrid
108
+ # Per-entry-type text-length caps (chars). 0 = verbatim, no slice.
109
+ # N > 0 = collapse whitespace, slice to N chars, append " … [+K chars]"
110
+ # so the log self-reports truncation. Defaults match the hardcoded
111
+ # fallback in scripts/chat_history.py (DEFAULT_TEXT_LIMITS).
112
+ # user = your messages full text by default (most valuable for crash recovery)
113
+ # agent = agent replies — capped to keep the log compact under load
114
+ # tool = tool inputs/outputs — short by default; bump for noisy debugging
115
+ # phase = workflow phase markers — short by default
116
+ text_limits:
117
+ user: 0
118
+ agent: 5000
119
+ tool: 200
120
+ phase: 200
114
121
 
115
122
  # --- Optional pipelines ---
116
123
  pipelines:
@@ -121,6 +128,24 @@ pipelines:
121
128
  # want a silent agent; `custom` profile ignores this default entirely.
122
129
  skill_improvement: true
123
130
 
131
+ # --- Roadmap execution ---
132
+ #
133
+ # Controls when /roadmap execute runs the project's quality pipeline
134
+ # (the `task ci` / `make test` / `npm run check` style command).
135
+ # Steps are ALWAYS marked `[x]` and the dashboard is ALWAYS regenerated
136
+ # in the same response — that cadence is governed by `roadmap-progress-sync`
137
+ # and is non-negotiable. This setting only governs *quality tool runs*.
138
+ roadmap:
139
+ # When to run quality tools during /roadmap execute.
140
+ # end_of_roadmap = once, before archiving the completed roadmap (default — fastest, fewest tokens)
141
+ # per_phase = once after every completed phase
142
+ # per_step = after every completed step (legacy verbose; highest token cost)
143
+ # Trade-off: end_of_roadmap saves tokens and time but lets errors compound
144
+ # across phases. Pick per_phase if the work is risky or unfamiliar.
145
+ # Iron Law `verify-before-complete` still applies — fresh quality output
146
+ # is mandatory before any "roadmap complete" claim regardless of cadence.
147
+ quality_cadence: end_of_roadmap
148
+
124
149
  # --- Subagent orchestration ---
125
150
  #
126
151
  # Controls model selection and parallelism for subagent-based workflows
@@ -161,12 +186,11 @@ ai_council:
161
186
  # Default transport mode for every member (overridable per-member
162
187
  # below, and per-invocation via `/council mode:<x>`).
163
188
  #
164
- # api = direct SDK call against the provider's API (billable).
165
- # manual = copy-paste loop, user is the transport (free).
166
- # playwright = browser automation (Phase 2c, not yet wired).
189
+ # api = direct SDK call against the provider's API (billable).
190
+ # manual = copy-paste loop, user is the transport (free).
167
191
  #
168
- # Precedence: invocation flag > per-member mode > global mode > "api".
169
- mode: "api"
192
+ # Precedence: invocation flag > per-member mode > global mode > "manual".
193
+ mode: "manual"
170
194
 
171
195
  # Per-member configuration. Set enabled=true on the providers you want
172
196
  # to consult. The model field selects which model receives the query.
@@ -186,7 +210,7 @@ ai_council:
186
210
  # the user to continue. `max_total_usd: 0` disables the USD ceiling
187
211
  # (token caps still apply).
188
212
  #
189
- # Prices come from `.agent-prices.md` (gitignored, refreshed weekly
213
+ # Prices come from `agents/.agent-prices.md` (gitignored, refreshed weekly
190
214
  # by `python3 scripts/update_prices.py`; bootstrapped from
191
215
  # scripts/ai_council/_default_prices.py on first run).
192
216
  cost_budget:
@@ -195,6 +219,11 @@ ai_council:
195
219
  max_calls: 10
196
220
  max_total_usd: 0.50
197
221
 
222
+ # Retention for `agents/council-sessions/` audit folders. Sessions
223
+ # older than this are pruned automatically on the next `save()`.
224
+ # `0` disables pruning (keep forever — disk grows unbounded).
225
+ session_retention_days: 14
226
+
198
227
  # --- Onboarding ---
199
228
  #
200
229
  # Tracks whether the initial setup flow (/onboard) has been completed
@@ -19,13 +19,13 @@
19
19
  .agent-settings.backup.key-value
20
20
 
21
21
  # Agent config — persistent chat history (crash recovery, never commit)
22
- .agent-chat-history
23
- .agent-chat-history.bak
24
- .agent-chat-history.*.bak
22
+ /agents/.agent-chat-history
23
+ /agents/.agent-chat-history.bak
24
+ /agents/.agent-chat-history.*.bak
25
25
 
26
26
  # Agent config — artefact engagement telemetry (default-off, maintainer-only, never commit)
27
27
  .agent-engagement.jsonl
28
28
  .agent-engagement.jsonl.bak
29
29
 
30
30
  # Agent config — AI Council price table (refreshed weekly, never commit)
31
- .agent-prices.md
31
+ /agents/.agent-prices.md
@@ -62,9 +62,9 @@ fails on any source-side violation, without producing artifacts.
62
62
 
63
63
  | Layer | Count | Purpose |
64
64
  |---|---|---|
65
- | **Skills** | 129 | On-demand expertise — stack analysis (Laravel · Symfony · Zend / Laminas · Next.js · React · Node), testing, Docker, API design, security, observability, … |
66
- | **Rules** | 58 | Always-active constraints — coding standards, scope control, verification, language-and-tone, agent-authority |
67
- | **Commands** | 95 | Slash-command workflows — `/commit`, `/create-pr`, `/fix ci`, `/optimize skills`, `/feature plan`, `/work`, `/implement-ticket`, `/compress`, … |
65
+ | **Skills** | 134 | On-demand expertise — stack analysis (Laravel · Symfony · Zend / Laminas · Next.js · React · Node), testing, Docker, API design, security, observability, … |
66
+ | **Rules** | 56 | Always-active constraints — coding standards, scope control, verification, language-and-tone, agent-authority |
67
+ | **Commands** | 94 | Slash-command workflows — `/commit`, `/create-pr`, `/fix ci`, `/optimize skills`, `/feature plan`, `/work`, `/implement-ticket`, `/compress`, … |
68
68
  | **Guidelines** | 51 | Reference material cited by skills — PHP patterns, Eloquent, Playwright, agent-infra, … |
69
69
  | **Templates** | 7 | Scaffolds for features, roadmaps, contexts, skills, overrides |
70
70
  | **Contexts** | 5 | Shared knowledge about the system itself |