@lebtiga/sonic-agent 1.0.1 → 1.0.2
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/sonic.js +3 -5
- package/package.json +1 -1
package/bin/sonic.js
CHANGED
|
@@ -132,11 +132,9 @@ async function cmdStart() {
|
|
|
132
132
|
if (hasPassthrough) {
|
|
133
133
|
claudeArgs.push(...passthrough);
|
|
134
134
|
} else if (!skipWelcome) {
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
'ask me what client or project I want to build for today.'
|
|
139
|
-
);
|
|
135
|
+
// Auto-invoke the namespaced help slash command on launch.
|
|
136
|
+
// Claude Code recognizes the leading slash as a command, not a prompt.
|
|
137
|
+
claudeArgs.push('/sonic-agent:sonic-help');
|
|
140
138
|
}
|
|
141
139
|
|
|
142
140
|
const child = spawn(
|
package/package.json
CHANGED