liteagents 2.15.3 → 2.17.1
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/CHANGELOG.md +199 -0
- package/README.md +8 -7
- package/package.json +2 -2
- package/packages/ampcode/AGENT.md +2 -2
- package/packages/ampcode/agents/quality-assurance.md +1 -1
- package/packages/ampcode/commands/docs-builder/docs-builder.cjs +2382 -0
- package/packages/ampcode/commands/docs-builder.md +787 -223
- package/packages/ampcode/commands/remember/AGENT_RULES.md +13 -43
- package/packages/ampcode/commands/remember/{friction.js → friction.cjs} +211 -99
- package/packages/ampcode/commands/remember.md +208 -29
- package/packages/claude/CLAUDE.md +3 -3
- package/packages/claude/commands/docs-builder/docs-builder.cjs +2382 -0
- package/packages/claude/commands/docs-builder.md +873 -0
- package/packages/claude/commands/remember/AGENT_RULES.md +10 -40
- package/packages/claude/commands/remember/{friction.js → friction.cjs} +208 -96
- package/packages/claude/commands/remember.md +208 -29
- package/packages/droid/AGENTS.md +2 -2
- package/packages/droid/commands/docs-builder/docs-builder.cjs +2382 -0
- package/packages/droid/commands/docs-builder.md +787 -223
- package/packages/droid/commands/remember/AGENT_RULES.md +13 -43
- package/packages/droid/commands/remember/{friction.js → friction.cjs} +211 -99
- package/packages/droid/commands/remember.md +208 -29
- package/packages/droid/droids/quality-assurance.md +1 -1
- package/packages/opencode/AGENTS.md +2 -2
- package/packages/opencode/agent/quality-assurance.md +1 -1
- package/packages/opencode/command/docs-builder/docs-builder.cjs +2382 -0
- package/packages/opencode/command/docs-builder.md +787 -223
- package/packages/opencode/command/remember/AGENT_RULES.md +13 -43
- package/packages/opencode/command/remember/{friction.js → friction.cjs} +211 -99
- package/packages/opencode/command/remember.md +208 -29
- package/packages/opencode/opencode.jsonc +2 -6
- package/packages/subagentic-manual.md +31 -32
- package/packages/ampcode/commands/docs-builder/templates.md +0 -601
- package/packages/claude/skills/docs-builder/SKILL.md +0 -309
- package/packages/claude/skills/docs-builder/references/templates.md +0 -601
- package/packages/droid/commands/docs-builder/templates.md +0 -601
- package/packages/opencode/command/docs-builder/templates.md +0 -601
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,205 @@ 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.1] - 2026-08-25
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- **`AGENT_RULES.md`'s table of contents linked to an anchor that does not exist** in the
|
|
22
|
+
droid, opencode and ampcode kits. Entry 9 pointed at `#claudemd-stub` while the heading it
|
|
23
|
+
names is `## AGENTS.md Stub` / `## AGENT.md Stub` — anchors `#agentsmd-stub` /
|
|
24
|
+
`#agentmd-stub`. The per-tool rename substituted the visible heading text and the link
|
|
25
|
+
label and left the anchor on the claude spelling, so the link was dead in three of four
|
|
26
|
+
kits. Claude's was correct and is untouched. Cosmetic, but it is the mention-form this repo
|
|
27
|
+
already has a rule about: a rename sweep must cover every form, and an anchor is one. Every
|
|
28
|
+
TOC anchor in all four copies was audited against every heading; this was the only
|
|
29
|
+
mismatch. Found while diffing the agentic-toolkit mirror, which carried the correct anchor
|
|
30
|
+
and the *wrong* settings path — each side right about a different line.
|
|
31
|
+
|
|
32
|
+
## [2.17.0] - 2026-08-24
|
|
33
|
+
|
|
34
|
+
### Added
|
|
35
|
+
- **docs-builder v3 — the model sorts a corpus into four buckets, behind an approval gate.**
|
|
36
|
+
v2 could only move a file a mechanical rule already recognised; everything else stayed put.
|
|
37
|
+
v3 has `discover` *propose* a bucket per file (`product` / `logs` / `archive`, with
|
|
38
|
+
`oversized` as a separate boolean flag, not a bucket) and stop — a classification interview
|
|
39
|
+
fills in `bucket`, and only then does `apply-reorg` move anything. The risk was never the
|
|
40
|
+
model's judgement, it was a silent move; so the gate is the fix, not a better heuristic.
|
|
41
|
+
`reconcile`, `due` and `archive-cleanup` folded into the `reorg` front door — `due`'s output
|
|
42
|
+
contract is preserved because `/remember` step 7 reads it.
|
|
43
|
+
- **`cleanup <file>` — splitting is opt-in and per-file.** It measures, prints the cost, and
|
|
44
|
+
stops for an interview; `cleanup-apply` runs only after `labels.json` exists with exactly
|
|
45
|
+
one `core:true` theme. The core page keeps the original basename and lands back in the
|
|
46
|
+
original document's own directory; only non-core theme pages stay under `docs/wiki/`. The
|
|
47
|
+
original is always archived byte-identical (sha verified before and after), never edited.
|
|
48
|
+
- **`search`** — zero-dependency BM25 over the corpus. Measured against reading the split
|
|
49
|
+
corpus whole on real data: a **tie** (~73K tokens either way), so splitting is justified by
|
|
50
|
+
recall, not by cost — the README says so rather than implying a saving that isn't there.
|
|
51
|
+
- **The first behavioural test suite this tool has ever had** — 472 tests in throwaway git
|
|
52
|
+
repos, including negative controls that assert the gates can actually fail. It was written
|
|
53
|
+
after four rounds of hand-found bugs kept recurring with nothing in the repo able to catch
|
|
54
|
+
them. `tests/run-all-tests.js` now treats `expectedTests` as an enforced floor: a breach
|
|
55
|
+
exits 1 (it used to print the number and pass regardless).
|
|
56
|
+
|
|
57
|
+
### Fixed
|
|
58
|
+
- **One chokepoint for a doc move, and all three of its guards now live there.** `moveDoc` is
|
|
59
|
+
the single path a doc changes location through. Three defects, each reproduced against the
|
|
60
|
+
shipped script before being fixed: a plan row containing `../` could move — and **delete** —
|
|
61
|
+
a file from outside the repo via the copy+unlink fallback; `archive README.md` archived the
|
|
62
|
+
README because `PROTECTED_NAMES` was enforced at two call sites but not at the chokepoint;
|
|
63
|
+
and `cleanup-apply` died mid-split because `archive()` called `process.exit(2)` on a
|
|
64
|
+
follow-up failure while running in-process, leaving the original archived, the core page
|
|
65
|
+
stranded, and no index — silently. Path confinement and the protected-name check now sit in
|
|
66
|
+
`doArchive`; `archive` split into `archiveOrThrow` plus a CLI wrapper.
|
|
67
|
+
- **One index.** The themed per-split index used to write the same path as the whole-corpus
|
|
68
|
+
map: on a real corpus a split's index step overwrote a 37-row map with its own 7 rows, and
|
|
69
|
+
the file still claimed completeness. `index-flat` is now the sole writer of `docs/index.md`;
|
|
70
|
+
the themed variant was removed outright.
|
|
71
|
+
- **`FROZEN` dropped from the archive trigger words** — on a real 37-file corpus it caused
|
|
72
|
+
~10 of 12 archive calls to be false positives, because in that corpus `FROZEN` means
|
|
73
|
+
"locked, still current". Precision over recall, with no replacement heuristic.
|
|
74
|
+
- **Relative links are rewritten when a file moves**, fence-aware *and* inline-code-span-aware
|
|
75
|
+
for the relative passes (a `` `map[key](arg)` `` span was being corrupted into a link), and
|
|
76
|
+
inbound-link repair now covers untracked-but-not-ignored files — a split's brand-new pages
|
|
77
|
+
were invisible to it before.
|
|
78
|
+
- **The commit advisory prints one recipe per run that actually runs.** It used to name files
|
|
79
|
+
at their pre-move paths (`git add` is atomic — one stale pathspec exits 128 and stages
|
|
80
|
+
*nothing*), print once per internal step, and omit files the run itself generated, including
|
|
81
|
+
`docs/log.md`. Found on a cold field run where the operator quietly hand-repaired it.
|
|
82
|
+
- **`/remember`: one conversation counts once.** A fork or resume writes the same conversation
|
|
83
|
+
to several session files, and the ledger was counting files — an antigen rendered "3
|
|
84
|
+
sessions" that was really one conversation. Sessions are now unioned on shared message
|
|
85
|
+
uuids (`sessions` is authoritative; `session_ids` is evidence), reactions deduped on
|
|
86
|
+
(conversation, anchor timestamp, anchor signal), and the scan restricted to anchor-bearing
|
|
87
|
+
sessions — 84.1s → 53.0s per run on the real corpus with identical clustering.
|
|
88
|
+
- **`/remember`: the ledger seeds only on recurrence.** New entries are minted at `sessions
|
|
89
|
+
>= 2`; three prior runs had produced 30 / 0 / 10 singleton entries. Quiet runs now also run
|
|
90
|
+
the length-gate check before the "nothing to consolidate" exit, and that gate's exemption is
|
|
91
|
+
mechanical (a >100-char backtick literal) rather than a judgement call the model could talk
|
|
92
|
+
itself past.
|
|
93
|
+
- **`friction.cjs` skips task-notification blocks** in both signal detection and context
|
|
94
|
+
capture — their boilerplate was matching as false curses/corrections — and warns on stderr
|
|
95
|
+
when a uuid's fan-out exceeds the cap instead of dropping the union silently.
|
|
96
|
+
|
|
97
|
+
### Changed
|
|
98
|
+
- **`/remember` now compresses hot memory instead of accumulating it.** `MEMORY.md` is loaded
|
|
99
|
+
into every session, so its size is the cost that matters — and both Facts and Episodes were
|
|
100
|
+
append-only, so it only ever grew. Four changes, all in the command spec (no script):
|
|
101
|
+
- **Facts are rewritten every run, not appended to.** The merge step returns the whole
|
|
102
|
+
section rewritten — new replaces old, near-duplicates fold into one line, and anything
|
|
103
|
+
that can be shorter is made shorter. A fact is now **one line, ≤160 chars, stating a rule
|
|
104
|
+
that changes future behaviour**: current truth only, no version history, no `supersedes`,
|
|
105
|
+
no narrative. Events belong in episodes. Nothing is pruned on age — an old rule that still
|
|
106
|
+
holds must never be dropped for being old; the bar sits at *entrance*, not on a timer.
|
|
107
|
+
- **Episodes keep the 10 most recent; older ones are folded, then deleted.** An aging
|
|
108
|
+
episode's *lesson* is handed to the fact rewrite, then the narrative is removed. No
|
|
109
|
+
archive file: git holds the history, and a file that is never loaded is not memory.
|
|
110
|
+
- **Stashes are batched, ≤5 per agent, using as few agents as possible.** One agent reading
|
|
111
|
+
several sessions sees a lesson recur and writes it once; one agent per stash writes it
|
|
112
|
+
once per stash and leaves the merge to catch the duplicates. Fewer agents, better
|
|
113
|
+
extraction, less to dedup downstream.
|
|
114
|
+
- **A mechanical length check runs in the report** — a one-line `awk` naming every fact over
|
|
115
|
+
the cap. It reports; it never fails the run and never hand-edits. Counting is a script's
|
|
116
|
+
job, compression is the model's: on this project model-driven bookkeeping measured **27%**
|
|
117
|
+
reliable against **~100%** for the same work done mechanically.
|
|
118
|
+
|
|
119
|
+
Measured on this toolkit's own bareloop corpus: `MEMORY.md` **168 KB → 48 KB** — 348 facts
|
|
120
|
+
averaging 254 chars became 249 averaging ~130, and 73 episodes became 10. Roughly **30k
|
|
121
|
+
tokens off every session** in that project. Antigens and the 10 retained episodes came
|
|
122
|
+
through byte-identical.
|
|
123
|
+
|
|
124
|
+
Mirrored across all four packages; `docs/product/remember-README.md` updated to match.
|
|
125
|
+
|
|
126
|
+
## [2.16.0] - 2026-08-22
|
|
127
|
+
|
|
128
|
+
### Added
|
|
129
|
+
- **`/docs-builder` with no argument now asks instead of guessing.** It runs `due` for
|
|
130
|
+
context, then offers exactly three options via `AskUserQuestion` — **First run** (sort the
|
|
131
|
+
whole corpus, then split what's too big), **Docs drift** (rebuild index, re-run lint,
|
|
132
|
+
nothing moves), **Clean archive** (destructive prune). Passing an argument skips the
|
|
133
|
+
question, so the flow stays scriptable. Same explicit-over-auto-detect call `live-canvas`
|
|
134
|
+
made: the three modes differ in cost and destructiveness, so a wrong guess is expensive in
|
|
135
|
+
one direction and irreversible in the other. "First run" carries two stops — one guarding
|
|
136
|
+
correctness (review the classification before anything is `git mv`'d), one guarding cost
|
|
137
|
+
(see the oversized list and its price before any split runs).
|
|
138
|
+
- **docs-builder v2** — rebuilt so the *script* does the bookkeeping and the model does only
|
|
139
|
+
synthesis. New `docs-builder.cjs` with `scan`/`propose`/`assign`/`validate`/`plan`/`write`/
|
|
140
|
+
`index`/`search`/`archive`/`lint`/`ledger`/`due` subcommands, plus **Mode 0 reorg**
|
|
141
|
+
(`discover` / `apply-reorg`) that classifies a whole corpus into product / archive /
|
|
142
|
+
oversized instead of one file at a time.
|
|
143
|
+
- **`/remember` step 7 — docs reconcile check (detect only).** Runs `docs-builder.cjs due`,
|
|
144
|
+
crash-isolated like the friction step; nudges at >=5 changed docs and never edits a page.
|
|
145
|
+
Now present in all four packages.
|
|
146
|
+
- **`search`** — BM25 ranking over the doc corpus, with `N` result clamping.
|
|
147
|
+
|
|
148
|
+
### Changed
|
|
149
|
+
- **docs-builder moved from a Claude skill to a Claude command** — Claude Code is now
|
|
150
|
+
11 subagents + **8 skills + 10 commands** (was 9 + 9). The other three tools keep 18
|
|
151
|
+
commands; only the docs-builder entry's description and usage changed.
|
|
152
|
+
- **docs-builder v2 mirrored to droid / opencode / ampcode.** `docs-builder.cjs` hardcodes
|
|
153
|
+
no tool paths, so it is byte-identical across all four packages; only the command doc's
|
|
154
|
+
config-file reference differs. (`friction.cjs`, by contrast, does hardcode tool paths and
|
|
155
|
+
stays per-package.)
|
|
156
|
+
- **Per-tool config filename swept through the non-Claude packages.** `CLAUDE.md` ->
|
|
157
|
+
`AGENT.md` (ampcode) / `AGENTS.md` (droid, opencode) in the `quality-assurance` agent, the
|
|
158
|
+
`context-builder` catalog row, the `AGENT_RULES.md` stub section, and `friction.cjs`'s
|
|
159
|
+
recommendation output. The `docs-builder` never-move list still names all three on purpose
|
|
160
|
+
— the code protects every variant regardless of which tool is running.
|
|
161
|
+
- Removed the stale v1 `docs-builder/templates.md` from the three non-Claude packages.
|
|
162
|
+
|
|
163
|
+
### Fixed
|
|
164
|
+
- **Reorg could move files it promised never to move.** The never-move list is now enforced
|
|
165
|
+
in code (`PROTECTED_NAMES`), matched at **any depth** rather than only at the top of
|
|
166
|
+
`docs/`: `README.md`, `index.md`, `log.md`, `CHANGELOG.md`, `LICENSE.md`,
|
|
167
|
+
`CONTRIBUTING.md`, `CODE_OF_CONDUCT.md`, `SECURITY.md`, `CLAUDE.md`, `AGENTS.md`,
|
|
168
|
+
`AGENT.md`. Previously a `README.md` one directory down was a move candidate.
|
|
169
|
+
- **Reorg walked into dot-dirs and `node_modules/`.** `walkMd` now skips every dot-dir
|
|
170
|
+
(`.git/`, `.github/`, `.claude/`, `.factory/`, `.opencode/`, `.amp/`, `.docs-builder/`)
|
|
171
|
+
and `node_modules/`, matching what the command doc already claimed.
|
|
172
|
+
- **`REPO` vs cwd path split (8 fixes).** `rewriteArchivedPath`, `checkCitations`' tasks dir,
|
|
173
|
+
`failures.json`, and `applyReorg`'s plan path all resolved against `REPO` while their
|
|
174
|
+
writers wrote cwd-relative. Running from outside the repo silently no-opped the archive
|
|
175
|
+
key-sync, LOUD-SKIPped the citations gate (so `validate` returned PASS on bad citations),
|
|
176
|
+
split the failure ledger across two directories, and made `apply-reorg` die right after a
|
|
177
|
+
successful `discover`. All now resolve cwd-relative.
|
|
178
|
+
- `logOp` creates `docs/` before appending to `log.md` (was ENOENT, masked only by call order).
|
|
179
|
+
- `bm25Rank` skips and warns on a missing source file instead of dying with a raw ENOENT.
|
|
180
|
+
- `search` clamps `N` to a positive integer (`N=-3` silently dropped the last 3 results).
|
|
181
|
+
- `friction.js` -> `friction.cjs` in all four packages — a `.js` file fails to load via
|
|
182
|
+
`require()` in any repo whose `package.json` declares `"type": "module"`.
|
|
183
|
+
- Command-doc examples for `validate`, `plan`, and `search` now include `REPO=<repo>`.
|
|
184
|
+
- **`/docs-builder` showed no argument hint.** Its frontmatter had `usage:` but not
|
|
185
|
+
`argument-hint:` — the key Claude Code actually renders — and no `allowed-tools:`, while
|
|
186
|
+
every sibling command had both. Added in all four packages, with `AskUserQuestion` in the
|
|
187
|
+
tool list so the new mode picker can run.
|
|
188
|
+
- **`/docs-builder` did not load on opencode at all.** `opencode.jsonc` registered it as
|
|
189
|
+
`./command/docs-builder/SKILL.md` — a path that never existed in that package (opencode
|
|
190
|
+
uses a flat `docs-builder.md`, like every other command). Now points at the real file, with
|
|
191
|
+
the v2 description.
|
|
192
|
+
- Removed a stale `subagent-spawning` entry from `opencode.jsonc` — the command file was
|
|
193
|
+
deleted long ago but stayed registered. opencode.jsonc now registers exactly the 18
|
|
194
|
+
commands and 11 agents that exist on disk.
|
|
195
|
+
- `AGENT_RULES.md` footer pointed at `.claude/memory/AGENT_RULES.md`, a location that no
|
|
196
|
+
longer exists (the dir was renamed to `remember/`). Now the correct per-tool path in each
|
|
197
|
+
package. Only affects newly bootstrapped copies — an existing project-local
|
|
198
|
+
`AGENT_RULES.md` is user-owned and never overwritten.
|
|
199
|
+
|
|
200
|
+
### Removed
|
|
201
|
+
- **Guardrails section dropped from `AGENT_RULES.md`** (all four packages). It documented a
|
|
202
|
+
`PreToolUse` hook and pointed at `.claude/hooks/guardrails.py` as "ships in this repo" —
|
|
203
|
+
the file never shipped here. The section was also Claude-Code-only: droid, opencode, and
|
|
204
|
+
ampcode have no hook system, so it was unusable guidance in three of four packages. The
|
|
205
|
+
Always / Ask / Never rules it justified stay, restated as binding prose plus a pointer to
|
|
206
|
+
mirror them into whatever allow/ask/deny list your tool provides.
|
|
207
|
+
|
|
208
|
+
### Documentation
|
|
209
|
+
- `subagentic-manual.md` catalog corrected — it claimed Ampcode shipped a `skills/` directory
|
|
210
|
+
(it does not) and under-counted Droid/OpenCode at 17 commands. All four platforms ship
|
|
211
|
+
11 subagents; only Claude Code splits capabilities into skills + commands.
|
|
212
|
+
- `package.json` description 17 -> 18 commands (drives the installer banner), root
|
|
213
|
+
`CLAUDE.md` 20 -> 18.
|
|
214
|
+
|
|
215
|
+
---
|
|
216
|
+
|
|
18
217
|
## [2.15.3] - 2026-08-04
|
|
19
218
|
|
|
20
219
|
### Security
|
package/README.md
CHANGED
|
@@ -45,7 +45,7 @@ liteagents
|
|
|
45
45
|
|
|
46
46
|
### Supported Tools
|
|
47
47
|
|
|
48
|
-
- **Claude Code** - 11 subagents +
|
|
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
|
|
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** -
|
|
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
|
-
- **
|
|
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.
|
|
4
|
-
"description": "AI development toolkit with 11 specialized agents and
|
|
3
|
+
"version": "2.17.1",
|
|
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
|
|
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 |
|
|
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
|
-
- `
|
|
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.)
|