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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valent-pipeline",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "v3 multi-agent AI pipeline for software development lifecycle",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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(' /valent-help — Learn how the pipeline works');
200
- console.log(' /valent-setup-backlog — Import stories and initialize the knowledge base');
201
- console.log('');
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() {