@event4u/agent-config 1.19.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.
- package/.agent-src/commands/agent-handoff.md +14 -10
- package/.agent-src/commands/chat-history/import.md +170 -0
- package/.agent-src/commands/chat-history/learn.md +178 -0
- package/.agent-src/commands/chat-history/show.md +17 -18
- package/.agent-src/commands/chat-history.md +26 -25
- package/.agent-src/commands/council/default.md +4 -7
- package/.agent-src/commands/create-pr.md +28 -8
- package/.agent-src/commands/sync-gitignore.md +1 -1
- package/.agent-src/contexts/communication/rules-auto/skill-quality-mechanics.md +76 -0
- package/.agent-src/contexts/communication/rules-auto/slash-command-routing-policy-mechanics.md +3 -3
- package/.agent-src/contexts/communication/rules-auto/user-interaction-mechanics.md +5 -12
- package/.agent-src/rules/direct-answers.md +10 -2
- package/.agent-src/rules/language-and-tone.md +37 -6
- package/.agent-src/rules/no-attribution-footers.md +48 -0
- package/.agent-src/rules/no-roadmap-references.md +1 -1
- package/.agent-src/rules/skill-quality.md +49 -0
- package/.agent-src/rules/user-interaction.md +21 -5
- package/.agent-src/skills/ai-council/SKILL.md +4 -5
- package/.agent-src/skills/dcf-modeling/SKILL.md +89 -0
- package/.agent-src/skills/funnel-analysis/SKILL.md +100 -0
- package/.agent-src/skills/md-language-check/SKILL.md +1 -1
- package/.agent-src/skills/okr-tree-modeling/SKILL.md +93 -0
- package/.agent-src/skills/rice-prioritization/SKILL.md +100 -0
- package/.agent-src/skills/subagent-orchestration/SKILL.md +34 -2
- package/.agent-src/skills/unit-economics-modeling/SKILL.md +104 -0
- package/.agent-src/skills/using-git-worktrees/SKILL.md +1 -0
- package/.agent-src/templates/agent-settings.md +5 -26
- package/.agent-src/templates/scripts/work_engine/hook_bootstrap.py +7 -5
- package/.agent-src/templates/scripts/work_engine/hooks/__init__.py +0 -4
- package/.agent-src/templates/scripts/work_engine/hooks/builtin/__init__.py +0 -4
- package/.agent-src/templates/scripts/work_engine/hooks/builtin/_chat_history_base.py +7 -51
- package/.agent-src/templates/scripts/work_engine/hooks/builtin/chat_history_append.py +1 -2
- package/.agent-src/templates/scripts/work_engine/hooks/builtin/chat_history_halt_append.py +1 -2
- package/.agent-src/templates/scripts/work_engine/hooks/builtin/memory_visibility.py +2 -3
- package/.agent-src/templates/skill.md +30 -1
- package/.claude-plugin/marketplace.json +8 -4
- package/AGENTS.md +44 -3
- package/CHANGELOG.md +111 -0
- package/README.md +6 -6
- package/config/agent-settings.template.yml +19 -13
- package/config/gitignore-block.txt +4 -4
- package/docs/architecture.md +3 -3
- package/docs/catalog.md +14 -12
- package/docs/contracts/adr-chat-history-split.md +10 -1
- package/docs/contracts/command-clusters.md +1 -1
- package/docs/contracts/cross-wing-handoff.md +133 -0
- package/docs/contracts/file-ownership-matrix.json +341 -126
- package/docs/contracts/hook-architecture-v1.md +8 -1
- package/docs/contracts/memory-visibility-v1.md +8 -24
- package/docs/customization.md +1 -1
- package/docs/getting-started.md +21 -29
- package/docs/guidelines/agent-infra/ask-when-uncertain-demos.md +1 -1
- package/docs/hook-payload-capture.md +221 -0
- package/docs/migrations/commands-1.15.0.md +17 -12
- package/docs/skills-catalog.md +5 -4
- package/llms.txt +4 -3
- package/package.json +1 -1
- package/scripts/agent-config +1 -1
- package/scripts/ai_council/_default_prices.py +4 -4
- package/scripts/ai_council/clients.py +1 -1
- package/scripts/ai_council/modes.py +3 -4
- package/scripts/ai_council/pricing.py +10 -9
- package/scripts/build_rule_trigger_matrix.py +1 -9
- package/scripts/chat_history.py +952 -596
- package/scripts/check_references.py +12 -2
- package/scripts/council_cli.py +54 -4
- package/scripts/hook_manifest.yaml +33 -0
- package/scripts/hooks/augment-chat-history.sh +10 -0
- package/scripts/hooks/cowork-dispatcher.sh +98 -0
- package/scripts/hooks/dispatch_hook.py +35 -0
- package/scripts/hooks_status.py +12 -1
- package/scripts/install-hooks.sh +2 -2
- package/scripts/install.sh +37 -0
- package/scripts/lint_handoffs.py +214 -0
- package/scripts/lint_hook_manifest.py +2 -1
- package/scripts/redact_hook_capture.py +148 -0
- package/scripts/schemas/skill.schema.json +5 -0
- package/scripts/skill_linter.py +163 -1
- package/scripts/update_prices.py +3 -3
- package/.agent-src/commands/chat-history/checkpoint.md +0 -126
- package/.agent-src/commands/chat-history/clear.md +0 -103
- package/.agent-src/commands/chat-history/resume.md +0 -183
- package/.agent-src/rules/chat-history-cadence.md +0 -143
- package/.agent-src/rules/chat-history-ownership.md +0 -124
- package/.agent-src/rules/chat-history-visibility.md +0 -97
- package/.agent-src/templates/scripts/work_engine/hooks/builtin/chat_history_heartbeat.py +0 -50
- package/.agent-src/templates/scripts/work_engine/hooks/builtin/chat_history_turn_check.py +0 -49
- package/scripts/check_phase_coupling.py +0 -148
|
@@ -118,6 +118,35 @@ Do NOT use when:
|
|
|
118
118
|
- Do NOT {anti-pattern 1}.
|
|
119
119
|
- Do NOT {anti-pattern 2}.
|
|
120
120
|
- Do NOT {anti-pattern 3}.
|
|
121
|
+
|
|
122
|
+
<!-- SENIOR-TIER STUB BLOCKS (delete entire section if not `tier: senior`):
|
|
123
|
+
Senior-tier skills (frontmatter `tier: senior`) require four extra
|
|
124
|
+
blocks per `.agent-src.uncompressed/rules/skill-quality.md` §
|
|
125
|
+
Senior-Tier Required Structure. Mid-tier and untiered skills MUST
|
|
126
|
+
remove this section entirely. The four blocks are enforced by
|
|
127
|
+
`scripts/skill_linter.py` for `tier: senior` skills only.
|
|
128
|
+
|
|
129
|
+
## Related Skills
|
|
130
|
+
|
|
131
|
+
**WHEN to use this**
|
|
132
|
+
- {situation A this skill resolves better than peer skill}
|
|
133
|
+
- {situation B}
|
|
134
|
+
|
|
135
|
+
**WHEN NOT to use this**
|
|
136
|
+
- {situation C} — route to [`{peer-skill}`](../{peer-skill}/SKILL.md)
|
|
137
|
+
- {situation D} — route to [`{peer-skill}`](../{peer-skill}/SKILL.md)
|
|
138
|
+
|
|
139
|
+
## When the agent should load this
|
|
140
|
+
|
|
141
|
+
- "{user phrase 1 — concrete paraphrase}"
|
|
142
|
+
- "{user phrase 2}"
|
|
143
|
+
- "{user phrase 3}"
|
|
144
|
+
|
|
145
|
+
## Output
|
|
146
|
+
|
|
147
|
+
1. **{artifact-name.md}** — {shape: markdown table / tree / report}
|
|
148
|
+
2. **{artifact-name-2.md}** — {shape}
|
|
149
|
+
-->
|
|
121
150
|
````
|
|
122
151
|
|
|
123
152
|
## Quality Checklist (5 Skill Killers)
|
|
@@ -132,5 +161,5 @@ Before considering a skill complete, verify it passes all 5 checks:
|
|
|
132
161
|
- [ ] **K6: Under 500 lines** — if larger, extract reference tables or templates into separate files in the skill folder
|
|
133
162
|
- [ ] **English only** — all content in English
|
|
134
163
|
- [ ] **No duplication** — doesn't repeat rules or guidelines that are already enforced elsewhere
|
|
135
|
-
- [ ] **No "Related skills" section** — the agent discovers
|
|
164
|
+
- [ ] **No "Related skills" section for mid-tier / untiered skills** — the agent discovers them via `<available_skills>` descriptions; cross-links waste tokens. Senior-tier skills (`tier: senior`) MUST include the block per `skill-quality.md` § Senior-Tier Required Structure (linter-enforced).
|
|
136
165
|
|
|
@@ -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.
|
|
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-
|
|
43
|
-
"./.claude/skills/chat-history-
|
|
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/ (
|
|
106
|
-
rules/ (
|
|
107
|
-
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,117 @@ 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
|
+
|
|
321
432
|
## [1.19.0](https://github.com/event4u-app/agent-config/compare/1.18.0...1.19.0) (2026-05-05)
|
|
322
433
|
|
|
323
434
|
### Features
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ 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>
|
|
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
|
---
|
|
@@ -66,9 +66,9 @@ project-locally for all supported AI tools. Task is required for
|
|
|
66
66
|
[CONTRIBUTING.md](CONTRIBUTING.md).
|
|
67
67
|
|
|
68
68
|
**Verify hook coverage** after installing — every supported platform
|
|
69
|
-
(Augment, Claude, Cursor, Cline, Windsurf, Gemini CLI,
|
|
70
|
-
is wired through one universal dispatcher per
|
|
71
|
-
[`hook-architecture-v1`](docs/contracts/hook-architecture-v1.md). Run
|
|
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
72
|
`./agent-config hooks:status` for the matrix (`--strict` for CI,
|
|
73
73
|
`--format json` for tooling). The installer also dry-fires the
|
|
74
74
|
dispatcher per bridge as a post-install smoke test (skip: `--no-smoke`).
|
|
@@ -342,7 +342,7 @@ Nothing runs automatically without your control. [Configure modes →](docs/cust
|
|
|
342
342
|
| [`/jira-ticket`](.agent-src/commands/jira-ticket.md) | Read ticket from branch, implement feature |
|
|
343
343
|
| [`/compress`](.agent-src/commands/compress.md) | Compress skills for token efficiency |
|
|
344
344
|
|
|
345
|
-
→ [Browse all
|
|
345
|
+
→ [Browse all 94 active commands](.agent-src/commands/)
|
|
346
346
|
|
|
347
347
|
---
|
|
348
348
|
|
|
@@ -367,7 +367,7 @@ Every developer gets the same behavior. No per-user setup needed.
|
|
|
367
367
|
native slash-commands)
|
|
368
368
|
|
|
369
369
|
> **What this means in practice:** Augment Code and Claude Code get the full
|
|
370
|
-
> package (rules +
|
|
370
|
+
> package (rules + 134 skills + 94 native commands). Cursor, Cline, Windsurf,
|
|
371
371
|
> Gemini CLI, and GitHub Copilot only get the **rules** natively; skills and
|
|
372
372
|
> commands are available to them as documentation the agent can read, not as
|
|
373
373
|
> first-class features.
|
|
@@ -84,7 +84,7 @@ eloquent:
|
|
|
84
84
|
|
|
85
85
|
# --- Chat history (crash recovery) ---
|
|
86
86
|
#
|
|
87
|
-
# Persistent JSONL log at
|
|
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
|
-
#
|
|
109
|
-
#
|
|
110
|
-
#
|
|
111
|
-
#
|
|
112
|
-
#
|
|
113
|
-
|
|
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:
|
|
@@ -179,12 +186,11 @@ ai_council:
|
|
|
179
186
|
# Default transport mode for every member (overridable per-member
|
|
180
187
|
# below, and per-invocation via `/council mode:<x>`).
|
|
181
188
|
#
|
|
182
|
-
# api
|
|
183
|
-
# manual
|
|
184
|
-
# 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).
|
|
185
191
|
#
|
|
186
|
-
# Precedence: invocation flag > per-member mode > global mode > "
|
|
187
|
-
mode: "
|
|
192
|
+
# Precedence: invocation flag > per-member mode > global mode > "manual".
|
|
193
|
+
mode: "manual"
|
|
188
194
|
|
|
189
195
|
# Per-member configuration. Set enabled=true on the providers you want
|
|
190
196
|
# to consult. The model field selects which model receives the query.
|
|
@@ -204,7 +210,7 @@ ai_council:
|
|
|
204
210
|
# the user to continue. `max_total_usd: 0` disables the USD ceiling
|
|
205
211
|
# (token caps still apply).
|
|
206
212
|
#
|
|
207
|
-
# Prices come from
|
|
213
|
+
# Prices come from `agents/.agent-prices.md` (gitignored, refreshed weekly
|
|
208
214
|
# by `python3 scripts/update_prices.py`; bootstrapped from
|
|
209
215
|
# scripts/ai_council/_default_prices.py on first run).
|
|
210
216
|
cost_budget:
|
|
@@ -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
|
-
|
|
23
|
-
|
|
24
|
-
|
|
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
|
-
|
|
31
|
+
/agents/.agent-prices.md
|
package/docs/architecture.md
CHANGED
|
@@ -62,9 +62,9 @@ fails on any source-side violation, without producing artifacts.
|
|
|
62
62
|
|
|
63
63
|
| Layer | Count | Purpose |
|
|
64
64
|
|---|---|---|
|
|
65
|
-
| **Skills** |
|
|
66
|
-
| **Rules** |
|
|
67
|
-
| **Commands** |
|
|
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 |
|
package/docs/catalog.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# agent-config — Public Catalog
|
|
2
2
|
|
|
3
|
-
Consumer-facing catalog of all **
|
|
3
|
+
Consumer-facing catalog of all **332 public artefacts** shipped by
|
|
4
4
|
this package. Internal package-maintenance rules and deprecation shims
|
|
5
5
|
are excluded.
|
|
6
6
|
|
|
7
7
|
> **Regenerate:** `python3 scripts/generate_index.py`
|
|
8
8
|
> Auto-generated — do not edit manually.
|
|
9
9
|
|
|
10
|
-
## Skills (
|
|
10
|
+
## Skills (134)
|
|
11
11
|
|
|
12
12
|
| kind | name | extra | description |
|
|
13
13
|
|---|---|---|---|
|
|
@@ -39,6 +39,7 @@ are excluded.
|
|
|
39
39
|
| skill | [`dashboard-design`](../.agent-src/skills/dashboard-design/SKILL.md) | | Use when designing monitoring dashboards — visualization selection, layout principles, observability strategies (RED/USE/Golden Signals), and data storytelling. |
|
|
40
40
|
| skill | [`data-flow-mapper`](../.agent-src/skills/data-flow-mapper/SKILL.md) | | Use BEFORE editing code that touches user data — traces the value from entry → validation → transformation → storage → egress, every hop cited with file:line. |
|
|
41
41
|
| skill | [`database`](../.agent-src/skills/database/SKILL.md) | | Use when working with database architecture, MariaDB/MySQL tuning, indexing strategies, slow queries, or multi-connection patterns — even when the user just says 'this query is slow'. |
|
|
42
|
+
| skill | [`dcf-modeling`](../.agent-src/skills/dcf-modeling/SKILL.md) | | Wing-4 valuation cognition for a CFO / finance-partner. Use when a deal, internal investment, or board ask names DCF, intrinsic value, WACC, terminal value, or 'what's it worth on a 5-year hold'. |
|
|
42
43
|
| skill | [`dependency-upgrade`](../.agent-src/skills/dependency-upgrade/SKILL.md) | | Use when upgrading dependencies — "update Laravel", "bump PHP version", or "upgrade packages". Covers changelog review, breaking change detection, and verification. |
|
|
43
44
|
| skill | [`description-assist`](../.agent-src/skills/description-assist/SKILL.md) | | Use when polishing a skill/rule/command/guideline frontmatter description — pushier phrasing, trigger coverage, undertrigger audit — even if the user just says 'make this pushier'. |
|
|
44
45
|
| skill | [`design-review`](../.agent-src/skills/design-review/SKILL.md) | | Use when the user says "review the design", "check the UI", or wants a comprehensive UI/UX review. Uses a 7-phase methodology covering interaction, responsiveness, accessibility, and more. |
|
|
@@ -54,6 +55,7 @@ are excluded.
|
|
|
54
55
|
| skill | [`file-editor`](../.agent-src/skills/file-editor/SKILL.md) | | Use when opening edited files in the user's IDE. Reads settings from .agent-settings.yml to determine IDE and whether auto-open is enabled. |
|
|
55
56
|
| skill | [`finishing-a-development-branch`](../.agent-src/skills/finishing-a-development-branch/SKILL.md) | | Use when the feature is implementation-complete and the next step is 'ship it' — verifies, cleans up, and routes to merge/PR/park/discard — even when the user just says 'I'm done, what now?'. |
|
|
56
57
|
| skill | [`flux`](../.agent-src/skills/flux/SKILL.md) | | Use when the project uses `livewire/flux` — dispatched by `directives/ui/{apply,review,polish}.py`. Covers Flux components, slots, variants, and form primitives. |
|
|
58
|
+
| skill | [`funnel-analysis`](../.agent-src/skills/funnel-analysis/SKILL.md) | | Use when diagnosing where a SaaS or product funnel leaks — visitor → signup → activation → paid → retained — channel-agnostic, conversion-rate-driven. |
|
|
57
59
|
| skill | [`git-workflow`](../.agent-src/skills/git-workflow/SKILL.md) | | Use when working with Git — branch naming, commit messages, PR creation, rebasing, or the code review process — even when the user says 'push this' or 'merge the branch' without naming Git. |
|
|
58
60
|
| skill | [`github-ci`](../.agent-src/skills/github-ci/SKILL.md) | | Use when working with GitHub Actions — workflow YAML, quality gates, test matrices, deployment triggers, reusable workflows — even when the user just says 'my CI is failing' or 'add a check'. |
|
|
59
61
|
| skill | [`grafana`](../.agent-src/skills/grafana/SKILL.md) | | Use when working with Grafana — dashboards, Loki LogQL queries, alerting rules, monitoring panels — even when the user just says 'build me a dashboard' or 'query the logs' without naming Grafana. |
|
|
@@ -84,6 +86,7 @@ are excluded.
|
|
|
84
86
|
| skill | [`migration-creator`](../.agent-src/skills/migration-creator/SKILL.md) | | Use when the user says "create migration", "add column", or "new table". Creates migrations with correct table prefixes, column naming, and multi-tenant awareness. |
|
|
85
87
|
| skill | [`module-management`](../.agent-src/skills/module-management/SKILL.md) | | Use when the user says "create module", "explore module", or works within app/Modules/. Understands module structure, auto-loading, route registration, and namespace conventions. |
|
|
86
88
|
| skill | [`multi-tenancy`](../.agent-src/skills/multi-tenancy/SKILL.md) | | Use when working with the multi-tenant architecture — customer DB switching, FQDN routing, tenant isolation, or cross-tenant operations. |
|
|
89
|
+
| skill | [`okr-tree-modeling`](../.agent-src/skills/okr-tree-modeling/SKILL.md) | | Use when decomposing a company objective into team OKRs, auditing a draft OKR tree, or stress-testing an existing one for measurability and laddering. |
|
|
87
90
|
| skill | [`openapi`](../.agent-src/skills/openapi/SKILL.md) | | Use when documenting APIs — OpenAPI/Swagger, PHP attributes, Redocly validation, versioned specs — even when the user just says 'document this endpoint' without naming OpenAPI. |
|
|
88
91
|
| skill | [`override-management`](../.agent-src/skills/override-management/SKILL.md) | | Creates and manages project-level overrides for shared skills, rules, and commands — extending or replacing originals from .augment/ with project-specific behavior in agents/overrides/. |
|
|
89
92
|
| skill | [`performance`](../.agent-src/skills/performance/SKILL.md) | | Use when optimizing application performance — caching strategies, eager loading, query optimization, Redis patterns, or background job design. |
|
|
@@ -113,6 +116,7 @@ are excluded.
|
|
|
113
116
|
| skill | [`refine-ticket`](../.agent-src/skills/refine-ticket/SKILL.md) | | Refine a Jira/Linear ticket before planning — 'refine ticket', 'tighten AC on PROJ-123', 'ist das Ticket klar?' — rewritten ticket, Top-5 risks, persona voices, sub-skills orchestrated, close-prompt. |
|
|
114
117
|
| skill | [`requesting-code-review`](../.agent-src/skills/requesting-code-review/SKILL.md) | | Use when asking for a review or creating a PR — self-review first, frame the right context, test plan included — even when the user just says 'open a PR' or 'ready to merge'. |
|
|
115
118
|
| skill | [`review-routing`](../.agent-src/skills/review-routing/SKILL.md) | | Use when preparing a PR description, suggesting reviewers, or flagging risk — produces owner-mapped roles plus historical bug-pattern matches from project-local YAML. |
|
|
119
|
+
| skill | [`rice-prioritization`](../.agent-src/skills/rice-prioritization/SKILL.md) | | Use when ranking competing initiatives for a roadmap, breaking a tie between two features, or auditing a backlog for hidden low-value work via Reach × Impact × Confidence ÷ Effort. |
|
|
116
120
|
| skill | [`roadmap-management`](../.agent-src/skills/roadmap-management/SKILL.md) | | Use when the user says "create roadmap", "show roadmap", or "execute roadmap". Creates, reads, and manages roadmap files with phase tracking. |
|
|
117
121
|
| skill | [`rtk-output-filtering`](../.agent-src/skills/rtk-output-filtering/SKILL.md) | | Use when running verbose CLI commands — wraps them with rtk (Rust Token Killer) for 60-90% token savings. Covers installation, configuration, and usage patterns. |
|
|
118
122
|
| skill | [`rule-writing`](../.agent-src/skills/rule-writing/SKILL.md) | | Use when creating or editing a rule in .agent-src.uncompressed/rules/ — trigger wording, always vs auto classification, size budget — even when the user just says 'add a rule for X'. |
|
|
@@ -125,7 +129,7 @@ are excluded.
|
|
|
125
129
|
| skill | [`skill-reviewer`](../.agent-src/skills/skill-reviewer/SKILL.md) | | Use when reviewing, auditing, or optimizing skills — validates against the 7 Skill Killers checklist and produces fix recommendations. |
|
|
126
130
|
| skill | [`skill-writing`](../.agent-src/skills/skill-writing/SKILL.md) | | Use when deciding 'should this be a skill or a rule?', creating/improving/reviewing agent skills, SKILL.md frontmatter, or procedure sections — even without saying 'skill-writing'. |
|
|
127
131
|
| skill | [`sql-writing`](../.agent-src/skills/sql-writing/SKILL.md) | | Use when writing raw SQL — MariaDB/MySQL syntax, parameterization, raw migrations, seeders with `DB::statement` — even when the user just pastes a query and asks 'why is this slow' without naming SQL. |
|
|
128
|
-
| skill | [`subagent-orchestration`](../.agent-src/skills/subagent-orchestration/SKILL.md) | | Use when orchestrating implementer/judge subagents —
|
|
132
|
+
| skill | [`subagent-orchestration`](../.agent-src/skills/subagent-orchestration/SKILL.md) | | Use when orchestrating implementer/judge subagents — six modes (do-and-judge, do-in-steps, do-in-parallel, do-competitively, judge-with-debate, do-in-worktrees) — models from .agent-settings.yml. |
|
|
129
133
|
| skill | [`systematic-debugging`](../.agent-src/skills/systematic-debugging/SKILL.md) | | Use when hitting a bug, test failure, crash, or unexpected behavior — enforces reproduce → isolate → hypothesize → verify before any fix — even when the user just says 'this is broken' or 'quick fix'. |
|
|
130
134
|
| skill | [`technical-specification`](../.agent-src/skills/technical-specification/SKILL.md) | | Use when the user says "write a spec", "create RFC", or "document this decision". Writes technical specifications, RFCs, and ADRs with clear structure. |
|
|
131
135
|
| skill | [`terraform`](../.agent-src/skills/terraform/SKILL.md) | | Use when writing Terraform — AWS modules, resources, variables, outputs, remote state — even when the user just says 'provision this infra' or 'add an S3 bucket' without naming Terraform. |
|
|
@@ -134,6 +138,7 @@ are excluded.
|
|
|
134
138
|
| skill | [`test-performance`](../.agent-src/skills/test-performance/SKILL.md) | | Use when optimizing test suite performance — database setup, seeder optimization, parallel testing, CI pipeline efficiency, or RefreshDatabase alternatives. |
|
|
135
139
|
| skill | [`threat-modeling`](../.agent-src/skills/threat-modeling/SKILL.md) | | Use when adding auth, webhooks, uploads, queues, secrets, tenant boundaries, or public endpoints — produces trust boundaries + abuse cases mapped to files, BEFORE implementation. |
|
|
136
140
|
| skill | [`traefik`](../.agent-src/skills/traefik/SKILL.md) | | Use when setting up Traefik as a local reverse proxy — real domains on 127.0.0.1, trusted HTTPS via mkcert, automatic service discovery, and multi-project routing. |
|
|
141
|
+
| skill | [`unit-economics-modeling`](../.agent-src/skills/unit-economics-modeling/SKILL.md) | | Use when modeling CAC, LTV, gross-margin payback, or contribution margin per customer — for SaaS, marketplace, or transactional businesses. |
|
|
137
142
|
| skill | [`universal-project-analysis`](../.agent-src/skills/universal-project-analysis/SKILL.md) | | ONLY when user explicitly requests: full project analysis, deep codebase audit, or comprehensive architecture review. Routes to core and framework-specific analysis skills. |
|
|
138
143
|
| skill | [`upstream-contribute`](../.agent-src/skills/upstream-contribute/SKILL.md) | | Use when a learning, new skill, rule improvement, or bug fix from a consumer project should be contributed back to the shared agent-config package. |
|
|
139
144
|
| skill | [`using-git-worktrees`](../.agent-src/skills/using-git-worktrees/SKILL.md) | | Use when starting parallel work in isolation from the current branch — spawn a git worktree with ignore-safety checks and a clean test baseline — even when the user says 'try this on the side'. |
|
|
@@ -141,7 +146,7 @@ are excluded.
|
|
|
141
146
|
| skill | [`verify-completion-evidence`](../.agent-src/skills/verify-completion-evidence/SKILL.md) | | Use when claiming 'done', suggesting a commit, push, or PR — runs the evidence gate so completion claims come from fresh output in this message, not memory or earlier runs. |
|
|
142
147
|
| skill | [`websocket`](../.agent-src/skills/websocket/SKILL.md) | | Use when building real-time features — WebSocket broadcasting, live updates, presence channels, connection state — even when the user just says 'push this to the client live'. |
|
|
143
148
|
|
|
144
|
-
## Rules (
|
|
149
|
+
## Rules (53)
|
|
145
150
|
|
|
146
151
|
| kind | name | type | description |
|
|
147
152
|
|---|---|---|---|
|
|
@@ -154,9 +159,6 @@ are excluded.
|
|
|
154
159
|
| rule | [`ask-when-uncertain`](../.agent-src/rules/ask-when-uncertain.md) | always | Ask when uncertain — don't guess, assume, or improvise |
|
|
155
160
|
| rule | [`autonomous-execution`](../.agent-src/rules/autonomous-execution.md) | auto | Deciding whether to ask the user or just act on a workflow step — trivial-vs-blocking classification, autonomy opt-in detection, commit default; defers to non-destructive-by-default for the Hard Floor |
|
|
156
161
|
| rule | [`capture-learnings`](../.agent-src/rules/capture-learnings.md) | auto | After completing a task where a repeated mistake or successful pattern appeared — capture as rule or skill |
|
|
157
|
-
| rule | [`chat-history-cadence`](../.agent-src/rules/chat-history-cadence.md) | auto | Appending to .agent-chat-history — cadence boundaries (per_turn/per_phase/per_tool), turn-check ownership refusal handling, never writing the file directly; cadence is the trigger, not reply length |
|
|
158
|
-
| rule | [`chat-history-ownership`](../.agent-src/rules/chat-history-ownership.md) | auto | First turn or reference to .agent-chat-history — detects ownership (match/returning/foreign/missing) and HOOK/ENGINE/CHECKPOINT/MANUAL path classification with numbered-options prompt |
|
|
159
|
-
| rule | [`chat-history-visibility`](../.agent-src/rules/chat-history-visibility.md) | auto | Emitting the chat-history heartbeat marker — paste subprocess stdout verbatim or nothing, never type from memory, hybrid mode prints on drift only, slip handling per language-and-tone |
|
|
160
162
|
| rule | [`cli-output-handling`](../.agent-src/rules/cli-output-handling.md) | auto | Running CLI commands that produce verbose output — git, tests, linters, docker, build tools, artisan, npm, composer. Wrap with rtk when installed; tail/grep is fallback. |
|
|
161
163
|
| rule | [`command-suggestion-policy`](../.agent-src/rules/command-suggestion-policy.md) | auto | User prompt without /command but matching an eligible slash command — surface matches as numbered options with as-is escape hatch; never auto-executes, user always picks |
|
|
162
164
|
| rule | [`commit-conventions`](../.agent-src/rules/commit-conventions.md) | auto | Git commit message format, branch naming, conventional commits, committing, pushing, or creating pull requests |
|
|
@@ -174,6 +176,7 @@ are excluded.
|
|
|
174
176
|
| rule | [`minimal-safe-diff`](../.agent-src/rules/minimal-safe-diff.md) | auto | When writing or reviewing a diff — the smallest change that solves the stated problem; no drive-by edits, no opportunistic refactors, no reformatting of untouched code |
|
|
175
177
|
| rule | [`missing-tool-handling`](../.agent-src/rules/missing-tool-handling.md) | auto | When a CLI tool needed for the task is not installed — ask before working around it; do NOT install silently |
|
|
176
178
|
| rule | [`model-recommendation`](../.agent-src/rules/model-recommendation.md) | auto | Starting a new task, switching task type, or invoking a command — detect task complexity and recommend the optimal model (Opus/Sonnet/GPT) before any work |
|
|
179
|
+
| rule | [`no-attribution-footers`](../.agent-src/rules/no-attribution-footers.md) | auto | Generating PR/issue/comment/commit-message bodies — forbids unsolicited 'Generated with', 'Co-authored by', or 'Pull Request opened by' attribution footers in any user-owned artifact |
|
|
177
180
|
| rule | [`no-cheap-questions`](../.agent-src/rules/no-cheap-questions.md) | always | No cheap questions — never ask what context answers, never offer Iron-Law-violating options, never stage no-trade-off choices; mode-independent (off / auto / on) |
|
|
178
181
|
| rule | [`no-roadmap-references`](../.agent-src/rules/no-roadmap-references.md) | auto | Adding a link to a specific file in agents/roadmaps/ from any stable artifact (rule, skill, command, context, guideline) — roadmaps are transient; promote durable findings to agents/contexts/ instead |
|
|
179
182
|
| rule | [`non-destructive-by-default`](../.agent-src/rules/non-destructive-by-default.md) | always | Agent is never destructive — Hard Floor always asks for prod-trunk merges, deploys, pushes, prod data/infra, bulk deletions, and bulk-deletion/infra commits; no autonomy or roadmap bypass |
|
|
@@ -201,7 +204,7 @@ are excluded.
|
|
|
201
204
|
| rule | [`user-interaction`](../.agent-src/rules/user-interaction.md) | auto | Asking the user a question, presenting options, or summarizing progress — numbered-options Iron Law, single-recommendation rule, progress indicators |
|
|
202
205
|
| rule | [`verify-before-complete`](../.agent-src/rules/verify-before-complete.md) | always | Verify before completion — run tests and quality tools before claiming done |
|
|
203
206
|
|
|
204
|
-
## Commands (
|
|
207
|
+
## Commands (94)
|
|
205
208
|
|
|
206
209
|
| kind | name | cluster | description |
|
|
207
210
|
|---|---|---|---|
|
|
@@ -214,11 +217,10 @@ are excluded.
|
|
|
214
217
|
| command | [`analyze-reference-repo`](../.agent-src/commands/analyze-reference-repo.md) | | Analyze an external reference repository (competitor, inspiration, peer) and produce a structured comparison + adoption plan for this project. |
|
|
215
218
|
| command | [`bug-fix`](../.agent-src/commands/bug-fix.md) | | Plan and implement a bug fix — based on investigation, with quality checks and test verification |
|
|
216
219
|
| command | [`bug-investigate`](../.agent-src/commands/bug-investigate.md) | | Investigate a bug — auto-detect ticket from branch, gather Jira/Sentry/description context, trace root cause |
|
|
217
|
-
| command | [`chat-history:
|
|
218
|
-
| command | [`chat-history:
|
|
219
|
-
| command | [`chat-history:resume`](../.agent-src/commands/chat-history/resume.md) | cluster: chat-history | Load the persistent chat-history log into the current conversation — picks match/returning/foreign flow and supports resume, merge, replace, or continue |
|
|
220
|
+
| command | [`chat-history:import`](../.agent-src/commands/chat-history/import.md) | cluster: chat-history | Surface prior chat-history sessions as numbered options, let the user pick exactly one, then render its entries verbatim into the current chat — selective, user-driven cross-session import |
|
|
221
|
+
| command | [`chat-history:learn`](../.agent-src/commands/chat-history/learn.md) | cluster: chat-history | Pick a prior chat-history session and mine it for project-improving learnings — runs learning-to-rule-or-skill on the picked session, drafts proposal(s) under agents/proposals/ |
|
|
220
222
|
| command | [`chat-history:show`](../.agent-src/commands/chat-history/show.md) | cluster: chat-history | Show the status of the persistent chat-history log — file size, entry count, header fingerprint, age, and the last few entries |
|
|
221
|
-
| command | [`chat-history`](../.agent-src/commands/chat-history.md) | cluster: chat-history | Chat-history orchestrator — routes to show,
|
|
223
|
+
| command | [`chat-history`](../.agent-src/commands/chat-history.md) | cluster: chat-history | Chat-history orchestrator — routes to show, import, learn |
|
|
222
224
|
| command | [`check-current-md`](../.agent-src/commands/check-current-md.md) | | Check the open .md file (or a passed path) for German outside DE:/EN: anchor blocks — umlauts, function words, untranslated quotes. Reports and offers fixes. |
|
|
223
225
|
| command | [`commit:in-chunks`](../.agent-src/commands/commit/in-chunks.md) | cluster: commit | Stage and commit all uncommitted changes in logical chunks WITHOUT confirmation — sibling of /commit for autonomous flows |
|
|
224
226
|
| command | [`commit`](../.agent-src/commands/commit.md) | cluster: commit | Stage and commit all uncommitted changes — splits into logical commits following Conventional Commits |
|
|
@@ -4,7 +4,16 @@ stability: beta
|
|
|
4
4
|
|
|
5
5
|
# ADR — Chat-history rule split
|
|
6
6
|
|
|
7
|
-
> **Status:**
|
|
7
|
+
> **Status:** Superseded · 2026-05-04 · by
|
|
8
|
+
> [`agents/contexts/chat-history-platform-hooks.md`](../../agents/contexts/chat-history-platform-hooks.md).
|
|
9
|
+
> The cooperative three-rule split this ADR locked in
|
|
10
|
+
> (`chat-history-ownership` / `-cadence` / `-visibility`) has been
|
|
11
|
+
> reduced to a hook-only structural artifact. The three always-rules,
|
|
12
|
+
> the heartbeat marker, and the Foreign-Prompt handshake are gone;
|
|
13
|
+
> `session_start` hooks auto-adopt foreign sessions silently. The text
|
|
14
|
+
> below is preserved for historical context only.
|
|
15
|
+
>
|
|
16
|
+
> **Original status:** Decided · 2026-05-02
|
|
8
17
|
> **Context:** AI #1, AI #3, AI #5 review of PR #29 flagged the
|
|
9
18
|
> 200-line monolithic `rules/chat-history.md` as the rule the agent
|
|
10
19
|
> revisited 12+ times during the 1.14.0 cycle — three independent
|
|
@@ -30,7 +30,7 @@ column 1 of this table.
|
|
|
30
30
|
| `fix` | 1 | `ci` · `pr` · `pr-bots` · `pr-developers` · `portability` · `refs` · `seeder` | `fix-ci` · `fix-pr-comments` · `fix-pr-bot-comments` · `fix-pr-developer-comments` · `fix-portability` · `fix-references` · `fix-seeder` |
|
|
31
31
|
| `optimize` | 1 | `agents` · `augmentignore` · `rtk` · `skills` | `optimize-agents` · `optimize-augmentignore` · `optimize-rtk-filters` · `optimize-skills` |
|
|
32
32
|
| `feature` | 1 | `explore` · `plan` · `refactor` · `roadmap` · `dev` | `feature-explore` · `feature-plan` · `feature-refactor` · `feature-roadmap` · `feature-dev` |
|
|
33
|
-
| `chat-history` | 2 | `show` · `
|
|
33
|
+
| `chat-history` | 2 | `show` · `import` · `learn` | `chat-history` (legacy status) — `resume` / `clear` / `checkpoint` removed in `road-to-chat-history-hook-only` (auto-adopt + structural hooks); `import` (verbatim cross-session render) and `learn` (project-improving learning extraction) added in the v4 stateless schema |
|
|
34
34
|
| `agents` | 2 | `audit` · `cleanup` · `prepare` | `agents-audit` · `agents-cleanup` · `agents-prepare` |
|
|
35
35
|
| `memory` | 2 | `add` · `load` · `promote` · `propose` | `memory-add` · `memory-full` · `memory-promote` · `propose-memory` |
|
|
36
36
|
| `roadmap` | 2 | `create` · `execute` | `roadmap-create` · `roadmap-execute` |
|