@lvlup-sw/exarchos 2.0.1 → 2.0.3
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 +17 -3
- package/package.json +1 -2
- package/.mcp.json +0 -17
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
"plugins": [
|
|
12
12
|
{
|
|
13
13
|
"name": "exarchos",
|
|
14
|
-
"source": { "source": "npm", "package": "@lvlup-sw/exarchos", "version": "2.0.
|
|
14
|
+
"source": { "source": "npm", "package": "@lvlup-sw/exarchos", "version": "2.0.3" },
|
|
15
15
|
"description": "Event-sourced SDLC workflows with agent team coordination",
|
|
16
|
-
"version": "2.0.
|
|
16
|
+
"version": "2.0.3",
|
|
17
17
|
"author": { "name": "Levelup Software" },
|
|
18
18
|
"category": "productivity",
|
|
19
19
|
"tags": ["workflow", "sdlc", "governance", "graphite", "tdd"]
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exarchos",
|
|
3
3
|
"description": "Agent governance for Claude Code — event-sourced SDLC workflows with team coordination, quality gates, and progressive stacking via Graphite.",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.3",
|
|
5
5
|
"author": { "name": "Levelup Software" },
|
|
6
6
|
"homepage": "https://github.com/lvlup-sw/exarchos",
|
|
7
7
|
"repository": "https://github.com/lvlup-sw/exarchos",
|
|
8
|
-
"license": "
|
|
8
|
+
"license": "Apache-2.0",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"workflow", "sdlc", "governance", "graphite",
|
|
11
11
|
"event-sourcing", "tdd", "code-review", "teams"
|
|
@@ -13,5 +13,19 @@
|
|
|
13
13
|
"commands": "./commands/",
|
|
14
14
|
"skills": "./skills/",
|
|
15
15
|
"hooks": "./hooks/hooks.json",
|
|
16
|
-
"mcpServers":
|
|
16
|
+
"mcpServers": {
|
|
17
|
+
"exarchos": {
|
|
18
|
+
"type": "stdio",
|
|
19
|
+
"command": "bun",
|
|
20
|
+
"args": ["run", "./dist/exarchos-mcp.js"],
|
|
21
|
+
"env": {
|
|
22
|
+
"WORKFLOW_STATE_DIR": "~/.claude/workflow-state"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"graphite": {
|
|
26
|
+
"type": "stdio",
|
|
27
|
+
"command": "gt",
|
|
28
|
+
"args": ["mcp"]
|
|
29
|
+
}
|
|
30
|
+
}
|
|
17
31
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lvlup-sw/exarchos",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"description": "Governed SDLC workflows for Claude Code — agent orchestration, quality gates, and Graphite stacked PRs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
"scripts",
|
|
16
16
|
"hooks",
|
|
17
17
|
"settings.json",
|
|
18
|
-
".mcp.json",
|
|
19
18
|
".claude-plugin",
|
|
20
19
|
"CLAUDE.md.template",
|
|
21
20
|
"AGENTS.md",
|
package/.mcp.json
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"mcpServers": {
|
|
3
|
-
"exarchos": {
|
|
4
|
-
"type": "stdio",
|
|
5
|
-
"command": "bun",
|
|
6
|
-
"args": ["run", "./dist/exarchos-mcp.js"],
|
|
7
|
-
"env": {
|
|
8
|
-
"WORKFLOW_STATE_DIR": "~/.claude/workflow-state"
|
|
9
|
-
}
|
|
10
|
-
},
|
|
11
|
-
"graphite": {
|
|
12
|
-
"type": "stdio",
|
|
13
|
-
"command": "gt",
|
|
14
|
-
"args": ["mcp"]
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|