@songsid/agend 0.0.8 → 0.0.10
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/dist/channel/mcp-tools.js +1 -1
- package/dist/channel/mcp-tools.js.map +1 -1
- package/dist/classic-channel-manager.d.ts +6 -0
- package/dist/classic-channel-manager.js +20 -0
- package/dist/classic-channel-manager.js.map +1 -1
- package/dist/cli.js +8 -8
- package/dist/cli.js.map +1 -1
- package/dist/fleet-manager.d.ts +1 -1
- package/dist/fleet-manager.js +25 -19
- package/dist/fleet-manager.js.map +1 -1
- package/dist/general-knowledge/skills.md +1 -1
- package/dist/workflow-templates/default.md +2 -3
- package/package.json +1 -1
- package/templates/systemd.service.ejs +1 -0
|
@@ -169,7 +169,7 @@ templates: # Reusable fleet deployment templates
|
|
|
169
169
|
**When to replace (not restart):**
|
|
170
170
|
- Instance keeps hallucinating or referencing stale information
|
|
171
171
|
- Instance is stuck in a tool-call loop
|
|
172
|
-
- Context is >80% full and responses are degrading
|
|
172
|
+
- Context is reported >80% full and responses are degrading (only applicable to backends that report context usage)
|
|
173
173
|
|
|
174
174
|
**Monitoring instance state:**
|
|
175
175
|
- `describe_instance("<name>")` — shows status, last activity, description
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
## Shared Decisions
|
|
14
14
|
|
|
15
|
-
- Run `list_decisions` after
|
|
15
|
+
- Run `list_decisions` after restart to reload fleet-wide decisions.
|
|
16
16
|
- Use `post_decision` to share architectural choices that affect other instances.
|
|
17
17
|
|
|
18
18
|
## Progress Tracking
|
|
@@ -28,8 +28,7 @@ Use the **Task Board** (`task` tool) for multi-step work:
|
|
|
28
28
|
- **Large searches**: use subagents (Agent tool) instead of reading many files directly
|
|
29
29
|
- **Big codebases**: glob/grep for specific targets, don't read entire directories
|
|
30
30
|
- **Long conversations**: summarize decisions into Shared Decisions before context fills up
|
|
31
|
-
- Watch your context usage; when it's high, wrap up current work and let context rotation handle the rest
|
|
32
31
|
|
|
33
32
|
## On Startup
|
|
34
33
|
|
|
35
|
-
- **Read all steering files first**: On startup
|
|
34
|
+
- **Read all steering files first**: On startup, immediately read all files in `.kiro/steering/` (or equivalent) to load your full skill set and role context. Do not wait for a task to trigger reading them — proactively load all available knowledge before responding to any message.
|
package/package.json
CHANGED