orchestrix-yuri 4.5.5 → 4.5.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/engine/claude-sdk.js +1 -1
- package/package.json +1 -1
- package/skill/SKILL.md +14 -4
|
@@ -340,7 +340,7 @@ async function callClaude(opts) {
|
|
|
340
340
|
// Try to restore session from disk on first call
|
|
341
341
|
if (!_sessionId) {
|
|
342
342
|
const saved = loadSessionState();
|
|
343
|
-
if (saved) {
|
|
343
|
+
if (saved && saved.sessionId) {
|
|
344
344
|
log.engine(`Restoring session ${saved.sessionId.slice(0, 8)}...`);
|
|
345
345
|
_sessionId = saved.sessionId;
|
|
346
346
|
_messageCount = saved.messageCount || 0;
|
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -48,9 +48,14 @@ Without it, the Enter may arrive before the TUI is ready, leaving content stuck
|
|
|
48
48
|
| 3 | *develop | Start/resume automated development (Phase 3) |
|
|
49
49
|
| 4 | *test | Start/resume smoke testing (Phase 4) |
|
|
50
50
|
| 5 | *deploy | Start/resume deployment (Phase 5) |
|
|
51
|
-
| 6 | *status | Show
|
|
51
|
+
| 6 | *status | Show project progress card |
|
|
52
52
|
| 7 | *resume | Resume from last saved checkpoint |
|
|
53
|
-
| 8 | *change "{desc}" | Handle
|
|
53
|
+
| 8 | *change "{desc}" | Handle requirement change (auto scope assessment) |
|
|
54
|
+
| 9 | *iterate | Start new iteration (PM → Architect → SM → dev) |
|
|
55
|
+
| 10 | *cancel | Cancel running phase |
|
|
56
|
+
| 11 | *projects | List all registered projects |
|
|
57
|
+
| 12 | *switch {name} | Switch active project |
|
|
58
|
+
| 13 | *help | Show all commands |
|
|
54
59
|
|
|
55
60
|
## Activation Protocol
|
|
56
61
|
|
|
@@ -85,9 +90,14 @@ I can take you from a one-sentence idea to a fully deployed project:
|
|
|
85
90
|
| 3 | *develop | Start/resume automated development (Phase 3) |
|
|
86
91
|
| 4 | *test | Start/resume smoke testing (Phase 4) |
|
|
87
92
|
| 5 | *deploy | Start/resume deployment (Phase 5) |
|
|
88
|
-
| 6 | *status | Show
|
|
93
|
+
| 6 | *status | Show project progress card |
|
|
89
94
|
| 7 | *resume | Resume from last saved checkpoint |
|
|
90
|
-
| 8 | *change "{desc}" | Handle
|
|
95
|
+
| 8 | *change "{desc}" | Handle requirement change (auto scope assessment) |
|
|
96
|
+
| 9 | *iterate | Start new iteration (PM → Architect → SM → dev) |
|
|
97
|
+
| 10 | *cancel | Cancel running phase |
|
|
98
|
+
| 11 | *projects | List all registered projects |
|
|
99
|
+
| 12 | *switch {name} | Switch active project |
|
|
100
|
+
| 13 | *help | Show all commands |
|
|
91
101
|
|
|
92
102
|
Tell me what you'd like to build, or pick a command to get started.
|
|
93
103
|
```
|