opendevbrowser 0.0.21 → 0.0.23
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 +13 -3
- package/dist/{chunk-4KVXCXV3.js → chunk-2MG7BRPF.js} +521 -84
- package/dist/{chunk-4KVXCXV3.js.map → chunk-2MG7BRPF.js.map} +1 -1
- package/dist/chunk-3ILXPKSJ.js +86 -0
- package/dist/chunk-3ILXPKSJ.js.map +1 -0
- package/dist/{chunk-ZE2E7ZGH.js → chunk-K2TEHJCV.js} +240 -33
- package/dist/chunk-K2TEHJCV.js.map +1 -0
- package/dist/chunk-QVWOPIZJ.js +612 -0
- package/dist/chunk-QVWOPIZJ.js.map +1 -0
- package/dist/{chunk-3VA6XR25.js → chunk-STGGGVYT.js} +23 -100
- package/dist/chunk-STGGGVYT.js.map +1 -0
- package/dist/cli/commands/macro-resolve.d.ts.map +1 -1
- package/dist/cli/commands/uninstall.d.ts +1 -0
- package/dist/cli/commands/uninstall.d.ts.map +1 -1
- package/dist/cli/daemon-commands.d.ts.map +1 -1
- package/dist/cli/help.d.ts.map +1 -1
- package/dist/cli/index.js +298 -618
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/installers/postinstall-skill-sync.d.ts +15 -0
- package/dist/cli/installers/postinstall-skill-sync.d.ts.map +1 -0
- package/dist/cli/installers/postinstall-skill-sync.js +48 -0
- package/dist/cli/installers/postinstall-skill-sync.js.map +1 -0
- package/dist/cli/installers/skills.d.ts +9 -14
- package/dist/cli/installers/skills.d.ts.map +1 -1
- package/dist/cli/skill-lifecycle.d.ts +26 -0
- package/dist/cli/skill-lifecycle.d.ts.map +1 -0
- package/dist/cli/update-skill-modes.d.ts +3 -0
- package/dist/cli/update-skill-modes.d.ts.map +1 -0
- package/dist/cli/utils/workflow-message.d.ts +1 -0
- package/dist/cli/utils/workflow-message.d.ts.map +1 -1
- package/dist/index.js +25 -9
- package/dist/index.js.map +1 -1
- package/dist/opendevbrowser.js +25 -9
- package/dist/opendevbrowser.js.map +1 -1
- package/dist/providers/social/platform.d.ts.map +1 -1
- package/dist/providers/social/search-quality.d.ts.map +1 -1
- package/dist/providers/social/youtube.d.ts.map +1 -1
- package/dist/providers/workflow-handoff.d.ts +27 -3
- package/dist/providers/workflow-handoff.d.ts.map +1 -1
- package/dist/providers/workflows.d.ts +1 -0
- package/dist/providers/workflows.d.ts.map +1 -1
- package/dist/{providers-ZIVHHH4F.js → providers-6YVHKTOJ.js} +2 -2
- package/dist/public-surface/generated-manifest.d.ts +162 -4
- package/dist/public-surface/generated-manifest.d.ts.map +1 -1
- package/dist/public-surface/source.d.ts +12 -6
- package/dist/public-surface/source.d.ts.map +1 -1
- package/dist/skills/skill-loader.js +2 -1
- package/dist/tools/macro_resolve.d.ts.map +1 -1
- package/extension/manifest.json +1 -1
- package/package.json +6 -4
- package/scripts/postinstall-sync-skills.mjs +33 -0
- package/dist/chunk-3VA6XR25.js.map +0 -1
- package/dist/chunk-ZE2E7ZGH.js.map +0 -1
- /package/dist/{providers-ZIVHHH4F.js.map → providers-6YVHKTOJ.js.map} +0 -0
package/dist/opendevbrowser.js
CHANGED
|
@@ -22,16 +22,18 @@ import {
|
|
|
22
22
|
resolveBundledProviderRuntime,
|
|
23
23
|
resolveSessionRelayRoute,
|
|
24
24
|
startDaemon
|
|
25
|
-
} from "./chunk-
|
|
26
|
-
import "./chunk-
|
|
25
|
+
} from "./chunk-2MG7BRPF.js";
|
|
26
|
+
import "./chunk-STGGGVYT.js";
|
|
27
|
+
import "./chunk-3ILXPKSJ.js";
|
|
27
28
|
import "./chunk-TBUCZX4A.js";
|
|
28
29
|
import "./chunk-Y2KL55OG.js";
|
|
29
30
|
import {
|
|
30
31
|
CHALLENGE_AUTOMATION_MODES,
|
|
31
32
|
buildBlockerArtifacts,
|
|
33
|
+
buildMacroResolveSuccessHandoff,
|
|
32
34
|
classifyBlockerSignal,
|
|
33
35
|
createRequestId
|
|
34
|
-
} from "./chunk-
|
|
36
|
+
} from "./chunk-K2TEHJCV.js";
|
|
35
37
|
import "./chunk-FUSXMW3G.js";
|
|
36
38
|
|
|
37
39
|
// src/cli/remote-manager.ts
|
|
@@ -2696,10 +2698,17 @@ function createMacroResolveTool(deps) {
|
|
|
2696
2698
|
resolution = parseFallbackMacro(args.expression, args.defaultProvider);
|
|
2697
2699
|
}
|
|
2698
2700
|
if (!args.execute) {
|
|
2701
|
+
const handoff2 = buildMacroResolveSuccessHandoff({
|
|
2702
|
+
expression: args.expression,
|
|
2703
|
+
defaultProvider: args.defaultProvider,
|
|
2704
|
+
execute: false,
|
|
2705
|
+
blocked: false
|
|
2706
|
+
});
|
|
2699
2707
|
return ok({
|
|
2700
2708
|
runtime: resolvedRuntime,
|
|
2701
2709
|
resolution,
|
|
2702
|
-
...catalog ? { catalog } : {}
|
|
2710
|
+
...catalog ? { catalog } : {},
|
|
2711
|
+
...handoff2
|
|
2703
2712
|
});
|
|
2704
2713
|
}
|
|
2705
2714
|
const providerRuntime = await resolveProviderRuntime(deps);
|
|
@@ -2707,11 +2716,18 @@ function createMacroResolveTool(deps) {
|
|
|
2707
2716
|
resolution,
|
|
2708
2717
|
runtime: providerRuntime
|
|
2709
2718
|
});
|
|
2719
|
+
const handoff = buildMacroResolveSuccessHandoff({
|
|
2720
|
+
expression: args.expression,
|
|
2721
|
+
defaultProvider: args.defaultProvider,
|
|
2722
|
+
execute: true,
|
|
2723
|
+
blocked: Boolean(execution.meta.blocker)
|
|
2724
|
+
});
|
|
2710
2725
|
return ok({
|
|
2711
2726
|
runtime: resolvedRuntime,
|
|
2712
2727
|
resolution,
|
|
2713
2728
|
...catalog ? { catalog } : {},
|
|
2714
|
-
execution
|
|
2729
|
+
execution,
|
|
2730
|
+
...handoff
|
|
2715
2731
|
});
|
|
2716
2732
|
} catch (error) {
|
|
2717
2733
|
return failure(serializeError(error).message, "macro_resolve_failed");
|
|
@@ -3152,7 +3168,7 @@ function createResearchRunTool(deps) {
|
|
|
3152
3168
|
async execute(args) {
|
|
3153
3169
|
try {
|
|
3154
3170
|
const runtime = await resolveProviderRuntime(deps);
|
|
3155
|
-
const { runResearchWorkflow } = await import("./providers-
|
|
3171
|
+
const { runResearchWorkflow } = await import("./providers-6YVHKTOJ.js");
|
|
3156
3172
|
const result = await runResearchWorkflow(runtime, {
|
|
3157
3173
|
topic: args.topic,
|
|
3158
3174
|
days: args.days,
|
|
@@ -3203,7 +3219,7 @@ function createShoppingRunTool(deps) {
|
|
|
3203
3219
|
async execute(args) {
|
|
3204
3220
|
try {
|
|
3205
3221
|
const runtime = await resolveProviderRuntime(deps);
|
|
3206
|
-
const { runShoppingWorkflow } = await import("./providers-
|
|
3222
|
+
const { runShoppingWorkflow } = await import("./providers-6YVHKTOJ.js");
|
|
3207
3223
|
const result = await runShoppingWorkflow(runtime, {
|
|
3208
3224
|
query: args.query,
|
|
3209
3225
|
providers: args.providers,
|
|
@@ -3272,7 +3288,7 @@ function createProductVideoRunTool(deps) {
|
|
|
3272
3288
|
async execute(args) {
|
|
3273
3289
|
try {
|
|
3274
3290
|
const runtime = await resolveProviderRuntime(deps);
|
|
3275
|
-
const { runProductVideoWorkflow } = await import("./providers-
|
|
3291
|
+
const { runProductVideoWorkflow } = await import("./providers-6YVHKTOJ.js");
|
|
3276
3292
|
const includeScreenshots = args.include_screenshots ?? true;
|
|
3277
3293
|
const result = await runProductVideoWorkflow(runtime, {
|
|
3278
3294
|
product_url: args.product_url,
|
|
@@ -3324,7 +3340,7 @@ function createInspiredesignRunTool(deps) {
|
|
|
3324
3340
|
async execute(args) {
|
|
3325
3341
|
try {
|
|
3326
3342
|
const runtime = await resolveProviderRuntime(deps);
|
|
3327
|
-
const { runInspiredesignWorkflow } = await import("./providers-
|
|
3343
|
+
const { runInspiredesignWorkflow } = await import("./providers-6YVHKTOJ.js");
|
|
3328
3344
|
const captureMode = args.captureMode ?? "off";
|
|
3329
3345
|
const cookieSource = deps.config.get().providers?.cookieSource;
|
|
3330
3346
|
const result = await runInspiredesignWorkflow(runtime, {
|