@lvlup-sw/exarchos 2.6.0 → 2.6.1

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "exarchos",
3
3
  "description": "A local-first SDLC workflow harness — structured, durable state for coding agents, with convergence gates, agent teams, and full audit trail.",
4
- "version": "2.6.0",
4
+ "version": "2.6.1",
5
5
  "author": {
6
6
  "name": "LevelUp Software"
7
7
  },
package/AGENTS.md CHANGED
@@ -17,7 +17,7 @@ Exarchos is local agent governance for Claude Code. It provides event-sourced SD
17
17
 
18
18
  | Directory | Purpose |
19
19
  |-----------|---------|
20
- | `commands/` | Slash commands (`/ideate`, `/plan`, `/delegate`, `/debug`, `/refactor`, `/review`, `/synthesize`, `/checkpoint`, `/rehydrate`, `/tdd`) |
20
+ | `commands/` | Slash commands (`/ideate`, `/plan`, `/delegate`, `/debug`, `/refactor`, `/oneshot`, `/review`, `/synthesize`, `/prune`, `/checkpoint`, `/rehydrate`, `/tdd`) |
21
21
  | `skills/` | Reusable workflow modules with `SKILL.md` and `references/` subdirectories |
22
22
  | `rules/` | Global behavioral constraints (coding standards, TDD, orchestrator constraints) |
23
23
  | `scripts/` | Deterministic validation scripts replacing prose checklists in skills |
package/README.md CHANGED
@@ -87,7 +87,7 @@ Requires Node.js >= 20.
87
87
 
88
88
  ## What you get
89
89
 
90
- Three workflow types (feature, debug, refactor) with enforced phase transitions. You approve the design and you approve the merge. Everything between auto-continues.
90
+ Four workflow types (feature, debug, refactor, oneshot) with enforced phase transitions. You approve the design and you approve the merge. Everything between auto-continues. For trivial changes, `oneshot` skips straight to plan → implement with an opt-in PR path.
91
91
 
92
92
  **Checkpoint and resume.** `/checkpoint` saves mid-task. `/rehydrate` restores it in ~2-3k tokens.
93
93
 
@@ -138,6 +138,7 @@ Structured input over natural language. Strict schema validation over loose pars
138
138
  | Build a feature | `/ideate` | Design exploration, TDD plan, parallel implementation |
139
139
  | Fix a bug | `/debug` | Triage, investigate, fix, validate (hotfix or thorough) |
140
140
  | Improve code | `/refactor` | Assess scope, brief, implement (polish or full overhaul) |
141
+ | Make a trivial change | `/oneshot` | Lightweight in-session plan → implementing → direct-commit (or opt-in PR) |
141
142
 
142
143
  **Lifecycle commands:**
143
144
 
@@ -149,6 +150,7 @@ Structured input over natural language. Strict schema validation over loose pars
149
150
  | `/synthesize` | Create PR from feature branch |
150
151
  | `/shepherd` | Push PRs through CI and reviews to merge readiness |
151
152
  | `/cleanup` | Resolve merged workflow to completed state |
153
+ | `/prune` | Interactively bulk-cancel stale non-terminal workflows |
152
154
  | `/checkpoint` | Save workflow state for later resumption |
153
155
  | `/rehydrate` | Restore workflow state after compaction or session break |
154
156
  | `/reload` | Re-inject context after degradation |