valent-pipeline 0.3.2 → 0.3.3
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/package.json +1 -1
- package/src/commands/init.js +15 -3
package/package.json
CHANGED
package/src/commands/init.js
CHANGED
|
@@ -196,9 +196,21 @@ export async function init(options = {}) {
|
|
|
196
196
|
console.log(` Wrote .valent-pipeline/.valent-version (${pkg.version})`);
|
|
197
197
|
|
|
198
198
|
console.log('\nPipeline initialized.\n');
|
|
199
|
-
console.log('
|
|
200
|
-
|
|
201
|
-
|
|
199
|
+
console.log('Get started:\n');
|
|
200
|
+
if (providers.includes('claude-code')) {
|
|
201
|
+
console.log(' Claude Code');
|
|
202
|
+
console.log(' /valent-help — Learn how the pipeline works');
|
|
203
|
+
console.log(' /valent-setup-backlog — Import stories and initialize the knowledge base');
|
|
204
|
+
console.log(' /valent-run-story — Run a story through the pipeline');
|
|
205
|
+
console.log('');
|
|
206
|
+
}
|
|
207
|
+
if (providers.includes('codex')) {
|
|
208
|
+
console.log(' Codex');
|
|
209
|
+
console.log(' $valent-help — Learn how the pipeline works');
|
|
210
|
+
console.log(' $valent-setup-backlog — Import stories and initialize the knowledge base');
|
|
211
|
+
console.log(' $valent-run-story — Run a story through the pipeline');
|
|
212
|
+
console.log('');
|
|
213
|
+
}
|
|
202
214
|
}
|
|
203
215
|
|
|
204
216
|
async function runWizard() {
|