oh-my-opencode 5.0.0-beta.7 → 5.0.0-beta.8
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/.agents/skills/work-with-pr/SKILL.md +37 -23
- package/.opencode/skills/work-with-pr/SKILL.md +37 -23
- package/dist/agents/sisyphus/grok-4.d.ts +20 -0
- package/dist/agents/sisyphus/index.d.ts +2 -0
- package/dist/agents/sisyphus-agent-config.d.ts +6 -0
- package/dist/agents/sisyphus-agent-factory.d.ts +1 -1
- package/dist/agents/types.d.ts +2 -2
- package/dist/cli/index.js +446 -336
- package/dist/cli-node/index.js +446 -336
- package/dist/index.js +272 -28
- package/dist/shared/normalize-sdk-response.d.ts +1 -0
- package/dist/skills/frontend/SKILL.md +10 -7
- package/dist/skills/frontend/references/design/_INDEX.md +1 -0
- package/dist/skills/frontend/references/design/stylegallery.md +80 -0
- package/dist/skills/ultimate-browsing/ATTRIBUTION.md +2 -2
- package/dist/skills/ultimate-browsing/engine/templates/package.json +1 -1
- package/dist/skills/ultimate-browsing/references/chrome-stealth.md +11 -11
- package/dist/skills/ulw-plan/SKILL.md +2 -2
- package/dist/skills/ulw-plan/references/full-workflow.md +27 -3
- package/dist/skills/ulw-plan/references/intent-clear.md +2 -1
- package/dist/skills/ulw-plan/references/intent-unclear.md +3 -3
- package/dist/tui.js +75 -7
- package/package.json +19 -19
- package/packages/lsp-core/src/lsp/client-diagnostics-concurrency.integration.test.ts +44 -0
- package/packages/lsp-core/src/lsp/client-diagnostics-freshness.integration.test.ts +0 -28
- package/packages/omo-codex/plugin/.codex-plugin/plugin.json +1 -1
- package/packages/omo-codex/plugin/components/bootstrap/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/bootstrap/package.json +1 -1
- package/packages/omo-codex/plugin/components/codegraph/dist/cli.js +24 -2
- package/packages/omo-codex/plugin/components/codegraph/dist/serve.js +24 -2
- package/packages/omo-codex/plugin/components/codegraph/package.json +1 -1
- package/packages/omo-codex/plugin/components/comment-checker/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/comment-checker/package.json +1 -1
- package/packages/omo-codex/plugin/components/git-bash/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/git-bash/package.json +1 -1
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/package.json +1 -1
- package/packages/omo-codex/plugin/components/lsp/dist/.omo-runtime-manifest.json +2 -2
- package/packages/omo-codex/plugin/components/lsp/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/lsp/package.json +1 -1
- package/packages/omo-codex/plugin/components/rules/hooks/hooks.json +4 -4
- package/packages/omo-codex/plugin/components/rules/package.json +1 -1
- package/packages/omo-codex/plugin/components/start-work-continuation/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/start-work-continuation/package.json +1 -1
- package/packages/omo-codex/plugin/components/teammode/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/teammode/package.json +1 -1
- package/packages/omo-codex/plugin/components/telemetry/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/telemetry/package.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/package.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/SKILL.md +2 -2
- package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/references/full-workflow.md +27 -3
- package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/references/intent-clear.md +2 -1
- package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/references/intent-unclear.md +3 -3
- package/packages/omo-codex/plugin/components/ulw-loop/hooks/hooks.json +4 -4
- package/packages/omo-codex/plugin/components/ulw-loop/package.json +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/skills/ulw-loop/references/define-goal.md +5 -3
- package/packages/omo-codex/plugin/components/ulw-loop/skills/ulw-loop/references/full-workflow.md +1 -1
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-git-bash-mcp-reminder.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-lsp-diagnostics-cache.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-project-rule-cache.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-codegraph-init-guidance.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-comments.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-lsp-diagnostics.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-thread-title-hygiene.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-matching-project-rules.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-enforcing-unlimited-goal-budget.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-guarding-ulw-loop-spawns.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-recommending-git-bash-mcp.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-auto-update.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-bootstrap-provisioning.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-codegraph-bootstrap.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-loading-project-rules.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-recording-session-telemetry.json +1 -1
- package/packages/omo-codex/plugin/hooks/stop-checking-start-work-continuation.json +1 -1
- package/packages/omo-codex/plugin/hooks/stop-checking-ulw-loop-resume.json +1 -1
- package/packages/omo-codex/plugin/hooks/subagent-stop-checking-start-work-continuation.json +1 -1
- package/packages/omo-codex/plugin/hooks/subagent-stop-verifying-lazycodex-executor-evidence.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ultrawork-trigger.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ulw-loop-steering.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-loading-project-rules.json +1 -1
- package/packages/omo-codex/plugin/package-lock.json +13 -13
- package/packages/omo-codex/plugin/package.json +1 -1
- package/packages/omo-codex/plugin/skills/frontend/SKILL.md +10 -7
- package/packages/omo-codex/plugin/skills/frontend/references/design/_INDEX.md +1 -0
- package/packages/omo-codex/plugin/skills/frontend/references/design/stylegallery.md +80 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/ATTRIBUTION.md +2 -2
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/templates/package.json +1 -1
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/chrome-stealth.md +11 -11
- package/packages/omo-codex/plugin/skills/ulw-loop/references/define-goal.md +5 -3
- package/packages/omo-codex/plugin/skills/ulw-loop/references/full-workflow.md +1 -1
- package/packages/omo-codex/plugin/skills/ulw-plan/SKILL.md +2 -2
- package/packages/omo-codex/plugin/skills/ulw-plan/references/full-workflow.md +27 -3
- package/packages/omo-codex/plugin/skills/ulw-plan/references/intent-clear.md +2 -1
- package/packages/omo-codex/plugin/skills/ulw-plan/references/intent-unclear.md +3 -3
- package/packages/omo-codex/scripts/install-dist/install-local.mjs +2 -2
- package/packages/shared-skills/skills/frontend/SKILL.md +10 -7
- package/packages/shared-skills/skills/frontend/references/design/_INDEX.md +1 -0
- package/packages/shared-skills/skills/frontend/references/design/stylegallery.md +80 -0
- package/packages/shared-skills/skills/ultimate-browsing/ATTRIBUTION.md +2 -2
- package/packages/shared-skills/skills/ultimate-browsing/engine/templates/package.json +1 -1
- package/packages/shared-skills/skills/ultimate-browsing/references/chrome-stealth.md +11 -11
- package/packages/shared-skills/skills/ulw-plan/SKILL.md +2 -2
- package/packages/shared-skills/skills/ulw-plan/references/full-workflow.md +27 -3
- package/packages/shared-skills/skills/ulw-plan/references/intent-clear.md +2 -1
- package/packages/shared-skills/skills/ulw-plan/references/intent-unclear.md +3 -3
|
@@ -196,12 +196,20 @@ while true:
|
|
|
196
196
|
|
|
197
197
|
### Gate A: CI Checks
|
|
198
198
|
|
|
199
|
-
CI is the fastest feedback loop.
|
|
199
|
+
CI is the fastest feedback loop. Subscribe to its completion via `monitor` — never block a model round-trip on `gh pr checks --watch`.
|
|
200
200
|
|
|
201
|
-
```
|
|
202
|
-
#
|
|
203
|
-
#
|
|
204
|
-
|
|
201
|
+
```
|
|
202
|
+
# Subscribe to CI completion — the monitor event wakes the session when checks finish.
|
|
203
|
+
# Do NOT use `gh pr checks --watch` as a blocking tool call; it burns a full model
|
|
204
|
+
# round-trip (~29s) on every poll. Instead, register a monitor and end the turn:
|
|
205
|
+
monitor({
|
|
206
|
+
description: "CI completion for PR $PR_NUMBER",
|
|
207
|
+
command: "gh pr checks $PR_NUMBER --watch --fail-fast",
|
|
208
|
+
filter: "completed|fail|cancel"
|
|
209
|
+
})
|
|
210
|
+
# → end turn; the monitor's matching line arrives as an injected event.
|
|
211
|
+
# For a single midpoint status peek (at most once), use:
|
|
212
|
+
# gh pr checks "$PR_NUMBER" # one-shot, no --watch
|
|
205
213
|
```
|
|
206
214
|
|
|
207
215
|
**On failure**: Get the failed run logs to understand what broke:
|
|
@@ -243,20 +251,21 @@ fi
|
|
|
243
251
|
|
|
244
252
|
**On issues**: Cubic's review body contains structured issue descriptions. Parse them, determine which are valid (some may be false positives), and fix the valid ones per the iteration discipline below.
|
|
245
253
|
|
|
246
|
-
Cubic reviews are triggered automatically on PR updates. After pushing a fix,
|
|
254
|
+
Cubic reviews are triggered automatically on PR updates. After pushing a fix, subscribe to the new review arriving — never spin a `for _ in $(seq 1 30)` polling loop that burns model round-trips.
|
|
247
255
|
|
|
248
|
-
```
|
|
249
|
-
#
|
|
250
|
-
#
|
|
256
|
+
```
|
|
257
|
+
# Subscribe to a NEW Cubic review after push. The monitor exits when a review
|
|
258
|
+
# newer than PUSH_TIME appears, or times out (quota exhausted → Gate B SKIPPED).
|
|
251
259
|
PUSH_TIME=$(date -u +%Y-%m-%dT%H:%M:%SZ)
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
#
|
|
259
|
-
|
|
260
|
+
monitor({
|
|
261
|
+
description: "Cubic review for PR $PR_NUMBER",
|
|
262
|
+
command: "LATEST=$(gh api repos/${REPO}/pulls/${PR_NUMBER}/reviews --jq '[.[] | select(.user.login == "cubic-dev-ai[bot]")] | last | .submitted_at // empty'); [ -n \"$LATEST\" ] && [ \"$LATEST\" > \"$PUSH_TIME\" ] && echo NEW_REVIEW || echo WAITING",
|
|
263
|
+
filter: "NEW_REVIEW",
|
|
264
|
+
timeout_ms: 600000 # 10 min bound — if no review arrives, Gate B is SKIPPED (quota exhausted)
|
|
265
|
+
})
|
|
266
|
+
# → end turn; if the monitor times out without NEW_REVIEW, treat Gate B as SKIPPED.
|
|
267
|
+
# For a single midpoint peek (at most once), use:
|
|
268
|
+
# gh api "repos/${REPO}/pulls/${PR_NUMBER}/reviews" --jq '[.[] | select(.user.login == "cubic-dev-ai[bot]")] | last | .submitted_at'
|
|
260
269
|
```
|
|
261
270
|
|
|
262
271
|
### Iteration discipline
|
|
@@ -292,13 +301,18 @@ gh pr merge "$PR_NUMBER" --merge --auto --delete-branch
|
|
|
292
301
|
# are green, fall back to a direct merge: gh pr merge "$PR_NUMBER" --merge --delete-branch
|
|
293
302
|
```
|
|
294
303
|
|
|
295
|
-
Then
|
|
304
|
+
Then subscribe to the merge completing — never block a model round-trip on an `until [ ... MERGED ]` polling loop:
|
|
296
305
|
|
|
297
|
-
```
|
|
298
|
-
#
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
306
|
+
```
|
|
307
|
+
# Subscribe to merge completion. The monitor exits when gh pr view returns MERGED.
|
|
308
|
+
monitor({
|
|
309
|
+
description: "Merge completion for PR $PR_NUMBER",
|
|
310
|
+
command: "[ \"$(gh pr view $PR_NUMBER --json state -q .state)\" = \"MERGED\" ] && echo MERGED || echo WAITING",
|
|
311
|
+
filter: "MERGED",
|
|
312
|
+
timeout_ms: 1800000 # 30 min bound for auto-merge to land after all gates pass
|
|
313
|
+
})
|
|
314
|
+
# → end turn; the MERGED event wakes the session for the cleanup step.
|
|
315
|
+
# If the monitor times out, check merge state once: gh pr view "$PR_NUMBER" --json state -q .state
|
|
302
316
|
```
|
|
303
317
|
|
|
304
318
|
If the user opted out of merging, skip the merge but STILL run the cleanup below: the worktree is removed either way.
|
|
@@ -196,12 +196,20 @@ while true:
|
|
|
196
196
|
|
|
197
197
|
### Gate A: CI Checks
|
|
198
198
|
|
|
199
|
-
CI is the fastest feedback loop.
|
|
199
|
+
CI is the fastest feedback loop. Subscribe to its completion via `monitor` — never block a model round-trip on `gh pr checks --watch`.
|
|
200
200
|
|
|
201
|
-
```
|
|
202
|
-
#
|
|
203
|
-
#
|
|
204
|
-
|
|
201
|
+
```
|
|
202
|
+
# Subscribe to CI completion — the monitor event wakes the session when checks finish.
|
|
203
|
+
# Do NOT use `gh pr checks --watch` as a blocking tool call; it burns a full model
|
|
204
|
+
# round-trip (~29s) on every poll. Instead, register a monitor and end the turn:
|
|
205
|
+
monitor({
|
|
206
|
+
description: "CI completion for PR $PR_NUMBER",
|
|
207
|
+
command: "gh pr checks $PR_NUMBER --watch --fail-fast",
|
|
208
|
+
filter: "completed|fail|cancel"
|
|
209
|
+
})
|
|
210
|
+
# → end turn; the monitor's matching line arrives as an injected event.
|
|
211
|
+
# For a single midpoint status peek (at most once), use:
|
|
212
|
+
# gh pr checks "$PR_NUMBER" # one-shot, no --watch
|
|
205
213
|
```
|
|
206
214
|
|
|
207
215
|
**On failure**: Get the failed run logs to understand what broke:
|
|
@@ -243,20 +251,21 @@ fi
|
|
|
243
251
|
|
|
244
252
|
**On issues**: Cubic's review body contains structured issue descriptions. Parse them, determine which are valid (some may be false positives), and fix the valid ones per the iteration discipline below.
|
|
245
253
|
|
|
246
|
-
Cubic reviews are triggered automatically on PR updates. After pushing a fix,
|
|
254
|
+
Cubic reviews are triggered automatically on PR updates. After pushing a fix, subscribe to the new review arriving — never spin a `for _ in $(seq 1 30)` polling loop that burns model round-trips.
|
|
247
255
|
|
|
248
|
-
```
|
|
249
|
-
#
|
|
250
|
-
#
|
|
256
|
+
```
|
|
257
|
+
# Subscribe to a NEW Cubic review after push. The monitor exits when a review
|
|
258
|
+
# newer than PUSH_TIME appears, or times out (quota exhausted → Gate B SKIPPED).
|
|
251
259
|
PUSH_TIME=$(date -u +%Y-%m-%dT%H:%M:%SZ)
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
#
|
|
259
|
-
|
|
260
|
+
monitor({
|
|
261
|
+
description: "Cubic review for PR $PR_NUMBER",
|
|
262
|
+
command: "LATEST=$(gh api repos/${REPO}/pulls/${PR_NUMBER}/reviews --jq '[.[] | select(.user.login == "cubic-dev-ai[bot]")] | last | .submitted_at // empty'); [ -n \"$LATEST\" ] && [ \"$LATEST\" > \"$PUSH_TIME\" ] && echo NEW_REVIEW || echo WAITING",
|
|
263
|
+
filter: "NEW_REVIEW",
|
|
264
|
+
timeout_ms: 600000 # 10 min bound — if no review arrives, Gate B is SKIPPED (quota exhausted)
|
|
265
|
+
})
|
|
266
|
+
# → end turn; if the monitor times out without NEW_REVIEW, treat Gate B as SKIPPED.
|
|
267
|
+
# For a single midpoint peek (at most once), use:
|
|
268
|
+
# gh api "repos/${REPO}/pulls/${PR_NUMBER}/reviews" --jq '[.[] | select(.user.login == "cubic-dev-ai[bot]")] | last | .submitted_at'
|
|
260
269
|
```
|
|
261
270
|
|
|
262
271
|
### Iteration discipline
|
|
@@ -292,13 +301,18 @@ gh pr merge "$PR_NUMBER" --merge --auto --delete-branch
|
|
|
292
301
|
# are green, fall back to a direct merge: gh pr merge "$PR_NUMBER" --merge --delete-branch
|
|
293
302
|
```
|
|
294
303
|
|
|
295
|
-
Then
|
|
304
|
+
Then subscribe to the merge completing — never block a model round-trip on an `until [ ... MERGED ]` polling loop:
|
|
296
305
|
|
|
297
|
-
```
|
|
298
|
-
#
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
306
|
+
```
|
|
307
|
+
# Subscribe to merge completion. The monitor exits when gh pr view returns MERGED.
|
|
308
|
+
monitor({
|
|
309
|
+
description: "Merge completion for PR $PR_NUMBER",
|
|
310
|
+
command: "[ \"$(gh pr view $PR_NUMBER --json state -q .state)\" = \"MERGED\" ] && echo MERGED || echo WAITING",
|
|
311
|
+
filter: "MERGED",
|
|
312
|
+
timeout_ms: 1800000 # 30 min bound for auto-merge to land after all gates pass
|
|
313
|
+
})
|
|
314
|
+
# → end turn; the MERGED event wakes the session for the cleanup step.
|
|
315
|
+
# If the monitor times out, check merge state once: gh pr view "$PR_NUMBER" --json state -q .state
|
|
302
316
|
```
|
|
303
317
|
|
|
304
318
|
If the user opted out of merging, skip the merge but STILL run the cleanup below: the worktree is removed either way.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shared Grok 4.5 / Grok 4.6 Sisyphus prompt.
|
|
3
|
+
*
|
|
4
|
+
* Tuned from field experience with Grok 4.6 (Eric Zakariasson's launch field
|
|
5
|
+
* guide): phrasing intensity ("work very hard") changes nothing, and the
|
|
6
|
+
* model's own taste fills gaps well, so this is deliberately the leanest
|
|
7
|
+
* Sisyphus variant. What does move the outcome:
|
|
8
|
+
* - an explicit verification loop ("keep iterating and verifying until it's
|
|
9
|
+
* production ready") is the single highest-leverage instruction;
|
|
10
|
+
* - a written definition of done, because otherwise the model decides done
|
|
11
|
+
* for you;
|
|
12
|
+
* - a narration split (quiet on small changes, narrate wide-radius work) that
|
|
13
|
+
* matches its information-dense communication style;
|
|
14
|
+
* - an anti-repetition nudge, since it duplicates component code unless asked
|
|
15
|
+
* to break it up.
|
|
16
|
+
*/
|
|
17
|
+
import type { AvailableAgent, AvailableTool, AvailableSkill, AvailableCategory } from "../dynamic-agent-prompt-builder";
|
|
18
|
+
import { categorizeTools } from "../dynamic-agent-prompt-builder";
|
|
19
|
+
export declare function buildGrok4SisyphusPrompt(model: string, availableAgents: AvailableAgent[], availableTools?: AvailableTool[], availableSkills?: AvailableSkill[], availableCategories?: AvailableCategory[], useTaskSystem?: boolean): string;
|
|
20
|
+
export { categorizeTools };
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* - gemini.ts: Corrective overlays for Gemini's aggressive tendencies
|
|
11
11
|
* - gpt-5-4.ts: Native GPT-5.4 prompt with block-structured guidance
|
|
12
12
|
* - gpt-5-5.ts: Native GPT-5.5 prompt with Codex-style sections
|
|
13
|
+
* - grok-4.ts: Shared Grok 4.5/4.6 prompt, verification-loop-centered and lean
|
|
13
14
|
* - kimi-k2-6.ts: Kimi K2.6 native prompt with thinking-mode stop conditions
|
|
14
15
|
* - kimi-k2-7.ts: Kimi K2.7 native prompt, restrained and outcome-first
|
|
15
16
|
* - kimi-k3.ts: Kimi K3 native prompt with explicit anti-overthinking calibration
|
|
@@ -22,6 +23,7 @@ export { buildClaudeFable5SisyphusPrompt } from "./claude-fable-5";
|
|
|
22
23
|
export { buildGeminiToolMandate, buildGeminiDelegationOverride, buildGeminiVerificationOverride, buildGeminiIntentGateEnforcement, buildGeminiToolGuide, buildGeminiToolCallExamples, } from "./gemini";
|
|
23
24
|
export { buildGpt54SisyphusPrompt } from "./gpt-5-4";
|
|
24
25
|
export { buildGpt55SisyphusPrompt } from "./gpt-5-5";
|
|
26
|
+
export { buildGrok4SisyphusPrompt } from "./grok-4";
|
|
25
27
|
export { buildGlm52SisyphusPrompt } from "./glm-5-2";
|
|
26
28
|
export { buildKimiK26SisyphusPrompt } from "./kimi-k2-6";
|
|
27
29
|
export { buildKimiK27SisyphusPrompt } from "./kimi-k2-7";
|
|
@@ -2,4 +2,10 @@ import type { AgentConfig } from "@opencode-ai/sdk";
|
|
|
2
2
|
import type { AgentMode } from "./types";
|
|
3
3
|
export declare function buildGptSisyphusAgentConfig(mode: AgentMode, model: string, prompt: string): AgentConfig;
|
|
4
4
|
export declare function buildGlmSisyphusAgentConfig(mode: AgentMode, model: string, prompt: string): AgentConfig;
|
|
5
|
+
/**
|
|
6
|
+
* Grok 4.5/4.6 are xAI reasoning models: they take a reasoning effort
|
|
7
|
+
* (grok family caps allow low/medium/high) and reject Anthropic-style
|
|
8
|
+
* thinking blocks, so this is the base config plus effort only.
|
|
9
|
+
*/
|
|
10
|
+
export declare function buildGrokSisyphusAgentConfig(mode: AgentMode, model: string, prompt: string): AgentConfig;
|
|
5
11
|
export declare function buildClaudeSisyphusAgentConfig(mode: AgentMode, model: string, prompt: string): AgentConfig;
|
|
@@ -9,7 +9,7 @@ declare const MODE: AgentMode;
|
|
|
9
9
|
* runtime model resolves to a different family than the configured one, the baked
|
|
10
10
|
* body is the wrong family and must be rebuilt (issue #5297/#5316).
|
|
11
11
|
*/
|
|
12
|
-
export type SisyphusPromptFamily = "kimi-k3" | "kimi-k2-7" | "kimi-k2-6" | "gpt-5-5" | "gpt-5-4" | "claude-fable-5" | "claude-opus-5" | "claude-opus-4-8" | "claude-opus-4-7" | "glm-5-2" | "fallback";
|
|
12
|
+
export type SisyphusPromptFamily = "kimi-k3" | "kimi-k2-7" | "kimi-k2-6" | "gpt-5-5" | "gpt-5-4" | "claude-fable-5" | "claude-opus-5" | "claude-opus-4-8" | "claude-opus-4-7" | "glm-5-2" | "grok-4" | "fallback";
|
|
13
13
|
export declare function resolveSisyphusPromptFamily(model: string): SisyphusPromptFamily;
|
|
14
14
|
export declare function createSisyphusAgent(model: string, availableAgents?: AvailableAgent[], availableToolNames?: string[], availableSkills?: AvailableSkill[], availableCategories?: AvailableCategory[], useTaskSystem?: boolean): AgentConfig;
|
|
15
15
|
export declare namespace createSisyphusAgent {
|
package/dist/agents/types.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { AgentConfig } from "@opencode-ai/sdk";
|
|
2
|
-
import { isClaudeFable5Model, isClaudeFableOrMythosModel, isClaudeOpus46Model, isClaudeOpus47Model, isClaudeOpus47OrLaterModel, isClaudeOpus48Model, isClaudeOpus5Model, isGeminiModel, isGlmModel, isGptModel, isKimiK2Model, isKimiK27Model, isKimiK3Model, isMiniMaxModel } from "@oh-my-opencode/model-core";
|
|
3
|
-
export { isClaudeFable5Model, isClaudeFableOrMythosModel, isClaudeOpus46Model, isClaudeOpus47Model, isClaudeOpus47OrLaterModel, isClaudeOpus48Model, isClaudeOpus5Model, isGeminiModel, isGlmModel, isGptModel, isKimiK2Model, isKimiK27Model, isKimiK3Model, isMiniMaxModel, };
|
|
2
|
+
import { isClaudeFable5Model, isClaudeFableOrMythosModel, isClaudeOpus46Model, isClaudeOpus47Model, isClaudeOpus47OrLaterModel, isClaudeOpus48Model, isClaudeOpus5Model, isGeminiModel, isGlmModel, isGptModel, isGrok45Model, isGrok46Model, isKimiK2Model, isKimiK27Model, isKimiK3Model, isMiniMaxModel } from "@oh-my-opencode/model-core";
|
|
3
|
+
export { isClaudeFable5Model, isClaudeFableOrMythosModel, isClaudeOpus46Model, isClaudeOpus47Model, isClaudeOpus47OrLaterModel, isClaudeOpus48Model, isClaudeOpus5Model, isGeminiModel, isGlmModel, isGptModel, isGrok45Model, isGrok46Model, isKimiK2Model, isKimiK27Model, isKimiK3Model, isMiniMaxModel, };
|
|
4
4
|
/**
|
|
5
5
|
* Anthropic Opus 4.7+, Fable, and Mythos models reject thinking.type "enabled";
|
|
6
6
|
* they require adaptive thinking plus an effort, which OpenCode core derives from
|