orchestrix-yuri 4.6.6 → 4.6.7
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/lib/gateway/router.js +4 -5
- package/package.json +1 -1
package/lib/gateway/router.js
CHANGED
|
@@ -303,7 +303,7 @@ class Router {
|
|
|
303
303
|
async _handlePhaseCommand(phase, msg) {
|
|
304
304
|
const projectRoot = engine.resolveProjectRoot();
|
|
305
305
|
if (!projectRoot) {
|
|
306
|
-
return { text: '❌ No active project found.
|
|
306
|
+
return { text: '❌ No active project found. Run `/yuri *create` in your terminal first.' };
|
|
307
307
|
}
|
|
308
308
|
|
|
309
309
|
let response;
|
|
@@ -446,7 +446,7 @@ Reply with ONLY one word: small, medium, or large. Nothing else.`;
|
|
|
446
446
|
}
|
|
447
447
|
|
|
448
448
|
if (parts.length === 0) {
|
|
449
|
-
parts.push('No active phase. Available commands: *
|
|
449
|
+
parts.push('No active phase. Available commands: *plan, *develop, *test, *deploy, *projects, *switch');
|
|
450
450
|
}
|
|
451
451
|
|
|
452
452
|
this.history.append(msg.chatId, 'user', msg.text);
|
|
@@ -632,13 +632,13 @@ Reply with ONLY one word: small, medium, or large. Nothing else.`;
|
|
|
632
632
|
_handleProjects(msg) {
|
|
633
633
|
const registryPath = path.join(YURI_GLOBAL, 'portfolio', 'registry.yaml');
|
|
634
634
|
if (!fs.existsSync(registryPath)) {
|
|
635
|
-
return { text: 'No projects registered yet.
|
|
635
|
+
return { text: 'No projects registered yet. Run `/yuri *create` in your terminal first.' };
|
|
636
636
|
}
|
|
637
637
|
|
|
638
638
|
const registry = yaml.load(fs.readFileSync(registryPath, 'utf8')) || {};
|
|
639
639
|
const projects = registry.projects || [];
|
|
640
640
|
if (projects.length === 0) {
|
|
641
|
-
return { text: 'No projects registered yet.
|
|
641
|
+
return { text: 'No projects registered yet. Run `/yuri *create` in your terminal first.' };
|
|
642
642
|
}
|
|
643
643
|
|
|
644
644
|
// Read active project
|
|
@@ -901,7 +901,6 @@ Reply with ONLY one word: small, medium, or large. Nothing else.`;
|
|
|
901
901
|
**Project Lifecycle**
|
|
902
902
|
| Command | Description |
|
|
903
903
|
|---------|-------------|
|
|
904
|
-
| \`*create\` | Create a new project (interactive Q&A) |
|
|
905
904
|
| \`*plan\` | Start planning phase (6 agents sequentially, background) |
|
|
906
905
|
| \`*develop\` | Start development phase (4 agents with HANDOFF, background) |
|
|
907
906
|
| \`*test\` | Start smoke testing (QA per epic, auto fix-retest) |
|