@event4u/agent-config 1.9.1 → 1.12.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 +15 -0
- package/.agent-src/commands/chat-history-clear.md +98 -0
- package/.agent-src/commands/chat-history-resume.md +178 -0
- package/.agent-src/commands/chat-history.md +102 -0
- package/.agent-src/commands/compress.md +9 -9
- package/.agent-src/commands/copilot-agents-init.md +1 -1
- package/.agent-src/commands/fix-portability.md +2 -2
- package/.agent-src/commands/fix-pr-bot-comments.md +1 -1
- package/.agent-src/commands/fix-pr-developer-comments.md +1 -1
- package/.agent-src/commands/fix-references.md +2 -2
- package/.agent-src/commands/mode.md +5 -5
- package/.agent-src/commands/onboard.md +171 -0
- package/.agent-src/commands/roadmap-create.md +7 -2
- package/.agent-src/commands/roadmap-execute.md +2 -2
- package/.agent-src/commands/set-cost-profile.md +101 -0
- package/.agent-src/commands/sync-agent-settings.md +122 -0
- package/.agent-src/commands/sync-gitignore.md +104 -0
- package/.agent-src/commands/tests-execute.md +6 -6
- package/.agent-src/commands/upstream-contribute.md +5 -4
- package/.agent-src/contexts/augment-infrastructure.md +2 -2
- package/.agent-src/contexts/override-system.md +1 -1
- package/.agent-src/contexts/subagent-configuration.md +3 -3
- package/.agent-src/guidelines/agent-infra/layered-settings.md +48 -5
- package/.agent-src/rules/ask-when-uncertain.md +56 -3
- package/.agent-src/rules/augment-portability.md +52 -1
- package/.agent-src/rules/augment-source-of-truth.md +10 -10
- package/.agent-src/rules/chat-history.md +171 -0
- package/.agent-src/rules/docker-commands.md +5 -7
- package/.agent-src/rules/docs-sync.md +13 -9
- package/.agent-src/rules/improve-before-implement.md +2 -0
- package/.agent-src/rules/onboarding-gate.md +94 -0
- package/.agent-src/rules/package-ci-checks.md +6 -5
- package/.agent-src/rules/roadmap-progress-sync.md +24 -13
- package/.agent-src/rules/size-enforcement.md +1 -1
- package/.agent-src/rules/skill-quality.md +1 -1
- package/.agent-src/rules/think-before-action.md +1 -0
- package/.agent-src/scripts/update_roadmap_progress.py +26 -9
- package/.agent-src/skills/check-refs/SKILL.md +1 -1
- package/.agent-src/skills/command-routing/SKILL.md +1 -1
- package/.agent-src/skills/command-writing/SKILL.md +4 -3
- package/.agent-src/skills/file-editor/SKILL.md +2 -2
- package/.agent-src/skills/guideline-writing/SKILL.md +4 -3
- package/.agent-src/skills/learning-to-rule-or-skill/SKILL.md +2 -2
- package/.agent-src/skills/lint-skills/SKILL.md +1 -1
- package/.agent-src/skills/roadmap-management/SKILL.md +13 -10
- package/.agent-src/skills/rtk-output-filtering/SKILL.md +20 -30
- package/.agent-src/skills/rule-writing/SKILL.md +5 -5
- package/.agent-src/skills/terragrunt/SKILL.md +0 -8
- package/.agent-src/skills/upstream-contribute/SKILL.md +5 -4
- package/.agent-src/templates/agent-settings.md +86 -34
- package/.claude-plugin/marketplace.json +1 -1
- package/AGENTS.md +2 -2
- package/CHANGELOG.md +296 -0
- package/CONTRIBUTING.md +89 -40
- package/README.md +3 -3
- package/composer.json +2 -1
- package/config/agent-settings.template.yml +45 -6
- package/config/gitignore-block.txt +24 -0
- package/config/profiles/balanced.ini +5 -0
- package/config/profiles/full.ini +5 -0
- package/config/profiles/minimal.ini +5 -0
- package/docs/customization.md +30 -4
- package/docs/getting-started.md +52 -3
- package/docs/mcp.md +15 -4
- package/package.json +13 -2
- package/scripts/agent-config +155 -0
- package/scripts/chat_history.py +519 -0
- package/scripts/check_portability.py +151 -1
- package/scripts/install.py +55 -3
- package/scripts/install.sh +50 -21
- package/scripts/mcp_render.py +30 -16
- package/scripts/release.py +588 -0
- package/scripts/sync_agent_settings.py +211 -0
- package/scripts/sync_gitignore.py +226 -0
- package/templates/agent-config-wrapper.sh +47 -0
- package/.agent-src/commands/config-agent-settings.md +0 -126
- package/.agent-src/skills/eloquent/evals/last-run.json +0 -99
|
@@ -12,8 +12,9 @@ grouped sections (`personal`, `project`, `github`, `eloquent`, `pipelines`,
|
|
|
12
12
|
|
|
13
13
|
Keep the format regular — 2-space indent, no tabs, no lists, one nesting
|
|
14
14
|
level only. The installer's YAML handler is a restricted stdlib parser, not
|
|
15
|
-
a full YAML engine.
|
|
16
|
-
|
|
15
|
+
a full YAML engine. Ask the agent to normalize after manual edits — it
|
|
16
|
+
follows the merge rules in
|
|
17
|
+
[`layered-settings`](../guidelines/agent-infra/layered-settings.md#section-aware-merge-rules).
|
|
17
18
|
|
|
18
19
|
### Migration from the legacy `.agent-settings` (key=value)
|
|
19
20
|
|
|
@@ -32,13 +33,15 @@ exists and is the source of truth.
|
|
|
32
33
|
## Template
|
|
33
34
|
|
|
34
35
|
This block defines the personal and project-level settings that
|
|
35
|
-
|
|
36
|
-
|
|
36
|
+
`scripts/install.py` (via `config/agent-settings.template.yml`)
|
|
37
|
+
writes to `.agent-settings.yml` on first install. Subsequent edits are
|
|
38
|
+
made by the user directly or by the agent on request, following the
|
|
39
|
+
[section-aware merge rules](../guidelines/agent-infra/layered-settings.md#section-aware-merge-rules).
|
|
37
40
|
|
|
38
41
|
```yaml
|
|
39
42
|
# Agent Settings
|
|
40
43
|
# This file is git-ignored. Each developer has their own settings.
|
|
41
|
-
# Run /
|
|
44
|
+
# Run scripts/install to create this file, then /onboard for first-run setup.
|
|
42
45
|
|
|
43
46
|
# --- Cost profile ---
|
|
44
47
|
#
|
|
@@ -60,10 +63,11 @@ personal:
|
|
|
60
63
|
open_edited_files: false
|
|
61
64
|
|
|
62
65
|
# User's first name — used to address the user personally
|
|
66
|
+
# Captured by /onboard on first run.
|
|
63
67
|
user_name: ""
|
|
64
68
|
|
|
65
69
|
# rtk (Rust Token Killer) installed for output filtering (true, false)
|
|
66
|
-
#
|
|
70
|
+
# Detected and set by /onboard on first run.
|
|
67
71
|
rtk_installed: false
|
|
68
72
|
|
|
69
73
|
# Minimal output mode (true, false)
|
|
@@ -76,11 +80,12 @@ personal:
|
|
|
76
80
|
# false = silently investigate, only report the conclusion
|
|
77
81
|
play_by_play: false
|
|
78
82
|
|
|
79
|
-
# --- Project / team preferences ---
|
|
80
|
-
project:
|
|
81
83
|
# Prefix PR comment replies with a bot icon 🤖 (true, false)
|
|
84
|
+
# Personal preference — each developer decides for themselves.
|
|
82
85
|
pr_comment_bot_icon: false
|
|
83
86
|
|
|
87
|
+
# --- Project / team preferences ---
|
|
88
|
+
project:
|
|
84
89
|
# Path to the PR template file (relative to project root)
|
|
85
90
|
pr_template: .github/pull_request_template.md
|
|
86
91
|
|
|
@@ -106,12 +111,34 @@ eloquent:
|
|
|
106
111
|
# magic_properties = use $model->column_name (Laravel default)
|
|
107
112
|
access_style: getters_setters
|
|
108
113
|
|
|
114
|
+
# --- Chat history (crash recovery) ---
|
|
115
|
+
#
|
|
116
|
+
# Persistent JSONL log at .agent-chat-history (project root, git-ignored).
|
|
117
|
+
# Keeps a durable record of the conversation so a crashed or switched
|
|
118
|
+
# agent session can be resumed. See scripts/chat_history.py for the API.
|
|
119
|
+
#
|
|
120
|
+
# Defaults below are placeholders — scripts/install.py substitutes them
|
|
121
|
+
# per cost_profile (see config/profiles/*.ini).
|
|
122
|
+
chat_history:
|
|
123
|
+
# Log chat events to disk (true, false)
|
|
124
|
+
enabled: true
|
|
125
|
+
|
|
126
|
+
# Logging granularity: per_turn | per_phase | per_tool
|
|
127
|
+
frequency: per_phase
|
|
128
|
+
|
|
129
|
+
# Max file size in KB before overflow handling kicks in
|
|
130
|
+
max_size_kb: 256
|
|
131
|
+
|
|
132
|
+
# Overflow behavior: rotate (drop oldest) | compress (summarize)
|
|
133
|
+
on_overflow: rotate
|
|
134
|
+
|
|
109
135
|
# --- Optional pipelines ---
|
|
110
136
|
pipelines:
|
|
111
137
|
# Skill improvement pipeline (true, false)
|
|
112
|
-
# true = after meaningful tasks, propose learning capture and improvements
|
|
138
|
+
# true = after meaningful tasks, propose learning capture and improvements (default)
|
|
113
139
|
# false = silent, no post-task analysis
|
|
114
|
-
|
|
140
|
+
# Included by every cost_profile except `custom`.
|
|
141
|
+
skill_improvement: true
|
|
115
142
|
|
|
116
143
|
# --- Subagent orchestration ---
|
|
117
144
|
subagents:
|
|
@@ -154,30 +181,48 @@ personas:
|
|
|
154
181
|
# the whole list. Ignored personas stay invokable explicitly via
|
|
155
182
|
# `--personas=<id>`. Mirrors `.augmentignore` semantics.
|
|
156
183
|
ignore: []
|
|
184
|
+
|
|
185
|
+
# --- Onboarding ---
|
|
186
|
+
#
|
|
187
|
+
# Tracks whether the initial setup flow (/onboard) has been completed
|
|
188
|
+
# for this developer on this project. When false, the onboarding-gate
|
|
189
|
+
# rule prompts the user to run /onboard before starting normal work.
|
|
190
|
+
# Missing entirely = legacy project (treated as onboarded).
|
|
191
|
+
onboarding:
|
|
192
|
+
# Has the developer completed /onboard? (true, false)
|
|
193
|
+
# Set to true automatically by /onboard at the end. Flip to false
|
|
194
|
+
# if you want to re-run the flow.
|
|
195
|
+
onboarded: false
|
|
157
196
|
```
|
|
158
197
|
|
|
159
198
|
## Settings Reference
|
|
160
199
|
|
|
161
|
-
Personal and project-level settings (written by
|
|
162
|
-
`
|
|
163
|
-
`
|
|
200
|
+
Personal and project-level settings (initial file written by
|
|
201
|
+
`scripts/install.py`, edits follow the merge rules in
|
|
202
|
+
[`layered-settings`](../guidelines/agent-infra/layered-settings.md#section-aware-merge-rules)).
|
|
203
|
+
**Key paths use dot-notation** to denote nesting: `personal.user_name`
|
|
204
|
+
lives under `personal:` in YAML.
|
|
164
205
|
|
|
165
206
|
| Key path | Values | Default | Description |
|
|
166
207
|
|---|---|---|---|
|
|
167
208
|
| `cost_profile` | `minimal`, `balanced`, `full`, `custom` | `minimal` | Selects which agent surfaces are active. See [Cost profiles](#cost-profiles). |
|
|
168
209
|
| `personal.ide` | `code`, `phpstorm`, `cursor` | _(empty)_ | CLI command to open files in the IDE |
|
|
169
210
|
| `personal.open_edited_files` | `true`, `false` | `false` | Auto-open edited files in the IDE after edits |
|
|
170
|
-
| `personal.user_name` | first name | _(empty)_ | User's first name
|
|
171
|
-
| `personal.rtk_installed` | `true`, `false` | `false` | Whether rtk (Rust Token Killer) is installed.
|
|
211
|
+
| `personal.user_name` | first name | _(empty)_ | User's first name, used to address the user personally. Captured by `/onboard`. |
|
|
212
|
+
| `personal.rtk_installed` | `true`, `false` | `false` | Whether rtk (Rust Token Killer) is installed. Detected and set by `/onboard`. |
|
|
172
213
|
| `personal.minimal_output` | `true`, `false` | `true` | When `true`: short bullet points during work, concise summary at end. When `false`: verbose explanations. |
|
|
173
214
|
| `personal.play_by_play` | `true`, `false` | `false` | When `true`: share intermediate findings during investigation. When `false`: work silently, report only the conclusion. |
|
|
174
|
-
| `
|
|
215
|
+
| `personal.pr_comment_bot_icon` | `true`, `false` | `false` | Prefix PR comment replies with 🤖 to indicate bot-authored replies. Personal preference — each developer decides. |
|
|
175
216
|
| `project.pr_template` | file path | `.github/pull_request_template.md` | Path to PR template file. Read this instead of searching for it. |
|
|
176
217
|
| `project.upstream_repo` | `org/repo` | _(empty)_ | Target repository for universal improvement PRs (e.g., `org/agent-config`). |
|
|
177
218
|
| `project.improvement_pr_branch_prefix` | string | `improve/agent-` | Branch prefix for agent improvement PRs. |
|
|
178
219
|
| `github.pr_reply_method` | `replies_endpoint`, `create_review_comment`, `auto` | `create_review_comment` | GitHub API method for replying to PR review comments. `auto` detects on first use. |
|
|
179
220
|
| `eloquent.access_style` | `getters_setters`, `get_attribute`, `magic_properties` | `getters_setters` | How to access Eloquent model attributes. See `eloquent` skill for details. |
|
|
180
|
-
| `
|
|
221
|
+
| `chat_history.enabled` | `true`, `false` | `true` | Persist chat events to `.agent-chat-history` (JSONL) for crash recovery. |
|
|
222
|
+
| `chat_history.frequency` | `per_turn`, `per_phase`, `per_tool` | per profile | Logging granularity. Defaults: `minimal`→`per_turn`, `balanced`→`per_phase`, `full`→`per_tool`. |
|
|
223
|
+
| `chat_history.max_size_kb` | integer | per profile | Max file size before overflow handling. Defaults: `minimal`→`128`, `balanced`→`256`, `full`→`512`. |
|
|
224
|
+
| `chat_history.on_overflow` | `rotate`, `compress` | per profile | On overflow: `rotate` drops oldest entries; `compress` marks the file for summarization on the next turn. Defaults: `minimal`/`balanced`→`rotate`, `full`→`compress`. |
|
|
225
|
+
| `pipelines.skill_improvement` | `true`, `false` | `true` | When `true`: propose learning capture after meaningful tasks. When `false`: silent. Included in every profile except `custom`. |
|
|
181
226
|
| `subagents.implementer_model` | model alias or empty | _(empty)_ | Model for implementer subagents. Empty = same tier as session model. See [subagent-configuration](../contexts/subagent-configuration.md). |
|
|
182
227
|
| `subagents.judge_model` | model alias or empty | _(empty)_ | Model for judge subagents. Empty = one tier above implementer (opus if sonnet, sonnet if haiku). |
|
|
183
228
|
| `subagents.max_parallel` | integer | `3` | Maximum parallel subagent invocations. `1` serializes. |
|
|
@@ -185,6 +230,7 @@ Personal and project-level settings (written by `/config-agent-settings` and
|
|
|
185
230
|
| `roles.active_role` | same as `default_role` | _(empty)_ | Role currently active; set by `/mode <name>`, cleared by `/mode none`. Enables the `role-mode-adherence` rule. |
|
|
186
231
|
| `personas.override` | list of persona ids | `[]` | Developer-local override of the team default lens cast. Empty = inherit `personas.default` from `.agent-project-settings.yml`. See [`layered-settings`](../guidelines/agent-infra/layered-settings.md). |
|
|
187
232
|
| `personas.ignore` | list of persona ids | `[]` | Persona ids dropped from the default cast locally. Ignored personas stay invokable via `--personas=<id>`. |
|
|
233
|
+
| `onboarding.onboarded` | `true`, `false` | `false` | Whether `/onboard` has run on this project. The `onboarding-gate` rule prompts for `/onboard` when this is `false`. Missing entirely = legacy project, treated as onboarded. |
|
|
188
234
|
|
|
189
235
|
### Rename-Map (migration)
|
|
190
236
|
|
|
@@ -200,7 +246,7 @@ Applied automatically when `scripts/install` finds a legacy `.agent-settings`
|
|
|
200
246
|
| `rtk_installed` | `personal.rtk_installed` |
|
|
201
247
|
| `minimal_output` | `personal.minimal_output` |
|
|
202
248
|
| `play_by_play` | `personal.play_by_play` |
|
|
203
|
-
| `pr_comment_bot_icon` | `
|
|
249
|
+
| `pr_comment_bot_icon` | `personal.pr_comment_bot_icon` |
|
|
204
250
|
| `pr_template` | `project.pr_template` |
|
|
205
251
|
| `upstream_repo` | `project.upstream_repo` |
|
|
206
252
|
| `improvement_pr_branch_prefix` | `project.improvement_pr_branch_prefix` |
|
|
@@ -221,28 +267,34 @@ The `cost_profile` setting selects which agent surfaces are active. See
|
|
|
221
267
|
|
|
222
268
|
| Profile | Description |
|
|
223
269
|
|---|---|
|
|
224
|
-
| `minimal` | Rules, skills, and commands only.
|
|
225
|
-
| `balanced` | + Runtime dispatcher for skills that declare a shell command. |
|
|
226
|
-
| `full` | + Tool adapters (GitHub / Jira, read-only, opt-in). |
|
|
270
|
+
| `minimal` | Rules, skills, and commands only. **Includes the learning loop.** Default. |
|
|
271
|
+
| `balanced` | `minimal` + Runtime dispatcher for skills that declare a shell command. |
|
|
272
|
+
| `full` | `balanced` + Tool adapters (GitHub / Jira, read-only, opt-in). |
|
|
227
273
|
| `custom` | Ignore profile — every matrix value must be set explicitly. |
|
|
228
274
|
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
275
|
+
**Learning loop:** `pipelines.skill_improvement` is `true` by default and is
|
|
276
|
+
included in every profile except `custom`. It triggers post-task learning
|
|
277
|
+
capture via the `skill-improvement-trigger` rule. Flip to `false` in the
|
|
278
|
+
settings file if you want a silent agent without touching the profile.
|
|
279
|
+
|
|
280
|
+
Other per-feature toggles may be added in future releases; when they land,
|
|
281
|
+
they ship with a live consumer in code and get documented here, not before.
|
|
233
282
|
|
|
234
283
|
## Sync rules
|
|
235
284
|
|
|
236
|
-
When new settings are added to this template
|
|
285
|
+
When new settings are added to this template, the
|
|
286
|
+
[section-aware merge rules](../guidelines/agent-infra/layered-settings.md#section-aware-merge-rules)
|
|
287
|
+
govern the update:
|
|
237
288
|
|
|
238
|
-
1.
|
|
239
|
-
the user's `.agent-settings.yml`.
|
|
240
|
-
2. Missing keys are added with their **default value** from this template,
|
|
289
|
+
1. Missing keys are added with their **default value** from this template,
|
|
241
290
|
inside the correct section.
|
|
242
|
-
|
|
243
|
-
|
|
291
|
+
2. Existing keys keep their **current value** — never overwritten.
|
|
292
|
+
3. The **order** of keys follows this template — existing values are
|
|
244
293
|
reordered to match.
|
|
245
|
-
|
|
294
|
+
4. Comments from the template are preserved in the output.
|
|
295
|
+
|
|
296
|
+
Re-run `scripts/install` to pull in template drift, or ask the agent to
|
|
297
|
+
update a specific key — it walks the same rules.
|
|
246
298
|
|
|
247
299
|
## Adding new settings
|
|
248
300
|
|
|
@@ -252,5 +304,5 @@ When adding a new setting:
|
|
|
252
304
|
the right section (or create a new section if it is a new domain).
|
|
253
305
|
2. Add a row to the Settings Reference table using the full dot-path.
|
|
254
306
|
3. Update the relevant skill or command that reads this setting.
|
|
255
|
-
4.
|
|
256
|
-
|
|
307
|
+
4. Re-run `scripts/install` (or ask the agent to sync) to pull the new
|
|
308
|
+
key into the user's file.
|
package/AGENTS.md
CHANGED
|
@@ -74,8 +74,8 @@ check-refs, check-portability, lint-skills, test, lint-readme.
|
|
|
74
74
|
```
|
|
75
75
|
.agent-src.uncompressed/ ← edit here
|
|
76
76
|
skills/ (124 skills)
|
|
77
|
-
rules/ (
|
|
78
|
-
commands/ (
|
|
77
|
+
rules/ (46 rules)
|
|
78
|
+
commands/ (73 commands)
|
|
79
79
|
guidelines/ (46 guidelines)
|
|
80
80
|
personas/ (7 personas)
|
|
81
81
|
templates/ (AGENTS.md, copilot-instructions.md, skill.md, …)
|
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,302 @@ versioning policy is documented in [CONTRIBUTING.md](CONTRIBUTING.md#versioning-
|
|
|
7
7
|
> Entries before 1.3.3 were reconstructed from git history after the fact.
|
|
8
8
|
> Early releases did not maintain release notes.
|
|
9
9
|
|
|
10
|
+
## [1.12.0](https://github.com/event4u-app/agent-config/compare/1.10.0...1.12.0) (2026-04-25)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* **release:** add automated release pipeline ([1bf2e0f](https://github.com/event4u-app/agent-config/commit/1bf2e0fa6862aee7a85da84e4f96586e7ab49a4a))
|
|
15
|
+
* **settings:** add sync_agent_settings.py + /sync-agent-settings command ([40443c8](https://github.com/event4u-app/agent-config/commit/40443c87cb397a8ea34c1f51557603937a0d116a))
|
|
16
|
+
* **gitignore:** add /sync-gitignore command + regenerated tool projections ([d04aae6](https://github.com/event4u-app/agent-config/commit/d04aae6c6ac64d56756242c562269629907d5776))
|
|
17
|
+
* **gitignore:** add sync_gitignore.py + single-source-of-truth template ([9d32a32](https://github.com/event4u-app/agent-config/commit/9d32a32f70341d4d8ad78acaa84f8d01b99d182f))
|
|
18
|
+
* **chat-history:** /chat-history-resume routes on 4-state ownership ([fb917d4](https://github.com/event4u-app/agent-config/commit/fb917d4abb6c9a9f8e8b289c82ada43b46943d86))
|
|
19
|
+
* **chat-history:** rewrite rule for 4-state flow (match/returning/foreign/missing) ([cde8017](https://github.com/event4u-app/agent-config/commit/cde8017ab550d95a63e813c8dc1b797e267e568a))
|
|
20
|
+
* **chat-history:** schema v2 with 4-state ownership model ([35825b4](https://github.com/event4u-app/agent-config/commit/35825b41afd8f0c58304f3ce7f08f52ebfe8b5aa))
|
|
21
|
+
* **chat-history:** gitignore, docs, and /agent-handoff cross-ref ([1198be4](https://github.com/event4u-app/agent-config/commit/1198be4492e77e2ace2cb903488e21ae55cf546a))
|
|
22
|
+
* **chat-history:** add /chat-history, /chat-history-resume, /chat-history-clear commands ([a5e9135](https://github.com/event4u-app/agent-config/commit/a5e9135b86d932880ed933b35cd02ebe742dbc88))
|
|
23
|
+
* **chat-history:** add always-active chat-history rule ([0ae95a6](https://github.com/event4u-app/agent-config/commit/0ae95a6edfd2b61badb58ee70679150575bc52ef))
|
|
24
|
+
* **chat-history:** per-profile chat_history settings + installer placeholders ([fca9316](https://github.com/event4u-app/agent-config/commit/fca931667b421e1156994414d2a6d7e4f87b3472))
|
|
25
|
+
* **chat-history:** add chat_history.py helper with JSONL log + overflow handling ([f0cc419](https://github.com/event4u-app/agent-config/commit/f0cc419a02df932af1920b33c4be143ac6636e73))
|
|
26
|
+
* **onboarding:** centralized first-run flow with /onboard and onboarding-gate ([c35c763](https://github.com/event4u-app/agent-config/commit/c35c76352b63e3f3f079d1fb7be5a24af8ca8b6b))
|
|
27
|
+
* **settings:** enable skill_improvement by default in every profile ([2ecc310](https://github.com/event4u-app/agent-config/commit/2ecc3104730b6a929d87e7ed7c6a34c8aabef027))
|
|
28
|
+
* **commands:** add /set-cost-profile to change cost_profile interactively ([b38d8b5](https://github.com/event4u-app/agent-config/commit/b38d8b591df56045fe7a8116f968a568ef4877d8))
|
|
29
|
+
* **publish:** add workflow_dispatch to publish-npm ([cae25f8](https://github.com/event4u-app/agent-config/commit/cae25f8ed71443237a2e98fe298959a0218720d0))
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
* **release:** force-prune tags during preflight fetch ([e79230f](https://github.com/event4u-app/agent-config/commit/e79230f8aa58a3ac1370e23a996acd61ed528e15))
|
|
34
|
+
* **release:** surface stderr when captured commands fail ([b34de56](https://github.com/event4u-app/agent-config/commit/b34de56aa021dabc710e098bf8ffba0d0a842641))
|
|
35
|
+
* **release:** probe gh auth via api user, not auth status ([daecc3e](https://github.com/event4u-app/agent-config/commit/daecc3e0e1924625e7c383f12e7435c8dbcb6eaf))
|
|
36
|
+
* **install:** preserve bare identifiers in _yaml_scalar ([43accda](https://github.com/event4u-app/agent-config/commit/43accda2c8ef624de6b0cb509aba8201c6c2382b))
|
|
37
|
+
* **roadmap-progress:** support roman and letter phase IDs ([fabd903](https://github.com/event4u-app/agent-config/commit/fabd9039391b979d5f56da8745f792b8e460ee6b))
|
|
38
|
+
* **cli:** resolve symlinks in agent-config so PACKAGE_ROOT works when invoked via PATH/global install ([2d2c592](https://github.com/event4u-app/agent-config/commit/2d2c59292ee4abe630c2541a0056c06596eb1abd))
|
|
39
|
+
* **rules:** wire no-blind-implementation into think/improve/ask ([fa0c908](https://github.com/event4u-app/agent-config/commit/fa0c908ea832a58f00b70991cd2899b512c86952))
|
|
40
|
+
* **rules:** repair handoff-ordering ref in ask-when-uncertain ([aeb4c33](https://github.com/event4u-app/agent-config/commit/aeb4c3377aeba9cb114837ea68dc320f9cd31a16))
|
|
41
|
+
* **npm:** add repository, bugs, and homepage fields to package.json ([d794eab](https://github.com/event4u-app/agent-config/commit/d794eab3918118a513de1fcc78204d15d8b7aae9))
|
|
42
|
+
* **release:** drop component prefix from tags and split npm publish workflow ([281c225](https://github.com/event4u-app/agent-config/commit/281c225ef5d9b266e487f434606111622569cd9f))
|
|
43
|
+
|
|
44
|
+
### Documentation
|
|
45
|
+
|
|
46
|
+
* **release:** rewrite release process for the new pipeline ([8f1a60f](https://github.com/event4u-app/agent-config/commit/8f1a60fbb8f2eb6abea5ee960c7715acbffaa38c))
|
|
47
|
+
|
|
48
|
+
### Refactoring
|
|
49
|
+
|
|
50
|
+
* **ask-when-uncertain:** remove only-exception, make one-question-per-turn absolute ([ec152e6](https://github.com/event4u-app/agent-config/commit/ec152e62e7206e655a81fe3592e3f11fe0f94dad))
|
|
51
|
+
* **install:** delegate .gitignore handling to sync_gitignore.py ([448ae90](https://github.com/event4u-app/agent-config/commit/448ae90c098b4841543020641d4bd626c376f5c0))
|
|
52
|
+
* **settings:** remove /config-agent-settings, move pr_comment_bot_icon to personal ([5e61522](https://github.com/event4u-app/agent-config/commit/5e615228899cccf1a33e88c51c2230b692dd994b))
|
|
53
|
+
|
|
54
|
+
### Chores
|
|
55
|
+
|
|
56
|
+
* **ci:** point release workflows at task release ([cc809ba](https://github.com/event4u-app/agent-config/commit/cc809baf94a4359a968900162d07788ce2d1650a))
|
|
57
|
+
* remove release-please ([5ed3816](https://github.com/event4u-app/agent-config/commit/5ed381672697d94f8b84706dd70fcccae85b9f5d))
|
|
58
|
+
* **chat-history:** regenerate projections + docs for 4-state flow ([688aa2d](https://github.com/event4u-app/agent-config/commit/688aa2df7f8b07f829793a5df9c2b75f9da3cc8e))
|
|
59
|
+
* **chat-history:** regenerate multi-agent tool projections ([c8cf487](https://github.com/event4u-app/agent-config/commit/c8cf4876f6a61fc68040ce2a861141f6810b933e))
|
|
60
|
+
* release main (#23) ([2d69625](https://github.com/event4u-app/agent-config/commit/2d6962536d250a8d6edd08d3e6cd92be0f2fb145))
|
|
61
|
+
|
|
62
|
+
## [1.11.0](https://github.com/event4u-app/agent-config/compare/1.10.0...1.11.0) (2026-04-23)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
### Features
|
|
66
|
+
|
|
67
|
+
* **publish:** add workflow_dispatch to publish-npm ([cae25f8](https://github.com/event4u-app/agent-config/commit/cae25f8ed71443237a2e98fe298959a0218720d0))
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
### Bug Fixes
|
|
71
|
+
|
|
72
|
+
* **npm:** add repository, bugs, and homepage fields to package.json ([d794eab](https://github.com/event4u-app/agent-config/commit/d794eab3918118a513de1fcc78204d15d8b7aae9))
|
|
73
|
+
* **release:** drop component prefix from tags and split npm publish workflow ([281c225](https://github.com/event4u-app/agent-config/commit/281c225ef5d9b266e487f434606111622569cd9f))
|
|
74
|
+
|
|
75
|
+
## [1.10.0](https://github.com/event4u-app/agent-config/compare/agent-config-1.9.1...agent-config-1.10.0) (2026-04-23)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
### Features
|
|
79
|
+
|
|
80
|
+
* **.github:** add issue templates ([7f3410f](https://github.com/event4u-app/agent-config/commit/7f3410f218aca19e50ddac8879aee02de8f938a4))
|
|
81
|
+
* add /package-test and /package-reset commands ([b283ca0](https://github.com/event4u-app/agent-config/commit/b283ca0a191983fa614c72d0ab37a62a877dae7a))
|
|
82
|
+
* add agent interaction quality guideline + extend 2 rules ([446c2d2](https://github.com/event4u-app/agent-config/commit/446c2d2fc5c7e4da84edf40b31a14c63e865c9bc))
|
|
83
|
+
* add compression hash check to CI pipeline ([f32f1af](https://github.com/event4u-app/agent-config/commit/f32f1af678ca630f65e719b33eb2199ec9bd7597))
|
|
84
|
+
* add compression quality checker ([ecea391](https://github.com/event4u-app/agent-config/commit/ecea391f5b35fe344e48fdb1092389531ca1e90f))
|
|
85
|
+
* add consistency CI workflow and Taskfile targets ([e833f1b](https://github.com/event4u-app/agent-config/commit/e833f1b5c6798483b0224c7be6611bff8edabf77))
|
|
86
|
+
* add cross-reference checker script and Taskfile targets ([5f44a64](https://github.com/event4u-app/agent-config/commit/5f44a644c4185ee3476beeca6aada040771c1eee))
|
|
87
|
+
* add developer-like-execution skill and think-before-action rule ([5296ecb](https://github.com/event4u-app/agent-config/commit/5296ecbef496cf8c250714540596593fd3642a1d))
|
|
88
|
+
* add dual-write workflow for improving shared rules from projects ([75fffc5](https://github.com/event4u-app/agent-config/commit/75fffc54c4ac53dca2a8e1239170e0a07d783a75))
|
|
89
|
+
* add first-run experience script and getting-started guide ([5d92823](https://github.com/event4u-app/agent-config/commit/5d92823a8b6bf61dae953245fe59fd1bfb08da48))
|
|
90
|
+
* add interaction quality checks to linter + new guideline ([ddda9c2](https://github.com/event4u-app/agent-config/commit/ddda9c21b833a814ed6e25428f649e962e188923))
|
|
91
|
+
* add learning capture loop — rule + 2 skills ([8608919](https://github.com/event4u-app/agent-config/commit/8608919ba1c88b72b363a9e51838c2844758e529))
|
|
92
|
+
* add package portability checker and integrate both checks into CI ([7ed843a](https://github.com/event4u-app/agent-config/commit/7ed843a9790748d21bd7884d6453b4fa7f62df2b))
|
|
93
|
+
* add PHP installer and versioned profile presets ([68de85d](https://github.com/event4u-app/agent-config/commit/68de85d4f30dc2548986e5e860b804641b113308))
|
|
94
|
+
* add setup.sh for automatic post-install/update hook registration ([705fdec](https://github.com/event4u-app/agent-config/commit/705fdec192e684713a54c81d6ba8918ee223caba))
|
|
95
|
+
* add size-and-scope guideline, size-enforcement and rule-type-governance rules ([06a9a0e](https://github.com/event4u-app/agent-config/commit/06a9a0e329b2c39bf00d7fd80686ffc9bcd95208))
|
|
96
|
+
* add skill linter MVP script with tests and Taskfile commands ([b089307](https://github.com/event4u-app/agent-config/commit/b08930780ab574dc5bfd877a3355d5b5d8bb3aaa))
|
|
97
|
+
* add skill-lint CI workflow and ci Taskfile target ([9ae6069](https://github.com/event4u-app/agent-config/commit/9ae606966d5fb474d92655a5fbda4341c367548b))
|
|
98
|
+
* add skill-linter skill for structural validation ([beef538](https://github.com/event4u-app/agent-config/commit/beef53885129f8d6ef2f7068c0abaa6229d6c8b8))
|
|
99
|
+
* add stale hash detection and cleanup ([abe53b4](https://github.com/event4u-app/agent-config/commit/abe53b42a9264aa6c27986339678a203359fd465))
|
|
100
|
+
* add tool-first/script-last and targeted operations to token-efficiency rule ([95572fb](https://github.com/event4u-app/agent-config/commit/95572fbd5e2c67ed048883ab83bc7bfbb2ace877))
|
|
101
|
+
* adopt MIT license across metadata and docs ([ef37d19](https://github.com/event4u-app/agent-config/commit/ef37d19b93c0e0b5155fe4103c38ed5521b983d4))
|
|
102
|
+
* **agent-memory:** retrieval v1 schema + conformance tests ([8a3d4fb](https://github.com/event4u-app/agent-config/commit/8a3d4fb288ecc4e4efb9bf63acea136e4f20d96e))
|
|
103
|
+
* **audit:** add skill-description audit tool + 2026-04-21 baseline ([3abd7f7](https://github.com/event4u-app/agent-config/commit/3abd7f7e6ca2aba047c84741bf1b46dd9d129363))
|
|
104
|
+
* **ci:** rewrite ci_summary as dispatcher consumer ([bbce646](https://github.com/event4u-app/agent-config/commit/bbce646a78fca084a414195810feb6269ae7be30))
|
|
105
|
+
* **ci:** wire pr_review_routing.py into pr-risk-review workflow ([d19d5da](https://github.com/event4u-app/agent-config/commit/d19d5da2abb400d83e5d9ba512cb1f26c280e58a))
|
|
106
|
+
* **claude-plugin:** Phase 1 of anthropic alignment — Claude Code Plugin Marketplace ([ec79750](https://github.com/event4u-app/agent-config/commit/ec797502ba7e647cc4dd186b96ac9686c1112c2d))
|
|
107
|
+
* **command:** /review-changes dispatches to four judge sub-skills ([d27149b](https://github.com/event4u-app/agent-config/commit/d27149bec4dd1a4ee43f2c8dad36389ab4e3096b))
|
|
108
|
+
* **commands:** add /analyze-reference-repo ([08c4b1e](https://github.com/event4u-app/agent-config/commit/08c4b1e51f6db0466f248101bb637fa99bede676))
|
|
109
|
+
* **commands:** add /copilot-agents-init for consumer scaffolding ([fa5289c](https://github.com/event4u-app/agent-config/commit/fa5289c67bf53536d1bbaaabc9e91d847081341d))
|
|
110
|
+
* **commands:** add /do-and-judge, /do-in-steps, /judge ([0ebb02d](https://github.com/event4u-app/agent-config/commit/0ebb02d10ea154e4993cb248c48e953c0dfffa16))
|
|
111
|
+
* **commands:** add /fix-references + /fix-portability, expand portability patterns ([f9578b3](https://github.com/event4u-app/agent-config/commit/f9578b3332d68b87653255c0e5e1443fcf71edaa))
|
|
112
|
+
* **commands:** add /rule-compliance-audit command ([779d9d8](https://github.com/event4u-app/agent-config/commit/779d9d8af8003e7c1c12fbbc4b3020e0b826dcea))
|
|
113
|
+
* **commands:** add /upstream-contribute command ([6bb7349](https://github.com/event4u-app/agent-config/commit/6bb73493b1b3b90a00a2a831aae07feb0271cbac))
|
|
114
|
+
* **commands:** cross-link refine-ticket + estimate-ticket from feature-plan ([e8c6bce](https://github.com/event4u-app/agent-config/commit/e8c6bcebd0a7823e9bba3767a0506f250ddebca4))
|
|
115
|
+
* **commands:** feature-explore hints at /refine-ticket for ticket-shaped input ([932d763](https://github.com/event4u-app/agent-config/commit/932d76323e4f4eb0bfb73f1e8a89b8f48738f272))
|
|
116
|
+
* **commands:** route work commands + skills into agent-memory ([fe0502b](https://github.com/event4u-app/agent-config/commit/fe0502b4fb04f2c0cee20b423b5759ea968a6e8b))
|
|
117
|
+
* complete post-pr2-hardening roadmap (all 8 phases) ([14af4f6](https://github.com/event4u-app/agent-config/commit/14af4f6523760bdc8aa14764c2d20c05af685f08))
|
|
118
|
+
* **config:** add subagent_* keys to .agent-settings template ([a24ef26](https://github.com/event4u-app/agent-config/commit/a24ef266b6e9c83312436351e1aea0cfb0b8c8c2))
|
|
119
|
+
* **copilot-agents-optimize:** scan for legacy identifiers and stack drift ([ab6aa6c](https://github.com/event4u-app/agent-config/commit/ab6aa6c634fa0a46e75f8f8b596c085898e249b7))
|
|
120
|
+
* **counts:** track roadmap baselines in update_counts (Q12) ([991eaf7](https://github.com/event4u-app/agent-config/commit/991eaf72ef3e60b69e9a4ba80f4ae61b1bdaf6ec))
|
|
121
|
+
* **defensive-agent:** Wave 1 foundation + judge 8/8 calibration ([eb1f814](https://github.com/event4u-app/agent-config/commit/eb1f814e90f6dcc3bd8434ef891465fc6a393679))
|
|
122
|
+
* **defensive:** Wave 3 knowledge-layer templates + context-authoring ([419977a](https://github.com/event4u-app/agent-config/commit/419977a207a0a87100b8af8b74fe241016a72dc0))
|
|
123
|
+
* **drafting-protocol:** wire Phase 4 eval integration ([dc2523e](https://github.com/event4u-app/agent-config/commit/dc2523ed3717b9235da10f7a49303e28fd81e1a0))
|
|
124
|
+
* enforce analysis-before-change across skills, rules, and code ([dff7ad9](https://github.com/event4u-app/agent-config/commit/dff7ad9894de8ec79e73d4240fa0a91d9452e6ec))
|
|
125
|
+
* **evals:** add trigger-eval runner + pilot test vectors ([0bb60fe](https://github.com/event4u-app/agent-config/commit/0bb60fe29b0e7a5c44d6586cf294230c0ed76dc6))
|
|
126
|
+
* **evals:** bootstrap .venv for live runner with pinned anthropic SDK ([963adbf](https://github.com/event4u-app/agent-config/commit/963adbf24a1d4869158e3ef2169e319fe9c92302))
|
|
127
|
+
* **evals:** harden trigger-eval runner for live API use ([d1f8035](https://github.com/event4u-app/agent-config/commit/d1f80356e9b8a0c47c116254b7e4afeea079f74f))
|
|
128
|
+
* expand linter with command size, guideline size, and rule-type checks ([120fe5a](https://github.com/event4u-app/agent-config/commit/120fe5aa581c15851dfc8deeed9184145ff81caf))
|
|
129
|
+
* **feedback:** add feedback collector with outcome classification and suggestions ([da32d98](https://github.com/event4u-app/agent-config/commit/da32d987c81c765e74fc78e917a09f8085cfe9d6))
|
|
130
|
+
* **governance:** add update_counts.py + wire into ci/sync ([ae2b6ed](https://github.com/event4u-app/agent-config/commit/ae2b6ed46d2e666902105609137960b057e58a1c))
|
|
131
|
+
* **governance:** CI summary + feedback governance with actionable proposals ([76b1811](https://github.com/event4u-app/agent-config/commit/76b1811e00cc03bc2d02be48abd579b7612ae5b0))
|
|
132
|
+
* **implement-ticket:** /implement-ticket command + entry-flow references ([d265c1d](https://github.com/event4u-app/agent-config/commit/d265c1d79277038b7435a780acb0f2731b00b73f))
|
|
133
|
+
* **implement-ticket:** CLI orchestrator — python3 -m implement_ticket ([77981ec](https://github.com/event4u-app/agent-config/commit/77981eca019d97b1e1423bf766b5f6aa7ee8d6ef))
|
|
134
|
+
* **implement-ticket:** close Phase 3/4 — ambiguity declarations + roadmap AC ([238c604](https://github.com/event4u-app/agent-config/commit/238c604ce7ba74b88fe8571fc2403f9de11f2bb9))
|
|
135
|
+
* **implement-ticket:** Option A — agent directives + dispatcher resume ([f6cee1f](https://github.com/event4u-app/agent-config/commit/f6cee1ff1d8d4f7edd5e7ba60d42bcd92336fc64))
|
|
136
|
+
* **implement-ticket:** persona policies — senior-engineer, qa, advisory ([ff1a073](https://github.com/event4u-app/agent-config/commit/ff1a073ab96f54bdf680e26c41a12e76bfcc645c))
|
|
137
|
+
* **implement-ticket:** Phase 1 — DeliveryState + linear dispatcher ([cfe8d52](https://github.com/event4u-app/agent-config/commit/cfe8d5272317648c50e3216ae76d895c29b695dc))
|
|
138
|
+
* **implement-ticket:** Phase 2 — analyze + plan gates + report renderer ([25ba7da](https://github.com/event4u-app/agent-config/commit/25ba7da1694b6b723029af9583179c0108659293))
|
|
139
|
+
* **implement-ticket:** Phase 2 complete — implement + test + verify ([9c59225](https://github.com/event4u-app/agent-config/commit/9c59225d011ded1ce42a1631277af2486897f288))
|
|
140
|
+
* **implement-ticket:** Phase 2/8 — refine + memory step handlers ([1c71ca1](https://github.com/event4u-app/agent-config/commit/1c71ca1e68e83b613112c7b46468ac41f16047d8))
|
|
141
|
+
* **install:** add scripts/install orchestrator as primary entry point ([1c880fc](https://github.com/event4u-app/agent-config/commit/1c880fcdeaeb512942c3abbd6c7fdbf89b089d40))
|
|
142
|
+
* **installer:** replace silent '|| true' postinstall with a loud wrapper ([f32bedc](https://github.com/event4u-app/agent-config/commit/f32bedc68e9ba9860593cba1cd80010e26f080fd))
|
|
143
|
+
* **installer:** show 3 aha-moment prompts in install output ([443e621](https://github.com/event4u-app/agent-config/commit/443e621bee1140db98395dd19a3970c13927ae83))
|
|
144
|
+
* **judgment:** improve-before-implement rule + validate-feature-fit skill ([1ebd22c](https://github.com/event4u-app/agent-config/commit/1ebd22c7ce687ec80e0fa9b98090d48120274e14))
|
|
145
|
+
* **lifecycle:** add skill lifecycle management with health scoring ([098c06c](https://github.com/event4u-app/agent-config/commit/098c06cee7585cd96e7d6e4332d5eb0d838f0e91))
|
|
146
|
+
* **linter:** add execution quality checks for developer workflow enforcement ([e9b73bc](https://github.com/event4u-app/agent-config/commit/e9b73bc783c024b795ec666b61ac3e0a82dd4df1))
|
|
147
|
+
* **linter:** add quality report details, compression checks, and pointer-only tests ([836288a](https://github.com/event4u-app/agent-config/commit/836288ac46dace2f9197449127faed99a0151b3c))
|
|
148
|
+
* **linter:** add README quality linter with CI integration ([3a32739](https://github.com/event4u-app/agent-config/commit/3a32739b2eae710fc4e184c567e2418549ccc2b9))
|
|
149
|
+
* **linter:** add regression detection between branches ([8163409](https://github.com/event4u-app/agent-config/commit/81634092a103908aeffb65ee51ec675717199462))
|
|
150
|
+
* **linter:** Phase 2 — expand synonyms + fix 8 failing skills → 0 FAIL ([b691904](https://github.com/event4u-app/agent-config/commit/b691904b80c5dc9cb7612d56628a38941f2909ac))
|
|
151
|
+
* **linter:** Phase 2c — section-based detection complements keywords ([8c52d2a](https://github.com/event4u-app/agent-config/commit/8c52d2a99c3dab886fd72c9e5d21b6a65eecc4b9))
|
|
152
|
+
* **linter:** Phase 3 — type boundary enforcement ([44605e6](https://github.com/event4u-app/agent-config/commit/44605e6b55d507d907cd28713a7236ba6b5428cc))
|
|
153
|
+
* **linter:** Phase 4 — verification maturity mapping ([619d1e6](https://github.com/event4u-app/agent-config/commit/619d1e6c89ac413ef1c035a92d42239b774b7ef6))
|
|
154
|
+
* **linter:** Phase 5 — governance and packaging consistency ([f6db739](https://github.com/event4u-app/agent-config/commit/f6db739ca68e540b47d1665e12ba70f9bb2b7626))
|
|
155
|
+
* **mcp:** add mcp.json renderer with ${env:VAR} substitution ([1d4b868](https://github.com/event4u-app/agent-config/commit/1d4b86850dc086f62d775847ab49a11a093bf6f0))
|
|
156
|
+
* **memory:** add engineering memory data format and schema check ([a582013](https://github.com/event4u-app/agent-config/commit/a582013b7611657f10dcd1cf28040431b802a3d4))
|
|
157
|
+
* **memory:** add layered settings guideline + per-project YAML template ([d66b3d3](https://github.com/event4u-app/agent-config/commit/d66b3d3fd7f4b3fa6d1574d25b85fcc48d0bbec3))
|
|
158
|
+
* **memory:** add memory access layer (status/lookup/signal/report) ([8e47d2b](https://github.com/event4u-app/agent-config/commit/8e47d2bc2165e2a89c46c1bd70505bf737f1c368))
|
|
159
|
+
* **memory:** enforce repo-vs-operational conflict rule + shadow report ([340f1e1](https://github.com/event4u-app/agent-config/commit/340f1e1b2925ad21f18e07cb9697df5dc1b30bc0))
|
|
160
|
+
* **memory:** memory hygiene workflow + proposal check template ([3dbff69](https://github.com/event4u-app/agent-config/commit/3dbff69d41c434a5ca4c76ba4068199e6bcac358))
|
|
161
|
+
* **memory:** memory-facing commands (add/full/promote/propose) ([b7e025e](https://github.com/event4u-app/agent-config/commit/b7e025ed480dc6d199a16292028d3a4fc8c3bdd4))
|
|
162
|
+
* **memory:** merge-safe JSONL signals and hash-addressed YAML ([198bc6d](https://github.com/event4u-app/agent-config/commit/198bc6dc71bf9b699861bf464b93d0e12159d9b6))
|
|
163
|
+
* **memory:** wire self-consumption into 3 rules + 3 skills ([fe52eed](https://github.com/event4u-app/agent-config/commit/fe52eed555b53ca60e4f64022b5d3770f6a745c8))
|
|
164
|
+
* **observability:** add structured events, metrics, and logger ([abee69b](https://github.com/event4u-app/agent-config/commit/abee69b03466e30f847b0ec01197b1e3a754b3cd))
|
|
165
|
+
* **observability:** persistence layer, event schema, CLI reports ([7ed7731](https://github.com/event4u-app/agent-config/commit/7ed7731cb61affd6998422025501cb1df8c30738))
|
|
166
|
+
* **personas:** add Core-6 + QA cast with template and README ([cce5984](https://github.com/event4u-app/agent-config/commit/cce598409efd2f87e40d233e7ccd3832d7eda9b0))
|
|
167
|
+
* **personas:** adversarial-review cites critical-challenger ([6903ac7](https://github.com/event4u-app/agent-config/commit/6903ac754983718de23df2352d6f255983e18eb7))
|
|
168
|
+
* **personas:** complete phase 1 — refs validation + tool projections ([4ea58c3](https://github.com/event4u-app/agent-config/commit/4ea58c381704f8d9e89e3e04f7e591d32c14d808))
|
|
169
|
+
* **personas:** complete phase 4 — skills cite personas, role-contracts links ([2b8031e](https://github.com/event4u-app/agent-config/commit/2b8031e16d92dd5bfea9f6e4eb5940247fa07fb2))
|
|
170
|
+
* **personas:** phase 5 — layered-settings integration ([f322b1e](https://github.com/event4u-app/agent-config/commit/f322b1eff56ca290aa03a406230ebd3d686cf678))
|
|
171
|
+
* **pipeline:** implement skill improvement pipeline — all 5 phases ([42e50e7](https://github.com/event4u-app/agent-config/commit/42e50e77e9db4ced1d2468266359b587eaecca37))
|
|
172
|
+
* **plugins:** add marketplace manifests for Augment CLI, Claude Code, and Copilot CLI ([73cbecb](https://github.com/event4u-app/agent-config/commit/73cbecb5d0f5e7da51d388b52d6e3e455feebf72))
|
|
173
|
+
* **portability:** extend checker to root files + identifier blocklist ([4586299](https://github.com/event4u-app/agent-config/commit/4586299599e6cb124c7d3aa68599101df4a28eb2))
|
|
174
|
+
* **product-maturity:** auto-detect runtime + vague-request triggers + design docs ([4e40253](https://github.com/event4u-app/agent-config/commit/4e402532e259b4dcd98df671f1ef31cbc3888041))
|
|
175
|
+
* **quality:** complete road-to-10 roadmap — 9.0/10 quality score ([023e404](https://github.com/event4u-app/agent-config/commit/023e404c6b5d6a94b6b92b9d2eaff4c0c590d1ea))
|
|
176
|
+
* **roadmap-management:** finalized-state roadmaps auto-move — fertig ist fertig ([3578eac](https://github.com/event4u-app/agent-config/commit/3578eac4029b2c601daeea79a73e459b03536b52))
|
|
177
|
+
* **roadmap:** add completion & archiving workflow to roadmap-manager ([e4054b3](https://github.com/event4u-app/agent-config/commit/e4054b320dee8174c66209098bab54a7e3207bfa))
|
|
178
|
+
* **roadmaps:** generated progress dashboard + task wiring ([6e4c095](https://github.com/event4u-app/agent-config/commit/6e4c0956d14f55d284d8d4959613e99bef0a8ea9))
|
|
179
|
+
* **roles:** role modes — /mode command, adherence rule, router ([1a8e4e3](https://github.com/event4u-app/agent-config/commit/1a8e4e32b1d61796e83e709405f380ad62d909cf))
|
|
180
|
+
* **rules+skills:** strengthen developer workflow with MCP tools and verification ([1445ec6](https://github.com/event4u-app/agent-config/commit/1445ec6c0c2e7b50aa5f9a8bf6f5914ea85bac66))
|
|
181
|
+
* **rules:** add artifact-drafting-protocol ([132307e](https://github.com/event4u-app/agent-config/commit/132307ecc90154691719a21b0230349159dd6a1b))
|
|
182
|
+
* **rules:** add missing-tool-handling rule ([739cb24](https://github.com/event4u-app/agent-config/commit/739cb2498d7ae5f584ebaa2de3c2f5e463f9bce5))
|
|
183
|
+
* **rules:** add package-ci-checks rule and optimize CI task order ([5315480](https://github.com/event4u-app/agent-config/commit/531548087e99173234d8e6bbd4b6b55f3014dd83))
|
|
184
|
+
* **rules:** add preservation-guard rule for merges and compression ([100e577](https://github.com/event4u-app/agent-config/commit/100e577826cb491538931add5f91ee16f2f19102))
|
|
185
|
+
* **rules:** add reviewer-awareness and review-routing-awareness ([66f5c58](https://github.com/event4u-app/agent-config/commit/66f5c585bb7ae343216ea757fd2172b494304c8c))
|
|
186
|
+
* **rules:** add roadmap-progress-sync — dashboard must stay real-time ([cc16e41](https://github.com/event4u-app/agent-config/commit/cc16e41f4818b97a70ae1a1e007f2b37690ea794))
|
|
187
|
+
* **rules:** enforce archive-on-completion in roadmap-progress-sync ([bc250bc](https://github.com/event4u-app/agent-config/commit/bc250bcda7204aada74a31071566eb3256a67dda))
|
|
188
|
+
* **rules:** fold break-glass mode into minimal-safe-diff and verify-before-complete ([194dabe](https://github.com/event4u-app/agent-config/commit/194dabe0fb6b1dbb3469e7fe27b280ae43604bb7))
|
|
189
|
+
* **rules:** harden scope-control with branch and PR gates ([b95a5c6](https://github.com/event4u-app/agent-config/commit/b95a5c696ab6570d6151bdc3b6c4a38ce234b7e8))
|
|
190
|
+
* **runtime:** add --output flag to dispatcher run ([94c22e5](https://github.com/event4u-app/agent-config/commit/94c22e558367d32267f4ad2798b719d5a41bccce))
|
|
191
|
+
* **runtime:** add command field to execution frontmatter ([a9ae385](https://github.com/event4u-app/agent-config/commit/a9ae385c45ccf632dcc2c78c96a17869fd264276))
|
|
192
|
+
* **runtime:** add execution model with registry, dispatcher, hooks, and error handling ([54300d9](https://github.com/event4u-app/agent-config/commit/54300d981af33f6a11f43d53e711c0415d851a7d))
|
|
193
|
+
* **runtime:** add ShellHandler and dispatcher run subcommand ([ac1f11f](https://github.com/event4u-app/agent-config/commit/ac1f11f8049e85cfad6b968211d8085bf30e45fd))
|
|
194
|
+
* **runtime:** E2E execution pipeline + session context ([1058ed4](https://github.com/event4u-app/agent-config/commit/1058ed4a92c9b3b61b6baf03bab9657d342a3ae7))
|
|
195
|
+
* **runtime:** execution classification standard + tag 18 assisted skills ([d6f2133](https://github.com/event4u-app/agent-config/commit/d6f213365f8164922b1e7d42ee324adda29c7a58))
|
|
196
|
+
* **schema:** add task validate-schema + wire into CI + docs ([866c44e](https://github.com/event4u-app/agent-config/commit/866c44ec65e0c1fc80f1783756187bec78131fde))
|
|
197
|
+
* **schema:** author JSON-Schemas for skill/rule/command/persona ([14dca70](https://github.com/event4u-app/agent-config/commit/14dca70a85ca45e0eaeeb2dcae762ece6311c012))
|
|
198
|
+
* **schema:** integrate frontmatter schema validator into linter ([62e9618](https://github.com/event4u-app/agent-config/commit/62e96181aded35bdcb4b642d341fc600c671f54c))
|
|
199
|
+
* **schema:** inventory frontmatter keys per artefact type ([0864c71](https://github.com/event4u-app/agent-config/commit/0864c7140cee17f0bc6338dd8af195a4e36832d8))
|
|
200
|
+
* **scripts:** wire personas as a first-class artifact type ([b6c0cdf](https://github.com/event4u-app/agent-config/commit/b6c0cdf0c7734185c3da5d0909a46bdbea112f4e))
|
|
201
|
+
* **self-improvement:** curated proposal pipeline + drift monitor ([66a118c](https://github.com/event4u-app/agent-config/commit/66a118cb00bd87e36f6fa98014523f7d5fc40e5e))
|
|
202
|
+
* separate package docs from consumer templates ([aba5261](https://github.com/event4u-app/agent-config/commit/aba5261c2091e0ff294c7f77bfe0df7dc4f4eff2))
|
|
203
|
+
* **settings:** add cost_profile setting — cheap, balanced, full, custom ([643639f](https://github.com/event4u-app/agent-config/commit/643639f4111c2e7c33fce850ccd4a6fe2099453c))
|
|
204
|
+
* **settings:** add granular token/output control settings + update roadmaps ([ff00273](https://github.com/event4u-app/agent-config/commit/ff002737ced30198c98825f93fdea0ce90e36767))
|
|
205
|
+
* **settings:** add runtime_enabled, observability_reports, feedback_collection toggles ([d49de28](https://github.com/event4u-app/agent-config/commit/d49de283da3650e2753b928aaffc428dc5c8f8a5))
|
|
206
|
+
* **settings:** drop opinionated ide=phpstorm default ([f18d433](https://github.com/event4u-app/agent-config/commit/f18d43306956b82a1843468184067e36ca6dfb9c))
|
|
207
|
+
* **settings:** migrate .agent-settings to nested YAML format ([6165f87](https://github.com/event4u-app/agent-config/commit/6165f871a0191f628a9b47069726afa4bd61d181))
|
|
208
|
+
* setup.sh auto-detects JSON tool (php → node → jq → python3) ([f8b55c3](https://github.com/event4u-app/agent-config/commit/f8b55c3f8f8eb07214ccc663b8bd99f2b8def4b7))
|
|
209
|
+
* sharpen pointer-only skill detection in linter ([6d96c47](https://github.com/event4u-app/agent-config/commit/6d96c477e6ca10c0cedb98ee9f53649ad7708209))
|
|
210
|
+
* **skills:** add description-assist + wire from 4 writing skills ([34bc62e](https://github.com/event4u-app/agent-config/commit/34bc62e3ecbd52437a9f994031e72323cb7b6086))
|
|
211
|
+
* **skills:** add developer-discipline cluster — TDD, systematic-debugging, verify-before-complete ([e9c5099](https://github.com/event4u-app/agent-config/commit/e9c50998c2901cea313081b4d7ea950bfcc8bb1d))
|
|
212
|
+
* **skills:** add estimate-ticket skill + command (Phase 4) ([365fdf4](https://github.com/event4u-app/agent-config/commit/365fdf4135c2112af5ee994cea0e42b6fa93809b))
|
|
213
|
+
* **skills:** add feedback category tags to improvement pipeline ([203e411](https://github.com/event4u-app/agent-config/commit/203e411b772d001188f3341ce867b625d3304fbb))
|
|
214
|
+
* **skills:** add four specialized judge sub-skills ([7f50845](https://github.com/event4u-app/agent-config/commit/7f5084519de245b4ea1bb1074851066544d032a1))
|
|
215
|
+
* **skills:** add lint-skills and check-refs runtime pilots ([3cdb421](https://github.com/event4u-app/agent-config/commit/3cdb421a84e66d764c24b48366415403e3f6dca5))
|
|
216
|
+
* **skills:** add readme-reviewer skill ([a433cb1](https://github.com/event4u-app/agent-config/commit/a433cb1e9954fa464a3665f5bdd7e30959bc166f))
|
|
217
|
+
* **skills:** add readme-writing skill ([c4df476](https://github.com/event4u-app/agent-config/commit/c4df47664487ef2f2b55887682ee037fb3b05d6b))
|
|
218
|
+
* **skills:** add readme-writing-package, clarify skill boundaries ([72cdb9b](https://github.com/event4u-app/agent-config/commit/72cdb9b7efe3fe59e8b64a55cef9ed766e47c1c7))
|
|
219
|
+
* **skills:** add refine-ticket skill + command (Phase 1) ([307dae8](https://github.com/event4u-app/agent-config/commit/307dae8705052ee2b1326478b910e4fd01168489))
|
|
220
|
+
* **skills:** add review-discipline cluster — receiving, requesting, finishing ([396174f](https://github.com/event4u-app/agent-config/commit/396174f841fec0edccaa2c160a0b1cc1e61bb065))
|
|
221
|
+
* **skills:** add review-routing skill with /review-routing command ([c0822a1](https://github.com/event4u-app/agent-config/commit/c0822a1e5f158eef02918785001b47f71ed12594))
|
|
222
|
+
* **skills:** add rule-writing, command-writing, guideline-writing ([5166f14](https://github.com/event4u-app/agent-config/commit/5166f1463530e8f24d21f376f8a11df140392bc4))
|
|
223
|
+
* **skills:** add subagent-orchestration skill + configuration context ([a0ae427](https://github.com/event4u-app/agent-config/commit/a0ae42708a454bc6e83b32d0e7d29f228dd6b262))
|
|
224
|
+
* **skills:** add upstream-contribute skill ([ab5e1b1](https://github.com/event4u-app/agent-config/commit/ab5e1b1c6391cc40a025b68814b809f48bbb5eb0))
|
|
225
|
+
* **skills:** add using-git-worktrees — Phase 6.1 ([8765c37](https://github.com/event4u-app/agent-config/commit/8765c37915f817be665e20343fdaeaa783761bb0))
|
|
226
|
+
* **skills:** adopt 'pushy description' triggering pattern ([6dccc92](https://github.com/event4u-app/agent-config/commit/6dccc92238f8eb0392435e2e33985e9b6f3786fa))
|
|
227
|
+
* **skills:** pushy descriptions batch 3a (laravel-mail, websocket, project-analysis-hypothesis-driven) ([ee5b7c6](https://github.com/event4u-app/agent-config/commit/ee5b7c62d1a154d7f3f1cabd95a4fd4c276082f5))
|
|
228
|
+
* **skills:** pushy descriptions batch 3b (grafana, sql-writing, laravel-pulse) ([adf415c](https://github.com/event4u-app/agent-config/commit/adf415c2f1e28af1e14b285d9ca0e79a59598a9f))
|
|
229
|
+
* **skills:** pushy descriptions batch 3c (openapi, github-ci, devcontainer) ([4c75cc6](https://github.com/event4u-app/agent-config/commit/4c75cc6e11c097a270181f0bbcc2fcf6c2d90125))
|
|
230
|
+
* **skills:** pushy descriptions batch 3d (terraform, terragrunt, php-debugging) ([9c8ea11](https://github.com/event4u-app/agent-config/commit/9c8ea1123cab7443ab1ee5ce297e61fab34d7a42))
|
|
231
|
+
* **skills:** pushy descriptions batch 3e (laravel-pennant, laravel-validation, laravel-horizon) ([32d9b3d](https://github.com/event4u-app/agent-config/commit/32d9b3d8493cdc2cd00e75916b24e5a33d09006a))
|
|
232
|
+
* **skills:** refine-ticket orchestration wiring (Phase 2) ([3c324c3](https://github.com/event4u-app/agent-config/commit/3c324c3e288d204ecb0100ad5318805c0bebd9ec))
|
|
233
|
+
* **skills:** refine-ticket repo-aware mode (Phase 3) ([046a032](https://github.com/event4u-app/agent-config/commit/046a0328ae9554c70c08803c460f51e61b7d1082))
|
|
234
|
+
* **skills:** sharpen pushy descriptions on 6 pilot skills ([7d48a9b](https://github.com/event4u-app/agent-config/commit/7d48a9b6f9f0d07b0c2cfcdda13723504b84d2ed))
|
|
235
|
+
* **subagent:** wire /commit into /do-and-judge ([81e5707](https://github.com/event4u-app/agent-config/commit/81e570745472bd372435e2b9b35231fec6c6e4a4))
|
|
236
|
+
* **tasks:** add setup-evals and install-anthropic-key tasks ([bddd625](https://github.com/event4u-app/agent-config/commit/bddd6254e21652834af94ecb3e2d92bf229f9568))
|
|
237
|
+
* **templates:** PR risk review workflow + confidence gating ([bc602f6](https://github.com/event4u-app/agent-config/commit/bc602f63fc8f8cb925b117190670c5027324ffe1))
|
|
238
|
+
* **tools:** activate read-only GitHub + Jira adapters with real API calls ([64c1c57](https://github.com/event4u-app/agent-config/commit/64c1c572a8c90bb3768b3b82fc44c3ed1ade6671))
|
|
239
|
+
* **tools:** add tool registry, adapters, and permission validation ([bdafea6](https://github.com/event4u-app/agent-config/commit/bdafea66a2fd71901f4701a140b01802b7b1d609))
|
|
240
|
+
* **trigger-evals:** output-schema check + refine-ticket updates ([955d09d](https://github.com/event4u-app/agent-config/commit/955d09deb7752b6870901468847bca5760d58995))
|
|
241
|
+
* **upstream:** mandatory consent gate + proactive contribution proposals ([bb3392f](https://github.com/event4u-app/agent-config/commit/bb3392f6682fa4315ec745079cf892680f80fdb8))
|
|
242
|
+
* wire first-run into Taskfile and README ([37e91f3](https://github.com/event4u-app/agent-config/commit/37e91f358dc8a66fe5eb14c6f0c23831a64a4dae))
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
### Bug Fixes
|
|
246
|
+
|
|
247
|
+
* add iron rule for skill independence ([b060730](https://github.com/event4u-app/agent-config/commit/b060730e98b15b6bc498ad68a111035fab72907f))
|
|
248
|
+
* address Copilot PR review feedback ([11b4d20](https://github.com/event4u-app/agent-config/commit/11b4d2060084d1739bfc9e6550fc78c4a4a0bcb7))
|
|
249
|
+
* address galawork-api PR [#1466](https://github.com/event4u-app/agent-config/issues/1466) bot feedback ([c5f8e18](https://github.com/event4u-app/agent-config/commit/c5f8e18a6c429e2f8f0224e1d9130233107ce65e))
|
|
250
|
+
* **check-refs:** resolve .augment/X as alias for .agent-src/X ([ff3b094](https://github.com/event4u-app/agent-config/commit/ff3b09479a7fa266606467d862f8de9277ef1fc4))
|
|
251
|
+
* **check-refs:** skip forward refs in unchecked TODO items ([1458a18](https://github.com/event4u-app/agent-config/commit/1458a181eb5bbe3189777b87bd9ad210b8cc00c5))
|
|
252
|
+
* **check-refs:** validate paths inside memory YAML + exempt consumer dirs ([ec4e8aa](https://github.com/event4u-app/agent-config/commit/ec4e8aae2a0f8e7c489442441b8cfa7f9242be2f))
|
|
253
|
+
* **ci:** add PR comment permissions, fix lint failure, sync compression hashes ([dee8c47](https://github.com/event4u-app/agent-config/commit/dee8c47d080176d49c94d63d33be7ada025b0a64))
|
|
254
|
+
* **ci:** auto-discover ownership-map under .github/ and agents/ ([c9239d2](https://github.com/event4u-app/agent-config/commit/c9239d2795ccb75ca5fb49dc2f81054fd4cb64ab))
|
|
255
|
+
* **ci:** collapsible PR comment sections, sticky comment update ([4b9b8c9](https://github.com/event4u-app/agent-config/commit/4b9b8c9ef4e28971073a8dcb436250ac2f81a421))
|
|
256
|
+
* **ci:** fix all CI pipeline failures ([bed212f](https://github.com/event4u-app/agent-config/commit/bed212f9d9802dd318e4f297e53e54ecb1fa00c8))
|
|
257
|
+
* **ci:** fix trailing newlines in 36 commands, relax strict lint on main ([1972efa](https://github.com/event4u-app/agent-config/commit/1972efa7c22a87959aa8bac3c226210bf34c9cf8))
|
|
258
|
+
* **ci:** install pytest before running linter tests ([5e35f3d](https://github.com/event4u-app/agent-config/commit/5e35f3de991be1430bbd5d55692704ba57bf45a2))
|
|
259
|
+
* **ci:** install pyyaml + migrate orchestrator tests to YAML settings ([77d0a95](https://github.com/event4u-app/agent-config/commit/77d0a95335dcf2e39636c6edbcab5752baf9833e))
|
|
260
|
+
* **ci:** resolve 10 broken cross-references in roadmaps ([a564c43](https://github.com/event4u-app/agent-config/commit/a564c4353bf92b892c6b0f67434b0178e3ba67b0))
|
|
261
|
+
* **commands:** add mandatory quality gate to compress command ([e66ef75](https://github.com/event4u-app/agent-config/commit/e66ef75209415099cc79bbddd9fecb4963e6b9a0))
|
|
262
|
+
* **compression:** restore code block text in augment-source-of-truth rule ([f1be351](https://github.com/event4u-app/agent-config/commit/f1be35142dde5ae43245ed013a7035a7b16027f6))
|
|
263
|
+
* **compression:** restore lost code blocks in 5 compressed files ([06e14fb](https://github.com/event4u-app/agent-config/commit/06e14fb05a33f3dc29de6ee4c84f949c879656d3))
|
|
264
|
+
* correct plugin install commands per Nicolai's feedback ([22279cc](https://github.com/event4u-app/agent-config/commit/22279cc371d616b9e993bb57c84e01bd426a2484))
|
|
265
|
+
* **docs:** avoid false-positive skill/path refs in design docs ([2cd66a3](https://github.com/event4u-app/agent-config/commit/2cd66a3283e2d8ad13eaead140dda4a752bc86c6))
|
|
266
|
+
* enforce /compress command as only way to write .augment/ files ([fad94a6](https://github.com/event4u-app/agent-config/commit/fad94a6475135c5a8f0945d950369f60e596a4f1))
|
|
267
|
+
* **evals:** read confirmation input from /dev/tty, not stdin ([eba6dde](https://github.com/event4u-app/agent-config/commit/eba6ddeff68f3c2c67285e7d94f7b4a54ae4b51b))
|
|
268
|
+
* **evals:** reclassify eloquent 'UserService' Pest query as A-class ([5ffcdad](https://github.com/event4u-app/agent-config/commit/5ffcdaddd16c2c119fb6321cc5d0857d2d98a7a5))
|
|
269
|
+
* handle realpath without --relative-to support (BusyBox/Alpine) ([5a79bf0](https://github.com/event4u-app/agent-config/commit/5a79bf06c629c00174f0752b8e1a851678ad352e))
|
|
270
|
+
* improve auto-rule trigger descriptions for better matching ([1900ef3](https://github.com/event4u-app/agent-config/commit/1900ef37da5d32ff051649cffc6b452701c1ad30))
|
|
271
|
+
* **linter:** use frontmatter-based execution parsing for assisted-skill validation check ([e2e38da](https://github.com/event4u-app/agent-config/commit/e2e38da8410be190a66d85db7144f66458ddb858))
|
|
272
|
+
* linting bug ([180951d](https://github.com/event4u-app/agent-config/commit/180951de62f6372897f83d33a41a65a538d7ac28))
|
|
273
|
+
* **lint:** resolve 2 skill-lint regressions ([7c1bba2](https://github.com/event4u-app/agent-config/commit/7c1bba2767184d8de2040bb7f13e1cec4f8115aa))
|
|
274
|
+
* npm install ([#1](https://github.com/event4u-app/agent-config/issues/1)) ([3fc1c1f](https://github.com/event4u-app/agent-config/commit/3fc1c1fc9c8abbb883aeda0f95ff5ae74080bc2e))
|
|
275
|
+
* **readme:** sync hero counts to actual source + auto-update regex ([39bb363](https://github.com/event4u-app/agent-config/commit/39bb363352f468405a9717cf589f7c56fc50d718))
|
|
276
|
+
* **refs:** avoid false-positive cross-reference matches ([3d5fb6d](https://github.com/event4u-app/agent-config/commit/3d5fb6d03fcd37bf991344ca26eda3704b3a9787))
|
|
277
|
+
* remove project-specific repo reference from override-system ([5018e85](https://github.com/event4u-app/agent-config/commit/5018e857899d792ff753240b67b5eb5be181b3d5))
|
|
278
|
+
* remove unnecessary bash -c wrapper for phpunit in docker-commands ([b1ff4a6](https://github.com/event4u-app/agent-config/commit/b1ff4a6a9b0231dec9f7548c2f20d6b2ed90d334))
|
|
279
|
+
* resolve all broken cross-references and reduce false positives ([f5eab18](https://github.com/event4u-app/agent-config/commit/f5eab180dd96f53d6df4240734cd29f163b11044))
|
|
280
|
+
* **rules:** add missing guardrails from GPT review ([d03dae9](https://github.com/event4u-app/agent-config/commit/d03dae93eadd66a5f00bd7d478b55ac8bb811bb2))
|
|
281
|
+
* **rules:** docs-sync must update local .agent-settings when template changes ([a0c582b](https://github.com/event4u-app/agent-config/commit/a0c582bd2c5444548810bd2573562b720b56b428))
|
|
282
|
+
* **rules:** open files are context, not intent ([4d1d8b2](https://github.com/event4u-app/agent-config/commit/4d1d8b202d972c6bacd58639af634ee3642642d1))
|
|
283
|
+
* **rules:** resolve procedural_rule linter warning on runtime-safety ([37ff087](https://github.com/event4u-app/agent-config/commit/37ff0870efc9141835f47acc491d0ddc09743973))
|
|
284
|
+
* **rules:** trim ask-when-uncertain + artifact-drafting-protocol ([17db7ee](https://github.com/event4u-app/agent-config/commit/17db7ee8f8f5db77eb103e5cff01cbd439bc6c2f))
|
|
285
|
+
* **scripts:** exempt consumer routing data from reference checker ([a029e89](https://github.com/event4u-app/agent-config/commit/a029e8948d83f8ab672b39fb13bd027cfafd5982))
|
|
286
|
+
* **skills:** add inspect step + clarification guard to writing skills ([e16ee1f](https://github.com/event4u-app/agent-config/commit/e16ee1fd5836aa7ec14d1ebb458392bf7ab96a81))
|
|
287
|
+
* **skills:** D-class description fixes from Phase 2 PoC live evals ([f28880c](https://github.com/event4u-app/agent-config/commit/f28880c7245c61cbe2b6a003d2a020b96d44d13b))
|
|
288
|
+
* **skills:** eloquent exclusions + php-coder test vector reclassification ([4618c05](https://github.com/event4u-app/agent-config/commit/4618c05e05a1da4919529f973152b71c9cfd3b4f))
|
|
289
|
+
* **skills:** resolve 3 lint warnings in review-routing skill ([d1c7c81](https://github.com/event4u-app/agent-config/commit/d1c7c81b2cd168551db7d3c9eecb54b6b199739c))
|
|
290
|
+
* **skills:** sharpen analysis/review descriptions (batch 2a) ([f81493e](https://github.com/event4u-app/agent-config/commit/f81493ee1172b4aad8f2b5c7338765d4963fdba1))
|
|
291
|
+
* **skills:** sharpen api + aws descriptions (batch 2b) ([b00d19d](https://github.com/event4u-app/agent-config/commit/b00d19d326ee5771aa7ea2fbfb0d6ba1886041d7))
|
|
292
|
+
* **skills:** sharpen blade/command/composer descriptions (batch 2c) ([c61dca7](https://github.com/event4u-app/agent-config/commit/c61dca7eda0763353a7ad3ad3de2c87e9d1aaaa5))
|
|
293
|
+
* **skills:** shorten 6 pilot descriptions under 200-char lint limit ([7ed3adb](https://github.com/event4u-app/agent-config/commit/7ed3adb9c1fcced9abf99d6b5f69465dc469f2e3))
|
|
294
|
+
* sync diverged compressed files and update hashes ([3f51916](https://github.com/event4u-app/agent-config/commit/3f51916dcfdac3264163ff0575ff3742fbf0ce43))
|
|
295
|
+
* sync package.json version to 1.3.3 and rename gitignore marker ([193a9e4](https://github.com/event4u-app/agent-config/commit/193a9e479adec742cb7ecda5b44a9564709aedf9))
|
|
296
|
+
* sync tool directories and fix broken cross-references ([deeb9d3](https://github.com/event4u-app/agent-config/commit/deeb9d3c8316b29bff3a1bab33f8defb26a79d35))
|
|
297
|
+
* **templates:** add missing settings to agent-settings template ([c75f461](https://github.com/event4u-app/agent-config/commit/c75f4619ba79d663a487561cedcbc34bee79a1ad))
|
|
298
|
+
* **tests:** add description to valid rule fixture ([efc30a6](https://github.com/event4u-app/agent-config/commit/efc30a60350b72b748fe256af7efc9dbb5fd9952))
|
|
299
|
+
* **tests:** tolerate empty recent_branches on CI detached HEAD ([e0a842c](https://github.com/event4u-app/agent-config/commit/e0a842c670336ef95e846aa66e6f0f6cd17115f6))
|
|
300
|
+
* **tests:** update test_install.sh to use correct skill name php-coder ([88356ad](https://github.com/event4u-app/agent-config/commit/88356adf930bf5c7985f65202b27e4c1e8033e77))
|
|
301
|
+
* **tests:** update test_install.sh to use correct skill name php-coder ([6c3ec8f](https://github.com/event4u-app/agent-config/commit/6c3ec8f84dcfa9ed015139cffcba72b7e1b4d195))
|
|
302
|
+
* **tools:** prevent commands from overwriting same-name skill symlinks ([a86faa7](https://github.com/event4u-app/agent-config/commit/a86faa7a923787110972f6afaf8c40df0b22e5ce))
|
|
303
|
+
* **tools:** regenerate .windsurfrules after rule changes ([2779f31](https://github.com/event4u-app/agent-config/commit/2779f3113ea1fcf6f0829a4c41b5147fd570a54e))
|
|
304
|
+
* use --changed for PR lint, --all only on main ([84d1226](https://github.com/event4u-app/agent-config/commit/84d12263b19bc110a11d0690ffcdd95dce013491))
|
|
305
|
+
|
|
10
306
|
## [Unreleased]
|
|
11
307
|
|
|
12
308
|
### Added
|