killeros 1.2.0 → 1.4.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/CHANGELOG.md +22 -0
- package/Killeros.ts +1361 -5
- package/README.md +40 -10
- package/agents/planner.md +10 -0
- package/agents/reviewer.md +10 -0
- package/agents/scout.md +10 -0
- package/agents/worker.md +10 -0
- package/package.json +4 -1
- package/subagents.ts +1027 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to KillerOS are documented here.
|
|
4
4
|
|
|
5
|
+
## [1.4.0] - 2026-08-01
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Pi-native `subagent` tool with isolated JSONL child processes, single/parallel/chain modes, streamed TUI status, aggregate usage, and abort propagation.
|
|
10
|
+
- Bundled Markdown roles for read-only scouting, planning, and review plus one serialized write-capable worker.
|
|
11
|
+
- Strict role, tool, model, trust, precedence, concurrency, turn, timeout, trace, stderr, and output enforcement.
|
|
12
|
+
|
|
13
|
+
## [1.3.0] - 2026-07-31
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- Claude Code-style `/init` that builds a bounded repository snapshot and generates a concise root `AGENTS.md` with one controlled write.
|
|
18
|
+
- Codex-style `/goal` with durable branch-scoped state, automatic one-turn continuation, pause/resume/edit/clear controls, and explicit model-reported completion or blocking.
|
|
19
|
+
- Trusted `AGENTS.local.md` personal guidance and project lifecycle hooks for tool-call, tool-result, and settled-agent events.
|
|
20
|
+
- Focused coverage for goal transitions, recovery paths, branch restoration, mode gating, footer cutdowns, and repository initialization safeguards.
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- Extended the responsive footer with goal activity and terminal states while preserving context pressure at narrow widths.
|
|
25
|
+
- Hardened `/init` and `/goal` failure handling so interrupted work, provider errors, failed writes, and failed continuation starts stop safely.
|
|
26
|
+
|
|
5
27
|
## [1.2.0] - 2026-07-30
|
|
6
28
|
|
|
7
29
|
### Added
|