opencode-athena 0.4.0 → 0.6.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/commands/athena-parallel.md +2 -2
- package/commands/athena-review-story.md +2 -2
- package/config/presets/copilot-only.json +4 -2
- package/config/presets/enterprise.json +5 -2
- package/config/presets/minimal.json +5 -2
- package/config/presets/solo-quick.json +5 -2
- package/config/presets/standard.json +5 -2
- package/config/schemas/athena.schema.json +5 -0
- package/dist/cli/index.js +789 -111
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +6 -2
- package/dist/index.js +24 -2
- package/dist/index.js.map +1 -1
- package/dist/plugin/index.js +24 -2
- package/dist/plugin/index.js.map +1 -1
- package/package.json +3 -1
|
@@ -178,7 +178,7 @@ opencode
|
|
|
178
178
|
```
|
|
179
179
|
# Start story 2.1 in background
|
|
180
180
|
background_task({
|
|
181
|
-
agent: "
|
|
181
|
+
agent: "Sisyphus",
|
|
182
182
|
prompt: "Implement BMAD story 2.1. Load context with athena_get_story({storyId: '2.1'}), implement following /athena-dev workflow, update status when complete.",
|
|
183
183
|
description: "Story 2.1 implementation"
|
|
184
184
|
})
|
|
@@ -216,7 +216,7 @@ async function executeParallel(storyIds: string[]) {
|
|
|
216
216
|
|
|
217
217
|
// 3. Spawn background agents
|
|
218
218
|
const tasks = storyIds.map(id => ({
|
|
219
|
-
agent: "
|
|
219
|
+
agent: "Sisyphus",
|
|
220
220
|
prompt: generateStoryPrompt(id),
|
|
221
221
|
}));
|
|
222
222
|
|
|
@@ -33,7 +33,7 @@ This review runs in a **separate context** to preserve main session tokens.
|
|
|
33
33
|
Use background_task to spawn a review agent:
|
|
34
34
|
|
|
35
35
|
background_task({
|
|
36
|
-
agent: "
|
|
36
|
+
agent: "oracle",
|
|
37
37
|
description: "Party review of {identifier}",
|
|
38
38
|
prompt: `
|
|
39
39
|
You are performing a party review for Athena.
|
|
@@ -134,7 +134,7 @@ For each recommended agent, spawn a background task:
|
|
|
134
134
|
```
|
|
135
135
|
# Spawn in parallel - all at once
|
|
136
136
|
background_task({
|
|
137
|
-
agent: "
|
|
137
|
+
agent: "oracle",
|
|
138
138
|
description: "Architect analysis of {identifier}",
|
|
139
139
|
prompt: `
|
|
140
140
|
You are Winston, the Software Architect from BMAD.
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"librarian": "github-copilot/claude-haiku-4.5",
|
|
15
15
|
"frontend": "github-copilot/claude-sonnet-4.5",
|
|
16
16
|
"documentWriter": "github-copilot/gemini-2.5-pro",
|
|
17
|
-
"multimodalLooker": "github-copilot/gemini-2.5-pro"
|
|
17
|
+
"multimodalLooker": "github-copilot/gemini-2.5-pro",
|
|
18
|
+
"explore": "github-copilot/gpt-5-mini"
|
|
18
19
|
},
|
|
19
20
|
"bmad": {
|
|
20
21
|
"defaultTrack": "bmad-method",
|
|
@@ -28,7 +29,8 @@
|
|
|
28
29
|
"notifications": true,
|
|
29
30
|
"contextMonitor": true,
|
|
30
31
|
"commentChecker": true,
|
|
31
|
-
"lspTools": true
|
|
32
|
+
"lspTools": true,
|
|
33
|
+
"autoGitOperations": false
|
|
32
34
|
},
|
|
33
35
|
"mcps": {
|
|
34
36
|
"context7": true,
|
|
@@ -15,13 +15,15 @@
|
|
|
15
15
|
"frontend": "google/gemini-2.5-pro",
|
|
16
16
|
"documentWriter": "anthropic/claude-opus-4-5",
|
|
17
17
|
"multimodalLooker": "google/gemini-2.5-pro",
|
|
18
|
+
"explore": "google/gemini-2.5-flash",
|
|
18
19
|
"settings": {
|
|
19
20
|
"sisyphus": { "thinkingLevel": "high" },
|
|
20
21
|
"oracle": { "thinkingLevel": "high" },
|
|
21
22
|
"librarian": { "thinkingLevel": "medium" },
|
|
22
23
|
"frontend": { "temperature": 0.5 },
|
|
23
24
|
"documentWriter": { "temperature": 0.4 },
|
|
24
|
-
"multimodalLooker": { "temperature": 0.2 }
|
|
25
|
+
"multimodalLooker": { "temperature": 0.2 },
|
|
26
|
+
"explore": { "thinkingLevel": "off", "temperature": 0.2 }
|
|
25
27
|
}
|
|
26
28
|
},
|
|
27
29
|
"bmad": {
|
|
@@ -36,7 +38,8 @@
|
|
|
36
38
|
"notifications": true,
|
|
37
39
|
"contextMonitor": true,
|
|
38
40
|
"commentChecker": true,
|
|
39
|
-
"lspTools": true
|
|
41
|
+
"lspTools": true,
|
|
42
|
+
"autoGitOperations": false
|
|
40
43
|
},
|
|
41
44
|
"mcps": {
|
|
42
45
|
"context7": true,
|
|
@@ -12,10 +12,12 @@
|
|
|
12
12
|
"sisyphus": "anthropic/claude-sonnet-4-5",
|
|
13
13
|
"oracle": "anthropic/claude-sonnet-4-5",
|
|
14
14
|
"librarian": "anthropic/claude-sonnet-4-5",
|
|
15
|
+
"explore": "anthropic/claude-sonnet-4-5",
|
|
15
16
|
"settings": {
|
|
16
17
|
"sisyphus": { "temperature": 0.2 },
|
|
17
18
|
"oracle": { "temperature": 0.1 },
|
|
18
|
-
"librarian": { "temperature": 0.3 }
|
|
19
|
+
"librarian": { "temperature": 0.3 },
|
|
20
|
+
"explore": { "temperature": 0.2 }
|
|
19
21
|
}
|
|
20
22
|
},
|
|
21
23
|
"bmad": {
|
|
@@ -30,7 +32,8 @@
|
|
|
30
32
|
"notifications": false,
|
|
31
33
|
"contextMonitor": false,
|
|
32
34
|
"commentChecker": false,
|
|
33
|
-
"lspTools": true
|
|
35
|
+
"lspTools": true,
|
|
36
|
+
"autoGitOperations": false
|
|
34
37
|
},
|
|
35
38
|
"mcps": {
|
|
36
39
|
"context7": true,
|
|
@@ -12,10 +12,12 @@
|
|
|
12
12
|
"sisyphus": "anthropic/claude-sonnet-4-5-thinking",
|
|
13
13
|
"oracle": "anthropic/claude-sonnet-4-5-thinking",
|
|
14
14
|
"librarian": "anthropic/claude-sonnet-4-5",
|
|
15
|
+
"explore": "anthropic/claude-sonnet-4-5",
|
|
15
16
|
"settings": {
|
|
16
17
|
"sisyphus": { "thinkingLevel": "medium" },
|
|
17
18
|
"oracle": { "thinkingLevel": "high" },
|
|
18
|
-
"librarian": { "temperature": 0.3 }
|
|
19
|
+
"librarian": { "temperature": 0.3 },
|
|
20
|
+
"explore": { "temperature": 0.2 }
|
|
19
21
|
}
|
|
20
22
|
},
|
|
21
23
|
"bmad": {
|
|
@@ -30,7 +32,8 @@
|
|
|
30
32
|
"notifications": true,
|
|
31
33
|
"contextMonitor": true,
|
|
32
34
|
"commentChecker": true,
|
|
33
|
-
"lspTools": true
|
|
35
|
+
"lspTools": true,
|
|
36
|
+
"autoGitOperations": false
|
|
34
37
|
},
|
|
35
38
|
"mcps": {
|
|
36
39
|
"context7": true,
|
|
@@ -15,13 +15,15 @@
|
|
|
15
15
|
"frontend": "anthropic/claude-sonnet-4-5",
|
|
16
16
|
"documentWriter": "google/gemini-2.5-pro",
|
|
17
17
|
"multimodalLooker": "google/gemini-2.5-flash",
|
|
18
|
+
"explore": "google/gemini-2.5-flash",
|
|
18
19
|
"settings": {
|
|
19
20
|
"sisyphus": { "thinkingLevel": "medium" },
|
|
20
21
|
"oracle": { "thinkingLevel": "high" },
|
|
21
22
|
"librarian": { "thinkingLevel": "low" },
|
|
22
23
|
"frontend": { "temperature": 0.5 },
|
|
23
24
|
"documentWriter": { "temperature": 0.4 },
|
|
24
|
-
"multimodalLooker": { "temperature": 0.2 }
|
|
25
|
+
"multimodalLooker": { "temperature": 0.2 },
|
|
26
|
+
"explore": { "thinkingLevel": "off", "temperature": 0.2 }
|
|
25
27
|
}
|
|
26
28
|
},
|
|
27
29
|
"bmad": {
|
|
@@ -36,7 +38,8 @@
|
|
|
36
38
|
"notifications": true,
|
|
37
39
|
"contextMonitor": true,
|
|
38
40
|
"commentChecker": true,
|
|
39
|
-
"lspTools": true
|
|
41
|
+
"lspTools": true,
|
|
42
|
+
"autoGitOperations": false
|
|
40
43
|
},
|
|
41
44
|
"mcps": {
|
|
42
45
|
"context7": true,
|
|
@@ -92,6 +92,10 @@
|
|
|
92
92
|
"type": "string",
|
|
93
93
|
"description": "Model for image analysis agent"
|
|
94
94
|
},
|
|
95
|
+
"explore": {
|
|
96
|
+
"type": "string",
|
|
97
|
+
"description": "Model for fast codebase exploration agent"
|
|
98
|
+
},
|
|
95
99
|
"settings": {
|
|
96
100
|
"type": "object",
|
|
97
101
|
"description": "Optional agent-specific settings for temperature and thinking level",
|
|
@@ -102,6 +106,7 @@
|
|
|
102
106
|
"frontend": { "$ref": "#/definitions/agentSettings" },
|
|
103
107
|
"documentWriter": { "$ref": "#/definitions/agentSettings" },
|
|
104
108
|
"multimodalLooker": { "$ref": "#/definitions/agentSettings" },
|
|
109
|
+
"explore": { "$ref": "#/definitions/agentSettings" },
|
|
105
110
|
"overrides": {
|
|
106
111
|
"type": "object",
|
|
107
112
|
"description": "Per-model overrides (key: model ID, value: settings)",
|