oh-my-opencode-unguarded 3.10.13 → 3.10.15
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 +1 -1
- package/dist/index.js +26 -20
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -9495,7 +9495,7 @@ var {
|
|
|
9495
9495
|
// package.json
|
|
9496
9496
|
var package_default = {
|
|
9497
9497
|
name: "oh-my-opencode-unguarded",
|
|
9498
|
-
version: "3.10.
|
|
9498
|
+
version: "3.10.15",
|
|
9499
9499
|
description: "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
|
|
9500
9500
|
main: "dist/index.js",
|
|
9501
9501
|
types: "dist/index.d.ts",
|
package/dist/index.js
CHANGED
|
@@ -56877,7 +56877,8 @@ async function executeBackgroundContinuation(args, ctx, executorCtx, parentConte
|
|
|
56877
56877
|
description: args.description,
|
|
56878
56878
|
run_in_background: args.run_in_background,
|
|
56879
56879
|
sessionId: task.sessionID,
|
|
56880
|
-
command: args.command
|
|
56880
|
+
command: args.command,
|
|
56881
|
+
model: task.model ? { providerID: task.model.providerID, modelID: task.model.modelID } : undefined
|
|
56881
56882
|
}
|
|
56882
56883
|
};
|
|
56883
56884
|
await ctx.metadata?.(bgContMeta);
|
|
@@ -57121,22 +57122,7 @@ async function executeSyncContinuation(args, ctx, executorCtx, deps = syncContin
|
|
|
57121
57122
|
isBackground: false
|
|
57122
57123
|
});
|
|
57123
57124
|
}
|
|
57124
|
-
|
|
57125
|
-
title: `Continue: ${args.description}`,
|
|
57126
|
-
metadata: {
|
|
57127
|
-
prompt: args.prompt,
|
|
57128
|
-
load_skills: args.load_skills,
|
|
57129
|
-
description: args.description,
|
|
57130
|
-
run_in_background: args.run_in_background,
|
|
57131
|
-
sessionId: args.session_id,
|
|
57132
|
-
sync: true,
|
|
57133
|
-
command: args.command
|
|
57134
|
-
}
|
|
57135
|
-
};
|
|
57136
|
-
await ctx.metadata?.(syncContMeta);
|
|
57137
|
-
if (ctx.callID) {
|
|
57138
|
-
storeToolMetadata(ctx.sessionID, ctx.callID, syncContMeta);
|
|
57139
|
-
}
|
|
57125
|
+
let syncContMeta;
|
|
57140
57126
|
let resumeAgent;
|
|
57141
57127
|
let resumeModel;
|
|
57142
57128
|
let resumeVariant;
|
|
@@ -57162,6 +57148,23 @@ async function executeSyncContinuation(args, ctx, executorCtx, deps = syncContin
|
|
|
57162
57148
|
resumeModel = resumeMessage?.model?.providerID && resumeMessage?.model?.modelID ? { providerID: resumeMessage.model.providerID, modelID: resumeMessage.model.modelID } : undefined;
|
|
57163
57149
|
resumeVariant = resumeMessage?.model?.variant;
|
|
57164
57150
|
}
|
|
57151
|
+
syncContMeta = {
|
|
57152
|
+
title: `Continue: ${args.description}`,
|
|
57153
|
+
metadata: {
|
|
57154
|
+
prompt: args.prompt,
|
|
57155
|
+
load_skills: args.load_skills,
|
|
57156
|
+
description: args.description,
|
|
57157
|
+
run_in_background: args.run_in_background,
|
|
57158
|
+
sessionId: args.session_id,
|
|
57159
|
+
sync: true,
|
|
57160
|
+
command: args.command,
|
|
57161
|
+
model: resumeModel
|
|
57162
|
+
}
|
|
57163
|
+
};
|
|
57164
|
+
await ctx.metadata?.(syncContMeta);
|
|
57165
|
+
if (ctx.callID) {
|
|
57166
|
+
storeToolMetadata(ctx.sessionID, ctx.callID, syncContMeta);
|
|
57167
|
+
}
|
|
57165
57168
|
const allowTask = isPlanFamily(resumeAgent);
|
|
57166
57169
|
const tools = {
|
|
57167
57170
|
...resumeAgent ? getAgentToolRestrictions(resumeAgent) : {},
|
|
@@ -57270,7 +57273,8 @@ Task ID: ${task.id}`;
|
|
|
57270
57273
|
description: args.description,
|
|
57271
57274
|
run_in_background: args.run_in_background,
|
|
57272
57275
|
sessionId: sessionID,
|
|
57273
|
-
command: args.command
|
|
57276
|
+
command: args.command,
|
|
57277
|
+
model: categoryModel ? { providerID: categoryModel.providerID, modelID: categoryModel.modelID } : undefined
|
|
57274
57278
|
}
|
|
57275
57279
|
};
|
|
57276
57280
|
await ctx.metadata?.(bgTaskMeta);
|
|
@@ -57456,7 +57460,8 @@ Task ID: ${task.id}`;
|
|
|
57456
57460
|
description: args.description,
|
|
57457
57461
|
run_in_background: args.run_in_background,
|
|
57458
57462
|
sessionId: sessionId ?? "pending",
|
|
57459
|
-
command: args.command
|
|
57463
|
+
command: args.command,
|
|
57464
|
+
model: categoryModel ? { providerID: categoryModel.providerID, modelID: categoryModel.modelID } : undefined
|
|
57460
57465
|
}
|
|
57461
57466
|
};
|
|
57462
57467
|
await ctx.metadata?.(unstableMeta);
|
|
@@ -57644,7 +57649,8 @@ async function executeSyncTask(args, ctx, executorCtx, parentContext, agentToUse
|
|
|
57644
57649
|
run_in_background: args.run_in_background,
|
|
57645
57650
|
sessionId: sessionID,
|
|
57646
57651
|
sync: true,
|
|
57647
|
-
command: args.command
|
|
57652
|
+
command: args.command,
|
|
57653
|
+
model: categoryModel ? { providerID: categoryModel.providerID, modelID: categoryModel.modelID } : undefined
|
|
57648
57654
|
}
|
|
57649
57655
|
};
|
|
57650
57656
|
await ctx.metadata?.(syncTaskMeta);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-opencode-unguarded",
|
|
3
|
-
"version": "3.10.
|
|
3
|
+
"version": "3.10.15",
|
|
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",
|