agent-afk 1.2.0 → 1.8.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 +1 -1
- package/dist/cli.mjs +303 -170
- package/dist/index.mjs +177 -76
- package/dist/telegram.mjs +187 -86
- package/package.json +10 -6
package/README.md
CHANGED
|
@@ -217,7 +217,7 @@ The same seven skills ship in two surfaces:
|
|
|
217
217
|
- **CLI surface** (this repo) — TypeScript handlers under `src/skills/<name>/` invoked via `skill-router`.
|
|
218
218
|
- **Plugin surface** — prompt-based `SKILL.md` files under `agent-framework-private/skills/<name>/`, invoked inside a Claude Code session.
|
|
219
219
|
|
|
220
|
-
Vendored subagents (`qualify`, `research-agent`, `contract`) live under `src/skills/_agents/` and are kept byte-equal with the upstream copies — drift is caught by `
|
|
220
|
+
Vendored subagents (`qualify`, `research-agent`, `contract`) live under `src/skills/_agents/` and are kept byte-equal with the upstream copies — drift is caught by `src/skills/_agents/vendored.test.ts`.
|
|
221
221
|
|
|
222
222
|
See the workspace-root [`SYSTEM.md`](../SYSTEM.md) for the topology, skill dependency graph, and multi-prompt loading convention.
|
|
223
223
|
|