opencode-athena 0.0.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.
- package/LICENSE +18 -0
- package/README.md +178 -0
- package/commands/athena-debug.md +338 -0
- package/commands/athena-dev.md +322 -0
- package/commands/athena-info.md +325 -0
- package/commands/athena-parallel.md +266 -0
- package/commands/athena-research.md +326 -0
- package/commands/athena-review.md +441 -0
- package/commands/athena-status.md +279 -0
- package/config/presets/enterprise.json +37 -0
- package/config/presets/minimal.json +34 -0
- package/config/presets/solo-quick.json +34 -0
- package/config/presets/standard.json +37 -0
- package/config/schemas/athena.schema.json +128 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.js +2185 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/index.d.ts +628 -0
- package/dist/index.js +1360 -0
- package/dist/index.js.map +1 -0
- package/dist/plugin/index.d.ts +20 -0
- package/dist/plugin/index.js +1343 -0
- package/dist/plugin/index.js.map +1 -0
- package/package.json +83 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../schemas/athena.schema.json",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Enterprise configuration - all features enabled, optimized for Claude Max 20x with OpenAI and Google",
|
|
5
|
+
"subscriptions": {
|
|
6
|
+
"claude": { "enabled": true, "tier": "max20x" },
|
|
7
|
+
"openai": { "enabled": true },
|
|
8
|
+
"google": { "enabled": true, "authMethod": "antigravity" }
|
|
9
|
+
},
|
|
10
|
+
"models": {
|
|
11
|
+
"sisyphus": "anthropic/claude-opus-4-5-thinking",
|
|
12
|
+
"oracle": "openai/gpt-5.1-high",
|
|
13
|
+
"librarian": "anthropic/claude-sonnet-4-5-thinking",
|
|
14
|
+
"frontend": "google/gemini-2.5-pro",
|
|
15
|
+
"documentWriter": "anthropic/claude-opus-4-5",
|
|
16
|
+
"multimodalLooker": "google/gemini-2.5-pro"
|
|
17
|
+
},
|
|
18
|
+
"bmad": {
|
|
19
|
+
"defaultTrack": "enterprise",
|
|
20
|
+
"autoStatusUpdate": true,
|
|
21
|
+
"parallelStoryLimit": 5
|
|
22
|
+
},
|
|
23
|
+
"features": {
|
|
24
|
+
"bmadBridge": true,
|
|
25
|
+
"autoStatus": true,
|
|
26
|
+
"parallelExecution": true,
|
|
27
|
+
"notifications": true,
|
|
28
|
+
"contextMonitor": true,
|
|
29
|
+
"commentChecker": true,
|
|
30
|
+
"lspTools": true
|
|
31
|
+
},
|
|
32
|
+
"mcps": {
|
|
33
|
+
"context7": true,
|
|
34
|
+
"exa": true,
|
|
35
|
+
"grepApp": true
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../schemas/athena.schema.json",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Minimal configuration - essential features only, works with Claude Pro alone",
|
|
5
|
+
"subscriptions": {
|
|
6
|
+
"claude": { "enabled": true, "tier": "pro" },
|
|
7
|
+
"openai": { "enabled": false },
|
|
8
|
+
"google": { "enabled": false, "authMethod": "none" }
|
|
9
|
+
},
|
|
10
|
+
"models": {
|
|
11
|
+
"sisyphus": "anthropic/claude-sonnet-4-5",
|
|
12
|
+
"oracle": "anthropic/claude-sonnet-4-5",
|
|
13
|
+
"librarian": "anthropic/claude-sonnet-4-5"
|
|
14
|
+
},
|
|
15
|
+
"bmad": {
|
|
16
|
+
"defaultTrack": "quick-flow",
|
|
17
|
+
"autoStatusUpdate": true,
|
|
18
|
+
"parallelStoryLimit": 1
|
|
19
|
+
},
|
|
20
|
+
"features": {
|
|
21
|
+
"bmadBridge": true,
|
|
22
|
+
"autoStatus": true,
|
|
23
|
+
"parallelExecution": false,
|
|
24
|
+
"notifications": false,
|
|
25
|
+
"contextMonitor": false,
|
|
26
|
+
"commentChecker": false,
|
|
27
|
+
"lspTools": true
|
|
28
|
+
},
|
|
29
|
+
"mcps": {
|
|
30
|
+
"context7": true,
|
|
31
|
+
"exa": false,
|
|
32
|
+
"grepApp": false
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../schemas/athena.schema.json",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Solo quick flow - fast iteration for solo developers with Claude Max 5x",
|
|
5
|
+
"subscriptions": {
|
|
6
|
+
"claude": { "enabled": true, "tier": "max5x" },
|
|
7
|
+
"openai": { "enabled": false },
|
|
8
|
+
"google": { "enabled": false, "authMethod": "none" }
|
|
9
|
+
},
|
|
10
|
+
"models": {
|
|
11
|
+
"sisyphus": "anthropic/claude-sonnet-4-5-thinking",
|
|
12
|
+
"oracle": "anthropic/claude-sonnet-4-5-thinking",
|
|
13
|
+
"librarian": "anthropic/claude-sonnet-4-5"
|
|
14
|
+
},
|
|
15
|
+
"bmad": {
|
|
16
|
+
"defaultTrack": "quick-flow",
|
|
17
|
+
"autoStatusUpdate": true,
|
|
18
|
+
"parallelStoryLimit": 2
|
|
19
|
+
},
|
|
20
|
+
"features": {
|
|
21
|
+
"bmadBridge": true,
|
|
22
|
+
"autoStatus": true,
|
|
23
|
+
"parallelExecution": true,
|
|
24
|
+
"notifications": true,
|
|
25
|
+
"contextMonitor": true,
|
|
26
|
+
"commentChecker": true,
|
|
27
|
+
"lspTools": true
|
|
28
|
+
},
|
|
29
|
+
"mcps": {
|
|
30
|
+
"context7": true,
|
|
31
|
+
"exa": true,
|
|
32
|
+
"grepApp": false
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../schemas/athena.schema.json",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Standard configuration - recommended for users with Claude Max 5x, OpenAI, and Google Workspace",
|
|
5
|
+
"subscriptions": {
|
|
6
|
+
"claude": { "enabled": true, "tier": "max5x" },
|
|
7
|
+
"openai": { "enabled": true },
|
|
8
|
+
"google": { "enabled": true, "authMethod": "antigravity" }
|
|
9
|
+
},
|
|
10
|
+
"models": {
|
|
11
|
+
"sisyphus": "anthropic/claude-sonnet-4-5-thinking",
|
|
12
|
+
"oracle": "openai/gpt-5.1-high",
|
|
13
|
+
"librarian": "anthropic/claude-sonnet-4-5",
|
|
14
|
+
"frontend": "anthropic/claude-sonnet-4-5",
|
|
15
|
+
"documentWriter": "google/gemini-2.5-pro",
|
|
16
|
+
"multimodalLooker": "google/gemini-2.5-flash"
|
|
17
|
+
},
|
|
18
|
+
"bmad": {
|
|
19
|
+
"defaultTrack": "bmad-method",
|
|
20
|
+
"autoStatusUpdate": true,
|
|
21
|
+
"parallelStoryLimit": 3
|
|
22
|
+
},
|
|
23
|
+
"features": {
|
|
24
|
+
"bmadBridge": true,
|
|
25
|
+
"autoStatus": true,
|
|
26
|
+
"parallelExecution": true,
|
|
27
|
+
"notifications": true,
|
|
28
|
+
"contextMonitor": true,
|
|
29
|
+
"commentChecker": true,
|
|
30
|
+
"lspTools": true
|
|
31
|
+
},
|
|
32
|
+
"mcps": {
|
|
33
|
+
"context7": true,
|
|
34
|
+
"exa": true,
|
|
35
|
+
"grepApp": true
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"title": "OpenCode Athena Configuration",
|
|
4
|
+
"description": "Configuration schema for OpenCode Athena - Strategic wisdom meets practical execution",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"$schema": {
|
|
8
|
+
"type": "string",
|
|
9
|
+
"description": "JSON Schema reference"
|
|
10
|
+
},
|
|
11
|
+
"version": {
|
|
12
|
+
"type": "string",
|
|
13
|
+
"description": "OpenCode Athena version"
|
|
14
|
+
},
|
|
15
|
+
"subscriptions": {
|
|
16
|
+
"type": "object",
|
|
17
|
+
"description": "LLM subscription configuration",
|
|
18
|
+
"properties": {
|
|
19
|
+
"claude": {
|
|
20
|
+
"type": "object",
|
|
21
|
+
"properties": {
|
|
22
|
+
"enabled": { "type": "boolean" },
|
|
23
|
+
"tier": {
|
|
24
|
+
"type": "string",
|
|
25
|
+
"enum": ["none", "pro", "max5x", "max20x"]
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"required": ["enabled", "tier"]
|
|
29
|
+
},
|
|
30
|
+
"openai": {
|
|
31
|
+
"type": "object",
|
|
32
|
+
"properties": {
|
|
33
|
+
"enabled": { "type": "boolean" }
|
|
34
|
+
},
|
|
35
|
+
"required": ["enabled"]
|
|
36
|
+
},
|
|
37
|
+
"google": {
|
|
38
|
+
"type": "object",
|
|
39
|
+
"properties": {
|
|
40
|
+
"enabled": { "type": "boolean" },
|
|
41
|
+
"authMethod": {
|
|
42
|
+
"type": "string",
|
|
43
|
+
"enum": ["none", "antigravity", "personal", "api"]
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"required": ["enabled", "authMethod"]
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"required": ["claude", "openai", "google"]
|
|
50
|
+
},
|
|
51
|
+
"models": {
|
|
52
|
+
"type": "object",
|
|
53
|
+
"description": "Agent model assignments",
|
|
54
|
+
"properties": {
|
|
55
|
+
"sisyphus": {
|
|
56
|
+
"type": "string",
|
|
57
|
+
"description": "Model for main orchestrator agent"
|
|
58
|
+
},
|
|
59
|
+
"oracle": {
|
|
60
|
+
"type": "string",
|
|
61
|
+
"description": "Model for debugging/reasoning agent"
|
|
62
|
+
},
|
|
63
|
+
"librarian": {
|
|
64
|
+
"type": "string",
|
|
65
|
+
"description": "Model for research/documentation agent"
|
|
66
|
+
},
|
|
67
|
+
"frontend": {
|
|
68
|
+
"type": "string",
|
|
69
|
+
"description": "Model for UI/UX agent"
|
|
70
|
+
},
|
|
71
|
+
"documentWriter": {
|
|
72
|
+
"type": "string",
|
|
73
|
+
"description": "Model for documentation generation agent"
|
|
74
|
+
},
|
|
75
|
+
"multimodalLooker": {
|
|
76
|
+
"type": "string",
|
|
77
|
+
"description": "Model for image analysis agent"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"required": ["sisyphus", "oracle", "librarian"]
|
|
81
|
+
},
|
|
82
|
+
"bmad": {
|
|
83
|
+
"type": "object",
|
|
84
|
+
"description": "BMAD METHOD integration settings",
|
|
85
|
+
"properties": {
|
|
86
|
+
"defaultTrack": {
|
|
87
|
+
"type": "string",
|
|
88
|
+
"enum": ["quick-flow", "bmad-method", "enterprise"],
|
|
89
|
+
"default": "bmad-method"
|
|
90
|
+
},
|
|
91
|
+
"autoStatusUpdate": {
|
|
92
|
+
"type": "boolean",
|
|
93
|
+
"default": true
|
|
94
|
+
},
|
|
95
|
+
"parallelStoryLimit": {
|
|
96
|
+
"type": "number",
|
|
97
|
+
"default": 3,
|
|
98
|
+
"minimum": 0,
|
|
99
|
+
"maximum": 10
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"required": ["defaultTrack", "autoStatusUpdate", "parallelStoryLimit"]
|
|
103
|
+
},
|
|
104
|
+
"features": {
|
|
105
|
+
"type": "object",
|
|
106
|
+
"description": "Feature toggles",
|
|
107
|
+
"properties": {
|
|
108
|
+
"bmadBridge": { "type": "boolean", "default": true },
|
|
109
|
+
"autoStatus": { "type": "boolean", "default": true },
|
|
110
|
+
"parallelExecution": { "type": "boolean", "default": true },
|
|
111
|
+
"notifications": { "type": "boolean", "default": true },
|
|
112
|
+
"contextMonitor": { "type": "boolean", "default": true },
|
|
113
|
+
"commentChecker": { "type": "boolean", "default": true },
|
|
114
|
+
"lspTools": { "type": "boolean", "default": true }
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"mcps": {
|
|
118
|
+
"type": "object",
|
|
119
|
+
"description": "MCP server toggles",
|
|
120
|
+
"properties": {
|
|
121
|
+
"context7": { "type": "boolean", "default": true },
|
|
122
|
+
"exa": { "type": "boolean", "default": true },
|
|
123
|
+
"grepApp": { "type": "boolean", "default": true }
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"required": ["version", "subscriptions", "models", "bmad", "features", "mcps"]
|
|
128
|
+
}
|