@songsid/agend 2.0.2-beta.1 → 2.0.2-beta.2
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.
|
@@ -71,14 +71,15 @@ Always use a dedicated subdirectory like `/home/user/projects/my-project` or let
|
|
|
71
71
|
|
|
72
72
|
Use layered memory to minimize context usage:
|
|
73
73
|
|
|
74
|
-
1. **Fleet Decision** — short, shared rules only (role, workflow rules, TODOs).
|
|
74
|
+
1. **Fleet Decision** — short, shared rules only (role, workflow rules, TODOs). Keep concise (~20 lines guideline). If it exceeds this, consider whether the details belong in soul.md instead.
|
|
75
75
|
2. **soul.md** (workspace root) — full memory: architecture, decisions, history. Loaded as steering.
|
|
76
|
+
- If soul.md doesn't exist, do NOT create one unprompted. Only create when the user explicitly asks.
|
|
76
77
|
3. **Skills** (`.kiro/skills/`) — reusable workflows. On-demand loading.
|
|
77
78
|
|
|
78
79
|
Rules:
|
|
79
80
|
- Keep Fleet Decisions minimal. Move details to soul.md.
|
|
80
81
|
- Each instance maintains its own soul.md (not shared).
|
|
81
|
-
- Good workflows →
|
|
82
|
+
- Good workflows → **propose** converting to a skill. Create in `.kiro/skills/<name>/SKILL.md` only after user approval.
|
|
82
83
|
- Global skills (`src/general-knowledge/skills/`) only for knowledge ALL instances need.
|
|
83
84
|
- Never put architecture details or bug history in Fleet Decisions.
|
|
84
|
-
- After completing a
|
|
85
|
+
- After completing a **multi-step task that introduced new architectural knowledge or a reusable process**, suggest updating soul.md. Do NOT ask after routine tasks (reviews, single-file fixes, Q&A).
|
package/package.json
CHANGED