@dosu/cli 0.3.5 → 0.3.7

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.
Files changed (2) hide show
  1. package/bin/dosu.js +5 -5
  2. package/package.json +1 -1
package/bin/dosu.js CHANGED
@@ -4548,7 +4548,7 @@ async function runTUI() {
4548
4548
  hint: isAuthenticated(cfg) ? "Re-authenticate" : undefined
4549
4549
  },
4550
4550
  {
4551
- label: "Choose Deployment",
4551
+ label: "Choose MCP",
4552
4552
  value: "deployments",
4553
4553
  hint: !isAuthenticated(cfg) ? "Login first" : undefined
4554
4554
  },
@@ -4610,7 +4610,7 @@ async function handleDeployments(cfg) {
4610
4610
  return;
4611
4611
  }
4612
4612
  const selected = await ve({
4613
- message: "Select a deployment",
4613
+ message: "Select an MCP",
4614
4614
  options: deployments.map((d3) => ({
4615
4615
  label: `${d3.name} ${import_picocolors2.default.dim(`(${d3.org_name})`)}`,
4616
4616
  value: d3.deployment_id
@@ -4946,7 +4946,7 @@ ${dim(deployments[0].name)}`);
4946
4946
  return deployments[0];
4947
4947
  }
4948
4948
  const selected = await ve({
4949
- message: "Select a deployment",
4949
+ message: "Select an MCP",
4950
4950
  options: deployments.map((d3) => ({ label: d3.name, value: d3.deployment_id }))
4951
4951
  });
4952
4952
  if (pD(selected))
@@ -5071,7 +5071,7 @@ ${lines}`);
5071
5071
  M2.success("All tools already configured. No changes needed.");
5072
5072
  }
5073
5073
  if (installed.length > 0 || skipped.length > 0) {
5074
- const prompt = mode === MODE_OSS ? `What can I do with the Dosu MCP?` : `Use Dosu to search our team's documentation and answer: what are the main components of our system?`;
5074
+ 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
5075
  M2.message(`Try it out! Paste this into your agent:
5076
5076
 
5077
5077
  ${info(prompt)}`);
@@ -5106,7 +5106,7 @@ init_config();
5106
5106
  init_providers();
5107
5107
 
5108
5108
  // src/version/version.ts
5109
- var VERSION = "0.3.5";
5109
+ var VERSION = "0.3.7";
5110
5110
  function getVersionString() {
5111
5111
  return `v${VERSION}`;
5112
5112
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dosu/cli",
3
- "version": "0.3.5",
3
+ "version": "0.3.7",
4
4
  "type": "module",
5
5
  "description": "Dosu CLI - Manage MCP servers for AI tools",
6
6
  "license": "MIT",