@lvlup-sw/exarchos 2.0.5 → 2.0.7
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/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -9
- package/commands/cleanup.md +3 -3
- package/commands/debug.md +2 -2
- package/commands/ideate.md +3 -3
- package/commands/plan.md +3 -3
- package/commands/refactor.md +1 -1
- package/commands/resume.md +1 -1
- package/commands/synthesize.md +1 -1
- package/dist/exarchos-cli.js +559 -4131
- package/dist/exarchos-mcp.js +35 -37
- package/dist/node_modules/better-sqlite3/build/Release/better_sqlite3.node +0 -0
- package/dist/node_modules/better-sqlite3/lib/database.js +90 -0
- package/dist/node_modules/better-sqlite3/lib/index.js +3 -0
- package/dist/node_modules/better-sqlite3/lib/methods/aggregate.js +43 -0
- package/dist/node_modules/better-sqlite3/lib/methods/backup.js +67 -0
- package/dist/node_modules/better-sqlite3/lib/methods/function.js +31 -0
- package/dist/node_modules/better-sqlite3/lib/methods/inspect.js +7 -0
- package/dist/node_modules/better-sqlite3/lib/methods/pragma.js +12 -0
- package/dist/node_modules/better-sqlite3/lib/methods/serialize.js +16 -0
- package/dist/node_modules/better-sqlite3/lib/methods/table.js +189 -0
- package/dist/node_modules/better-sqlite3/lib/methods/transaction.js +78 -0
- package/dist/node_modules/better-sqlite3/lib/methods/wrappers.js +54 -0
- package/dist/node_modules/better-sqlite3/lib/sqlite-error.js +20 -0
- package/dist/node_modules/better-sqlite3/lib/util.js +12 -0
- package/dist/node_modules/better-sqlite3/package.json +59 -0
- package/dist/node_modules/bindings/bindings.js +221 -0
- package/dist/node_modules/bindings/package.json +28 -0
- package/dist/node_modules/electron/index.js +1 -0
- package/dist/node_modules/electron/package.json +1 -0
- package/dist/node_modules/file-uri-to-path/index.js +66 -0
- package/dist/node_modules/file-uri-to-path/package.json +32 -0
- package/dist/node_modules/playwright-core/index.js +1 -0
- package/dist/node_modules/playwright-core/package.json +1 -0
- package/hooks/hooks.json +1 -1
- package/package.json +4 -3
- package/scripts/build-cli.ts +28 -0
- package/scripts/build-mcp.ts +56 -0
- package/scripts/verify-plan-coverage.sh +123 -11
- package/skills/brainstorming/SKILL.md +1 -1
- package/skills/cleanup/SKILL.md +4 -4
- package/skills/debug/references/troubleshooting.md +8 -8
- package/skills/delegation/SKILL.md +26 -0
- package/skills/delegation/references/fix-mode.md +1 -1
- package/skills/delegation/references/state-management.md +1 -1
- package/skills/delegation/references/worktree-enforcement.md +1 -1
- package/skills/dotnet-standards/templates/Directory.Packages.props +1 -1
- package/skills/implementation-planning/SKILL.md +1 -1
- package/skills/refactor/SKILL.md +2 -2
- package/skills/refactor/phases/auto-chain.md +1 -1
- package/skills/shepherd/SKILL.md +36 -8
- package/skills/shepherd/references/assess-checklist.md +1 -1
- package/skills/synthesis/SKILL.md +46 -1
- package/skills/synthesis/references/troubleshooting.md +5 -5
- package/skills/workflow-state/SKILL.md +13 -13
- package/skills/workflow-state/references/mcp-tool-reference.md +7 -7
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
"source": {
|
|
15
15
|
"source": "npm",
|
|
16
16
|
"package": "@lvlup-sw/exarchos",
|
|
17
|
-
"version": "2.0.
|
|
17
|
+
"version": "2.0.7"
|
|
18
18
|
},
|
|
19
19
|
"description": "SDLC workflows with agent team coordination, quality gates, and Graphite stacked PRs",
|
|
20
|
-
"version": "2.0.
|
|
20
|
+
"version": "2.0.7",
|
|
21
21
|
"author": {
|
|
22
22
|
"name": "Levelup Software"
|
|
23
23
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exarchos",
|
|
3
3
|
"description": "SDLC workflows for Claude Code with agent team coordination, quality gates, and Graphite stacked PRs.",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.7",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Levelup Software"
|
|
7
7
|
},
|
|
@@ -20,7 +20,6 @@
|
|
|
20
20
|
],
|
|
21
21
|
"commands": "./commands/",
|
|
22
22
|
"skills": "./skills/",
|
|
23
|
-
"hooks": "./hooks/hooks.json",
|
|
24
23
|
"mcpServers": {
|
|
25
24
|
"exarchos": {
|
|
26
25
|
"type": "stdio",
|
|
@@ -31,13 +30,6 @@
|
|
|
31
30
|
"env": {
|
|
32
31
|
"WORKFLOW_STATE_DIR": "~/.claude/workflow-state"
|
|
33
32
|
}
|
|
34
|
-
},
|
|
35
|
-
"graphite": {
|
|
36
|
-
"type": "stdio",
|
|
37
|
-
"command": "gt",
|
|
38
|
-
"args": [
|
|
39
|
-
"mcp"
|
|
40
|
-
]
|
|
41
33
|
}
|
|
42
34
|
}
|
|
43
35
|
}
|
package/commands/cleanup.md
CHANGED
|
@@ -30,12 +30,12 @@ Follow the cleanup skill: `@skills/cleanup/SKILL.md`
|
|
|
30
30
|
|
|
31
31
|
Read workflow state:
|
|
32
32
|
```typescript
|
|
33
|
-
|
|
33
|
+
mcp__plugin_exarchos_exarchos__exarchos_workflow({ action: "get", featureId: "<feature-id>" })
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
If no `$ARGUMENTS` provided, list active workflows:
|
|
37
37
|
```typescript
|
|
38
|
-
|
|
38
|
+
mcp__plugin_exarchos_exarchos__exarchos_view({ action: "pipeline" })
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
### Step 2: Verify PR Merge Status
|
|
@@ -54,7 +54,7 @@ Collect:
|
|
|
54
54
|
### Step 3: Invoke Cleanup Action
|
|
55
55
|
|
|
56
56
|
```typescript
|
|
57
|
-
|
|
57
|
+
mcp__plugin_exarchos_exarchos__exarchos_workflow({
|
|
58
58
|
action: "cleanup",
|
|
59
59
|
featureId: "<feature-id>",
|
|
60
60
|
mergeVerified: true,
|
package/commands/debug.md
CHANGED
|
@@ -65,11 +65,11 @@ Switch from hotfix to thorough track during investigation.
|
|
|
65
65
|
|
|
66
66
|
### Step 1: Initialize State
|
|
67
67
|
|
|
68
|
-
Initialize workflow state using `
|
|
68
|
+
Initialize workflow state using `mcp__plugin_exarchos_exarchos__exarchos_workflow` with `action: "init"`:
|
|
69
69
|
- Set `featureId` to `debug-<issue-slug>`
|
|
70
70
|
- Set `workflowType` to "debug"
|
|
71
71
|
|
|
72
|
-
Then update the track using `
|
|
72
|
+
Then update the track using `mcp__plugin_exarchos_exarchos__exarchos_workflow` with `action: "set"`:
|
|
73
73
|
- Set `track` to "hotfix" or "thorough" based on triage
|
|
74
74
|
|
|
75
75
|
### Step 2: Triage
|
package/commands/ideate.md
CHANGED
|
@@ -52,9 +52,9 @@ After user selects approach:
|
|
|
52
52
|
|
|
53
53
|
## State Management
|
|
54
54
|
|
|
55
|
-
Initialize workflow state at the start using `
|
|
55
|
+
Initialize workflow state at the start using `mcp__plugin_exarchos_exarchos__exarchos_workflow` with `action: "init"` and the featureId.
|
|
56
56
|
|
|
57
|
-
After saving design, update state using `
|
|
57
|
+
After saving design, update state using `mcp__plugin_exarchos_exarchos__exarchos_workflow` with `action: "set"`:
|
|
58
58
|
- Set `artifacts.design` to the design path
|
|
59
59
|
- Set `phase` to "plan"
|
|
60
60
|
|
|
@@ -66,7 +66,7 @@ Save design to `docs/designs/YYYY-MM-DD-<feature>.md` and capture the path as `$
|
|
|
66
66
|
|
|
67
67
|
After saving the design document, **auto-continue to planning** (no user confirmation here):
|
|
68
68
|
|
|
69
|
-
1. Update state with design path and phase using `
|
|
69
|
+
1. Update state with design path and phase using `mcp__plugin_exarchos_exarchos__exarchos_workflow` with `action: "set"`:
|
|
70
70
|
- Set `artifacts.design` to the design document path
|
|
71
71
|
- Set `phase` to "plan"
|
|
72
72
|
|
package/commands/plan.md
CHANGED
|
@@ -71,7 +71,7 @@ Write to `docs/plans/YYYY-MM-DD-<feature>.md`
|
|
|
71
71
|
|
|
72
72
|
## State Management
|
|
73
73
|
|
|
74
|
-
After saving plan, update state with tasks using `
|
|
74
|
+
After saving plan, update state with tasks using `mcp__plugin_exarchos_exarchos__exarchos_workflow` with `action: "set"`:
|
|
75
75
|
- Set `artifacts.plan` to the plan path
|
|
76
76
|
- Set `tasks` to an array of task objects (id, title, status, branch)
|
|
77
77
|
- Set `phase` to "plan-review"
|
|
@@ -117,7 +117,7 @@ Plan-review performs delta analysis and **auto-loops** back to `/exarchos:plan`
|
|
|
117
117
|
|
|
118
118
|
If plan-review finds missing coverage:
|
|
119
119
|
|
|
120
|
-
1. Update state with gaps using `
|
|
120
|
+
1. Update state with gaps using `mcp__plugin_exarchos_exarchos__exarchos_workflow` with `action: "set"`:
|
|
121
121
|
- Set `planReview.gapsFound` to true
|
|
122
122
|
- Set `planReview.gaps` to an array of gap descriptions
|
|
123
123
|
|
|
@@ -138,7 +138,7 @@ If plan-review finds complete coverage:
|
|
|
138
138
|
|
|
139
139
|
2. **PAUSE for user input**: "Plan covers all design requirements. Approve and continue to delegation? (yes/no)"
|
|
140
140
|
|
|
141
|
-
3. **On approval**, use `
|
|
141
|
+
3. **On approval**, use `mcp__plugin_exarchos_exarchos__exarchos_workflow` with `action: "set"`:
|
|
142
142
|
- Set `planReview.approved` to true
|
|
143
143
|
- Set `phase` to "delegate"
|
|
144
144
|
|
package/commands/refactor.md
CHANGED
|
@@ -63,7 +63,7 @@ Switch from polish to overhaul if scope expands.
|
|
|
63
63
|
|
|
64
64
|
### Step 1: Initialize State
|
|
65
65
|
|
|
66
|
-
Initialize workflow state using `
|
|
66
|
+
Initialize workflow state using `mcp__plugin_exarchos_exarchos__exarchos_workflow` with `action: "init"`, featureId `refactor-<slug>`, and workflowType `refactor`.
|
|
67
67
|
|
|
68
68
|
### Step 2: Explore
|
|
69
69
|
|
package/commands/resume.md
CHANGED
|
@@ -33,7 +33,7 @@ The SessionStart hook automatically verifies state matches git reality on resume
|
|
|
33
33
|
|
|
34
34
|
### Step 3: Load Context Summary
|
|
35
35
|
|
|
36
|
-
The SessionStart hook provides workflow context automatically. Read the state file using `
|
|
36
|
+
The SessionStart hook provides workflow context automatically. Read the state file using `mcp__plugin_exarchos_exarchos__exarchos_workflow` with `action: "get"` and the featureId for detailed state.
|
|
37
37
|
|
|
38
38
|
### Step 4: Display Context
|
|
39
39
|
|
package/commands/synthesize.md
CHANGED
|
@@ -90,7 +90,7 @@ After PR is created, this is a **human checkpoint** - user confirmation required
|
|
|
90
90
|
|
|
91
91
|
### Save State
|
|
92
92
|
|
|
93
|
-
Update state using `
|
|
93
|
+
Update state using `mcp__plugin_exarchos_exarchos__exarchos_workflow` with `action: "set"` and the `featureId`:
|
|
94
94
|
- Set `artifacts.pr` to the PR URL
|
|
95
95
|
- Set `synthesis.prUrl` to the PR URL
|
|
96
96
|
|