liteagents 2.4.7 → 2.5.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/README.md +24 -8
- package/docs/LONG_TERM_MEMORY.md +449 -0
- package/package.json +2 -2
- package/packages/ampcode/AGENT.md +3 -1
- package/packages/ampcode/agents/context-builder.md +14 -12
- package/packages/ampcode/commands/docs-builder/templates.md +29 -0
- package/packages/ampcode/commands/docs-builder.md +54 -3
- package/packages/ampcode/commands/friction/friction.js +2168 -0
- package/packages/ampcode/commands/friction.md +139 -0
- package/packages/ampcode/commands/remember.md +110 -0
- package/packages/claude/CLAUDE.md +3 -1
- package/packages/claude/agents/context-builder.md +7 -4
- package/packages/claude/commands/friction/friction.js +2168 -0
- package/packages/claude/commands/friction.md +139 -0
- package/packages/claude/commands/remember.md +110 -0
- package/packages/claude/skills/docs-builder/SKILL.md +53 -2
- package/packages/claude/skills/docs-builder/references/templates.md +29 -0
- package/packages/droid/AGENTS.md +3 -1
- package/packages/droid/commands/docs-builder/templates.md +29 -0
- package/packages/droid/commands/docs-builder.md +54 -3
- package/packages/droid/commands/friction/friction.js +2168 -0
- package/packages/droid/commands/friction.md +139 -0
- package/packages/droid/commands/remember.md +110 -0
- package/packages/droid/droids/context-builder.md +15 -13
- package/packages/opencode/AGENTS.md +3 -1
- package/packages/opencode/agent/context-builder.md +14 -12
- package/packages/opencode/command/docs-builder/templates.md +29 -0
- package/packages/opencode/command/docs-builder.md +54 -3
- package/packages/opencode/command/friction/friction.js +2168 -0
- package/packages/opencode/command/friction.md +139 -0
- package/packages/opencode/command/remember.md +110 -0
- package/packages/opencode/opencode.jsonc +8 -0
- package/packages/subagentic-manual.md +33 -15
- package/packages/ampcode/README.md +0 -17
- package/packages/claude/README.md +0 -23
- package/packages/droid/README.md +0 -17
- package/packages/opencode/README.md +0 -17
|
@@ -125,7 +125,8 @@ mkdir -p docs/{00-context,01-product,02-features,03-logs,04-process,archive}
|
|
|
125
125
|
|
|
126
126
|
Create these files (see `docs-builder/templates.md` for content):
|
|
127
127
|
|
|
128
|
-
**00-context/** (
|
|
128
|
+
**00-context/** (4 files):
|
|
129
|
+
- [ ] `blueprint.md` - Overarching project artifact (see below)
|
|
129
130
|
- [ ] `vision.md` - Product purpose & boundaries
|
|
130
131
|
- [ ] `assumptions.md` - Constraints, risks, unknowns
|
|
131
132
|
- [ ] `system-state.md` - What's currently built
|
|
@@ -175,7 +176,7 @@ When moving files:
|
|
|
175
176
|
|
|
176
177
|
## Step 5: Integration
|
|
177
178
|
|
|
178
|
-
**If
|
|
179
|
+
**If AGENT.md exists:**
|
|
179
180
|
Add or update documentation pointer:
|
|
180
181
|
```markdown
|
|
181
182
|
## Documentation
|
|
@@ -194,19 +195,69 @@ Update to reference new structure with quick links.
|
|
|
194
195
|
ls -la docs/{00-context,01-product,02-features,03-logs,04-process,archive}
|
|
195
196
|
|
|
196
197
|
# Verify minimum files
|
|
198
|
+
test -f docs/00-context/blueprint.md && echo "✓ blueprint.md"
|
|
197
199
|
test -f docs/00-context/vision.md && echo "✓ vision.md"
|
|
198
200
|
test -f docs/00-context/system-state.md && echo "✓ system-state.md"
|
|
199
201
|
test -f docs/01-product/prd.md && echo "✓ prd.md"
|
|
200
202
|
test -f docs/README.md && echo "✓ README.md"
|
|
201
203
|
|
|
202
204
|
# Count files per tier
|
|
203
|
-
find docs/00-context -name "*.md" | wc -l # >=
|
|
205
|
+
find docs/00-context -name "*.md" | wc -l # >= 4
|
|
204
206
|
find docs/03-logs -name "*.md" | wc -l # >= 5
|
|
205
207
|
find docs/04-process -name "*.md" | wc -l # >= 3
|
|
206
208
|
```
|
|
207
209
|
|
|
208
210
|
---
|
|
209
211
|
|
|
212
|
+
## Blueprint: The Overarching Project Artifact
|
|
213
|
+
|
|
214
|
+
`docs/00-context/blueprint.md` is the **one and only** high-level project document. It answers: what is this project, what's built, what's planned, where is it headed.
|
|
215
|
+
|
|
216
|
+
**When to create:** Always. blueprint.md is the first file created in 00-context/. It is required for both Fresh and Existing modes.
|
|
217
|
+
|
|
218
|
+
**Content sources:**
|
|
219
|
+
- Root `README.md` — project identity, purpose, stats
|
|
220
|
+
- `package.json` / `pyproject.toml` — tech stack, dependencies
|
|
221
|
+
- Existing docs — features implemented vs planned
|
|
222
|
+
- Code structure — what modules/packages exist
|
|
223
|
+
|
|
224
|
+
**Structure:**
|
|
225
|
+
|
|
226
|
+
```markdown
|
|
227
|
+
# [Project Name] Blueprint
|
|
228
|
+
|
|
229
|
+
## Identity
|
|
230
|
+
[What this project IS in 2-3 sentences. Sourced from README.]
|
|
231
|
+
|
|
232
|
+
## Status
|
|
233
|
+
| Area | Status | Notes |
|
|
234
|
+
|------|--------|-------|
|
|
235
|
+
| [feature/module] | implemented / in-progress / planned | [brief] |
|
|
236
|
+
|
|
237
|
+
## Architecture
|
|
238
|
+
[High-level structure: packages, modules, entry points. No ASCII trees — use tables or flat lists.]
|
|
239
|
+
|
|
240
|
+
## Implemented
|
|
241
|
+
[What works today. Group by feature area. Be specific.]
|
|
242
|
+
|
|
243
|
+
## Planned
|
|
244
|
+
[What's next. Ordered by priority. Include design docs if they exist.]
|
|
245
|
+
|
|
246
|
+
## Future Direction
|
|
247
|
+
[Where does this project want to be? North star. 3-5 bullets max.]
|
|
248
|
+
|
|
249
|
+
## Key Decisions
|
|
250
|
+
[Major architectural choices already made. Link to decisions-log if it exists.]
|
|
251
|
+
```
|
|
252
|
+
|
|
253
|
+
**Rules for blueprint.md:**
|
|
254
|
+
- Keep it under 150 lines — it's an overview, not a manual
|
|
255
|
+
- Update it when features ship or plans change
|
|
256
|
+
- It is the FIRST document a new contributor or LLM should read
|
|
257
|
+
- No duplication with vision.md (vision = WHY, blueprint = WHAT + WHERE)
|
|
258
|
+
|
|
259
|
+
---
|
|
260
|
+
|
|
210
261
|
## Rules
|
|
211
262
|
|
|
212
263
|
**DO:**
|