liteagents 2.15.2 → 2.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/CHANGELOG.md +196 -0
  2. package/README.md +8 -7
  3. package/package.json +2 -2
  4. package/packages/ampcode/AGENT.md +2 -2
  5. package/packages/ampcode/agents/quality-assurance.md +1 -1
  6. package/packages/ampcode/commands/docs-builder/docs-builder.cjs +2382 -0
  7. package/packages/ampcode/commands/docs-builder.md +787 -223
  8. package/packages/ampcode/commands/remember/AGENT_RULES.md +13 -43
  9. package/packages/ampcode/commands/remember/{friction.js → friction.cjs} +211 -99
  10. package/packages/ampcode/commands/remember.md +208 -29
  11. package/packages/claude/CLAUDE.md +3 -3
  12. package/packages/claude/commands/docs-builder/docs-builder.cjs +2382 -0
  13. package/packages/claude/commands/docs-builder.md +873 -0
  14. package/packages/claude/commands/remember/AGENT_RULES.md +10 -40
  15. package/packages/claude/commands/remember/{friction.js → friction.cjs} +208 -96
  16. package/packages/claude/commands/remember.md +208 -29
  17. package/packages/claude/plugins/live-canvas-marketplace/plugins/live-canvas-channel/package-lock.json +9 -9
  18. package/packages/droid/AGENTS.md +2 -2
  19. package/packages/droid/commands/docs-builder/docs-builder.cjs +2382 -0
  20. package/packages/droid/commands/docs-builder.md +787 -223
  21. package/packages/droid/commands/remember/AGENT_RULES.md +13 -43
  22. package/packages/droid/commands/remember/{friction.js → friction.cjs} +211 -99
  23. package/packages/droid/commands/remember.md +208 -29
  24. package/packages/droid/droids/quality-assurance.md +1 -1
  25. package/packages/opencode/AGENTS.md +2 -2
  26. package/packages/opencode/agent/quality-assurance.md +1 -1
  27. package/packages/opencode/command/docs-builder/docs-builder.cjs +2382 -0
  28. package/packages/opencode/command/docs-builder.md +787 -223
  29. package/packages/opencode/command/remember/AGENT_RULES.md +13 -43
  30. package/packages/opencode/command/remember/{friction.js → friction.cjs} +211 -99
  31. package/packages/opencode/command/remember.md +208 -29
  32. package/packages/opencode/opencode.jsonc +2 -6
  33. package/packages/subagentic-manual.md +31 -32
  34. package/packages/ampcode/commands/docs-builder/templates.md +0 -601
  35. package/packages/claude/skills/docs-builder/SKILL.md +0 -309
  36. package/packages/claude/skills/docs-builder/references/templates.md +0 -601
  37. package/packages/droid/commands/docs-builder/templates.md +0 -601
  38. package/packages/opencode/command/docs-builder/templates.md +0 -601
package/CHANGELOG.md CHANGED
@@ -15,6 +15,202 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
15
  - Enhanced testing capabilities
16
16
  - Performance optimizations
17
17
 
