@songsid/agend 2.0.1-beta.5 → 2.0.2-beta.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.
|
@@ -65,3 +65,20 @@ 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). Max 20 lines.
|
|
75
|
+
2. **soul.md** (workspace root) — full memory: architecture, decisions, history. Loaded as steering.
|
|
76
|
+
3. **Skills** (`.kiro/skills/`) — reusable workflows. On-demand loading.
|
|
77
|
+
|
|
78
|
+
Rules:
|
|
79
|
+
- Keep Fleet Decisions minimal. Move details to soul.md.
|
|
80
|
+
- Each instance maintains its own soul.md (not shared).
|
|
81
|
+
- Good workflows → convert to a skill in YOUR `.kiro/skills/` (per-instance, not global).
|
|
82
|
+
- Global skills (`src/general-knowledge/skills/`) only for knowledge ALL instances need.
|
|
83
|
+
- Never put architecture details or bug history in Fleet Decisions.
|
|
84
|
+
- After completing a key workflow or milestone, ask the user: "Should I update soul.md or create a skill from this?"
|
package/package.json
CHANGED