fix: remove likely next step
This commit is contained in:
parent
39fb2467ce
commit
04775ad91f
3 changed files with 3 additions and 7 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -39,3 +39,4 @@ dist/
|
|||
.gsd
|
||||
.artifacts/
|
||||
AGENTS.md
|
||||
docs/
|
||||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "gsd-pi",
|
||||
"version": "0.1.4",
|
||||
"version": "0.1.5",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "gsd-pi",
|
||||
"version": "0.1.4",
|
||||
"version": "0.1.5",
|
||||
"hasInstallScript": true,
|
||||
"license": "BUSL-1.1",
|
||||
"dependencies": {
|
||||
|
|
|
|||
|
|
@ -30,7 +30,6 @@ import {
|
|||
filterDoctorIssues,
|
||||
} from "./doctor.js";
|
||||
import { loadPrompt } from "./prompt-loader.js";
|
||||
import { getSuggestedNextCommands } from "./workspace-index.ts";
|
||||
|
||||
function dispatchDoctorHeal(pi: ExtensionAPI, scope: string | undefined, reportText: string, structuredIssues: string): void {
|
||||
const workflowPath = process.env.GSD_WORKFLOW_PATH ?? join(process.env.HOME ?? "~", ".pi", "GSD-WORKFLOW.md");
|
||||
|
|
@ -139,10 +138,6 @@ export function registerGSDCommand(pi: ExtensionAPI): void {
|
|||
|
||||
if (trimmed === "") {
|
||||
await showSmartEntry(ctx, pi, process.cwd());
|
||||
const next = await getSuggestedNextCommands(process.cwd());
|
||||
if (next.length > 0) {
|
||||
ctx.ui.notify(`Likely next: ${next.join(" · ")}`, "info");
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue