@dosu/cli 0.3.6 → 0.3.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/bin/dosu.js +4 -2
- package/package.json +1 -1
package/bin/dosu.js
CHANGED
|
@@ -4775,6 +4775,7 @@ async function runSetup(opts = {}) {
|
|
|
4775
4775
|
const d3 = await stepResolveDeployment(apiClient, opts.deploymentID);
|
|
4776
4776
|
if (!d3)
|
|
4777
4777
|
return;
|
|
4778
|
+
cfg.mode = undefined;
|
|
4778
4779
|
cfg.deployment_id = d3.deployment_id;
|
|
4779
4780
|
cfg.deployment_name = d3.name;
|
|
4780
4781
|
} else if (cfg.mode === MODE_OSS) {
|
|
@@ -4790,6 +4791,7 @@ async function runSetup(opts = {}) {
|
|
|
4790
4791
|
const d3 = await stepSelectDeployment(apiClient, org);
|
|
4791
4792
|
if (!d3)
|
|
4792
4793
|
return;
|
|
4794
|
+
cfg.mode = undefined;
|
|
4793
4795
|
cfg.deployment_id = d3.deployment_id;
|
|
4794
4796
|
cfg.deployment_name = d3.name;
|
|
4795
4797
|
}
|
|
@@ -5071,7 +5073,7 @@ ${lines}`);
|
|
|
5071
5073
|
M2.success("All tools already configured. No changes needed.");
|
|
5072
5074
|
}
|
|
5073
5075
|
if (installed.length > 0 || skipped.length > 0) {
|
|
5074
|
-
const prompt = mode === MODE_OSS ? `What can
|
|
5076
|
+
const prompt = mode === MODE_OSS ? `What can Dosu MCP help me do in this repo? Briefly explain, then tell me the main components, request flow, and where to start.` : `I'm new to this codebase. Give me a 5-minute mental model: main services, request flow, where to start.`;
|
|
5075
5077
|
M2.message(`Try it out! Paste this into your agent:
|
|
5076
5078
|
|
|
5077
5079
|
${info(prompt)}`);
|
|
@@ -5106,7 +5108,7 @@ init_config();
|
|
|
5106
5108
|
init_providers();
|
|
5107
5109
|
|
|
5108
5110
|
// src/version/version.ts
|
|
5109
|
-
var VERSION = "0.3.
|
|
5111
|
+
var VERSION = "0.3.8";
|
|
5110
5112
|
function getVersionString() {
|
|
5111
5113
|
return `v${VERSION}`;
|
|
5112
5114
|
}
|