@devramps/mcp-server 0.1.6 → 0.1.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.
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -388,7 +388,7 @@ Check your internet connection and try again. If the issue persists, run \`npx @
|
|
|
388
388
|
lines.push(" - Commit the .devramps/ directory and push to deploy");
|
|
389
389
|
lines.push("");
|
|
390
390
|
lines.push(
|
|
391
|
-
"After deploying, you can use the `list-pipelines` and `get-pipeline-state` tools to monitor your pipeline, or ask the agent to debug any failing steps. View your pipelines in the dashboard: https://
|
|
391
|
+
"After deploying, you can use the `list-pipelines` and `get-pipeline-state` tools to monitor your pipeline, or ask the agent to debug any failing steps. View your pipelines in the dashboard: https://devramps.com/pipelines"
|
|
392
392
|
);
|
|
393
393
|
}
|
|
394
394
|
return {
|
|
@@ -514,7 +514,7 @@ async function scaffoldPipeline(args) {
|
|
|
514
514
|
"",
|
|
515
515
|
"After deploying, you can ask the agent to check on your pipeline status,",
|
|
516
516
|
"debug failing steps, or retry failed stages. View your pipelines at:",
|
|
517
|
-
"https://
|
|
517
|
+
"https://devramps.com/pipelines"
|
|
518
518
|
];
|
|
519
519
|
return {
|
|
520
520
|
content: [{ type: "text", text: lines.join("\n") }]
|
|
@@ -641,7 +641,7 @@ ${err instanceof Error ? err.message : String(err)}`
|
|
|
641
641
|
"",
|
|
642
642
|
"After deploying, you can ask the agent to check on your pipeline status,",
|
|
643
643
|
"debug failing steps, or retry failed stages. View your pipelines at:",
|
|
644
|
-
"https://
|
|
644
|
+
"https://devramps.com/pipelines"
|
|
645
645
|
];
|
|
646
646
|
return {
|
|
647
647
|
content: [{ type: "text", text: lines.join("\n") }]
|
|
@@ -2371,7 +2371,7 @@ After everything is generated and validated, tell the user:
|
|
|
2371
2371
|
2. Run \`npx @devramps/cli bootstrap\` in the project root to bootstrap the pipeline
|
|
2372
2372
|
3. Commit everything and push to the tracked branch (default: \`main\`)
|
|
2373
2373
|
4. The pipeline will start running automatically on push
|
|
2374
|
-
5. View the pipeline in the dashboard: https://
|
|
2374
|
+
5. View the pipeline in the dashboard: https://devramps.com/pipelines
|
|
2375
2375
|
|
|
2376
2376
|
Then ask: "Would you like me to check on your pipeline status after you push? I can monitor the deployment and debug any failing steps."
|
|
2377
2377
|
|