agent-afk 1.14.2 → 1.20.0
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/README.md +2 -2
- package/dist/cli.mjs +315 -243
- package/dist/index.mjs +191 -152
- package/dist/telegram.mjs +205 -150
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
- 🔌 **Plugin skill-router** — skills under `~/.afk/plugins/*/skills/` auto-exposed as slash commands
|
|
12
12
|
- 🏠 **AFK-scoped config** — `~/.afk/` independent of `~/.claude/`, with `afk plugin install/update/list/remove`
|
|
13
13
|
- 💬 **Three surfaces** — interactive REPL, daemon, Telegram bot sharing one session manager
|
|
14
|
-
- 📊 **Routing telemetry** — every subagent dispatch appended to `~/.
|
|
14
|
+
- 📊 **Routing telemetry** — every subagent dispatch appended to `~/.afk/agent-framework/routing-decisions.jsonl`
|
|
15
15
|
- 🤖 **Multiple Claude models** — Opus, Sonnet, Haiku
|
|
16
16
|
- 🔓 **Bypass permissions mode** — no prompts, fully automated tool execution
|
|
17
17
|
- 🛡️ **Type-safe** — TypeScript strict mode
|
|
@@ -200,7 +200,7 @@ pnpm telegram:restart
|
|
|
200
200
|
|
|
201
201
|
## Orchestration Skills
|
|
202
202
|
|
|
203
|
-
agent-afk ships seven built-in subagent orchestrators plus `devils-advocate` (in development). These are **skill-router-dispatched**: typing `/mint add dark mode` in the REPL parses the slash form, resolves it to a skill handler under `src/skills/<name>/`, and dispatches a fresh subagent via `SubagentManager.forkSubagent()`. Every dispatch is logged to `~/.
|
|
203
|
+
agent-afk ships seven built-in subagent orchestrators plus `devils-advocate` (in development). These are **skill-router-dispatched**: typing `/mint add dark mode` in the REPL parses the slash form, resolves it to a skill handler under `src/skills/<name>/`, and dispatches a fresh subagent via `SubagentManager.forkSubagent()`. Every dispatch is logged to `~/.afk/agent-framework/routing-decisions.jsonl`.
|
|
204
204
|
|
|
205
205
|
| Skill | Purpose |
|
|
206
206
|
|---|---|
|