@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.
@@ -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 context rotation to reload fleet-wide decisions.
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 or context rotation, 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.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@songsid/agend",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "description": "Multi-agent fleet daemon — run any coding CLI (Claude, Gemini, Codex, OpenCode) from Telegram",
5
5
  "type": "module",
6
6
  "workspaces": ["plugins/*"],
@@ -9,6 +9,7 @@ Environment=PATH=<%= path %>
9
9
  Environment=TERM=xterm-256color
10
10
  WorkingDirectory=<%= workingDirectory %>
11
11
  Restart=no
12
+ TimeoutStopSec=300
12
13
  StandardOutput=append:<%= logPath %>
13
14
  StandardError=append:<%= logPath %>
14
15