@lvlup-sw/exarchos 2.6.0 → 2.7.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/.claude-plugin/plugin.json +1 -1
- package/AGENTS.md +1 -1
- package/README.md +5 -1
- package/dist/exarchos.js +358 -353
- package/package.json +1 -1
- package/scripts/sync-marketplace.sh +147 -0
|
@@ -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.
|
|
4
|
+
"version": "2.7.0",
|
|
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
|
-
|
|
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
|
|
|
@@ -118,6 +118,8 @@ Every tool input is a Zod-validated discriminated union keyed on `action`. The s
|
|
|
118
118
|
|
|
119
119
|
Structured input over natural language. Strict schema validation over loose parsing. One binary, same behavior whether an agent or a human is driving it.
|
|
120
120
|
|
|
121
|
+
Exarchos supports both MCP-native hosts (Claude Code, Cursor, Codex) and CLI-only hosts (OpenCode, Copilot, generic runtimes). Each runtime selects its preferred invocation facade automatically. Remote/hosted MCP deployment is planned as a future axis. See the [Facade and Deployment Choices](https://lvlup-sw.github.io/exarchos/facade-and-deployment) documentation for details.
|
|
122
|
+
|
|
121
123
|
### Integrations
|
|
122
124
|
|
|
123
125
|
| Component | Source | Purpose |
|
|
@@ -138,6 +140,7 @@ Structured input over natural language. Strict schema validation over loose pars
|
|
|
138
140
|
| Build a feature | `/ideate` | Design exploration, TDD plan, parallel implementation |
|
|
139
141
|
| Fix a bug | `/debug` | Triage, investigate, fix, validate (hotfix or thorough) |
|
|
140
142
|
| Improve code | `/refactor` | Assess scope, brief, implement (polish or full overhaul) |
|
|
143
|
+
| Make a trivial change | `/oneshot` | Lightweight in-session plan → implementing → direct-commit (or opt-in PR) |
|
|
141
144
|
|
|
142
145
|
**Lifecycle commands:**
|
|
143
146
|
|
|
@@ -149,6 +152,7 @@ Structured input over natural language. Strict schema validation over loose pars
|
|
|
149
152
|
| `/synthesize` | Create PR from feature branch |
|
|
150
153
|
| `/shepherd` | Push PRs through CI and reviews to merge readiness |
|
|
151
154
|
| `/cleanup` | Resolve merged workflow to completed state |
|
|
155
|
+
| `/prune` | Interactively bulk-cancel stale non-terminal workflows |
|
|
152
156
|
| `/checkpoint` | Save workflow state for later resumption |
|
|
153
157
|
| `/rehydrate` | Restore workflow state after compaction or session break |
|
|
154
158
|
| `/reload` | Re-inject context after degradation |
|