orchestrix-yuri 4.5.4 → 4.5.6
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/channels/telegram.js +2 -16
- package/package.json +2 -2
- package/skill/SKILL.md +14 -4
|
@@ -14,15 +14,7 @@ function getProxyConfig() {
|
|
|
14
14
|
if (!proxyUrl) return {};
|
|
15
15
|
|
|
16
16
|
try {
|
|
17
|
-
|
|
18
|
-
let HttpsProxyAgent;
|
|
19
|
-
try {
|
|
20
|
-
({ HttpsProxyAgent } = require('https-proxy-agent'));
|
|
21
|
-
} catch {
|
|
22
|
-
// Fallback: resolve from package root
|
|
23
|
-
const pkgRoot = require('path').join(__dirname, '..', '..', '..');
|
|
24
|
-
({ HttpsProxyAgent } = require(require('path').join(pkgRoot, 'node_modules', 'https-proxy-agent')));
|
|
25
|
-
}
|
|
17
|
+
const { HttpsProxyAgent } = require('https-proxy-agent');
|
|
26
18
|
const agent = new HttpsProxyAgent(proxyUrl);
|
|
27
19
|
log.telegram(`Using proxy: ${proxyUrl}`);
|
|
28
20
|
return {
|
|
@@ -240,13 +232,7 @@ function forceDisconnectPolling(token) {
|
|
|
240
232
|
|| process.env.http_proxy || process.env.HTTP_PROXY;
|
|
241
233
|
if (proxyUrl) {
|
|
242
234
|
try {
|
|
243
|
-
|
|
244
|
-
try {
|
|
245
|
-
({ HttpsProxyAgent } = require('https-proxy-agent'));
|
|
246
|
-
} catch {
|
|
247
|
-
const pkgRoot = require('path').join(__dirname, '..', '..', '..');
|
|
248
|
-
({ HttpsProxyAgent } = require(require('path').join(pkgRoot, 'node_modules', 'https-proxy-agent')));
|
|
249
|
-
}
|
|
235
|
+
const { HttpsProxyAgent } = require('https-proxy-agent');
|
|
250
236
|
agent = new HttpsProxyAgent(proxyUrl);
|
|
251
237
|
} catch { /* ok */ }
|
|
252
238
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orchestrix-yuri",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.6",
|
|
4
4
|
"description": "Yuri — Meta-Orchestrator for Orchestrix. Drive your entire project lifecycle with natural language.",
|
|
5
5
|
"main": "lib/installer.js",
|
|
6
6
|
"bin": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@larksuiteoapi/node-sdk": "^1.60.0",
|
|
36
36
|
"grammy": "^1.41.1",
|
|
37
|
-
"https-proxy-agent": "^
|
|
37
|
+
"https-proxy-agent": "^7.0.6",
|
|
38
38
|
"js-yaml": "^4.1.1"
|
|
39
39
|
}
|
|
40
40
|
}
|
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
|
```
|