@azure-id/orc 0.56.1 → 1.1.0
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/CHANGELOG.md +219 -0
- package/README-id.md +49 -107
- package/README.md +694 -719
- package/bin/build-agents.js +18 -11
- package/bin/cli.js +33699 -29855
- package/bin/onboarding-content.js +0 -3
- package/bin/test-run.js +491 -0
- package/bin/verify-contracts.js +4330 -3277
- package/bin/verify-package.js +76 -6
- package/bin/webui/api.js +1201 -1163
- package/bin/webui/app.html +210 -198
- package/bin/webui/css/06-responsive.css +120 -108
- package/bin/webui/css/panels/extra.css +29 -0
- package/bin/webui/css/panels/lanes.css +134 -0
- package/bin/webui/css/panels/settings.css +79 -3
- package/bin/webui/css/panels/wait.css +123 -0
- package/bin/webui/fixtures/extra.js +2036 -1934
- package/bin/webui/fixtures/flow.js +2 -2
- package/bin/webui/fixtures/index.js +510 -486
- package/bin/webui/fixtures/lanes.js +218 -0
- package/bin/webui/fixtures/settings.js +261 -34
- package/bin/webui/fixtures/stats.js +3 -3
- package/bin/webui/fixtures/wait.js +97 -0
- package/bin/webui/i18n/TERMS.md +135 -134
- package/bin/webui/i18n/en/extra.json +345 -313
- package/bin/webui/i18n/en/lanes.json +29 -0
- package/bin/webui/i18n/en/nav.json +21 -19
- package/bin/webui/i18n/en/overview.json +2 -0
- package/bin/webui/i18n/en/settings.json +16 -5
- package/bin/webui/i18n/en/wait.json +41 -0
- package/bin/webui/i18n/id/extra.json +345 -313
- package/bin/webui/i18n/id/lanes.json +29 -0
- package/bin/webui/i18n/id/nav.json +21 -19
- package/bin/webui/i18n/id/overview.json +2 -0
- package/bin/webui/i18n/id/settings.json +15 -4
- package/bin/webui/i18n/id/wait.json +41 -0
- package/bin/webui/js/01-i18n.js +151 -149
- package/bin/webui/js/panels/extra.js +3199 -3011
- package/bin/webui/js/panels/lanes.js +259 -0
- package/bin/webui/js/panels/overview.js +10 -0
- package/bin/webui/js/panels/settings.js +149 -3
- package/bin/webui/js/panels/wait.js +253 -0
- package/package.json +39 -39
- package/templates/agents/MODEL-MAPPING.md +23 -35
- package/templates/agents/orc-executor-opus-4-7-high.md +1 -1
- package/templates/agents/orc-executor-opus-4-7-med.md +1 -1
- package/templates/agents/orc-executor-opus-4-8-high.md +1 -1
- package/templates/agents/orc-executor-opus-5-high.md +1 -1
- package/templates/agents/orc-executor-opus-5-low.md +1 -1
- package/templates/agents/orc-executor-opus-5-med.md +1 -1
- package/templates/agents/orc-retro-opus-5-med.md +73 -73
- package/templates/agents/orc-retro-sonnet-5-high.md +72 -72
- package/templates/agents/orc-trace-writer-haiku-4-5.md +107 -107
- package/templates/commands/orc-route.md +1 -1
- package/templates/commands/orc-wait.md +19 -0
- package/templates/commands/orc.md +1 -1
- package/templates/hooks/orc-statusline.js +39 -0
- package/templates/skills/_shared/README.md +7 -3
- package/templates/skills/_shared/config-precedence.md +198 -0
- package/templates/skills/_shared/drift-recovery.md +1 -1
- package/templates/skills/_shared/extra-dispatch.md +159 -7
- package/templates/skills/_shared/interview.md +1 -1
- package/templates/skills/_shared/opus5-only.md +9 -7
- package/templates/skills/_shared/phases/README.md +82 -0
- package/templates/skills/{orc/references → _shared/phases}/analyst-gates.md +15 -3
- package/templates/skills/_shared/phases/execution.md +143 -0
- package/templates/skills/{orc/references → _shared/phases}/house-rules.md +13 -1
- package/templates/skills/{orc/references → _shared/phases}/intake.md +15 -2
- package/templates/skills/_shared/phases/mock-example.md +56 -0
- package/templates/skills/{orc/references → _shared/phases}/plan-handoff.md +16 -3
- package/templates/skills/_shared/phases/planning.md +135 -0
- package/templates/skills/_shared/phases/preflight.md +98 -0
- package/templates/skills/_shared/phases/review.md +53 -0
- package/templates/skills/_shared/phases/scoring.md +65 -0
- package/templates/skills/{orc/references → _shared/phases}/security-checklist.md +12 -1
- package/templates/skills/_shared/phases/security.md +55 -0
- package/templates/skills/_shared/phases/ship.md +88 -0
- package/templates/skills/{orc/references/stop-and-resume.md → _shared/phases/stop-resume.md} +169 -160
- package/templates/skills/_shared/phases/summary.md +48 -0
- package/templates/skills/_shared/phases/testgen.md +51 -0
- package/templates/skills/{orc/references/trace-protocol.md → _shared/phases/trace.md} +49 -6
- package/templates/skills/_shared/phases/verify.md +70 -0
- package/templates/skills/{orc/references → _shared/phases}/wave-grouping.md +14 -2
- package/templates/skills/{orc/references → _shared/phases}/wiki-consult.md +13 -1
- package/templates/skills/_shared/read-ladder.md +48 -0
- package/templates/skills/_shared/wait.md +240 -0
- package/templates/skills/context-combiner/SKILL.md +214 -187
- package/templates/skills/orc/README.md +148 -150
- package/templates/skills/orc/SKILL.md +75 -358
- package/templates/skills/orc/config.md +137 -389
- package/templates/skills/orc/examples/full-run-mock.md +1 -1
- package/templates/skills/orc/references/effort-and-mode.md +16 -18
- package/templates/skills/orc/references/phases/intake.md +47 -0
- package/templates/skills/orc/references/phases/integration.md +19 -0
- package/templates/skills/orc/references/preflight-report.md +4 -4
- package/templates/skills/orc/references/ultra-mode.md +117 -123
- package/templates/skills/orc/schemas/planning-output.md +279 -279
- package/templates/skills/orc/subskills/orc-planner/SKILL.md +260 -264
- package/templates/skills/orc/subskills/orc-pr/stack-gate.md +4 -1
- package/templates/skills/orc-aftermath/SKILL.md +158 -136
- package/templates/skills/orc-analyze/SKILL.md +252 -220
- package/templates/skills/orc-analyze/references/branching.md +51 -51
- package/templates/skills/orc-analyze/references/thin-input.md +1 -1
- package/templates/skills/orc-analyze-mini/SKILL.md +128 -112
- package/templates/skills/orc-boundary/SKILL.md +249 -208
- package/templates/skills/orc-brainstorm/SKILL.md +377 -339
- package/templates/skills/orc-budget/SKILL.md +248 -225
- package/templates/skills/orc-challenge/README.md +1 -1
- package/templates/skills/orc-challenge/SKILL.md +298 -255
- package/templates/skills/orc-challenge/examples/council-full-roster.md +1 -1
- package/templates/skills/orc-claude/SKILL.md +221 -199
- package/templates/skills/orc-diy/README.md +2 -1
- package/templates/skills/orc-diy/SKILL.md +132 -68
- package/templates/skills/orc-diy/references/blocks/analyze.md +1 -1
- package/templates/skills/orc-diy/references/compile.md +21 -7
- package/templates/skills/orc-diy/references/flow-schema.md +2 -2
- package/templates/skills/orc-doc/SKILL.md +49 -7
- package/templates/skills/orc-explain/SKILL.md +24 -0
- package/templates/skills/orc-export/SKILL.md +31 -5
- package/templates/skills/orc-fast/SKILL.md +218 -185
- package/templates/skills/orc-grill/SKILL.md +238 -207
- package/templates/skills/orc-handoff/SKILL.md +223 -204
- package/templates/skills/orc-learn/SKILL.md +181 -156
- package/templates/skills/orc-mini/SKILL.md +47 -24
- package/templates/skills/orc-pact/SKILL.md +255 -218
- package/templates/skills/orc-pattern/SKILL.md +154 -124
- package/templates/skills/orc-poly/SKILL.md +242 -216
- package/templates/skills/orc-poly/references/gather.md +1 -1
- package/templates/skills/orc-pr-driver/SKILL.md +196 -167
- package/templates/skills/orc-pr-driver/references/orc-run-split.md +1 -1
- package/templates/skills/orc-pr-setup/SKILL.md +212 -184
- package/templates/skills/orc-quick/README.md +2 -2
- package/templates/skills/orc-quick/SKILL.md +51 -13
- package/templates/skills/orc-quick/references/dispatch-gate.md +2 -3
- package/templates/skills/orc-retro/SKILL.md +249 -222
- package/templates/skills/orc-retro/examples/retro-mock.md +171 -171
- package/templates/skills/orc-route/SKILL.md +188 -165
- package/templates/skills/orc-verify/SKILL.md +103 -84
- package/templates/skills/orc-wait/SKILL.md +163 -0
- package/templates/skills/orc-wiki/SKILL.md +60 -206
- package/templates/skills/orc-wiki/references/phases/phase-0.md +71 -0
- package/templates/skills/orc-wiki/references/phases/phase-1.md +35 -0
- package/templates/skills/orc-wiki/references/phases/phase-2.md +52 -0
- package/templates/skills/orc-wiki/references/phases/phase-3.md +57 -0
- package/templates/skills/orc-wiki/references/phases/phase-3c.md +36 -0
- package/templates/agents/orc-advisor-fable-5.md +0 -50
- package/templates/agents/orc-analyst-fable-5.md +0 -115
- package/templates/agents/orc-judge-fable-5.md +0 -79
- package/templates/agents/orc-planner-fable-5.md +0 -152
- package/templates/agents/orc-reviewer-fable-5.md +0 -57
- package/templates/skills/_shared/fable5-override.md +0 -56
- package/templates/skills/orc-diy/references/blocks/execution.md +0 -42
- package/templates/skills/orc-diy/references/blocks/mock-example.md +0 -22
- package/templates/skills/orc-diy/references/blocks/planning.md +0 -34
- package/templates/skills/orc-diy/references/blocks/review.md +0 -18
- package/templates/skills/orc-diy/references/blocks/scoring.md +0 -16
- package/templates/skills/orc-diy/references/blocks/security.md +0 -25
- package/templates/skills/orc-diy/references/blocks/ship.md +0 -25
- package/templates/skills/orc-diy/references/blocks/summary.md +0 -18
- package/templates/skills/orc-diy/references/blocks/testgen.md +0 -17
- package/templates/skills/orc-diy/references/blocks/trace.md +0 -28
- package/templates/skills/orc-diy/references/blocks/verify.md +0 -25
package/bin/webui/app.html
CHANGED
|
@@ -1,198 +1,210 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html lang="en" data-theme="dark">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
-
<meta name="referrer" content="no-referrer">
|
|
7
|
-
<title>orc ui</title>
|
|
8
|
-
<!--
|
|
9
|
-
THE ASSET MANIFEST. This list is the load order, and for CSS the load order is
|
|
10
|
-
the cascade order — which is why the files carry numeric prefixes and why
|
|
11
|
-
06-responsive and 04-motion are last (both override rules from the shell AND
|
|
12
|
-
from panels, and several of their declarations are deliberately not
|
|
13
|
-
!important). One <link> per file, never @import: an @import request carries no
|
|
14
|
-
session token of its own and would 401.
|
|
15
|
-
|
|
16
|
-
A file that is not listed here does not run, and the test suite reads THIS
|
|
17
|
-
list — appJs()/appCss() in test/_helpers.js concatenate exactly what the
|
|
18
|
-
browser loads, so a forgotten entry cannot hide behind a passing suite.
|
|
19
|
-
-->
|
|
20
|
-
<link rel="stylesheet" href="css/00-tokens.css">
|
|
21
|
-
<link rel="stylesheet" href="css/01-base.css">
|
|
22
|
-
<link rel="stylesheet" href="css/02-shell.css">
|
|
23
|
-
<link rel="stylesheet" href="css/03-components.css">
|
|
24
|
-
<link rel="stylesheet" href="css/panels/overview.css">
|
|
25
|
-
<link rel="stylesheet" href="css/05-tour.css">
|
|
26
|
-
<link rel="stylesheet" href="css/panels/settings.css">
|
|
27
|
-
<link rel="stylesheet" href="css/panels/
|
|
28
|
-
<link rel="stylesheet" href="css/panels/
|
|
29
|
-
<link rel="stylesheet" href="css/panels/
|
|
30
|
-
<link rel="stylesheet" href="css/panels/
|
|
31
|
-
<link rel="stylesheet" href="css/panels/
|
|
32
|
-
<link rel="stylesheet" href="css/panels/
|
|
33
|
-
<link rel="stylesheet" href="css/panels/
|
|
34
|
-
<link rel="stylesheet" href="css/panels/
|
|
35
|
-
<link rel="stylesheet" href="css/panels/
|
|
36
|
-
<link rel="stylesheet" href="css/panels/
|
|
37
|
-
<link rel="stylesheet" href="css/panels/
|
|
38
|
-
<link rel="stylesheet" href="css/panels/
|
|
39
|
-
<link rel="stylesheet" href="css/panels/
|
|
40
|
-
<link rel="stylesheet" href="css/panels/
|
|
41
|
-
<link rel="stylesheet" href="css/panels/
|
|
42
|
-
<link rel="stylesheet" href="css/
|
|
43
|
-
<link rel="stylesheet" href="css/
|
|
44
|
-
|
|
45
|
-
<
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
data-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
<li><a href="#/
|
|
73
|
-
<li><a href="#/
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
<li><a href="#/
|
|
100
|
-
<li><a href="#/
|
|
101
|
-
<li><a href="#/
|
|
102
|
-
<li><a href="#/
|
|
103
|
-
<!--
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
<li><a href="#/
|
|
110
|
-
<li><a href="#/
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
</
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
<div class="rail-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
</div>
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
<div
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
</div>
|
|
156
|
-
|
|
157
|
-
<!--
|
|
158
|
-
<div class="
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
<script src="js/
|
|
181
|
-
<script src="js/
|
|
182
|
-
<script src="js/
|
|
183
|
-
<script src="js/
|
|
184
|
-
<script src="js/
|
|
185
|
-
<script src="js/
|
|
186
|
-
<script src="js/
|
|
187
|
-
<script src="js/panels/
|
|
188
|
-
<script src="js/panels/
|
|
189
|
-
<script src="js/panels/
|
|
190
|
-
<script src="js/panels/
|
|
191
|
-
<script src="js/panels/
|
|
192
|
-
<script src="js/panels/
|
|
193
|
-
<script src="js/panels/
|
|
194
|
-
<script src="js/
|
|
195
|
-
<script src="js/
|
|
196
|
-
<script src="js/
|
|
197
|
-
|
|
198
|
-
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en" data-theme="dark">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
<meta name="referrer" content="no-referrer">
|
|
7
|
+
<title>orc ui</title>
|
|
8
|
+
<!--
|
|
9
|
+
THE ASSET MANIFEST. This list is the load order, and for CSS the load order is
|
|
10
|
+
the cascade order — which is why the files carry numeric prefixes and why
|
|
11
|
+
06-responsive and 04-motion are last (both override rules from the shell AND
|
|
12
|
+
from panels, and several of their declarations are deliberately not
|
|
13
|
+
!important). One <link> per file, never @import: an @import request carries no
|
|
14
|
+
session token of its own and would 401.
|
|
15
|
+
|
|
16
|
+
A file that is not listed here does not run, and the test suite reads THIS
|
|
17
|
+
list — appJs()/appCss() in test/_helpers.js concatenate exactly what the
|
|
18
|
+
browser loads, so a forgotten entry cannot hide behind a passing suite.
|
|
19
|
+
-->
|
|
20
|
+
<link rel="stylesheet" href="css/00-tokens.css">
|
|
21
|
+
<link rel="stylesheet" href="css/01-base.css">
|
|
22
|
+
<link rel="stylesheet" href="css/02-shell.css">
|
|
23
|
+
<link rel="stylesheet" href="css/03-components.css">
|
|
24
|
+
<link rel="stylesheet" href="css/panels/overview.css">
|
|
25
|
+
<link rel="stylesheet" href="css/05-tour.css">
|
|
26
|
+
<link rel="stylesheet" href="css/panels/settings.css">
|
|
27
|
+
<link rel="stylesheet" href="css/panels/lanes.css">
|
|
28
|
+
<link rel="stylesheet" href="css/panels/runs.css">
|
|
29
|
+
<link rel="stylesheet" href="css/panels/knowledge.css">
|
|
30
|
+
<link rel="stylesheet" href="css/panels/stats.css">
|
|
31
|
+
<link rel="stylesheet" href="css/panels/flow.css">
|
|
32
|
+
<link rel="stylesheet" href="css/panels/crosslink.css">
|
|
33
|
+
<link rel="stylesheet" href="css/panels/learn.css">
|
|
34
|
+
<link rel="stylesheet" href="css/panels/mockrun.css">
|
|
35
|
+
<link rel="stylesheet" href="css/panels/experiment.css">
|
|
36
|
+
<link rel="stylesheet" href="css/panels/maintenance.css">
|
|
37
|
+
<link rel="stylesheet" href="css/panels/pact.css">
|
|
38
|
+
<link rel="stylesheet" href="css/panels/boundary.css">
|
|
39
|
+
<link rel="stylesheet" href="css/panels/wait.css">
|
|
40
|
+
<link rel="stylesheet" href="css/panels/handoff.css">
|
|
41
|
+
<link rel="stylesheet" href="css/panels/challenge.css">
|
|
42
|
+
<link rel="stylesheet" href="css/panels/docs.css">
|
|
43
|
+
<link rel="stylesheet" href="css/panels/extra.css">
|
|
44
|
+
<link rel="stylesheet" href="css/06-responsive.css">
|
|
45
|
+
<link rel="stylesheet" href="css/04-motion.css">
|
|
46
|
+
</head>
|
|
47
|
+
<body>
|
|
48
|
+
|
|
49
|
+
<!--
|
|
50
|
+
The shell is deliberately static and small: every panel is rendered by its own
|
|
51
|
+
function in app.js against its own endpoint, with no shared mutable state, so
|
|
52
|
+
rewriting one panel cannot break another. See the plan, §9.
|
|
53
|
+
No inline <script> or style="" anywhere — the server sends a strict CSP.
|
|
54
|
+
-->
|
|
55
|
+
|
|
56
|
+
<div class="shell">
|
|
57
|
+
|
|
58
|
+
<nav class="rail" aria-label="Panels">
|
|
59
|
+
<div class="brand">
|
|
60
|
+
<span class="brand-mark" aria-hidden="true">◆</span>
|
|
61
|
+
<span class="brand-text">orc<span class="brand-dim"> ui</span></span>
|
|
62
|
+
</div>
|
|
63
|
+
|
|
64
|
+
<!--
|
|
65
|
+
data-idx is the keyboard shortcut for that panel; the rail reveals the
|
|
66
|
+
numbers on hover so they are discoverable without a legend.
|
|
67
|
+
data-i18n names the string table entry: the text between the tags is the
|
|
68
|
+
English fallback that ships in the markup, so a failed i18n fetch renders
|
|
69
|
+
a readable English rail rather than a column of empty links.
|
|
70
|
+
-->
|
|
71
|
+
<ul class="nav" id="nav">
|
|
72
|
+
<li><a href="#/overview" data-panel="overview" data-idx="1" data-i18n="nav.overview">Overview</a></li>
|
|
73
|
+
<li><a href="#/settings" data-panel="settings" data-idx="2" data-i18n="nav.settings">Settings</a></li>
|
|
74
|
+
<!--
|
|
75
|
+
v1.0.0 W16. Lanes sits directly under Settings because it answers the
|
|
76
|
+
other half of the same question. Settings says what a key resolves to
|
|
77
|
+
and which lanes read it; this says what those lanes then DO with it —
|
|
78
|
+
which shared phases they run, in order, and which CLI calls they make.
|
|
79
|
+
-->
|
|
80
|
+
<li><a href="#/lanes" data-panel="lanes" data-idx="l" data-i18n="nav.lanes">Lanes</a></li>
|
|
81
|
+
<li><a href="#/runs" data-panel="runs" data-idx="3" data-i18n="nav.runs">Runs</a></li>
|
|
82
|
+
<li><a href="#/knowledge" data-panel="knowledge" data-idx="4" data-i18n="nav.knowledge">Knowledge</a></li>
|
|
83
|
+
<li><a href="#/stats" data-panel="stats" data-idx="5" data-i18n="nav.stats">Stats</a></li>
|
|
84
|
+
<!--
|
|
85
|
+
v0.46.0. Promises and Boundary sit next to Knowledge because they ARE
|
|
86
|
+
knowledge — derived, coverage-anchored, and stale the same way a wiki doc
|
|
87
|
+
is. Self-serve sits last of the three: it is the only panel here aimed at
|
|
88
|
+
somebody who does not read code, and it is the one a developer opens
|
|
89
|
+
least often.
|
|
90
|
+
-->
|
|
91
|
+
<!--
|
|
92
|
+
v0.48.0. Docs sits directly above Challenge because that is the order
|
|
93
|
+
the two are used in: you write a document, then you grade it — and the
|
|
94
|
+
grading has to happen in a different session, which is the one thing
|
|
95
|
+
both panels say out loud.
|
|
96
|
+
-->
|
|
97
|
+
<li><a href="#/docs" data-panel="docs" data-idx="d" data-i18n="nav.docs">Docs</a></li>
|
|
98
|
+
<li><a href="#/challenge" data-panel="challenge" data-idx="c" data-i18n="nav.challenge">Challenge</a></li>
|
|
99
|
+
<li><a href="#/pact" data-panel="pact" data-idx="p" data-i18n="nav.pact">Promises</a></li>
|
|
100
|
+
<li><a href="#/boundary" data-panel="boundary" data-idx="b" data-i18n="nav.boundary">Boundary</a></li>
|
|
101
|
+
<li><a href="#/wait" data-panel="wait" data-idx="w" data-i18n="nav.wait">Wait</a></li>
|
|
102
|
+
<li><a href="#/handoff" data-panel="handoff" data-idx="h" data-i18n="nav.handoff">Self-serve</a></li>
|
|
103
|
+
<!--
|
|
104
|
+
v0.50.0. Extra sits directly above Flow because both answer the same
|
|
105
|
+
question — WHERE does a task run — and this is the one that can send it
|
|
106
|
+
off this machine. It is the last thing above the composer for that
|
|
107
|
+
reason, never buried under the reading panels.
|
|
108
|
+
-->
|
|
109
|
+
<li><a href="#/extra" data-panel="extra" data-idx="e" data-i18n="nav.extra">Extra</a></li>
|
|
110
|
+
<li><a href="#/flow" data-panel="flow" data-idx="6" data-i18n="nav.flow">Flow</a></li>
|
|
111
|
+
<li><a href="#/crosslink" data-panel="crosslink" data-idx="7" data-i18n="nav.crosslink">Crosslink</a></li>
|
|
112
|
+
<li><a href="#/learn" data-panel="learn" data-idx="8" data-i18n="nav.learn">Learn</a></li>
|
|
113
|
+
<!--
|
|
114
|
+
Next to Learn because it is the same kind of thing: reading, not doing.
|
|
115
|
+
The walkthroughs ship with the package, so this panel works on a machine
|
|
116
|
+
with no project at all — the same as Learn and unlike every other panel.
|
|
117
|
+
-->
|
|
118
|
+
<li><a href="#/mockrun" data-panel="mockrun" data-idx="m" data-i18n="nav.mockrun">Mocked Skill Use</a></li>
|
|
119
|
+
<li><a href="#/experiment" data-panel="experiment" data-idx="9" data-i18n="nav.experiment">Experiment</a></li>
|
|
120
|
+
<li><a href="#/maintenance" data-panel="maintenance" data-idx="0" data-i18n="nav.maintenance">Maintenance</a></li>
|
|
121
|
+
</ul>
|
|
122
|
+
|
|
123
|
+
<div class="rail-foot">
|
|
124
|
+
<div class="rail-project" id="rail-project" title="">—</div>
|
|
125
|
+
<div class="rail-version" id="rail-version"></div>
|
|
126
|
+
<div class="rail-buttons">
|
|
127
|
+
<button class="btn btn-ghost btn-sm" id="theme-toggle" type="button">Light</button>
|
|
128
|
+
<button class="btn btn-ghost btn-sm" id="shortcut-hint" type="button" title="Keyboard shortcuts">?</button>
|
|
129
|
+
</div>
|
|
130
|
+
<!--
|
|
131
|
+
Language sits BELOW the theme row on purpose: it is the same class of
|
|
132
|
+
control (a per-browser display preference, never a project setting) and
|
|
133
|
+
it is switched far less often, so it gets the calmer position.
|
|
134
|
+
-->
|
|
135
|
+
<div class="rail-buttons">
|
|
136
|
+
<button class="btn btn-ghost btn-sm lang-btn" id="lang-toggle" type="button">
|
|
137
|
+
<span class="lang-globe" aria-hidden="true">🌐</span><span id="lang-label">English</span>
|
|
138
|
+
</button>
|
|
139
|
+
</div>
|
|
140
|
+
</div>
|
|
141
|
+
</nav>
|
|
142
|
+
|
|
143
|
+
<main class="main">
|
|
144
|
+
<!--
|
|
145
|
+
Global banner slot. The one thing that must be visible on EVERY panel is
|
|
146
|
+
the global-install warning: if ORC is installed globally, the skills that
|
|
147
|
+
actually run may be the global copy reading the global config, while this
|
|
148
|
+
panel edits the project one that nothing reads.
|
|
149
|
+
-->
|
|
150
|
+
<div id="banners" class="banners"></div>
|
|
151
|
+
|
|
152
|
+
<div id="panel" class="panel" aria-live="polite"></div>
|
|
153
|
+
</main>
|
|
154
|
+
|
|
155
|
+
</div>
|
|
156
|
+
|
|
157
|
+
<!-- Single modal host. Every confirmation and preview renders into it. -->
|
|
158
|
+
<div class="modal-host" id="modal-host" hidden>
|
|
159
|
+
<div class="modal-backdrop" id="modal-backdrop"></div>
|
|
160
|
+
<div class="modal" role="dialog" aria-modal="true" aria-labelledby="modal-title">
|
|
161
|
+
<h2 class="modal-title" id="modal-title"></h2>
|
|
162
|
+
<div class="modal-body" id="modal-body"></div>
|
|
163
|
+
<div class="modal-foot" id="modal-foot"></div>
|
|
164
|
+
</div>
|
|
165
|
+
</div>
|
|
166
|
+
|
|
167
|
+
<!-- Transient confirmations (a committed setting, a failed write). -->
|
|
168
|
+
<div class="toasts" id="toasts" aria-live="polite"></div>
|
|
169
|
+
|
|
170
|
+
<!--
|
|
171
|
+
Classic scripts in an explicit load order — no type="module" anywhere. An ES
|
|
172
|
+
module `import` carries no query string, so every import would 401 against the
|
|
173
|
+
per-launch token unless static auth were weakened, and weakening it is not on
|
|
174
|
+
the table. Classic scripts also mean every top-level function and const lands
|
|
175
|
+
in ONE shared global scope, so the split needed no import/export and changed
|
|
176
|
+
no call site.
|
|
177
|
+
|
|
178
|
+
99-boot.js is last because boot() is the one call that runs at load time.
|
|
179
|
+
-->
|
|
180
|
+
<script src="js/00-core.js"></script>
|
|
181
|
+
<script src="js/01-i18n.js"></script>
|
|
182
|
+
<script src="js/02-ui.js"></script>
|
|
183
|
+
<script src="js/03-md.js"></script>
|
|
184
|
+
<script src="js/04-router.js"></script>
|
|
185
|
+
<script src="js/05-banners.js"></script>
|
|
186
|
+
<script src="js/06-edit.js"></script>
|
|
187
|
+
<script src="js/panels/overview.js"></script>
|
|
188
|
+
<script src="js/panels/settings.js"></script>
|
|
189
|
+
<script src="js/panels/lanes.js"></script>
|
|
190
|
+
<script src="js/panels/runs.js"></script>
|
|
191
|
+
<script src="js/panels/knowledge.js"></script>
|
|
192
|
+
<script src="js/panels/stats.js"></script>
|
|
193
|
+
<script src="js/panels/flow.js"></script>
|
|
194
|
+
<script src="js/panels/crosslink.js"></script>
|
|
195
|
+
<script src="js/panels/learn.js"></script>
|
|
196
|
+
<script src="js/panels/mockrun.js"></script>
|
|
197
|
+
<script src="js/panels/experiment.js"></script>
|
|
198
|
+
<script src="js/panels/maintenance.js"></script>
|
|
199
|
+
<script src="js/panels/pact.js"></script>
|
|
200
|
+
<script src="js/panels/boundary.js"></script>
|
|
201
|
+
<script src="js/panels/handoff.js"></script>
|
|
202
|
+
<script src="js/panels/challenge.js"></script>
|
|
203
|
+
<script src="js/panels/docs.js"></script>
|
|
204
|
+
<script src="js/panels/extra.js"></script>
|
|
205
|
+
<script src="js/panels/wait.js"></script>
|
|
206
|
+
<script src="js/90-tour.js"></script>
|
|
207
|
+
<script src="js/91-shortcuts.js"></script>
|
|
208
|
+
<script src="js/99-boot.js"></script>
|
|
209
|
+
</body>
|
|
210
|
+
</html>
|