@songsid/agend 2.0.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.
|
@@ -65,3 +65,21 @@ NEVER create an instance with these working_directory values:
|
|
|
65
65
|
These will cause kiro-cli to write MCP config to the global ~/.kiro/ instead of the instance workspace, breaking ALL instances.
|
|
66
66
|
|
|
67
67
|
Always use a dedicated subdirectory like `/home/user/projects/my-project` or let AgEnD auto-create workspace.
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
## Memory & Knowledge Management
|
|
71
|
+
|
|
72
|
+
Use layered memory to minimize context usage:
|
|
73
|
+
|
|
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
|
+
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.
|
|
77
|
+
3. **Skills** (`.kiro/skills/`) — reusable workflows. On-demand loading.
|
|
78
|
+
|
|
79
|
+
Rules:
|
|
80
|
+
- Keep Fleet Decisions minimal. Move details to soul.md.
|
|
81
|
+
- Each instance maintains its own soul.md (not shared).
|
|
82
|
+
- Good workflows → **propose** converting to a skill. Create in `.kiro/skills/<name>/SKILL.md` only after user approval.
|
|
83
|
+
- Global skills (`src/general-knowledge/skills/`) only for knowledge ALL instances need.
|
|
84
|
+
- Never put architecture details or bug history in Fleet Decisions.
|
|
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).
|