@event4u/agent-config 1.23.0 → 1.25.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/analyze-reference-repo.md +3 -0
- package/.agent-src/commands/review-routing.md +7 -10
- package/.agent-src/commands/roadmap/process-full.md +41 -1
- package/.agent-src/contexts/authority/kernel-rule-edits.md +48 -0
- package/.agent-src/contexts/authority/scope-mechanics.md +15 -0
- package/.agent-src/contexts/contracts/consumer-agents-md-guide.md +127 -0
- package/.agent-src/contexts/contracts/emergency-triage-block.md +53 -0
- package/.agent-src/contexts/execution/roadmap-process-loop.md +29 -6
- package/.agent-src/rules/analysis-skill-routing.md +1 -1
- package/.agent-src/rules/artifact-drafting-protocol.md +1 -1
- package/.agent-src/rules/artifact-engagement-recording.md +1 -1
- package/.agent-src/rules/augment-source-of-truth.md +1 -1
- package/.agent-src/rules/autonomous-execution.md +1 -1
- package/.agent-src/rules/caveman-speak.md +1 -1
- package/.agent-src/rules/cli-output-handling.md +1 -1
- package/.agent-src/rules/command-suggestion-policy.md +1 -1
- package/.agent-src/rules/docs-sync.md +1 -1
- package/.agent-src/rules/guidelines.md +1 -1
- package/.agent-src/rules/improve-before-implement.md +1 -1
- package/.agent-src/rules/invite-challenge.md +1 -1
- package/.agent-src/rules/minimal-safe-diff.md +1 -1
- package/.agent-src/rules/model-recommendation.md +1 -1
- package/.agent-src/rules/no-attribution-footers.md +1 -1
- package/.agent-src/rules/no-roadmap-references.md +56 -20
- package/.agent-src/rules/onboarding-gate.md +1 -1
- package/.agent-src/rules/package-ci-checks.md +1 -1
- package/.agent-src/rules/reviewer-awareness.md +9 -2
- package/.agent-src/rules/roadmap-progress-sync.md +37 -3
- package/.agent-src/rules/scope-control.md +6 -0
- package/.agent-src/rules/security-sensitive-stop.md +1 -1
- package/.agent-src/rules/size-enforcement.md +1 -1
- package/.agent-src/rules/token-optimizer-maintenance.md +1 -1
- package/.agent-src/rules/ui-audit-gate.md +1 -1
- package/.agent-src/skills/adr-create/SKILL.md +2 -1
- package/.agent-src/skills/agents-md-thin-root/SKILL.md +125 -0
- package/.agent-src/skills/ai-council/SKILL.md +9 -7
- package/.agent-src/skills/learning-to-rule-or-skill/SKILL.md +9 -0
- package/.agent-src/skills/markitdown/SKILL.md +239 -0
- package/.agent-src/skills/review-routing/SKILL.md +3 -4
- package/.agent-src/skills/universal-project-analysis/SKILL.md +8 -0
- package/.agent-src/templates/AGENTS.md +18 -148
- package/.agent-src/templates/copilot-instructions.md +41 -17
- package/.agent-src/templates/github-workflows/pr-risk-review.yml +1 -1
- package/.agent-src/templates/scripts/pr_review_routing.py +1 -1
- package/.claude-plugin/marketplace.json +7 -5
- package/AGENTS.md +18 -205
- package/CHANGELOG.md +70 -0
- package/README.md +2 -2
- package/docs/architecture.md +13 -7
- package/docs/catalog.md +45 -29
- package/docs/contracts/agents-md-tech-stack.md +74 -0
- package/docs/contracts/linear-ai-rules-inclusion.md +1 -1
- package/docs/contracts/package-self-orientation.md +135 -0
- package/docs/contracts/rule-classification.md +4 -4
- package/docs/decisions/ADR-004-rule-governance-pruning.md +240 -0
- package/docs/getting-started.md +1 -1
- package/docs/guidelines/agent-infra/review-routing-data-format.md +1 -2
- package/package.json +1 -1
- package/scripts/_p4_migrate.py +5 -5
- package/scripts/audit_auto_rules.py +159 -0
- package/scripts/audit_likelihood.py +148 -0
- package/scripts/audit_overlap.py +145 -0
- package/scripts/build_rule_trigger_matrix.py +3 -5
- package/scripts/check_augment_description_cap.py +79 -0
- package/scripts/check_council_references.py +3 -3
- package/scripts/check_kernel_rule_bundle.py +151 -0
- package/scripts/check_references.py +21 -1
- package/scripts/compile_router.py +3 -0
- package/scripts/install.sh +0 -1
- package/scripts/lint_agents_md.py +168 -0
- package/scripts/measure_augment_budget.py +208 -0
- package/scripts/measure_markitdown_lift.py +127 -0
- package/scripts/schemas/rule.schema.json +2 -1
- package/scripts/skill_linter.py +10 -4
- package/scripts/spotcheck_thin_root.py +134 -0
- package/scripts/update_counts.py +6 -10
- package/.agent-src/rules/no-council-references.md +0 -76
- package/.agent-src/rules/review-routing-awareness.md +0 -19
- package/.agent-src/templates/copilot-review-instructions.md +0 -76
package/AGENTS.md
CHANGED
|
@@ -1,221 +1,34 @@
|
|
|
1
1
|
# event4u/agent-config
|
|
2
2
|
|
|
3
|
-
>
|
|
4
|
-
|
|
5
|
-
**Shared agent configuration** — skills, rules, commands, guidelines, and templates
|
|
6
|
-
for AI coding tools (Augment Code, Claude Code, Cursor, Cline, Windsurf, Gemini CLI,
|
|
7
|
-
GitHub Copilot).
|
|
8
|
-
|
|
9
|
-
This file is the AGENTS.md **of the package itself**. It gives an agent that is
|
|
10
|
-
working **on this repository** (adding skills, fixing the installer, improving
|
|
11
|
-
the linter) the context it needs. Consumer projects get their own AGENTS.md
|
|
12
|
-
generated from [`.augment/templates/AGENTS.md`](.agent-src/templates/AGENTS.md)
|
|
13
|
-
when they install the package.
|
|
14
|
-
|
|
15
|
-
## What this repo is
|
|
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
|
-
|
|
29
|
-
- A distribution package, not an application of any framework.
|
|
30
|
-
- `type: library` in `composer.json`; no `app/` directory, no application
|
|
31
|
-
runtime (no Laravel, Symfony, Next.js, or other framework app code).
|
|
32
|
-
- Published to Composer and npm as `event4u/agent-config` / `@event4u/agent-config`.
|
|
33
|
-
- Installed into consumer projects via `scripts/install.sh` (Bash) and
|
|
34
|
-
`scripts/install.py` (Python bridge).
|
|
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`).
|
|
3
|
+
> Shared skill / rule / command suite for AI coding tools. No application runtime. AGENTS.md of the **package itself**.
|
|
55
4
|
|
|
56
5
|
## Source of truth
|
|
57
6
|
|
|
58
|
-
|
|
59
|
-
|---|---|---|
|
|
60
|
-
| `.agent-src.uncompressed/` | Authoring layer — full verbose content | ✅ Yes — edit here |
|
|
61
|
-
| `.agent-src/` | Compressed output — shipped in the package, consumed by agents | ❌ No — regenerated |
|
|
62
|
-
| `.augment/` | Local projection of `.agent-src/` for Augment Code (gitignored) | ❌ No — regenerated |
|
|
63
|
-
| `.claude/`, `.cursor/`, `.clinerules/`, `.windsurfrules` | Tool-specific projections | ❌ No — regenerated |
|
|
64
|
-
| `agents/` | Package's own roadmaps, contexts, sessions | ✅ Yes |
|
|
65
|
-
|
|
66
|
-
**Never edit `.agent-src/` or `.augment/` directly.** Edit `.agent-src.uncompressed/`
|
|
67
|
-
and run `task sync` (or `task ci`) to compress + regenerate the tool directories.
|
|
68
|
-
|
|
69
|
-
## Tech stack of this package
|
|
70
|
-
|
|
71
|
-
- **Bash** — install scripts, compression driver
|
|
72
|
-
- **Python 3.10+** — linters (`scripts/skill_linter.py`, `scripts/check_portability.py`,
|
|
73
|
-
`scripts/check_references.py`, `scripts/readme_linter.py`), compression tooling,
|
|
74
|
-
test suite (pytest)
|
|
75
|
-
- **Markdown** — all content (skills, rules, commands, guidelines, templates)
|
|
76
|
-
- **Taskfile** — developer entrypoints (`task ci`, `task sync`, `task test`)
|
|
77
|
-
- **GitHub Actions** — CI workflow under `.github/workflows/`
|
|
78
|
-
|
|
79
|
-
No application code or framework runtime (no Laravel / Symfony / Next.js /
|
|
80
|
-
Express). The `composer.json` / `package.json` are thin distribution
|
|
81
|
-
manifests.
|
|
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).
|
|
7
|
+
Edit `.agent-src.uncompressed/` only. Generated trees (`.agent-src/`, `.augment/`, `.claude/`, `.cursor/`, `.clinerules/`, `.windsurfrules`) regenerate from `task sync` + `task generate-tools`; never hand-edit.
|
|
91
8
|
|
|
92
9
|
## Working on this repo
|
|
93
10
|
|
|
94
11
|
```bash
|
|
95
|
-
task sync
|
|
96
|
-
task generate-tools
|
|
97
|
-
task
|
|
98
|
-
task lint-skills # python3 scripts/skill_linter.py --all
|
|
99
|
-
task build-cloud-bundles-all # ZIP every eligible skill → dist/cloud/ (Claude.ai Web / Skills API)
|
|
100
|
-
task ci # Full pipeline — must be green before PR
|
|
101
|
-
```
|
|
102
|
-
|
|
103
|
-
All checks must pass before a PR: sync-check, consistency, check-compression,
|
|
104
|
-
check-refs, check-portability, lint-skills, test, lint-readme.
|
|
105
|
-
|
|
106
|
-
## Maintainer telemetry (opt-in)
|
|
107
|
-
|
|
108
|
-
The artefact-engagement telemetry pipeline (`./agent-config telemetry:record`
|
|
109
|
-
and `./agent-config telemetry:report`) is **default-off**. Maintainers who
|
|
110
|
-
want to measure which skills/rules/commands the agent actually applies set
|
|
111
|
-
`telemetry.artifact_engagement.enabled: true` in `.agent-settings.yml`. The
|
|
112
|
-
log is local-only JSONL (no upload, no cross-project share) and is bound
|
|
113
|
-
by the redaction floor described in
|
|
114
|
-
[`contexts/contracts/artifact-engagement-flow.md`](.agent-src.uncompressed/contexts/contracts/artifact-engagement-flow.md) (beta).
|
|
115
|
-
The recording rule lives at
|
|
116
|
-
[`.agent-src/rules/artifact-engagement-recording.md`](.agent-src/rules/artifact-engagement-recording.md).
|
|
117
|
-
|
|
118
|
-
## Context-aware command suggestion
|
|
119
|
-
|
|
120
|
-
When a user's free-form prompt matches a command's purpose, the agent
|
|
121
|
-
surfaces matches as a numbered-options block with an always-present
|
|
122
|
-
"run the prompt as-is" escape. **Nothing auto-executes** — the user
|
|
123
|
-
picks every time. Engine: `scripts/command_suggester/`. Rule:
|
|
124
|
-
[`.agent-src/rules/command-suggestion-policy.md`](.agent-src/rules/command-suggestion-policy.md).
|
|
125
|
-
Locked eligibility table, scoring contract, and hardening list:
|
|
126
|
-
[`docs/contracts/adr-command-suggestion.md`](docs/contracts/adr-command-suggestion.md)
|
|
127
|
-
and
|
|
128
|
-
[`contexts/contracts/command-suggestion-flow.md`](.agent-src.uncompressed/contexts/contracts/command-suggestion-flow.md) (beta).
|
|
129
|
-
|
|
130
|
-
## Key rules for agents editing this repo
|
|
131
|
-
|
|
132
|
-
| Rule | File |
|
|
133
|
-
|---|---|
|
|
134
|
-
| `.agent-src/` must stay project-agnostic — no project names, domains, stacks | [`augment-portability`](.agent-src/rules/augment-portability.md) |
|
|
135
|
-
| Root AGENTS.md + copilot-instructions.md must stay project-agnostic too | [`augment-portability`](.agent-src/rules/augment-portability.md) |
|
|
136
|
-
| Edit `.agent-src.uncompressed/`, never `.agent-src/` or `.augment/` | [`augment-source-of-truth`](.agent-src/rules/augment-source-of-truth.md) |
|
|
137
|
-
| Skills must declare frontmatter, be self-contained, pass the linter | [`skill-quality`](.agent-src/rules/skill-quality.md) |
|
|
138
|
-
| Size budgets for skills, rules, commands | [`size-enforcement`](.agent-src/rules/size-enforcement.md) |
|
|
139
|
-
| Keep `.agent-src/` / `agents/` cross-refs in sync on add/rename/delete | [`docs-sync`](.agent-src/rules/docs-sync.md) |
|
|
140
|
-
| Creating a new skill/rule/command/guideline runs Understand → Research → Draft | [`artifact-drafting-protocol`](.agent-src/rules/artifact-drafting-protocol.md) |
|
|
141
|
-
|
|
142
|
-
## Kernel + Router
|
|
143
|
-
|
|
144
|
-
The rule set runs on a **Kernel + Router** model (locked 2026-05-06,
|
|
145
|
-
see [`docs/decisions/ADR-rule-kernel-and-router.md`](docs/decisions/ADR-rule-kernel-and-router.md)):
|
|
146
|
-
|
|
147
|
-
- **Kernel** = 9 always-loaded Iron-Law rules, ≤ 26k chars
|
|
148
|
-
(`agent-authority`, `ask-when-uncertain`, `commit-policy`,
|
|
149
|
-
`direct-answers`, `language-and-tone`, `no-cheap-questions`,
|
|
150
|
-
`non-destructive-by-default`, `scope-control`, `verify-before-complete`).
|
|
151
|
-
Locked set: [`docs/contracts/kernel-membership.md`](docs/contracts/kernel-membership.md) (beta).
|
|
152
|
-
- **Router** = frontmatter `tier:` + `triggers:` + `routes_to:` keys
|
|
153
|
-
on every rule. `scripts/compile_router.py` builds `router.json`
|
|
154
|
-
deterministically. Contract: [`docs/contracts/rule-router.md`](docs/contracts/rule-router.md) (beta).
|
|
155
|
-
- **Cost profiles** gate which tiers load:
|
|
156
|
-
`minimal` = kernel only · `balanced` = kernel + tier-1 (default) ·
|
|
157
|
-
`full` = kernel + tier-1 + tier-2.
|
|
158
|
-
|
|
159
|
-
Hard caps enforced by `task lint-rule-budget`: kernel-bucket ≤ 26k chars,
|
|
160
|
-
per-rule ≤ 2.5k chars (Iron-Law overrides up to 4.0k via ADR in
|
|
161
|
-
[`docs/decisions/`](docs/decisions/) and
|
|
162
|
-
[`docs/contracts/iron-law-overrides.txt`](docs/contracts/iron-law-overrides.txt)).
|
|
163
|
-
Daily snapshots: `python3 scripts/measure_rule_budget.py --trend-append`
|
|
164
|
-
appends to `agents/.rule-budget-history.jsonl`.
|
|
165
|
-
|
|
166
|
-
## Repository layout
|
|
167
|
-
|
|
168
|
-
```
|
|
169
|
-
.agent-src.uncompressed/ ← edit here
|
|
170
|
-
skills/ (140 skills)
|
|
171
|
-
rules/ (60 rules)
|
|
172
|
-
commands/ (103 commands)
|
|
173
|
-
personas/ (7 personas)
|
|
174
|
-
templates/ (AGENTS.md, copilot-instructions.md, skill.md, …)
|
|
175
|
-
contexts/
|
|
176
|
-
|
|
177
|
-
docs/guidelines/ (47 guidelines — reference material, not packaged)
|
|
178
|
-
docs/contracts/ (kernel-membership, rule-router, rule-classification, …)
|
|
179
|
-
docs/decisions/ (ADRs — kernel overrides, scope decisions)
|
|
180
|
-
.agent-src/ ← compressed output shipped in the package
|
|
181
|
-
.agent-src/router.json ← compiled router manifest (consumed at runtime)
|
|
182
|
-
.augment/ ← local projection for Augment Code (gitignored)
|
|
183
|
-
scripts/ ← install.sh, install.py, compress.py, linters
|
|
184
|
-
tests/ ← pytest (324 tests) + test_install.sh
|
|
185
|
-
agents/ ← this package's own roadmaps / sessions / contexts
|
|
186
|
-
.github/workflows/ ← CI
|
|
12
|
+
task sync # regenerate .agent-src/, .augment/
|
|
13
|
+
task generate-tools # regenerate .claude/, .cursor/, .clinerules/, .windsurfrules
|
|
14
|
+
task ci # full pipeline — green before PR
|
|
187
15
|
```
|
|
188
16
|
|
|
189
|
-
##
|
|
190
|
-
|
|
191
|
-
`task generate-tools` builds:
|
|
192
|
-
|
|
193
|
-
| Tool | Output | Strategy |
|
|
194
|
-
|---|---|---|
|
|
195
|
-
| Augment Code | `.augment/` | Native (source) |
|
|
196
|
-
| Claude Code | `.claude/rules/`, `.claude/skills/` | Symlinks + Agent Skills standard |
|
|
197
|
-
| Cursor | `.cursor/rules/` | Symlinks |
|
|
198
|
-
| Cline | `.clinerules/` | Symlinks |
|
|
199
|
-
| Windsurf | `.windsurfrules` | Concatenated file |
|
|
200
|
-
| Gemini CLI | `GEMINI.md` | Symlink → AGENTS.md |
|
|
201
|
-
| Claude.ai Web / Skills API | `dist/cloud/<skill>.zip` | `task build-cloud-bundles-all` (T3-H gated) |
|
|
202
|
-
|
|
203
|
-
Skills follow the [Agent Skills open standard](https://agentskills.io). Commands
|
|
204
|
-
are converted to Claude Code Skills with `disable-model-invocation: true`.
|
|
205
|
-
Cloud bundles enforce description budgets and prepend a sandbox note for
|
|
206
|
-
T2/T3-S skills — see [`docs/architecture.md`](docs/architecture.md#cloud-bundle-pipeline).
|
|
17
|
+
## Pointers
|
|
207
18
|
|
|
208
|
-
|
|
19
|
+
- **Package self-orientation** — identity, four-wing cognition map, repo layout, tech stack, key-rules table, telemetry, command-suggester: [`docs/contracts/package-self-orientation.md`](docs/contracts/package-self-orientation.md).
|
|
20
|
+
- **Kernel + Router** — 9 always-loaded Iron-Law rules, tier-1 / tier-2 routing, cost profiles, per-rule char caps enforced by `task lint-rule-budget`: [`kernel-membership`](docs/contracts/kernel-membership.md) + [`rule-router`](docs/contracts/rule-router.md).
|
|
21
|
+
- **Multi-tool projection** — Augment, Claude Code, Cursor, Cline, Windsurf, Gemini CLI, Claude.ai bundle pipeline that ships from `.agent-src/` to consumer surfaces: [`docs/architecture.md`](docs/architecture.md#cloud-bundle-pipeline).
|
|
22
|
+
- **Iron-Law rules when editing this repo** — portability, source-of-truth, skill-quality: [`augment-portability`](.agent-src/rules/augment-portability.md), [`augment-source-of-truth`](.agent-src/rules/augment-source-of-truth.md), [`skill-quality`](.agent-src/rules/skill-quality.md).
|
|
23
|
+
- **Thin-Root contract** governing **this** file (cap, pointer ratio, emergency-triage block) — read before editing AGENTS.md: [`agents-md-thin-root`](.agent-src/skills/agents-md-thin-root/SKILL.md).
|
|
24
|
+
- **Consumer story + architecture deep-dive** — what the package does for installers and how it ships: [`README.md`](README.md), [`docs/architecture.md`](docs/architecture.md).
|
|
209
25
|
|
|
210
|
-
|
|
211
|
-
`.agent-src/`, `.augment/`, `.claude/`, `.cursor/`, etc.
|
|
212
|
-
2. Run `task ci` locally. It must exit 0.
|
|
213
|
-
3. Commit in logical chunks with Conventional Commits.
|
|
214
|
-
4. Open a PR against `main`.
|
|
26
|
+
## Emergency triage — read this when nothing else is reachable
|
|
215
27
|
|
|
216
|
-
|
|
217
|
-
|
|
28
|
+
1. **What is this repo?** — `event4u/agent-config`, a governed skill / rule / command suite for AI coding tools (no application runtime).
|
|
29
|
+
2. **What language?** — All `.md` content is English; agents mirror the user's language at runtime.
|
|
30
|
+
3. **Where do I edit?** — `.agent-src.uncompressed/` only. Never `.agent-src/`, `.augment/`, `.claude/`, `.cursor/`, `.clinerules/`, `.windsurfrules`.
|
|
31
|
+
4. **Lint / test / sync entry point?** — `task ci` (full pipeline). Subsets: `task sync`, `task generate-tools`, `task lint-skills`, `task test`.
|
|
32
|
+
5. **Where do the always-active rules live?** — `.agent-src/rules/` (kernel = 9 Iron-Law rules; tier-1 / tier-2 routed via `.agent-src/router.json`).
|
|
218
33
|
|
|
219
|
-
## License
|
|
220
34
|
|
|
221
|
-
[MIT](LICENSE).
|
package/CHANGELOG.md
CHANGED
|
@@ -318,6 +318,76 @@ 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.25.0](https://github.com/event4u-app/agent-config/compare/1.24.0...1.25.0) (2026-05-08)
|
|
322
|
+
|
|
323
|
+
### Features
|
|
324
|
+
|
|
325
|
+
* **scope-control:** mandate branch-base inventory before first commit ([b038c26](https://github.com/event4u-app/agent-config/commit/b038c2660f8e317f09156ff00120bcdf31d7db92))
|
|
326
|
+
* **ci:** agents-md linter + CI integration (Phase 7) ([dd86beb](https://github.com/event4u-app/agent-config/commit/dd86bebd929bb3dde96e4100e96645a674f137fa))
|
|
327
|
+
* **agents-md:** Thin-Root refactor — agents-md-thin-root skill + content (Phase 6) ([7d31204](https://github.com/event4u-app/agent-config/commit/7d31204659a0ce085bb8a8f45b16de34cae06a78))
|
|
328
|
+
* **rules:** rule-governance audit — demote 4 auto-rules to manual (Phase 5) ([5071ff5](https://github.com/event4u-app/agent-config/commit/5071ff5855cf67c61303bb4cb07c4229fbbb4dd4))
|
|
329
|
+
* **rules:** consolidate auto-rules — merge council into no-roadmap-references and review-routing-awareness into reviewer-awareness (Lever D) ([18c42a3](https://github.com/event4u-app/agent-config/commit/18c42a33af0d950e07c50615615d4deb076071ff))
|
|
330
|
+
* **docs:** outboard AGENTS.md tech-stack details to context (Lever B) ([9b7bcfd](https://github.com/event4u-app/agent-config/commit/9b7bcfd374ce3325dd7013e530ce71f4b92df4eb))
|
|
331
|
+
* **budget:** augment workspace-guidelines budget meter + description cap (Lever A) ([da75061](https://github.com/event4u-app/agent-config/commit/da750615acbf9a687b81b1ecaff6d517a11203fb))
|
|
332
|
+
* **ci:** enforce one kernel-rule edit per PR ([a91ce92](https://github.com/event4u-app/agent-config/commit/a91ce927dc2a98129a7b685f803f7650863b31fa))
|
|
333
|
+
|
|
334
|
+
### Bug Fixes
|
|
335
|
+
|
|
336
|
+
* **roadmap:** repoint sibling-roadmap reference to archived path ([f7ee632](https://github.com/event4u-app/agent-config/commit/f7ee632800290d3cd90f2dd1274e47e8127f1f63))
|
|
337
|
+
* **tests:** align update_counts + linter + hero-counts tests with Thin-Root ([5556c8c](https://github.com/event4u-app/agent-config/commit/5556c8ce1a8cf4df7a7b4a957030d5b5d2d0fd7e))
|
|
338
|
+
* **skills:** mark agents-md-thin-root cloud_safe noop ([17a3824](https://github.com/event4u-app/agent-config/commit/17a3824ddd1ea567fca8b699113b2c62050c5507))
|
|
339
|
+
* **docs:** move agents-md-tech-stack from agents/contexts/ to docs/contracts/ ([77eef8c](https://github.com/event4u-app/agent-config/commit/77eef8c61d2561ef5a563518f2bdb1dff80541c7))
|
|
340
|
+
* **rules:** drop forbidden agents/ link from reviewer-awareness body ([8a573a4](https://github.com/event4u-app/agent-config/commit/8a573a48bc959f0c16ea8b56fc0e6bd0d3139238))
|
|
341
|
+
* **refs:** point to archived roadmap, inline council convergence ([bf56b70](https://github.com/event4u-app/agent-config/commit/bf56b7084dae68fe2a21e52d7cb644ed6b3bb670))
|
|
342
|
+
|
|
343
|
+
### Documentation
|
|
344
|
+
|
|
345
|
+
* **roadmap:** archive road-to-augment-limit-fit and repoint references ([58e101c](https://github.com/event4u-app/agent-config/commit/58e101c8a3421004929f47f4c760e44b97c124bc))
|
|
346
|
+
* **roadmap:** flip 8.3 + 8.4 — strategic phases committed and CI green ([712c414](https://github.com/event4u-app/agent-config/commit/712c4141103dbdc6db7fa6d1fa94d31943bd40e1))
|
|
347
|
+
* **roadmap:** drop gitignored council-response link ([74206a5](https://github.com/event4u-app/agent-config/commit/74206a592f47b9254c788b162ea3d99c54057506))
|
|
348
|
+
* **roadmap:** close road-to-augment-limit-fit (Phase 8) ([ac062ad](https://github.com/event4u-app/agent-config/commit/ac062ad184764f04f639eb52d59b1d63419b4b9b))
|
|
349
|
+
* **index:** regenerate agents/index.md + docs/catalog.md after rule consolidation ([3aa347c](https://github.com/event4u-app/agent-config/commit/3aa347c1e814a9c289891c350d69f8b9fda6783f))
|
|
350
|
+
* **roadmap:** land road-to-augment-limit-fit + ADR + regen derived artefacts ([5e54d22](https://github.com/event4u-app/agent-config/commit/5e54d220579658c4fc2310f123908b8cba97683e))
|
|
351
|
+
* **adr:** park always-budget relief strategy with reactivation triggers ([487e736](https://github.com/event4u-app/agent-config/commit/487e7366de6e99db60906906d61033486a0a6aa3))
|
|
352
|
+
* **rules:** add kernel-rule slow-rollout guarantee to scope-control ([26c43a2](https://github.com/event4u-app/agent-config/commit/26c43a2c96ede95319990b4ba578a986e46768a2))
|
|
353
|
+
|
|
354
|
+
### Refactoring
|
|
355
|
+
|
|
356
|
+
* **copilot:** collapse copilot-review-instructions.md into copilot-instructions.md ([6c6ac25](https://github.com/event4u-app/agent-config/commit/6c6ac25a5958c3bbc0ffc7bb38422a6b9d855b50))
|
|
357
|
+
|
|
358
|
+
### Chores
|
|
359
|
+
|
|
360
|
+
* **tools:** regen .windsurfrules for branch-base inventory ([a87641c](https://github.com/event4u-app/agent-config/commit/a87641cc0db84e705a9afe7aa36afbd451fb1467))
|
|
361
|
+
* **rebase:** restore compression hashes for files inherited from PR #55 ([863ba1c](https://github.com/event4u-app/agent-config/commit/863ba1cd71dc00559db905eb0d11b96951a9c5bd))
|
|
362
|
+
* regenerate .windsurfrules ([822b95e](https://github.com/event4u-app/agent-config/commit/822b95e1dcf48b05ec4e9bec0a4f481583ae6de7))
|
|
363
|
+
* **roadmap:** close + archive road-to-always-budget-relief, regen index ([350bfb1](https://github.com/event4u-app/agent-config/commit/350bfb1e75602769f6a1cfa535ed5d30adcd5eba))
|
|
364
|
+
|
|
365
|
+
## [1.24.0](https://github.com/event4u-app/agent-config/compare/1.23.0...1.24.0) (2026-05-08)
|
|
366
|
+
|
|
367
|
+
### Features
|
|
368
|
+
|
|
369
|
+
* **rules:** harden roadmap-progress-sync — real-time checkbox cadence ([bdaaf0c](https://github.com/event4u-app/agent-config/commit/bdaaf0caff6d312ab87aabc8d170793cbbc6513a))
|
|
370
|
+
* **measurement:** markitdown lift benchmark + corpus ([e606c7a](https://github.com/event4u-app/agent-config/commit/e606c7afae9977ab3c19f2a7f99a6ec18b31b483))
|
|
371
|
+
* **skill:** add markitdown skill with four-layer defense ([21514f4](https://github.com/event4u-app/agent-config/commit/21514f4bf8b77d00480fc5dfab54a1a04e34f4f1))
|
|
372
|
+
|
|
373
|
+
### Bug Fixes
|
|
374
|
+
|
|
375
|
+
* drop markitdown roadmap link + trim README to 500 lines ([da8240d](https://github.com/event4u-app/agent-config/commit/da8240d6fce74555d08a8bfb4f4d15379d10de54))
|
|
376
|
+
* **refs:** update markitdown roadmap path to archive/ after archival ([f7679de](https://github.com/event4u-app/agent-config/commit/f7679debb851bd721f671e26fe962186e56a1e86))
|
|
377
|
+
|
|
378
|
+
### Documentation
|
|
379
|
+
|
|
380
|
+
* feature markitdown in README, AGENTS, architecture ([fa1babc](https://github.com/event4u-app/agent-config/commit/fa1babcb344c5f090aa4cea0eafb58e5732cf872))
|
|
381
|
+
* cross-link markitdown from analysis and learning skills ([14f9d72](https://github.com/event4u-app/agent-config/commit/14f9d7290dbcb341d2ff97280dbfb54b32e39057))
|
|
382
|
+
|
|
383
|
+
### Chores
|
|
384
|
+
|
|
385
|
+
* **generate-tools:** refresh .windsurfrules after roadmap-progress-sync body expansion ([3fdba11](https://github.com/event4u-app/agent-config/commit/3fdba11cd4e91425a05ef9ad82b0e7c611180668))
|
|
386
|
+
* **compress:** sync .agent-src/ with hardened roadmap-progress-sync rule ([30e7d1a](https://github.com/event4u-app/agent-config/commit/30e7d1ab455da823afbe7602f01d543d3fe91c5d))
|
|
387
|
+
* **roadmap:** archive markitdown-adoption + refresh progress dashboard ([5481d90](https://github.com/event4u-app/agent-config/commit/5481d9025f4c85f33e11533099cf725eeb306455))
|
|
388
|
+
* add skills-provenance registry for upstream attribution ([65c2eeb](https://github.com/event4u-app/agent-config/commit/65c2eeb3d1c9d0f86957757ce22221ed0e255292))
|
|
389
|
+
* **roadmap:** harden process-full to ignore horizon markers ([36d0fa6](https://github.com/event4u-app/agent-config/commit/36d0fa6c263721618999b7fa27ddb9cb336dd6c2))
|
|
390
|
+
|
|
321
391
|
## [1.23.0](https://github.com/event4u-app/agent-config/compare/1.22.0...1.23.0) (2026-05-08)
|
|
322
392
|
|
|
323
393
|
### 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>142 Skills</strong> · <strong>58 Rules</strong> · <strong>103 Commands</strong> · <strong>58 Guidelines</strong> · <strong>8 AI Tools</strong>
|
|
11
11
|
</p>
|
|
12
12
|
|
|
13
13
|
---
|
|
@@ -368,7 +368,7 @@ Every developer gets the same behavior. No per-user setup needed.
|
|
|
368
368
|
native slash-commands)
|
|
369
369
|
|
|
370
370
|
> **What this means in practice:** Augment Code and Claude Code get the full
|
|
371
|
-
> package (rules +
|
|
371
|
+
> package (rules + 142 skills + 103 native commands). Cursor, Cline, Windsurf,
|
|
372
372
|
> Gemini CLI, and GitHub Copilot only get the **rules** natively; skills and
|
|
373
373
|
> commands are available to them as documentation the agent can read, not as
|
|
374
374
|
> first-class features.
|
package/docs/architecture.md
CHANGED
|
@@ -96,8 +96,8 @@ fails on any source-side violation, without producing artifacts.
|
|
|
96
96
|
|
|
97
97
|
| Layer | Count | Purpose |
|
|
98
98
|
|---|---|---|
|
|
99
|
-
| **Skills** |
|
|
100
|
-
| **Rules** |
|
|
99
|
+
| **Skills** | 142 | On-demand expertise — stack analysis (Laravel · Symfony · Zend / Laminas · Next.js · React · Node), testing, Docker, API design, security, observability, … |
|
|
100
|
+
| **Rules** | 58 | Always-active constraints — coding standards, scope control, verification, language-and-tone, agent-authority |
|
|
101
101
|
| **Commands** | 103 | Slash-command workflows — `/commit`, `/create-pr`, `/fix ci`, `/optimize skills`, `/feature plan`, `/work`, `/implement-ticket`, `/compress`, … |
|
|
102
102
|
| **Guidelines** | 58 | Reference material cited by skills — PHP patterns, Eloquent, Playwright, agent-infra, … |
|
|
103
103
|
| **Templates** | 7 | Scaffolds for features, roadmaps, contexts, skills, overrides |
|
|
@@ -258,15 +258,21 @@ created by `scripts/install.sh`, not via raw git checkout. This means
|
|
|
258
258
|
GitHub Copilot's static checker — which walks the git tree — will see
|
|
259
259
|
broken paths where there are none. **The gap is intentional, not a bug.**
|
|
260
260
|
|
|
261
|
-
The package ships
|
|
261
|
+
The package ships **one** Copilot instruction artefact:
|
|
262
262
|
|
|
263
263
|
| File | Read by | Purpose |
|
|
264
264
|
|---|---|---|
|
|
265
|
-
| `.github/copilot-instructions.md` | Copilot Chat + PR review | Repo-wide coding standards
|
|
266
|
-
| `.github/copilot-review-instructions.md` | Copilot PR review | Path-resolution suppression floor (this section's mate) |
|
|
265
|
+
| `.github/copilot-instructions.md` | Copilot Chat + PR review | Repo-wide coding standards plus the path-resolution suppression floor (Known False Positives) |
|
|
267
266
|
|
|
268
|
-
|
|
269
|
-
|
|
267
|
+
Per [GitHub's documented convention](https://docs.github.com/en/copilot/reference/custom-instructions-support),
|
|
268
|
+
Copilot Code Review reads `.github/copilot-instructions.md`
|
|
269
|
+
repository-wide and `.github/instructions/**/*.instructions.md` for
|
|
270
|
+
path-specific rules — there is no separate "review-only" instruction
|
|
271
|
+
file. The first 4000 characters are the budget; keep
|
|
272
|
+
high-priority rules (Scope Control, Known False Positives) up top.
|
|
273
|
+
|
|
274
|
+
Installed (copy-if-missing) by `scripts/install.sh` from
|
|
275
|
+
`.agent-src.uncompressed/templates/`. Consumers can edit it freely;
|
|
270
276
|
the installer never overwrites.
|
|
271
277
|
|
|
272
278
|
The mechanical floor is `scripts/check_compressed_paths.py`, wired into
|