opencode-athena 0.2.0 → 0.4.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/README.md +185 -4
- package/commands/athena-debug.md +38 -0
- package/commands/athena-dev.md +38 -0
- package/commands/athena-parallel.md +17 -0
- package/commands/athena-research.md +17 -0
- package/commands/athena-review.md +38 -0
- package/commands/athena-status.md +17 -0
- package/config/presets/copilot-only.json +38 -0
- package/config/presets/enterprise.json +11 -2
- package/config/presets/minimal.json +8 -2
- package/config/presets/solo-quick.json +8 -2
- package/config/presets/standard.json +11 -2
- package/config/schemas/athena.schema.json +94 -3
- package/dist/cli/index.js +283 -22
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +434 -4
- package/dist/index.js +208 -11
- package/dist/index.js.map +1 -1
- package/dist/plugin/index.js +208 -11
- package/dist/plugin/index.js.map +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -43,6 +43,7 @@ The interactive installer will:
|
|
|
43
43
|
- Claude Pro/Max (recommended)
|
|
44
44
|
- ChatGPT Plus/Pro
|
|
45
45
|
- Google/Gemini
|
|
46
|
+
- GitHub Copilot (Free/Pro/Pro+/Business/Enterprise)
|
|
46
47
|
|
|
47
48
|
## Commands
|
|
48
49
|
|
|
@@ -192,16 +193,196 @@ Configuration files are stored in `~/.config/opencode/`:
|
|
|
192
193
|
Use `--preset` during installation:
|
|
193
194
|
|
|
194
195
|
```bash
|
|
195
|
-
npx opencode-athena install --preset minimal
|
|
196
|
-
npx opencode-athena install --preset standard
|
|
197
|
-
npx opencode-athena install --preset enterprise
|
|
198
|
-
npx opencode-athena install --preset solo-quick
|
|
196
|
+
npx opencode-athena install --preset minimal # Bare essentials
|
|
197
|
+
npx opencode-athena install --preset standard # Recommended (default)
|
|
198
|
+
npx opencode-athena install --preset enterprise # Full features
|
|
199
|
+
npx opencode-athena install --preset solo-quick # Solo dev quick flow
|
|
200
|
+
npx opencode-athena install --preset copilot-only # GitHub Copilot users
|
|
199
201
|
```
|
|
200
202
|
|
|
201
203
|
### Project Overrides
|
|
202
204
|
|
|
203
205
|
Create `.opencode/athena.json` in your project root to override global settings.
|
|
204
206
|
|
|
207
|
+
### Model Settings
|
|
208
|
+
|
|
209
|
+
Athena provides fine-grained control over model behavior through `temperature` and `thinkingLevel` settings. These can be configured per agent role in `athena.json`:
|
|
210
|
+
|
|
211
|
+
```json
|
|
212
|
+
{
|
|
213
|
+
"models": {
|
|
214
|
+
"settings": {
|
|
215
|
+
"sisyphus": {
|
|
216
|
+
"temperature": 0.3,
|
|
217
|
+
"thinkingLevel": "medium"
|
|
218
|
+
},
|
|
219
|
+
"oracle": {
|
|
220
|
+
"thinkingLevel": "high"
|
|
221
|
+
},
|
|
222
|
+
"librarian": {
|
|
223
|
+
"temperature": 0.2
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
**Temperature** controls response randomness. Valid range is provider-specific:
|
|
231
|
+
- Anthropic: 0.0-1.0
|
|
232
|
+
- OpenAI: 0.0-2.0
|
|
233
|
+
- Google: 0.0-2.0
|
|
234
|
+
- GitHub Copilot: Not supported
|
|
235
|
+
|
|
236
|
+
Lower values = more focused, higher = more creative. Defaults are model-family-aware and clamped to valid ranges.
|
|
237
|
+
|
|
238
|
+
**ThinkingLevel** controls reasoning depth for supported models:
|
|
239
|
+
- `"low"` - Quick responses, minimal reasoning
|
|
240
|
+
- `"medium"` - Balanced (default)
|
|
241
|
+
- `"high"` - Deep reasoning, slower
|
|
242
|
+
|
|
243
|
+
ThinkingLevel maps to provider-specific parameters:
|
|
244
|
+
| Provider | Parameter | Values |
|
|
245
|
+
|----------|-----------|--------|
|
|
246
|
+
| Anthropic | `thinking.budget_tokens` | 4096 / 16384 / 32768 |
|
|
247
|
+
| OpenAI | `reasoning_effort` | `"low"` / `"medium"` / `"high"` |
|
|
248
|
+
| Google | `thinking_level` | `"low"` / `"medium"` / `"high"` |
|
|
249
|
+
|
|
250
|
+
Note: Temperature and thinkingLevel are not supported for GitHub Copilot-routed models.
|
|
251
|
+
|
|
252
|
+
### Custom Models
|
|
253
|
+
|
|
254
|
+
Add custom models to use models not in the built-in list. Custom models can override built-in models or add entirely new ones:
|
|
255
|
+
|
|
256
|
+
```json
|
|
257
|
+
{
|
|
258
|
+
"models": {
|
|
259
|
+
"sisyphus": "custom/my-finetuned-model",
|
|
260
|
+
"custom": [
|
|
261
|
+
{
|
|
262
|
+
"id": "custom/my-finetuned-model",
|
|
263
|
+
"name": "My Fine-tuned Model",
|
|
264
|
+
"provider": "openai",
|
|
265
|
+
"description": "Custom fine-tuned GPT for our codebase",
|
|
266
|
+
"capabilities": {
|
|
267
|
+
"thinking": false,
|
|
268
|
+
"contextWindow": 128000,
|
|
269
|
+
"supportsTemperature": true
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"id": "anthropic/claude-4-opus",
|
|
274
|
+
"name": "Claude 4 Opus (Override)",
|
|
275
|
+
"provider": "anthropic",
|
|
276
|
+
"description": "Override built-in model with custom settings"
|
|
277
|
+
}
|
|
278
|
+
]
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
Custom model fields:
|
|
284
|
+
- `id` (required): Unique identifier, format: `provider/model-name`
|
|
285
|
+
- `name` (required): Display name
|
|
286
|
+
- `provider` (required): `"anthropic"`, `"openai"`, `"google"`, or `"github-copilot"`
|
|
287
|
+
- `description`: Optional description
|
|
288
|
+
- `capabilities`: Optional capability hints
|
|
289
|
+
- `thinking`: Whether the model supports extended thinking
|
|
290
|
+
- `contextWindow`: Context window size in tokens
|
|
291
|
+
- `supportsTemperature`: Whether temperature can be adjusted
|
|
292
|
+
|
|
293
|
+
### Git Operations Policy
|
|
294
|
+
|
|
295
|
+
By default, Athena prevents agents from automatically performing git operations (commits, pushes, branch creation). This ensures developers maintain full control over version control.
|
|
296
|
+
|
|
297
|
+
**Default behavior** (`autoGitOperations: false`):
|
|
298
|
+
- ✅ Agents can read git state (`git status`, `git diff`, `git log`)
|
|
299
|
+
- ❌ Agents cannot automatically commit, push, or create branches
|
|
300
|
+
- ⚠️ If an agent attempts a git write operation, a warning is injected
|
|
301
|
+
- 📝 Agents must ask for explicit user permission before git operations
|
|
302
|
+
|
|
303
|
+
**Enable automatic git operations:**
|
|
304
|
+
|
|
305
|
+
Set `features.autoGitOperations: true` in `athena.json`:
|
|
306
|
+
|
|
307
|
+
```json
|
|
308
|
+
{
|
|
309
|
+
"features": {
|
|
310
|
+
"autoGitOperations": true
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
```
|
|
314
|
+
|
|
315
|
+
Or during installation, check the "Auto Git Operations" feature.
|
|
316
|
+
|
|
317
|
+
**Covered operations:**
|
|
318
|
+
- **Git commits & pushes:** `git commit`, `git push`
|
|
319
|
+
- **Branch operations:** `git checkout -b`, `git branch`, `git switch -c`, `git switch --create`
|
|
320
|
+
- **Merging & rebasing:** `git merge`, `git rebase`, `git cherry-pick`
|
|
321
|
+
- **Stashing & tags:** `git stash`, `git tag`
|
|
322
|
+
- **Reset operations:** `git reset` (all variants: --soft, --mixed, --hard)
|
|
323
|
+
- **GitHub PR operations:** `gh pr create`, `gh pr edit`, `gh pr merge`, `gh pr close`, `gh pr review`
|
|
324
|
+
- **GitHub issue operations:** `gh issue create`, `gh issue edit`, `gh issue close`
|
|
325
|
+
- **GitHub release operations:** `gh release create`, `gh release edit`, `gh release delete`
|
|
326
|
+
|
|
327
|
+
**Why this is the default:**
|
|
328
|
+
|
|
329
|
+
Version control is critical. Automatic commits can:
|
|
330
|
+
- Create unclear commit messages
|
|
331
|
+
- Commit unintended changes
|
|
332
|
+
- Disrupt branch strategies
|
|
333
|
+
- Bypass code review processes
|
|
334
|
+
|
|
335
|
+
With `autoGitOperations: false`, agents track progress via `athena_update_status()` instead, which updates `sprint-status.yaml` without git operations.
|
|
336
|
+
|
|
337
|
+
## GitHub Copilot Support
|
|
338
|
+
|
|
339
|
+
Athena supports GitHub Copilot as a model provider, allowing you to use Claude, GPT, and Gemini models through your Copilot subscription. This is especially useful for enterprise users who only have access to LLMs through Copilot.
|
|
340
|
+
|
|
341
|
+
### Setup
|
|
342
|
+
|
|
343
|
+
1. Run the installer and select "GitHub Copilot" when asked about subscriptions
|
|
344
|
+
2. Select your Copilot plan level (determines available models)
|
|
345
|
+
3. After installation, authenticate:
|
|
346
|
+
```bash
|
|
347
|
+
opencode auth login github-copilot
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
Or use the `copilot-only` preset:
|
|
351
|
+
```bash
|
|
352
|
+
npx opencode-athena install --preset copilot-only
|
|
353
|
+
```
|
|
354
|
+
|
|
355
|
+
### Plan Levels and Models
|
|
356
|
+
|
|
357
|
+
Model availability depends on your GitHub Copilot plan:
|
|
358
|
+
|
|
359
|
+
| Plan | Claude Models | GPT Models | Gemini Models |
|
|
360
|
+
|------|---------------|------------|---------------|
|
|
361
|
+
| **Free** | Haiku 4.5 | GPT-4.1, GPT-5-mini | - |
|
|
362
|
+
| **Pro** | Haiku 4.5, Sonnet 4, Sonnet 4.5 | GPT-4.1, GPT-5, GPT-5-mini, GPT-5.1, GPT-5.1-codex, GPT-5.2 | Gemini 2.5 Pro, Gemini 3 Flash, Gemini 3 Pro |
|
|
363
|
+
| **Pro+** | All Pro models + Opus 4.1, Opus 4.5 | All Pro models | All Pro models |
|
|
364
|
+
| **Business** | Haiku 4.5, Sonnet 4, Sonnet 4.5 | GPT-4.1, GPT-5, GPT-5-mini, GPT-5.1, GPT-5.1-codex, GPT-5.2 | Gemini 2.5 Pro, Gemini 3 Flash, Gemini 3 Pro |
|
|
365
|
+
| **Enterprise** | All Pro models + Opus 4.1, Opus 4.5 | All Pro models | All Pro models |
|
|
366
|
+
|
|
367
|
+
### How It Works
|
|
368
|
+
|
|
369
|
+
GitHub Copilot acts as a proxy to multiple LLM providers. When you configure a Copilot-routed model (e.g., `github-copilot/claude-sonnet-4`), requests are sent through GitHub's API.
|
|
370
|
+
|
|
371
|
+
**Naming convention:** Copilot-routed models use the format `github-copilot/{model}` (e.g., `github-copilot/gpt-4o`).
|
|
372
|
+
|
|
373
|
+
**Priority behavior:** If you have both direct provider access and Copilot access (e.g., Claude Pro + Copilot), Athena prefers direct provider models for better feature support.
|
|
374
|
+
|
|
375
|
+
### Limitations
|
|
376
|
+
|
|
377
|
+
Models accessed through GitHub Copilot have some limitations compared to direct provider access:
|
|
378
|
+
|
|
379
|
+
- **No temperature control**: Copilot strips temperature parameters
|
|
380
|
+
- **No thinking/reasoning modes**: Extended thinking (Claude), reasoning effort (OpenAI), and thinking level (Google) are not supported
|
|
381
|
+
- **Rate limits**: Subject to Copilot's rate limits rather than provider limits
|
|
382
|
+
- **Feature lag**: New model features may not be immediately available
|
|
383
|
+
|
|
384
|
+
For full model capabilities, use direct provider subscriptions when possible.
|
|
385
|
+
|
|
205
386
|
## Architecture
|
|
206
387
|
|
|
207
388
|
```
|
package/commands/athena-debug.md
CHANGED
|
@@ -4,6 +4,44 @@ description: Debug an issue using Oracle's deep reasoning capabilities
|
|
|
4
4
|
|
|
5
5
|
# Athena Debug - Oracle-Powered Debugging
|
|
6
6
|
|
|
7
|
+
## Git Operations Policy
|
|
8
|
+
|
|
9
|
+
**⚠️ AUTOMATIC GIT OPERATIONS ARE PROHIBITED**
|
|
10
|
+
|
|
11
|
+
You must NOT perform any git operations automatically:
|
|
12
|
+
- ❌ Do NOT run `git commit` to save changes
|
|
13
|
+
- ❌ Do NOT run `git push` to push to remote
|
|
14
|
+
- ❌ Do NOT run `git checkout -b` or `git branch` to create branches
|
|
15
|
+
- ❌ Do NOT run `git merge`, `git rebase`, or `git cherry-pick`
|
|
16
|
+
- ❌ Do NOT run `gh pr create` or other GitHub CLI operations
|
|
17
|
+
|
|
18
|
+
**Git operations are ONLY permitted if the user explicitly requests them.**
|
|
19
|
+
|
|
20
|
+
Examples of explicit permission:
|
|
21
|
+
- User says: "Please commit these fixes"
|
|
22
|
+
- User says: "Create a branch for this bugfix"
|
|
23
|
+
- User says: "Push to origin" or "Create a PR"
|
|
24
|
+
|
|
25
|
+
**If you believe git operations would be helpful, ASK the user first:**
|
|
26
|
+
```
|
|
27
|
+
I've fixed the issue. Would you like me to:
|
|
28
|
+
1. Commit the fix to git, or
|
|
29
|
+
2. Leave git operations for you to handle manually?
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
**To track story progress without git, use:**
|
|
33
|
+
```
|
|
34
|
+
athena_update_status({
|
|
35
|
+
storyId: "X.Y",
|
|
36
|
+
status: "in_progress",
|
|
37
|
+
notes: "Fixed issue: [description]"
|
|
38
|
+
})
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
This updates sprint-status.yaml without requiring git commits.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
7
45
|
Use Oracle, the debugging specialist, to analyze and fix complex issues with systematic hypothesis-driven debugging.
|
|
8
46
|
|
|
9
47
|
**You are Sisyphus, the orchestrator.** You will coordinate Oracle's deep reasoning with automated tools to efficiently diagnose and fix issues.
|
package/commands/athena-dev.md
CHANGED
|
@@ -4,6 +4,44 @@ description: Implement the current BMAD story using Sisyphus and specialized sub
|
|
|
4
4
|
|
|
5
5
|
# Athena Dev - Story Implementation
|
|
6
6
|
|
|
7
|
+
## Git Operations Policy
|
|
8
|
+
|
|
9
|
+
**⚠️ AUTOMATIC GIT OPERATIONS ARE PROHIBITED**
|
|
10
|
+
|
|
11
|
+
You must NOT perform any git operations automatically:
|
|
12
|
+
- ❌ Do NOT run `git commit` to save changes
|
|
13
|
+
- ❌ Do NOT run `git push` to push to remote
|
|
14
|
+
- ❌ Do NOT run `git checkout -b` or `git branch` to create branches
|
|
15
|
+
- ❌ Do NOT run `git merge`, `git rebase`, or `git cherry-pick`
|
|
16
|
+
- ❌ Do NOT run `gh pr create` or other GitHub CLI operations
|
|
17
|
+
|
|
18
|
+
**Git operations are ONLY permitted if the user explicitly requests them.**
|
|
19
|
+
|
|
20
|
+
Examples of explicit permission:
|
|
21
|
+
- User says: "Please commit these changes"
|
|
22
|
+
- User says: "Create a branch called feature-x"
|
|
23
|
+
- User says: "Push to origin" or "Create a PR"
|
|
24
|
+
|
|
25
|
+
**If you believe git operations would be helpful, ASK the user first:**
|
|
26
|
+
```
|
|
27
|
+
I've completed the implementation. Would you like me to:
|
|
28
|
+
1. Commit these changes to git, or
|
|
29
|
+
2. Leave git operations for you to handle manually?
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
**To track story progress without git, use:**
|
|
33
|
+
```
|
|
34
|
+
athena_update_status({
|
|
35
|
+
storyId: "X.Y",
|
|
36
|
+
status: "completed",
|
|
37
|
+
completionSummary: "What was implemented..."
|
|
38
|
+
})
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
This updates sprint-status.yaml without requiring git commits.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
7
45
|
You are implementing a BMAD story using OpenCode Athena's full capabilities.
|
|
8
46
|
|
|
9
47
|
**You are Sisyphus, the orchestrator.** You will coordinate subagents and tools to implement this story efficiently and correctly.
|
|
@@ -8,6 +8,23 @@ description: Work on multiple stories in parallel using background agents
|
|
|
8
8
|
>
|
|
9
9
|
> This command describes **planned functionality** that is not yet available. The `athena_parallel` tool is a placeholder. This document describes the intended behavior for future implementation.
|
|
10
10
|
|
|
11
|
+
## Git Operations Policy
|
|
12
|
+
|
|
13
|
+
**⚠️ AUTOMATIC GIT OPERATIONS ARE PROHIBITED**
|
|
14
|
+
|
|
15
|
+
You must NOT perform any git operations automatically:
|
|
16
|
+
- ❌ Do NOT run `git commit` to save changes
|
|
17
|
+
- ❌ Do NOT run `git push` to push to remote
|
|
18
|
+
- ❌ Do NOT run `git checkout -b` or `git branch` to create branches
|
|
19
|
+
- ❌ Do NOT run `git merge`, `git rebase`, or `git cherry-pick`
|
|
20
|
+
- ❌ Do NOT run `gh pr create` or other GitHub CLI operations
|
|
21
|
+
|
|
22
|
+
**Git operations are ONLY permitted if the user explicitly requests them.**
|
|
23
|
+
|
|
24
|
+
When working on multiple stories in parallel, git operations become especially important to coordinate manually. Always ask the user before performing any git operations.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
11
28
|
Execute multiple BMAD stories simultaneously using background agents for maximum throughput.
|
|
12
29
|
|
|
13
30
|
## Planned Behavior
|
|
@@ -4,6 +4,23 @@ description: Research patterns, implementations, or documentation using Libraria
|
|
|
4
4
|
|
|
5
5
|
# Athena Research - Librarian-Powered Research
|
|
6
6
|
|
|
7
|
+
## Git Operations Policy
|
|
8
|
+
|
|
9
|
+
**⚠️ AUTOMATIC GIT OPERATIONS ARE PROHIBITED**
|
|
10
|
+
|
|
11
|
+
You must NOT perform any git operations automatically:
|
|
12
|
+
- ❌ Do NOT run `git commit` to save changes
|
|
13
|
+
- ❌ Do NOT run `git push` to push to remote
|
|
14
|
+
- ❌ Do NOT run `git checkout -b` or `git branch` to create branches
|
|
15
|
+
- ❌ Do NOT run `git merge`, `git rebase`, or `git cherry-pick`
|
|
16
|
+
- ❌ Do NOT run `gh pr create` or other GitHub CLI operations
|
|
17
|
+
|
|
18
|
+
**Git operations are ONLY permitted if the user explicitly requests them.**
|
|
19
|
+
|
|
20
|
+
This command focuses on research and should rarely involve git operations. If you believe git operations are needed, ASK the user first.
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
7
24
|
Use Librarian, the research specialist, to find patterns, examples, and documentation from multiple sources.
|
|
8
25
|
|
|
9
26
|
**You are Sisyphus, the orchestrator.** You will coordinate Librarian's research capabilities with Explore for comprehensive information gathering.
|
|
@@ -4,6 +4,44 @@ description: Run a combined quality gate on the current story implementation
|
|
|
4
4
|
|
|
5
5
|
# Athena Review - Automated Quality Gate
|
|
6
6
|
|
|
7
|
+
## Git Operations Policy
|
|
8
|
+
|
|
9
|
+
**⚠️ AUTOMATIC GIT OPERATIONS ARE PROHIBITED**
|
|
10
|
+
|
|
11
|
+
You must NOT perform any git operations automatically:
|
|
12
|
+
- ❌ Do NOT run `git commit` to save changes
|
|
13
|
+
- ❌ Do NOT run `git push` to push to remote
|
|
14
|
+
- ❌ Do NOT run `git checkout -b` or `git branch` to create branches
|
|
15
|
+
- ❌ Do NOT run `git merge`, `git rebase`, or `git cherry-pick`
|
|
16
|
+
- ❌ Do NOT run `gh pr create` or other GitHub CLI operations
|
|
17
|
+
|
|
18
|
+
**Git operations are ONLY permitted if the user explicitly requests them.**
|
|
19
|
+
|
|
20
|
+
Examples of explicit permission:
|
|
21
|
+
- User says: "Please commit these changes"
|
|
22
|
+
- User says: "Create a branch called feature-x"
|
|
23
|
+
- User says: "Push to origin" or "Create a PR"
|
|
24
|
+
|
|
25
|
+
**If you believe git operations would be helpful, ASK the user first:**
|
|
26
|
+
```
|
|
27
|
+
The quality gate passed! Would you like me to:
|
|
28
|
+
1. Commit these changes to git, or
|
|
29
|
+
2. Leave git operations for you to handle manually?
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
**To track story progress without git, use:**
|
|
33
|
+
```
|
|
34
|
+
athena_update_status({
|
|
35
|
+
storyId: "X.Y",
|
|
36
|
+
status: "completed",
|
|
37
|
+
completionSummary: "What was implemented..."
|
|
38
|
+
})
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
This updates sprint-status.yaml without requiring git commits.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
7
45
|
Perform a comprehensive quality review by orchestrating **oh-my-opencode Oracle code review** and **BMAD adversarial review**, both powered by Oracle's deep reasoning capabilities.
|
|
8
46
|
|
|
9
47
|
**You are Sisyphus, the orchestrator.** You will coordinate multiple review perspectives and synthesize the findings.
|
|
@@ -4,6 +4,23 @@ description: View and manage BMAD sprint status
|
|
|
4
4
|
|
|
5
5
|
# Athena Status - Sprint Status Management
|
|
6
6
|
|
|
7
|
+
## Git Operations Policy
|
|
8
|
+
|
|
9
|
+
**⚠️ AUTOMATIC GIT OPERATIONS ARE PROHIBITED**
|
|
10
|
+
|
|
11
|
+
You must NOT perform any git operations automatically:
|
|
12
|
+
- ❌ Do NOT run `git commit` to save changes
|
|
13
|
+
- ❌ Do NOT run `git push` to push to remote
|
|
14
|
+
- ❌ Do NOT run `git checkout -b` or `git branch` to create branches
|
|
15
|
+
- ❌ Do NOT run `git merge`, `git rebase`, or `git cherry-pick`
|
|
16
|
+
- ❌ Do NOT run `gh pr create` or other GitHub CLI operations
|
|
17
|
+
|
|
18
|
+
**Git operations are ONLY permitted if the user explicitly requests them.**
|
|
19
|
+
|
|
20
|
+
This command focuses on status management and should not involve git operations.
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
7
24
|
View current sprint progress and manage story statuses. This command helps you track where you are in the sprint and what to work on next.
|
|
8
25
|
|
|
9
26
|
## Quick Status Check
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../schemas/athena.schema.json",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Configuration for users with only GitHub Copilot access (Business/Enterprise)",
|
|
5
|
+
"subscriptions": {
|
|
6
|
+
"claude": { "enabled": false, "tier": "none" },
|
|
7
|
+
"openai": { "enabled": false },
|
|
8
|
+
"google": { "enabled": false, "authMethod": "none" },
|
|
9
|
+
"githubCopilot": { "enabled": true, "plan": "business" }
|
|
10
|
+
},
|
|
11
|
+
"models": {
|
|
12
|
+
"sisyphus": "github-copilot/claude-sonnet-4.5",
|
|
13
|
+
"oracle": "github-copilot/gpt-5.1",
|
|
14
|
+
"librarian": "github-copilot/claude-haiku-4.5",
|
|
15
|
+
"frontend": "github-copilot/claude-sonnet-4.5",
|
|
16
|
+
"documentWriter": "github-copilot/gemini-2.5-pro",
|
|
17
|
+
"multimodalLooker": "github-copilot/gemini-2.5-pro"
|
|
18
|
+
},
|
|
19
|
+
"bmad": {
|
|
20
|
+
"defaultTrack": "bmad-method",
|
|
21
|
+
"autoStatusUpdate": true,
|
|
22
|
+
"parallelStoryLimit": 3
|
|
23
|
+
},
|
|
24
|
+
"features": {
|
|
25
|
+
"bmadBridge": true,
|
|
26
|
+
"autoStatus": true,
|
|
27
|
+
"parallelExecution": true,
|
|
28
|
+
"notifications": true,
|
|
29
|
+
"contextMonitor": true,
|
|
30
|
+
"commentChecker": true,
|
|
31
|
+
"lspTools": true
|
|
32
|
+
},
|
|
33
|
+
"mcps": {
|
|
34
|
+
"context7": true,
|
|
35
|
+
"exa": true,
|
|
36
|
+
"grepApp": true
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
"subscriptions": {
|
|
6
6
|
"claude": { "enabled": true, "tier": "max20x" },
|
|
7
7
|
"openai": { "enabled": true },
|
|
8
|
-
"google": { "enabled": true, "authMethod": "antigravity" }
|
|
8
|
+
"google": { "enabled": true, "authMethod": "antigravity" },
|
|
9
|
+
"githubCopilot": { "enabled": false, "plan": "none" }
|
|
9
10
|
},
|
|
10
11
|
"models": {
|
|
11
12
|
"sisyphus": "anthropic/claude-opus-4-5-thinking",
|
|
@@ -13,7 +14,15 @@
|
|
|
13
14
|
"librarian": "anthropic/claude-sonnet-4-5-thinking",
|
|
14
15
|
"frontend": "google/gemini-2.5-pro",
|
|
15
16
|
"documentWriter": "anthropic/claude-opus-4-5",
|
|
16
|
-
"multimodalLooker": "google/gemini-2.5-pro"
|
|
17
|
+
"multimodalLooker": "google/gemini-2.5-pro",
|
|
18
|
+
"settings": {
|
|
19
|
+
"sisyphus": { "thinkingLevel": "high" },
|
|
20
|
+
"oracle": { "thinkingLevel": "high" },
|
|
21
|
+
"librarian": { "thinkingLevel": "medium" },
|
|
22
|
+
"frontend": { "temperature": 0.5 },
|
|
23
|
+
"documentWriter": { "temperature": 0.4 },
|
|
24
|
+
"multimodalLooker": { "temperature": 0.2 }
|
|
25
|
+
}
|
|
17
26
|
},
|
|
18
27
|
"bmad": {
|
|
19
28
|
"defaultTrack": "enterprise",
|
|
@@ -5,12 +5,18 @@
|
|
|
5
5
|
"subscriptions": {
|
|
6
6
|
"claude": { "enabled": true, "tier": "pro" },
|
|
7
7
|
"openai": { "enabled": false },
|
|
8
|
-
"google": { "enabled": false, "authMethod": "none" }
|
|
8
|
+
"google": { "enabled": false, "authMethod": "none" },
|
|
9
|
+
"githubCopilot": { "enabled": false, "plan": "none" }
|
|
9
10
|
},
|
|
10
11
|
"models": {
|
|
11
12
|
"sisyphus": "anthropic/claude-sonnet-4-5",
|
|
12
13
|
"oracle": "anthropic/claude-sonnet-4-5",
|
|
13
|
-
"librarian": "anthropic/claude-sonnet-4-5"
|
|
14
|
+
"librarian": "anthropic/claude-sonnet-4-5",
|
|
15
|
+
"settings": {
|
|
16
|
+
"sisyphus": { "temperature": 0.2 },
|
|
17
|
+
"oracle": { "temperature": 0.1 },
|
|
18
|
+
"librarian": { "temperature": 0.3 }
|
|
19
|
+
}
|
|
14
20
|
},
|
|
15
21
|
"bmad": {
|
|
16
22
|
"defaultTrack": "quick-flow",
|
|
@@ -5,12 +5,18 @@
|
|
|
5
5
|
"subscriptions": {
|
|
6
6
|
"claude": { "enabled": true, "tier": "max5x" },
|
|
7
7
|
"openai": { "enabled": false },
|
|
8
|
-
"google": { "enabled": false, "authMethod": "none" }
|
|
8
|
+
"google": { "enabled": false, "authMethod": "none" },
|
|
9
|
+
"githubCopilot": { "enabled": false, "plan": "none" }
|
|
9
10
|
},
|
|
10
11
|
"models": {
|
|
11
12
|
"sisyphus": "anthropic/claude-sonnet-4-5-thinking",
|
|
12
13
|
"oracle": "anthropic/claude-sonnet-4-5-thinking",
|
|
13
|
-
"librarian": "anthropic/claude-sonnet-4-5"
|
|
14
|
+
"librarian": "anthropic/claude-sonnet-4-5",
|
|
15
|
+
"settings": {
|
|
16
|
+
"sisyphus": { "thinkingLevel": "medium" },
|
|
17
|
+
"oracle": { "thinkingLevel": "high" },
|
|
18
|
+
"librarian": { "temperature": 0.3 }
|
|
19
|
+
}
|
|
14
20
|
},
|
|
15
21
|
"bmad": {
|
|
16
22
|
"defaultTrack": "quick-flow",
|
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
"subscriptions": {
|
|
6
6
|
"claude": { "enabled": true, "tier": "max5x" },
|
|
7
7
|
"openai": { "enabled": true },
|
|
8
|
-
"google": { "enabled": true, "authMethod": "antigravity" }
|
|
8
|
+
"google": { "enabled": true, "authMethod": "antigravity" },
|
|
9
|
+
"githubCopilot": { "enabled": false, "plan": "none" }
|
|
9
10
|
},
|
|
10
11
|
"models": {
|
|
11
12
|
"sisyphus": "anthropic/claude-sonnet-4-5-thinking",
|
|
@@ -13,7 +14,15 @@
|
|
|
13
14
|
"librarian": "anthropic/claude-sonnet-4-5",
|
|
14
15
|
"frontend": "anthropic/claude-sonnet-4-5",
|
|
15
16
|
"documentWriter": "google/gemini-2.5-pro",
|
|
16
|
-
"multimodalLooker": "google/gemini-2.5-flash"
|
|
17
|
+
"multimodalLooker": "google/gemini-2.5-flash",
|
|
18
|
+
"settings": {
|
|
19
|
+
"sisyphus": { "thinkingLevel": "medium" },
|
|
20
|
+
"oracle": { "thinkingLevel": "high" },
|
|
21
|
+
"librarian": { "thinkingLevel": "low" },
|
|
22
|
+
"frontend": { "temperature": 0.5 },
|
|
23
|
+
"documentWriter": { "temperature": 0.4 },
|
|
24
|
+
"multimodalLooker": { "temperature": 0.2 }
|
|
25
|
+
}
|
|
17
26
|
},
|
|
18
27
|
"bmad": {
|
|
19
28
|
"defaultTrack": "bmad-method",
|