oh-my-opencode 3.0.0-beta.14 → 3.0.0-beta.16
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/dist/cli/index.js +8 -8
- package/dist/index.js +5 -5
- package/package.json +8 -8
package/dist/cli/index.js
CHANGED
|
@@ -7881,7 +7881,7 @@ var import_picocolors2 = __toESM(require_picocolors(), 1);
|
|
|
7881
7881
|
// package.json
|
|
7882
7882
|
var package_default = {
|
|
7883
7883
|
name: "oh-my-opencode",
|
|
7884
|
-
version: "3.0.0-beta.
|
|
7884
|
+
version: "3.0.0-beta.16",
|
|
7885
7885
|
description: "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
|
|
7886
7886
|
main: "dist/index.js",
|
|
7887
7887
|
types: "dist/index.d.ts",
|
|
@@ -7954,13 +7954,13 @@ var package_default = {
|
|
|
7954
7954
|
typescript: "^5.7.3"
|
|
7955
7955
|
},
|
|
7956
7956
|
optionalDependencies: {
|
|
7957
|
-
"oh-my-opencode-darwin-arm64": "3.0.0-beta.
|
|
7958
|
-
"oh-my-opencode-darwin-x64": "3.0.0-beta.
|
|
7959
|
-
"oh-my-opencode-linux-arm64": "3.0.0-beta.
|
|
7960
|
-
"oh-my-opencode-linux-arm64-musl": "3.0.0-beta.
|
|
7961
|
-
"oh-my-opencode-linux-x64": "3.0.0-beta.
|
|
7962
|
-
"oh-my-opencode-linux-x64-musl": "3.0.0-beta.
|
|
7963
|
-
"oh-my-opencode-windows-x64": "3.0.0-beta.
|
|
7957
|
+
"oh-my-opencode-darwin-arm64": "3.0.0-beta.16",
|
|
7958
|
+
"oh-my-opencode-darwin-x64": "3.0.0-beta.16",
|
|
7959
|
+
"oh-my-opencode-linux-arm64": "3.0.0-beta.16",
|
|
7960
|
+
"oh-my-opencode-linux-arm64-musl": "3.0.0-beta.16",
|
|
7961
|
+
"oh-my-opencode-linux-x64": "3.0.0-beta.16",
|
|
7962
|
+
"oh-my-opencode-linux-x64-musl": "3.0.0-beta.16",
|
|
7963
|
+
"oh-my-opencode-windows-x64": "3.0.0-beta.16"
|
|
7964
7964
|
},
|
|
7965
7965
|
trustedDependencies: [
|
|
7966
7966
|
"@ast-grep/cli",
|
package/dist/index.js
CHANGED
|
@@ -4758,7 +4758,7 @@ var init_agent_tool_restrictions = __esm(() => {
|
|
|
4758
4758
|
"multimodal-looker": {
|
|
4759
4759
|
read: true
|
|
4760
4760
|
},
|
|
4761
|
-
"
|
|
4761
|
+
"sisyphus-junior": {
|
|
4762
4762
|
task: false,
|
|
4763
4763
|
delegate_task: false
|
|
4764
4764
|
}
|
|
@@ -22892,7 +22892,7 @@ function createStartWorkHook(ctx) {
|
|
|
22892
22892
|
log(`[${HOOK_NAME5}] Processing start-work command`, {
|
|
22893
22893
|
sessionID: input.sessionID
|
|
22894
22894
|
});
|
|
22895
|
-
updateSessionAgent(input.sessionID, "
|
|
22895
|
+
updateSessionAgent(input.sessionID, "atlas");
|
|
22896
22896
|
const existingState = readBoulderState(ctx.directory);
|
|
22897
22897
|
const sessionId = input.sessionID;
|
|
22898
22898
|
const timestamp2 = new Date().toISOString();
|
|
@@ -23468,7 +23468,7 @@ function createAtlasHook(ctx, options) {
|
|
|
23468
23468
|
await ctx.client.session.prompt({
|
|
23469
23469
|
path: { id: sessionID },
|
|
23470
23470
|
body: {
|
|
23471
|
-
agent: "
|
|
23471
|
+
agent: "atlas",
|
|
23472
23472
|
...model !== undefined ? { model } : {},
|
|
23473
23473
|
parts: [{ type: "text", text: prompt }]
|
|
23474
23474
|
},
|
|
@@ -41332,7 +41332,7 @@ init_shared();
|
|
|
41332
41332
|
init_model_availability();
|
|
41333
41333
|
init_model_resolver();
|
|
41334
41334
|
init_model_requirements();
|
|
41335
|
-
var SISYPHUS_JUNIOR_AGENT = "
|
|
41335
|
+
var SISYPHUS_JUNIOR_AGENT = "sisyphus-junior";
|
|
41336
41336
|
function parseModelString(model) {
|
|
41337
41337
|
const parts = model.split("/");
|
|
41338
41338
|
if (parts.length >= 2) {
|
|
@@ -51848,7 +51848,7 @@ ${REFACTOR_TEMPLATE}
|
|
|
51848
51848
|
},
|
|
51849
51849
|
"start-work": {
|
|
51850
51850
|
description: "(builtin) Start Sisyphus work session from Prometheus plan",
|
|
51851
|
-
agent: "
|
|
51851
|
+
agent: "atlas",
|
|
51852
51852
|
template: `<command-instruction>
|
|
51853
51853
|
${START_WORK_TEMPLATE}
|
|
51854
51854
|
</command-instruction>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-opencode",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.16",
|
|
4
4
|
"description": "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -73,13 +73,13 @@
|
|
|
73
73
|
"typescript": "^5.7.3"
|
|
74
74
|
},
|
|
75
75
|
"optionalDependencies": {
|
|
76
|
-
"oh-my-opencode-darwin-arm64": "3.0.0-beta.
|
|
77
|
-
"oh-my-opencode-darwin-x64": "3.0.0-beta.
|
|
78
|
-
"oh-my-opencode-linux-arm64": "3.0.0-beta.
|
|
79
|
-
"oh-my-opencode-linux-arm64-musl": "3.0.0-beta.
|
|
80
|
-
"oh-my-opencode-linux-x64": "3.0.0-beta.
|
|
81
|
-
"oh-my-opencode-linux-x64-musl": "3.0.0-beta.
|
|
82
|
-
"oh-my-opencode-windows-x64": "3.0.0-beta.
|
|
76
|
+
"oh-my-opencode-darwin-arm64": "3.0.0-beta.16",
|
|
77
|
+
"oh-my-opencode-darwin-x64": "3.0.0-beta.16",
|
|
78
|
+
"oh-my-opencode-linux-arm64": "3.0.0-beta.16",
|
|
79
|
+
"oh-my-opencode-linux-arm64-musl": "3.0.0-beta.16",
|
|
80
|
+
"oh-my-opencode-linux-x64": "3.0.0-beta.16",
|
|
81
|
+
"oh-my-opencode-linux-x64-musl": "3.0.0-beta.16",
|
|
82
|
+
"oh-my-opencode-windows-x64": "3.0.0-beta.16"
|
|
83
83
|
},
|
|
84
84
|
"trustedDependencies": [
|
|
85
85
|
"@ast-grep/cli",
|