@openeryc/pi-coding-agent 0.75.20 → 0.75.22
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/CHANGELOG.md +4 -0
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +3 -0
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/dist/package-manager-cli.d.ts.map +1 -1
- package/dist/package-manager-cli.js +6 -3
- package/dist/package-manager-cli.js.map +1 -1
- package/dist/utils/version-check.d.ts.map +1 -1
- package/dist/utils/version-check.js +20 -19
- package/dist/utils/version-check.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package-lock.json +2 -2
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/npm-shrinkwrap.json +12 -12
- package/package.json +4 -4
|
@@ -2005,7 +2005,10 @@ export class InteractiveMode {
|
|
|
2005
2005
|
return;
|
|
2006
2006
|
}
|
|
2007
2007
|
if (text === "/goal" || text.startsWith("/goal ")) {
|
|
2008
|
+
const goal = text.replace(/^\/goal\s*/, "").trim();
|
|
2008
2009
|
this.handleGoalCommand(text);
|
|
2010
|
+
if (goal)
|
|
2011
|
+
text = goal; // Submit goal text as the user message, not /goal prefix
|
|
2009
2012
|
// Don't return — let the normal submit flow run so the agent starts working
|
|
2010
2013
|
}
|
|
2011
2014
|
if (text === "/session") {
|