18
+ ## [2.17.0] - 2026-08-24
19
+
20
+ ### Added
21
+ - **docs-builder v3 — the model sorts a corpus into four buckets, behind an approval gate.**
22
+ v2 could only move a file a mechanical rule already recognised; everything else stayed put.
23
+ v3 has `discover` *propose* a bucket per file (`product` / `logs` / `archive`, with
24
+ `oversized` as a separate boolean flag, not a bucket) and stop — a classification interview
25
+ fills in `bucket`, and only then does `apply-reorg` move anything. The risk was never the
26
+ model's judgement, it was a silent move; so the gate is the fix, not a better heuristic.
27
+ `reconcile`, `due` and `archive-cleanup` folded into the `reorg` front door — `due`'s output
28
+ contract is preserved because `/remember` step 7 reads it.
29
+ - **`cleanup <file>` — splitting is opt-in and per-file.** It measures, prints the cost, and
30
+ stops for an interview; `cleanup-apply` runs only after `labels.json` exists with exactly
31
+ one `core:true` theme. The core page keeps the original basename and lands back in the
32
+ original document's own directory; only non-core theme pages stay under `docs/wiki/`. The
33
+ original is always archived byte-identical (sha verified before and after), never edited.
34
+ - **`search`** — zero-dependency BM25 over the corpus. Measured against reading the split
35
+ corpus whole on real data: a **tie** (~73K tokens either way), so splitting is justified by
36
+ recall, not by cost — the README says so rather than implying a saving that isn't there.
37
+ - **The first behavioural test suite this tool has ever had** — 472 tests in throwaway git
38
+ repos, including negative controls that assert the gates can actually fail. It was written
39
+ after four rounds of hand-found bugs kept recurring with nothing in the repo able to catch
40
+ them. `tests/run-all-tests.js` now treats `expectedTests` as an enforced floor: a breach
41
+ exits 1 (it used to print the number and pass regardless).
42
+
43
+ ### Fixed
44
+ - **One chokepoint for a doc move, and all three of its guards now live there.** `moveDoc` is
45
+ the single path a doc changes location through. Three defects, each reproduced against the
46
+ shipped script before being fixed: a plan row containing `../` could move — and **delete** —
47
+ a file from outside the repo via the copy+unlink fallback; `archive README.md` archived the
48
+ README because `PROTECTED_NAMES` was enforced at two call sites but not at the chokepoint;
49
+ and `cleanup-apply` died mid-split because `archive()` called `process.exit(2)` on a
50
+ follow-up failure while running in-process, leaving the original archived, the core page
51
+ stranded, and no index — silently. Path confinement and the protected-name check now sit in
52
+ `doArchive`; `archive` split into `archiveOrThrow` plus a CLI wrapper.
53
+ - **One index.** The themed per-split index used to write the same path as the whole-corpus
54
+ map: on a real corpus a split's index step overwrote a 37-row map with its own 7 rows, and
55
+ the file still claimed completeness. `index-flat` is now the sole writer of `docs/index.md`;
56
+ the themed variant was removed outright.
57
+ - **`FROZEN` dropped from the archive trigger words** — on a real 37-file corpus it caused
58
+ ~10 of 12 archive calls to be false positives, because in that corpus `FROZEN` means
59
+ "locked, still current". Precision over recall, with no replacement heuristic.
60
+ - **Relative links are rewritten when a file moves**, fence-aware *and* inline-code-span-aware
61
+ for the relative passes (a `` `map[key](arg)` `` span was being corrupted into a link), and
62
+ inbound-link repair now covers untracked-but-not-ignored files — a split's brand-new pages
63
+ were invisible to it before.
64
+ - **The commit advisory prints one recipe per run that actually runs.** It used to name files
65
+ at their pre-move paths (`git add` is atomic — one stale pathspec exits 128 and stages
66
+ *nothing*), print once per internal step, and omit files the run itself generated, including
67
+ `docs/log.md`. Found on a cold field run where the operator quietly hand-repaired it.
68
+ - **`/remember`: one conversation counts once.** A fork or resume writes the same conversation
69
+ to several session files, and the ledger was counting files — an antigen rendered "3
70
+ sessions" that was really one conversation. Sessions are now unioned on shared message
71
+ uuids (`sessions` is authoritative; `session_ids` is evidence), reactions deduped on
72
+ (conversation, anchor timestamp, anchor signal), and the scan restricted to anchor-bearing
73
+ sessions — 84.1s → 53.0s per run on the real corpus with identical clustering.
74
+ - **`/remember`: the ledger seeds only on recurrence.** New entries are minted at `sessions
75
+ >= 2`; three prior runs had produced 30 / 0 / 10 singleton entries. Quiet runs now also run
76
+ the length-gate check before the "nothing to consolidate" exit, and that gate's exemption is
77
+ mechanical (a >100-char backtick literal) rather than a judgement call the model could talk
78
+ itself past.
79
+ - **`friction.cjs` skips task-notification blocks** in both signal detection and context
80
+ capture — their boilerplate was matching as false curses/corrections — and warns on stderr
81
+ when a uuid's fan-out exceeds the cap instead of dropping the union silently.
82
+
83
+ ### Changed
84
+ - **`/remember` now compresses hot memory instead of accumulating it.** `MEMORY.md` is loaded
85
+ into every session, so its size is the cost that matters — and both Facts and Episodes were
86
+ append-only, so it only ever grew. Four changes, all in the command spec (no script):
87
+ - **Facts are rewritten every run, not appended to.** The merge step returns the whole
88
+ section rewritten — new replaces old, near-duplicates fold into one line, and anything
89
+ that can be shorter is made shorter. A fact is now **one line, ≤160 chars, stating a rule
90
+ that changes future behaviour**: current truth only, no version history, no `supersedes`,
91
+ no narrative. Events belong in episodes. Nothing is pruned on age — an old rule that still
92
+ holds must never be dropped for being old; the bar sits at *entrance*, not on a timer.
93
+ - **Episodes keep the 10 most recent; older ones are folded, then deleted.** An aging
94
+ episode's *lesson* is handed to the fact rewrite, then the narrative is removed. No
95
+ archive file: git holds the history, and a file that is never loaded is not memory.
96
+ - **Stashes are batched, ≤5 per agent, using as few agents as possible.** One agent reading
97
+ several sessions sees a lesson recur and writes it once; one agent per stash writes it
98
+ once per stash and leaves the merge to catch the duplicates. Fewer agents, better
99
+ extraction, less to dedup downstream.
100
+ - **A mechanical length check runs in the report** — a one-line `awk` naming every fact over
101
+ the cap. It reports; it never fails the run and never hand-edits. Counting is a script's
102
+ job, compression is the model's: on this project model-driven bookkeeping measured **27%**
103
+ reliable against **~100%** for the same work done mechanically.
104
+
105
+ Measured on this toolkit's own bareloop corpus: `MEMORY.md` **168 KB → 48 KB** — 348 facts
106
+ averaging 254 chars became 249 averaging ~130, and 73 episodes became 10. Roughly **30k
107
+ tokens off every session** in that project. Antigens and the 10 retained episodes came
108
+ through byte-identical.
109
+
110
+ Mirrored across all four packages; `docs/product/remember-README.md` updated to match.
111
+
112
+ ## [2.16.0] - 2026-08-22
113
+
114
+ ### Added
115
+ - **`/docs-builder` with no argument now asks instead of guessing.** It runs `due` for
116
+ context, then offers exactly three options via `AskUserQuestion` — **First run** (sort the
117
+ whole corpus, then split what's too big), **Docs drift** (rebuild index, re-run lint,
118
+ nothing moves), **Clean archive** (destructive prune). Passing an argument skips the
119
+ question, so the flow stays scriptable. Same explicit-over-auto-detect call `live-canvas`
120
+ made: the three modes differ in cost and destructiveness, so a wrong guess is expensive in
121
+ one direction and irreversible in the other. "First run" carries two stops — one guarding
122
+ correctness (review the classification before anything is `git mv`'d), one guarding cost
123
+ (see the oversized list and its price before any split runs).
124
+ - **docs-builder v2** — rebuilt so the *script* does the bookkeeping and the model does only
125
+ synthesis. New `docs-builder.cjs` with `scan`/`propose`/`assign`/`validate`/`plan`/`write`/
126
+ `index`/`search`/`archive`/`lint`/`ledger`/`due` subcommands, plus **Mode 0 reorg**
127
+ (`discover` / `apply-reorg`) that classifies a whole corpus into product / archive /
128
+ oversized instead of one file at a time.
129
+ - **`/remember` step 7 — docs reconcile check (detect only).** Runs `docs-builder.cjs due`,
130
+ crash-isolated like the friction step; nudges at >=5 changed docs and never edits a page.
131
+ Now present in all four packages.
132
+ - **`search`** — BM25 ranking over the doc corpus, with `N` result clamping.
133
+
134
+ ### Changed
135
+ - **docs-builder moved from a Claude skill to a Claude command** — Claude Code is now
136
+ 11 subagents + **8 skills + 10 commands** (was 9 + 9). The other three tools keep 18
137
+ commands; only the docs-builder entry's description and usage changed.
138
+ - **docs-builder v2 mirrored to droid / opencode / ampcode.** `docs-builder.cjs` hardcodes
139
+ no tool paths, so it is byte-identical across all four packages; only the command doc's
140
+ config-file reference differs. (`friction.cjs`, by contrast, does hardcode tool paths and
141
+ stays per-package.)
142
+ - **Per-tool config filename swept through the non-Claude packages.** `CLAUDE.md` ->
143
+ `AGENT.md` (ampcode) / `AGENTS.md` (droid, opencode) in the `quality-assurance` agent, the
144
+ `context-builder` catalog row, the `AGENT_RULES.md` stub section, and `friction.cjs`'s
145
+ recommendation output. The `docs-builder` never-move list still names all three on purpose
146
+ — the code protects every variant regardless of which tool is running.
147
+ - Removed the stale v1 `docs-builder/templates.md` from the three non-Claude packages.
148
+
149
+ ### Fixed
150
+ - **Reorg could move files it promised never to move.** The never-move list is now enforced
151
+ in code (`PROTECTED_NAMES`), matched at **any depth** rather than only at the top of
152
+ `docs/`: `README.md`, `index.md`, `log.md`, `CHANGELOG.md`, `LICENSE.md`,
153
+ `CONTRIBUTING.md`, `CODE_OF_CONDUCT.md`, `SECURITY.md`, `CLAUDE.md`, `AGENTS.md`,
154
+ `AGENT.md`. Previously a `README.md` one directory down was a move candidate.
155
+ - **Reorg walked into dot-dirs and `node_modules/`.** `walkMd` now skips every dot-dir
156
+ (`.git/`, `.github/`, `.claude/`, `.factory/`, `.opencode/`, `.amp/`, `.docs-builder/`)
157
+ and `node_modules/`, matching what the command doc already claimed.
158
+ - **`REPO` vs cwd path split (8 fixes).** `rewriteArchivedPath`, `checkCitations`' tasks dir,
159
+ `failures.json`, and `applyReorg`'s plan path all resolved against `REPO` while their
160
+ writers wrote cwd-relative. Running from outside the repo silently no-opped the archive
161
+ key-sync, LOUD-SKIPped the citations gate (so `validate` returned PASS on bad citations),
162
+ split the failure ledger across two directories, and made `apply-reorg` die right after a
163
+ successful `discover`. All now resolve cwd-relative.
164
+ - `logOp` creates `docs/` before appending to `log.md` (was ENOENT, masked only by call order).
165
+ - `bm25Rank` skips and warns on a missing source file instead of dying with a raw ENOENT.
166
+ - `search` clamps `N` to a positive integer (`N=-3` silently dropped the last 3 results).
167
+ - `friction.js` -> `friction.cjs` in all four packages — a `.js` file fails to load via
168
+ `require()` in any repo whose `package.json` declares `"type": "module"`.
169
+ - Command-doc examples for `validate`, `plan`, and `search` now include `REPO=<repo>`.
170
+ - **`/docs-builder` showed no argument hint.** Its frontmatter had `usage:` but not
171
+ `argument-hint:` — the key Claude Code actually renders — and no `allowed-tools:`, while
172
+ every sibling command had both. Added in all four packages, with `AskUserQuestion` in the
173
+ tool list so the new mode picker can run.
174
+ - **`/docs-builder` did not load on opencode at all.** `opencode.jsonc` registered it as
175
+ `./command/docs-builder/SKILL.md` — a path that never existed in that package (opencode
176
+ uses a flat `docs-builder.md`, like every other command). Now points at the real file, with
177
+ the v2 description.
178
+ - Removed a stale `subagent-spawning` entry from `opencode.jsonc` — the command file was
179
+ deleted long ago but stayed registered. opencode.jsonc now registers exactly the 18
180
+ commands and 11 agents that exist on disk.
181
+ - `AGENT_RULES.md` footer pointed at `.claude/memory/AGENT_RULES.md`, a location that no
182
+ longer exists (the dir was renamed to `remember/`). Now the correct per-tool path in each
183
+ package. Only affects newly bootstrapped copies — an existing project-local
184
+ `AGENT_RULES.md` is user-owned and never overwritten.
185
+
186
+ ### Removed
187
+ - **Guardrails section dropped from `AGENT_RULES.md`** (all four packages). It documented a
188
+ `PreToolUse` hook and pointed at `.claude/hooks/guardrails.py` as "ships in this repo" —
189
+ the file never shipped here. The section was also Claude-Code-only: droid, opencode, and
190
+ ampcode have no hook system, so it was unusable guidance in three of four packages. The
191
+ Always / Ask / Never rules it justified stay, restated as binding prose plus a pointer to
192
+ mirror them into whatever allow/ask/deny list your tool provides.
193
+
194
+ ### Documentation
195
+ - `subagentic-manual.md` catalog corrected — it claimed Ampcode shipped a `skills/` directory
196
+ (it does not) and under-counted Droid/OpenCode at 17 commands. All four platforms ship
197
+ 11 subagents; only Claude Code splits capabilities into skills + commands.
198
+ - `package.json` description 17 -> 18 commands (drives the installer banner), root
199
+ `CLAUDE.md` 20 -> 18.
200
+
201
+ ---
202
+
203
+ ## [2.15.3] - 2026-08-04
204
+
205
+ ### Security
206
+ - Merges Dependabot #29/#28: hono 4.13.0 (closes residual moderate ReDoS,
207
+ GHSA-8j4g-w8fx-2239), ip-address 10.4.0 (3 high SSRF/trust-boundary
208
+ advisories). Also applies `npm audit fix` for fast-uri 3.1.5 (high,
209
+ GHSA-7p8r-x3mc-p8w7) — flagged by audit but not yet proposed as a
210
+ separate Dependabot PR. Transitive deps of the bundled live-canvas-channel
211
+ plugin's MCP SDK; unreachable in its stdio server. Plugin audit: 3 → 0
212
+ vulnerabilities. 138 root tests green.
213
+
18
214
  ## [2.15.2] - 2026-07-24
19
215
 
20
216
  ### Security
package/README.md CHANGED
@@ -45,7 +45,7 @@ liteagents
45
45
 
46
46
  ### Supported Tools
47
47
 
48
- - **Claude Code** - 11 subagents + 9 skills + 9 commands (+ optional live-canvas channel plugin)
48
+ - **Claude Code** - 11 subagents + 8 skills + 10 commands (+ optional live-canvas channel plugin)
49
49
  - **Opencode** - 11 agent references + 18 commands
50
50
  - **Ampcode** - 11 subagents + 18 commands
51
51
  - **Droid** - 11 agent references + 18 commands
@@ -135,14 +135,14 @@ Results land in `.claude/remember/friction/antigen_review.md` with projects, err
135
135
 
136
136
  *Hot Memory Pipeline (2)* — see the [Hot Memory](#hot-memory--project-local-learning-from-your-own-sessions) section above for the full walkthrough:
137
137
  - **stash** - Snapshot session context to `.claude/stash/` before compaction, handoff, or ending complex work
138
- - **remember** - Consolidate stashes + friction antigens into `.claude/remember/MEMORY.md`; auto-injected via `@MEMORY.md`
138
+ - **remember** - Consolidate stashes + friction antigens into `.claude/remember/MEMORY.md`; auto-injected via `@.claude/remember/MEMORY.md`
139
139
 
140
140
  *Design*:
141
141
  - **live-canvas** - Design UI variations with click-to-annotate feedback in the browser; ships a companion MCP channel plugin for Claude Code so Saves stream into the session in real time. Other tools use batch mode.
142
142
 
143
143
  *Workflow & analysis*:
144
144
  - **brainstorming** - Structured brainstorming sessions
145
- - **docs-builder** - Project documentation generation
145
+ - **docs-builder** - Reorg a docs corpus, split an oversized doc, search it, keep pages current, index them
146
146
  - **trace-back** - Trace bugs backward through call stack
147
147
  - **skill-creator** - Guide for creating new skills
148
148
  - **debug-method** - Four-phase debugging framework
@@ -162,9 +162,10 @@ Results land in `.claude/remember/friction/antigen_review.md` with projects, err
162
162
 
163
163
  | Document | Description |
164
164
  |----------|-------------|
165
- | **[INSTALLER_GUIDE.md](docs/INSTALLER_GUIDE.md)** | Complete installation guide, troubleshooting, and FAQ |
165
+ | **[INSTALLER_GUIDE.md](docs/product/INSTALLER_GUIDE.md)** | Complete installation guide, troubleshooting, and FAQ |
166
166
  | **[subagentic-manual.md](packages/subagentic-manual.md)** | Detailed agent/command reference |
167
- | **[remember-README.md](docs/remember-README.md)** | How hot memory works — the `/stash` → `/remember` pipeline, the friction sensor, and the antigen ledger |
167
+ | **[remember-README.md](docs/product/remember-README.md)** | How hot memory works — the `/stash` → `/remember` pipeline, the friction sensor, and the antigen ledger |
168
+ | **[docs-builder-README.md](docs/product/docs-builder-README.md)** | How `/docs-builder` works — the reorg/cleanup modes, what it measurably costs, and the ledger that tracks doc drift |
168
169
 
169
170
  ---
170
171
 
@@ -198,7 +199,7 @@ Results land in `.claude/remember/friction/antigen_review.md` with projects, err
198
199
  ## Stats
199
200
 
200
201
  - **11** Specialized Agents
201
- - **22** Workflow Commands & Skills
202
+ - **18** Workflow Commands & Skills
202
203
  - **4** Supported Tools (Claude, Opencode, Ampcode, Droid)
203
204
  - **Apache-2.0** License
204
205
 
@@ -218,4 +219,4 @@ Apache-2.0 © 2026 hamr0 — see [LICENSE](LICENSE).
218
219
 
219
220
  ---
220
221
 
221
- **Need help?** See the [Installer Guide](docs/INSTALLER_GUIDE.md) or [open an issue](https://github.com/hamr0/liteagents/issues)
222
+ **Need help?** See the [Installer Guide](docs/product/INSTALLER_GUIDE.md) or [open an issue](https://github.com/hamr0/liteagents/issues)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "liteagents",
3
- "version": "2.15.2",
4
- "description": "AI development toolkit with 11 specialized agents and 17 commands including live-canvas UI design with click-to-annotate feedback. Simple one-question installer for Claude, Opencode, Ampcode, and Droid.",
3
+ "version": "2.17.0",
4
+ "description": "AI development toolkit with 11 specialized agents and 18 commands including live-canvas UI design with click-to-annotate feedback. Simple one-question installer for Claude, Opencode, Ampcode, and Droid.",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "liteagents": "./installer/cli.js",
@@ -14,7 +14,7 @@ These subagents are available when using Ampcode CLI.
14
14
  | 2-generate-tasks | 2-Generate Tasks | Detailed Planning - use to break down the PRD into a granular, actionable task list |
15
15
  | 3-process-task-list | 3-Process Task List | Iterative Implementation - use to guide the AI to tackle one task at a time, allowing you to review and approve each change |
16
16
  | code-developer | Full Stack Developer | Use for code implementation, debugging, refactoring, and development best practices |
17
- | context-builder | Context Initializer | Use to initialize project context for new/existing projects, discover and organize documentation, create CLAUDE.md and KNOWLEDGE_BASE.md for optimal token-efficient memory |
17
+ | context-builder | Context Initializer | Use to initialize project context for new/existing projects, discover and organize documentation, create AGENT.md and KNOWLEDGE_BASE.md for optimal token-efficient memory |
18
18
  | feature-planner | Product Manager | Use for creating epics and user stories, prioritization, backlog navigation, story refinement, and retrospectives |
19
19
  | market-researcher | Business Analyst | Use for market research, brainstorming, competitive analysis, project briefs, and initial project discovery |
20
20
  | orchestrator | Master Orchestrator | Use for workflow coordination, multi-agent tasks, role switching guidance, and when unsure which specialist to consult |
@@ -27,7 +27,7 @@ These subagents are available when using Ampcode CLI.
27
27
  | ID | Description | Usage | Auto |
28
28
  |---|---|---|---|
29
29
  | brainstorming | Refines rough ideas into fully-formed designs through collaborative questioning | /brainstorming <session-type> <topic> | false |
30
- | docs-builder | Create comprehensive project documentation with structured /docs hierarchy | /docs-builder | false |
30
+ | docs-builder | Reorg a docs corpus, split an oversized doc, search it, keep pages current, index them | /docs-builder [reorg \| cleanup <file.md>] | false |
31
31
  | live-canvas | Design UI variations and collect click-to-annotate feedback from the browser (batch mode only on Amp) | /live-canvas | false |
32
32
  | trace-back | Systematically traces bugs backward through call stack to identify source | /trace-back <issue-description> | false |
33
33
  | skill-creator | Guide for creating effective skills and extending Claude capabilities | /skill-creator <skill-type> <skill-description> | false |
@@ -58,7 +58,7 @@ digraph QualityAssurance {
58
58
  ## Project Discovery
59
59
 
60
60
  Before any analysis, read (if exists):
61
- - `CLAUDE.md` - Project instructions, patterns, conventions
61
+ - `AGENT.md` - Project instructions, patterns, conventions
62
62
  - `AGENT.md` / `AGENTS.md` - Agent configurations
63
63
  - `README.md` - Project overview
64
64
  - Test config files (`jest.config`, `pytest.ini`, etc.)