speccrew 0.5.9 → 0.5.10
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/.speccrew/agents/speccrew-feature-designer.md +67 -0
- package/.speccrew/agents/speccrew-product-manager.md +69 -0
- package/.speccrew/agents/speccrew-system-designer.md +77 -0
- package/.speccrew/agents/speccrew-system-developer.md +80 -0
- package/.speccrew/agents/speccrew-task-worker.md +34 -0
- package/.speccrew/agents/speccrew-team-leader.md +84 -0
- package/.speccrew/agents/speccrew-test-manager.md +27 -0
- package/docs/GETTING-STARTED.en.md +97 -22
- package/docs/GETTING-STARTED.md +97 -22
- package/docs/GETTING-STARTED.zh-TW.md +213 -138
- package/lib/commands/init.js +18 -0
- package/package.json +1 -1
package/lib/commands/init.js
CHANGED
|
@@ -398,6 +398,24 @@ async function runInit(options = {}) {
|
|
|
398
398
|
log(` Docs: ${stats.docsInstalled} files installed`);
|
|
399
399
|
|
|
400
400
|
log(`\nRun 'speccrew doctor' to verify your installation.`);
|
|
401
|
+
|
|
402
|
+
console.log('');
|
|
403
|
+
console.log(' What to do next:');
|
|
404
|
+
console.log('');
|
|
405
|
+
console.log(' 1. Open your project in your IDE (Qoder/Cursor/Claude Code)');
|
|
406
|
+
console.log('');
|
|
407
|
+
console.log(' 2. Initialize knowledge base (recommended for existing projects):');
|
|
408
|
+
console.log(' → Tell @speccrew-team-leader: "Initialize technical knowledge base"');
|
|
409
|
+
console.log(' → Then: "Initialize business knowledge base"');
|
|
410
|
+
console.log('');
|
|
411
|
+
console.log(' 3. Start your first requirement:');
|
|
412
|
+
console.log(' → Tell @speccrew-product-manager: "I have a new requirement: [describe it]"');
|
|
413
|
+
console.log('');
|
|
414
|
+
console.log(' Need help? → Tell @speccrew-team-leader: "Help me get started"');
|
|
415
|
+
console.log(' Troubleshooting? → Run: speccrew doctor');
|
|
416
|
+
console.log('');
|
|
417
|
+
console.log(' Documentation: speccrew-workspace/docs/GETTING-STARTED.md');
|
|
418
|
+
console.log('');
|
|
401
419
|
}
|
|
402
420
|
|
|
403
421
|
return {
|