Edward Fazackerley commited on
Commit
d87f228
·
unverified ·
1 Parent(s): 0a6ba98

Update sisyphus.yaml

Browse files
Files changed (1) hide show
  1. .github/workflows/sisyphus.yaml +11 -11
.github/workflows/sisyphus.yaml CHANGED
@@ -74,17 +74,16 @@ jobs:
74
  OMO_CONFIG=~/.config/opencode/oh-my-opencode.json
75
 
76
  # 1. Setup Copilot Provider with the Token directly in config
77
- # This avoids the "gh auth" warning/failure altogether
78
  jq --arg token "$GH_TOKEN" '.provider = {
79
  "github-copilot": {
80
  "name": "GitHub Copilot",
81
  "npm": "@opencode-ai/provider-github-copilot",
82
  "options": { "token": $token }
83
  }
84
- } | .model = "github-copilot/gemini-3-flash"' "$CONFIG_PATH" > "$CONFIG_PATH.tmp" && mv "$CONFIG_PATH.tmp" "$CONFIG_PATH"
85
 
86
- # 2. Point Agents to the correct models
87
- jq '.agents.Sisyphus.model = "github-copilot/gemini-3-flash" |
88
  .agents.Oracle.model = "opencode/grok-code" |
89
  .agents.Librarian.model = "opencode/big-pickle"' \
90
  "$OMO_CONFIG" > "$OMO_CONFIG.tmp" && mv "$OMO_CONFIG.tmp" "$OMO_CONFIG"
@@ -128,18 +127,19 @@ jobs:
128
  [CODE RED] You are @cloudwaddie-ai.
129
 
130
  ## MODEL CONFIG
131
- - Main: github-copilot/gemini-3-flash
132
- - Logic: opencode/grok-code
133
- - Search: opencode/big-pickle
134
 
135
- ## RULES
136
- - Deliver FULL implementations.
137
- - Use background_task for parallel research.
138
  </ultrawork-mode>
139
 
140
  ---
141
  Context: ${{ steps.context.outputs.title }} (#${{ steps.context.outputs.number }})
142
- Request: ${{ steps.context.outputs.comment }}
 
143
  EOF
144
  )
145
 
 
74
  OMO_CONFIG=~/.config/opencode/oh-my-opencode.json
75
 
76
  # 1. Setup Copilot Provider with the Token directly in config
 
77
  jq --arg token "$GH_TOKEN" '.provider = {
78
  "github-copilot": {
79
  "name": "GitHub Copilot",
80
  "npm": "@opencode-ai/provider-github-copilot",
81
  "options": { "token": $token }
82
  }
83
+ } | .model = "github-copilot/gemini-3-flash-preview"' "$CONFIG_PATH" > "$CONFIG_PATH.tmp" && mv "$CONFIG_PATH.tmp" "$CONFIG_PATH"
84
 
85
+ # 2. Point Agents to the correct models (Gemini 3 Flash, Grok, and Pickle)
86
+ jq '.agents.Sisyphus.model = "github-copilot/gemini-3-flash-preview" |
87
  .agents.Oracle.model = "opencode/grok-code" |
88
  .agents.Librarian.model = "opencode/big-pickle"' \
89
  "$OMO_CONFIG" > "$OMO_CONFIG.tmp" && mv "$OMO_CONFIG.tmp" "$OMO_CONFIG"
 
127
  [CODE RED] You are @cloudwaddie-ai.
128
 
129
  ## MODEL CONFIG
130
+ - Main engine: github-copilot/gemini-3-flash-preview
131
+ - Logic sub-agent: opencode/grok-code
132
+ - Search sub-agent: opencode/big-pickle
133
 
134
+ ## EXECUTION
135
+ - Deliver COMPLETE working code.
136
+ - Create PRs for all changes.
137
  </ultrawork-mode>
138
 
139
  ---
140
  Context: ${{ steps.context.outputs.title }} (#${{ steps.context.outputs.number }})
141
+ Request from @${{ steps.context.outputs.author }}:
142
+ ${{ steps.context.outputs.comment }}
143
  EOF
144
  )
145