@lvlup-sw/exarchos 2.0.2 → 2.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvlup-sw/exarchos",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
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",
@@ -27,7 +26,7 @@
27
26
  "scripts": {
28
27
  "build": "tsc && bun run build:mcp && bun run build:cli",
29
28
  "build:cli": "bun build servers/exarchos-mcp/src/cli.ts --outfile dist/exarchos-cli.js --target node",
30
- "build:mcp": "bun build servers/exarchos-mcp/src/index.ts --outfile dist/exarchos-mcp.js --target bun --minify",
29
+ "build:mcp": "bun build servers/exarchos-mcp/src/index.ts --outfile dist/exarchos-mcp.js --target node --minify",
31
30
  "prepare": "tsc",
32
31
  "bench": "cd servers/exarchos-mcp && npx vitest bench",
33
32
  "test": "vitest",
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
- }