sneakoscope 6.0.1 → 6.0.3
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/README.md +4 -1
- package/crates/sks-core/Cargo.lock +1 -1
- package/crates/sks-core/Cargo.toml +1 -1
- package/dist/bin/fast-inline.js +0 -55
- package/dist/bin/sks-dispatch.js +0 -22
- package/dist/cli/codex-app-command.js +1 -2
- package/dist/cli/help-fast.js +2 -2
- package/dist/cli/install-helpers.js +66 -37
- package/dist/commands/codex-app.js +8 -3
- package/dist/commands/codex-lb.js +37 -12
- package/dist/config/skills-manifest.json +57 -57
- package/dist/core/agents/agent-effort-policy.js +61 -67
- package/dist/core/agents/agent-orchestrator.js +3 -3
- package/dist/core/agents/agent-proof-evidence.js +16 -2
- package/dist/core/agents/agent-role-config.js +17 -10
- package/dist/core/agents/agent-roster.js +21 -41
- package/dist/core/agents/agent-scheduler.js +6 -5
- package/dist/core/agents/agent-schema.js +4 -5
- package/dist/core/agents/agent-task-graph.js +1 -1
- package/dist/core/agents/agent-work-partition.js +2 -1
- package/dist/core/agents/native-cli-session-swarm.js +18 -1
- package/dist/core/agents/native-worker-backend-router.js +179 -108
- package/dist/core/agents/parallel-write-fixture.js +15 -10
- package/dist/core/agents/route-collaboration-ledger.js +2 -2
- package/dist/core/agents/runtime-proof-summary.js +21 -3
- package/dist/core/auto-review.js +1 -4
- package/dist/core/codex/codex-config-guard.js +9 -13
- package/dist/core/codex-adapter.js +2 -2
- package/dist/core/codex-app/codex-agent-role-sync.js +0 -1
- package/dist/core/codex-app/codex-app-fast-ui-repair.js +6 -40
- package/dist/core/codex-app/codex-app-restart.js +38 -8
- package/dist/core/codex-app/codex-app-ui-state-snapshot.js +1 -7
- package/dist/core/codex-app/sks-menubar.js +92 -37
- package/dist/core/codex-app.js +26 -4
- package/dist/core/codex-control/codex-model-capabilities.js +1 -2
- package/dist/core/codex-control/codex-model-metadata.js +18 -7
- package/dist/core/codex-control/codex-sdk-config-policy.js +3 -3
- package/dist/core/codex-control/codex-task-runner.js +2 -3
- package/dist/core/codex-lb/codex-lb-env.js +78 -0
- package/dist/core/codex-model-guard.js +24 -87
- package/dist/core/commands/basic-cli.js +21 -0
- package/dist/core/commands/loop-command.js +2 -2
- package/dist/core/commands/naruto-command.js +48 -20
- package/dist/core/commands/profile-command.js +14 -5
- package/dist/core/commands/qa-loop-command.js +2 -2
- package/dist/core/commands/research-command.js +2 -2
- package/dist/core/doctor/doctor-codex-startup-repair.js +0 -3
- package/dist/core/evaluation.js +1 -1
- package/dist/core/feature-fixtures.js +2 -2
- package/dist/core/feature-registry.js +1 -1
- package/dist/core/hooks-runtime.js +7 -45
- package/dist/core/image-ux-review/imagegen-adapter.js +17 -2
- package/dist/core/init/skills.js +6 -7
- package/dist/core/init.js +6 -20
- package/dist/core/loops/loop-concurrency-budget.js +6 -4
- package/dist/core/loops/loop-planner.js +1 -1
- package/dist/core/loops/loop-runtime.js +2 -2
- package/dist/core/loops/loop-scheduler.js +7 -7
- package/dist/core/managed-assets/managed-assets-manifest.js +1 -4
- package/dist/core/naruto/naruto-concurrency-governor.js +20 -17
- package/dist/core/naruto/naruto-loop-mesh.js +3 -3
- package/dist/core/naruto/naruto-write-e2e.js +3 -4
- package/dist/core/naruto/resource-pressure-monitor.js +5 -2
- package/dist/core/provider/model-router.js +77 -36
- package/dist/core/release/package-size-budget.js +2 -0
- package/dist/core/release/release-gate-batch-runner.js +2 -1
- package/dist/core/release/release-gate-resource-governor.js +12 -12
- package/dist/core/release/resource-class-budget.js +5 -5
- package/dist/core/routes/constants.js +4 -5
- package/dist/core/routes/model-mode-router.js +3 -0
- package/dist/core/routes.js +8 -10
- package/dist/core/structured-output-adapter.js +15 -1
- package/dist/core/update/update-migration-state.js +4 -33
- package/dist/core/update/update-notice.js +23 -0
- package/dist/core/update-check.js +46 -10
- package/dist/core/version.js +1 -1
- package/dist/scripts/agent-backfill-replenishment-check.js +1 -1
- package/dist/scripts/agent-dynamic-pool-check.js +3 -3
- package/dist/scripts/agent-dynamic-pool-fixture.js +1 -1
- package/dist/scripts/agent-goal-mode-propagation-check.js +1 -1
- package/dist/scripts/agent-patch-swarm-gate-lib.js +2 -2
- package/dist/scripts/agent-role-config-repair-check.js +9 -5
- package/dist/scripts/agent-scheduler-proof-check.js +1 -1
- package/dist/scripts/agent-scheduler-proof-hardening-check.js +1 -1
- package/dist/scripts/agent-source-intelligence-propagation-check.js +1 -1
- package/dist/scripts/agent-strategy-to-lease-wiring-check.js +2 -2
- package/dist/scripts/agent-zellij-dynamic-backfill-panes-check.js +1 -1
- package/dist/scripts/codex-app-fast-ui-preservation-check.js +2 -2
- package/dist/scripts/codex-app-provider-model-ui-check.js +17 -2
- package/dist/scripts/codex-app-ui-preservation-check.js +6 -5
- package/dist/scripts/codex-lb-fast-ui-preservation-check.js +3 -3
- package/dist/scripts/codex-lb-gpt55-fast-profile-check.js +2 -3
- package/dist/scripts/doctor-fix-proves-codex-read-check.js +1 -1
- package/dist/scripts/doctor-fixes-codex-app-fast-ui-check.js +7 -7
- package/dist/scripts/gate-policy-audit-check.js +2 -2
- package/dist/scripts/install-update-preserves-config-check.js +4 -4
- package/dist/scripts/legacy-upgrade-matrix-check.js +1 -1
- package/dist/scripts/lib/native-cli-session-swarm-check-lib.js +2 -1
- package/dist/scripts/loop-hardening-check-lib.js +1 -1
- package/dist/scripts/naruto-parallelism-mode-check.js +2 -1
- package/dist/scripts/naruto-shadow-clone-swarm-check.js +103 -74
- package/dist/scripts/npm-publish-performance-check.js +2 -1
- package/dist/scripts/packlist-performance-check.js +5 -2
- package/dist/scripts/release-aggressive-resource-governor-check.js +2 -2
- package/dist/scripts/release-dag-full-coverage-check.js +7 -7
- package/dist/scripts/release-gate-existence-audit.js +8 -9
- package/dist/scripts/release-parallel-check.js +1 -2
- package/dist/scripts/release-real-check.js +1 -1
- package/dist/scripts/scheduler-batch-dispatch-check.js +1 -1
- package/dist/scripts/sizecheck.js +9 -4
- package/dist/scripts/sks-menubar-install-check.js +7 -0
- package/dist/scripts/update-default-command-check.js +4 -2
- package/package.json +5 -17
|
@@ -1,39 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema": "sks.skills-manifest.v1",
|
|
3
|
-
"package_version": "6.0.
|
|
3
|
+
"package_version": "6.0.3",
|
|
4
4
|
"skills": [
|
|
5
5
|
{
|
|
6
6
|
"canonical_name": "answer",
|
|
7
7
|
"type": "official",
|
|
8
|
-
"content_sha256": "
|
|
8
|
+
"content_sha256": "e998c82f639a65f8191d2848c70343c44085b2b94364606f0e3407d3184ffe5c",
|
|
9
9
|
"hash_history": [],
|
|
10
10
|
"deprecated_aliases": []
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"canonical_name": "autoresearch",
|
|
14
14
|
"type": "official",
|
|
15
|
-
"content_sha256": "
|
|
15
|
+
"content_sha256": "3af85d06e7cd5c51fe69d7ab4a3a215f44a9a03193f3baac41eed6e43bed0b1c",
|
|
16
16
|
"hash_history": [],
|
|
17
17
|
"deprecated_aliases": []
|
|
18
18
|
},
|
|
19
19
|
{
|
|
20
20
|
"canonical_name": "autoresearch-loop",
|
|
21
21
|
"type": "official",
|
|
22
|
-
"content_sha256": "
|
|
22
|
+
"content_sha256": "9a34dc195385f2767e213f7043bf6aa63b43cdb2728d42a996dc3b36bde527d9",
|
|
23
23
|
"hash_history": [],
|
|
24
24
|
"deprecated_aliases": []
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
27
|
"canonical_name": "commit",
|
|
28
28
|
"type": "official",
|
|
29
|
-
"content_sha256": "
|
|
29
|
+
"content_sha256": "8487490b9c1100cb4ac9dc4eba6f5774793cfaa3213186b000672bbb8e6e8a73",
|
|
30
30
|
"hash_history": [],
|
|
31
31
|
"deprecated_aliases": []
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
34
|
"canonical_name": "commit-and-push",
|
|
35
35
|
"type": "official",
|
|
36
|
-
"content_sha256": "
|
|
36
|
+
"content_sha256": "014791a3d63090f53d377546f449ccacd2fec6b11852fb7b7899643f2c20e74b",
|
|
37
37
|
"hash_history": [],
|
|
38
38
|
"deprecated_aliases": []
|
|
39
39
|
},
|
|
@@ -47,56 +47,56 @@
|
|
|
47
47
|
{
|
|
48
48
|
"canonical_name": "computer-use-fast",
|
|
49
49
|
"type": "official",
|
|
50
|
-
"content_sha256": "
|
|
50
|
+
"content_sha256": "60f234d1eccc9255721480c0da99ecff8121821906ba3ecbe2fb20e55fc12768",
|
|
51
51
|
"hash_history": [],
|
|
52
52
|
"deprecated_aliases": []
|
|
53
53
|
},
|
|
54
54
|
{
|
|
55
55
|
"canonical_name": "context7-docs",
|
|
56
56
|
"type": "official",
|
|
57
|
-
"content_sha256": "
|
|
57
|
+
"content_sha256": "65b2418c650f2bea80ae6bba7dd199c3919572f58d9296d029baa60ed1a90392",
|
|
58
58
|
"hash_history": [],
|
|
59
59
|
"deprecated_aliases": []
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
"canonical_name": "cu",
|
|
63
63
|
"type": "official",
|
|
64
|
-
"content_sha256": "
|
|
64
|
+
"content_sha256": "29a8e81370c41bf16822917c3c31685838550222e8a7168ecb70e9ef6a07c097",
|
|
65
65
|
"hash_history": [],
|
|
66
66
|
"deprecated_aliases": []
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
69
|
"canonical_name": "db",
|
|
70
70
|
"type": "official",
|
|
71
|
-
"content_sha256": "
|
|
71
|
+
"content_sha256": "ddb3c89eaf1bdb8f82f6fcdf1dedbd433a5a4b6574fa2c1c667b27ce6fe5baef",
|
|
72
72
|
"hash_history": [],
|
|
73
73
|
"deprecated_aliases": []
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
"canonical_name": "db-safety-guard",
|
|
77
77
|
"type": "official",
|
|
78
|
-
"content_sha256": "
|
|
78
|
+
"content_sha256": "f5ba39e2c74930a6890ab408b4003a21b750796492f463c88d1ea2b973a0a6e6",
|
|
79
79
|
"hash_history": [],
|
|
80
80
|
"deprecated_aliases": []
|
|
81
81
|
},
|
|
82
82
|
{
|
|
83
83
|
"canonical_name": "design-artifact-expert",
|
|
84
84
|
"type": "official",
|
|
85
|
-
"content_sha256": "
|
|
85
|
+
"content_sha256": "2cbab24b56f24442b2fa5874231c32c880ea66cf64508eeefd01a4c63e656b71",
|
|
86
86
|
"hash_history": [],
|
|
87
87
|
"deprecated_aliases": []
|
|
88
88
|
},
|
|
89
89
|
{
|
|
90
90
|
"canonical_name": "design-system-builder",
|
|
91
91
|
"type": "official",
|
|
92
|
-
"content_sha256": "
|
|
92
|
+
"content_sha256": "0b59b0a0bcf6e386e4c3c5e81d2d1e5e0e98634ed6d5f1e6450f298804842b8d",
|
|
93
93
|
"hash_history": [],
|
|
94
94
|
"deprecated_aliases": []
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
97
|
"canonical_name": "design-ui-editor",
|
|
98
98
|
"type": "official",
|
|
99
|
-
"content_sha256": "
|
|
99
|
+
"content_sha256": "08c285001dc9ed9ed7cc386c54ea0d02315a6e044dd67c30f620fdc635a29592",
|
|
100
100
|
"hash_history": [],
|
|
101
101
|
"deprecated_aliases": []
|
|
102
102
|
},
|
|
@@ -110,98 +110,98 @@
|
|
|
110
110
|
{
|
|
111
111
|
"canonical_name": "fast-mode",
|
|
112
112
|
"type": "official",
|
|
113
|
-
"content_sha256": "
|
|
113
|
+
"content_sha256": "db81f997da605cd90fa1b5d39b2dad2e82ccfcfe9088c68f8d8c612b3abac05c",
|
|
114
114
|
"hash_history": [],
|
|
115
115
|
"deprecated_aliases": []
|
|
116
116
|
},
|
|
117
117
|
{
|
|
118
118
|
"canonical_name": "fast-off",
|
|
119
119
|
"type": "official",
|
|
120
|
-
"content_sha256": "
|
|
120
|
+
"content_sha256": "694491229134275470ac4a402cccfebdb990ddcabd57bc9b6e7311ce7d491050",
|
|
121
121
|
"hash_history": [],
|
|
122
122
|
"deprecated_aliases": []
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
125
|
"canonical_name": "fast-on",
|
|
126
126
|
"type": "official",
|
|
127
|
-
"content_sha256": "
|
|
127
|
+
"content_sha256": "414752ae9f6ff0d16b10d9789facc9519e488e6428b997b5ff6792e1acbbfa3f",
|
|
128
128
|
"hash_history": [],
|
|
129
129
|
"deprecated_aliases": []
|
|
130
130
|
},
|
|
131
131
|
{
|
|
132
132
|
"canonical_name": "from-chat-img",
|
|
133
133
|
"type": "official",
|
|
134
|
-
"content_sha256": "
|
|
134
|
+
"content_sha256": "99e7a28c48ec7048af7521dee0985275599ebc9dc592970be24c1840319418dc",
|
|
135
135
|
"hash_history": [],
|
|
136
136
|
"deprecated_aliases": []
|
|
137
137
|
},
|
|
138
138
|
{
|
|
139
139
|
"canonical_name": "getdesign-reference",
|
|
140
140
|
"type": "official",
|
|
141
|
-
"content_sha256": "
|
|
141
|
+
"content_sha256": "e613001d95ce7b6dc12995a0cf33fa0ddc566fc1d4d7c394c28eaae31ac39689",
|
|
142
142
|
"hash_history": [],
|
|
143
143
|
"deprecated_aliases": []
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
146
|
"canonical_name": "goal",
|
|
147
147
|
"type": "official",
|
|
148
|
-
"content_sha256": "
|
|
148
|
+
"content_sha256": "d404f45e52e0e007b3200d7cf06caa52895f04b569ea9f155b1c08e46ab7483d",
|
|
149
149
|
"hash_history": [],
|
|
150
150
|
"deprecated_aliases": []
|
|
151
151
|
},
|
|
152
152
|
{
|
|
153
153
|
"canonical_name": "gx",
|
|
154
154
|
"type": "official",
|
|
155
|
-
"content_sha256": "
|
|
155
|
+
"content_sha256": "fd2b06d9bf302491dd8f5f820c152fddd8e9de8c44df22bf28fcf9cba4cf3b2c",
|
|
156
156
|
"hash_history": [],
|
|
157
157
|
"deprecated_aliases": []
|
|
158
158
|
},
|
|
159
159
|
{
|
|
160
160
|
"canonical_name": "gx-visual-generate",
|
|
161
161
|
"type": "official",
|
|
162
|
-
"content_sha256": "
|
|
162
|
+
"content_sha256": "93ae86625c59e99e72b367b88aa3ea93f1fda18629ab4f1a9fa442f3d6425e45",
|
|
163
163
|
"hash_history": [],
|
|
164
164
|
"deprecated_aliases": []
|
|
165
165
|
},
|
|
166
166
|
{
|
|
167
167
|
"canonical_name": "gx-visual-read",
|
|
168
168
|
"type": "official",
|
|
169
|
-
"content_sha256": "
|
|
169
|
+
"content_sha256": "6a716ed8234eb15ca427a2a5e936d1e03a99957081bdcea78f7ddcb29b1963d3",
|
|
170
170
|
"hash_history": [],
|
|
171
171
|
"deprecated_aliases": []
|
|
172
172
|
},
|
|
173
173
|
{
|
|
174
174
|
"canonical_name": "gx-visual-validate",
|
|
175
175
|
"type": "official",
|
|
176
|
-
"content_sha256": "
|
|
176
|
+
"content_sha256": "d752456bfcc8106ee6a01aeb4c1d4492a5958bb6d3b5b5c4995e579772863b2f",
|
|
177
177
|
"hash_history": [],
|
|
178
178
|
"deprecated_aliases": []
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"canonical_name": "help",
|
|
182
182
|
"type": "official",
|
|
183
|
-
"content_sha256": "
|
|
183
|
+
"content_sha256": "98e1d87c0af00dd38755324106ac7bc09e7f2bdef1406d8554b90f2ad1cf7590",
|
|
184
184
|
"hash_history": [],
|
|
185
185
|
"deprecated_aliases": []
|
|
186
186
|
},
|
|
187
187
|
{
|
|
188
188
|
"canonical_name": "honest-mode",
|
|
189
189
|
"type": "official",
|
|
190
|
-
"content_sha256": "
|
|
190
|
+
"content_sha256": "b15cb21b54cd5e118ed4b7a1ba56572a83babb712f22ce4e91be678b16b26786",
|
|
191
191
|
"hash_history": [],
|
|
192
192
|
"deprecated_aliases": []
|
|
193
193
|
},
|
|
194
194
|
{
|
|
195
195
|
"canonical_name": "hproof-claim-ledger",
|
|
196
196
|
"type": "official",
|
|
197
|
-
"content_sha256": "
|
|
197
|
+
"content_sha256": "26af00319b576912ae82af6da5241f492e61ed1b0f72553d76dcf92f830f5d90",
|
|
198
198
|
"hash_history": [],
|
|
199
199
|
"deprecated_aliases": []
|
|
200
200
|
},
|
|
201
201
|
{
|
|
202
202
|
"canonical_name": "hproof-evidence-bind",
|
|
203
203
|
"type": "official",
|
|
204
|
-
"content_sha256": "
|
|
204
|
+
"content_sha256": "f652e708b8ffa70afb624497e556d221026970f05917a76759c9f9feed3d4ed9",
|
|
205
205
|
"hash_history": [],
|
|
206
206
|
"deprecated_aliases": []
|
|
207
207
|
},
|
|
@@ -215,14 +215,14 @@
|
|
|
215
215
|
{
|
|
216
216
|
"canonical_name": "imagegen",
|
|
217
217
|
"type": "official",
|
|
218
|
-
"content_sha256": "
|
|
218
|
+
"content_sha256": "f15c4e3021e5a6e65e52f2925c7433e7f4a723341ddec662137cd021600b394a",
|
|
219
219
|
"hash_history": [],
|
|
220
220
|
"deprecated_aliases": []
|
|
221
221
|
},
|
|
222
222
|
{
|
|
223
223
|
"canonical_name": "imagegen-source-scout",
|
|
224
224
|
"type": "official",
|
|
225
|
-
"content_sha256": "
|
|
225
|
+
"content_sha256": "153c4efedb5701e6c75f03630132ddfe043132caeda06c01b10efad6684775b1",
|
|
226
226
|
"hash_history": [],
|
|
227
227
|
"deprecated_aliases": []
|
|
228
228
|
},
|
|
@@ -236,7 +236,7 @@
|
|
|
236
236
|
{
|
|
237
237
|
"canonical_name": "kage-bunshin",
|
|
238
238
|
"type": "official",
|
|
239
|
-
"content_sha256": "
|
|
239
|
+
"content_sha256": "437e7f168f4cdeaa5e06a6f2cd2ed3bd9a9e75240b433d1ae3c0d81f23108891",
|
|
240
240
|
"hash_history": [],
|
|
241
241
|
"deprecated_aliases": []
|
|
242
242
|
},
|
|
@@ -250,14 +250,14 @@
|
|
|
250
250
|
{
|
|
251
251
|
"canonical_name": "mad-db",
|
|
252
252
|
"type": "official",
|
|
253
|
-
"content_sha256": "
|
|
253
|
+
"content_sha256": "71cc549b340214fe1a2b6ff27452fd5fbca0779e9680cbc5c8e4e45359480dea",
|
|
254
254
|
"hash_history": [],
|
|
255
255
|
"deprecated_aliases": []
|
|
256
256
|
},
|
|
257
257
|
{
|
|
258
258
|
"canonical_name": "mad-sks",
|
|
259
259
|
"type": "official",
|
|
260
|
-
"content_sha256": "
|
|
260
|
+
"content_sha256": "bf4be09ca0412ca5d87e8800fe54fdc342efc5c60d44859385f78d27c27caa51",
|
|
261
261
|
"hash_history": [],
|
|
262
262
|
"deprecated_aliases": []
|
|
263
263
|
},
|
|
@@ -273,35 +273,35 @@
|
|
|
273
273
|
{
|
|
274
274
|
"canonical_name": "performance-evaluator",
|
|
275
275
|
"type": "official",
|
|
276
|
-
"content_sha256": "
|
|
276
|
+
"content_sha256": "ffff2cad9262d330a6740fc11024948198f1c72d38f2e37eaf1b1ce9b342ff76",
|
|
277
277
|
"hash_history": [],
|
|
278
278
|
"deprecated_aliases": []
|
|
279
279
|
},
|
|
280
280
|
{
|
|
281
281
|
"canonical_name": "pipeline-runner",
|
|
282
282
|
"type": "official",
|
|
283
|
-
"content_sha256": "
|
|
283
|
+
"content_sha256": "841db442ffb485448fbf8698a9adfd4a7df073a26e681d92c2b9b0777706fb4c",
|
|
284
284
|
"hash_history": [],
|
|
285
285
|
"deprecated_aliases": []
|
|
286
286
|
},
|
|
287
287
|
{
|
|
288
288
|
"canonical_name": "plan",
|
|
289
289
|
"type": "official",
|
|
290
|
-
"content_sha256": "
|
|
290
|
+
"content_sha256": "89a57d045b6b24b0fd1b42599fab815deb5654ef464e4579af8aeaf79715447b",
|
|
291
291
|
"hash_history": [],
|
|
292
292
|
"deprecated_aliases": []
|
|
293
293
|
},
|
|
294
294
|
{
|
|
295
295
|
"canonical_name": "ppt",
|
|
296
296
|
"type": "official",
|
|
297
|
-
"content_sha256": "
|
|
297
|
+
"content_sha256": "bdcfd0876d782c1e247f97f5939c3784d2030c3ccfa975aac47a58a5c2dcdda9",
|
|
298
298
|
"hash_history": [],
|
|
299
299
|
"deprecated_aliases": []
|
|
300
300
|
},
|
|
301
301
|
{
|
|
302
302
|
"canonical_name": "prompt-pipeline",
|
|
303
303
|
"type": "official",
|
|
304
|
-
"content_sha256": "
|
|
304
|
+
"content_sha256": "720fa5ddb9f49097aefed8d12ff7de3afb9046849f2dc7bf09a96d0126ec22c2",
|
|
305
305
|
"hash_history": [],
|
|
306
306
|
"deprecated_aliases": []
|
|
307
307
|
},
|
|
@@ -317,21 +317,21 @@
|
|
|
317
317
|
{
|
|
318
318
|
"canonical_name": "reasoning-router",
|
|
319
319
|
"type": "official",
|
|
320
|
-
"content_sha256": "
|
|
320
|
+
"content_sha256": "2feb0bfe8c7655c82335f4fa8ae60218c2c1fe95718ce1482918b008447f6916",
|
|
321
321
|
"hash_history": [],
|
|
322
322
|
"deprecated_aliases": []
|
|
323
323
|
},
|
|
324
324
|
{
|
|
325
325
|
"canonical_name": "reflection",
|
|
326
326
|
"type": "official",
|
|
327
|
-
"content_sha256": "
|
|
327
|
+
"content_sha256": "732243caf4830d9ad2c99db9365db85e0b3739c8a6c61c0aa955b35e2c18f486",
|
|
328
328
|
"hash_history": [],
|
|
329
329
|
"deprecated_aliases": []
|
|
330
330
|
},
|
|
331
331
|
{
|
|
332
332
|
"canonical_name": "release-review",
|
|
333
333
|
"type": "official",
|
|
334
|
-
"content_sha256": "
|
|
334
|
+
"content_sha256": "b127ab6be25489aeda913e5e3ec7f9d6c0a7ba5e4ffdc96466d20382aedb63f3",
|
|
335
335
|
"hash_history": [],
|
|
336
336
|
"deprecated_aliases": []
|
|
337
337
|
},
|
|
@@ -345,14 +345,14 @@
|
|
|
345
345
|
{
|
|
346
346
|
"canonical_name": "research-discovery",
|
|
347
347
|
"type": "official",
|
|
348
|
-
"content_sha256": "
|
|
348
|
+
"content_sha256": "4258d3afee6e750508a90a0cec8acad89ec9931f10c39ee24dff73dccb85404d",
|
|
349
349
|
"hash_history": [],
|
|
350
350
|
"deprecated_aliases": []
|
|
351
351
|
},
|
|
352
352
|
{
|
|
353
353
|
"canonical_name": "review",
|
|
354
354
|
"type": "official",
|
|
355
|
-
"content_sha256": "
|
|
355
|
+
"content_sha256": "6845dc46498811e05271def534d98f4eda5d58e91e7baae0488da0f84762a127",
|
|
356
356
|
"hash_history": [],
|
|
357
357
|
"deprecated_aliases": []
|
|
358
358
|
},
|
|
@@ -373,14 +373,14 @@
|
|
|
373
373
|
{
|
|
374
374
|
"canonical_name": "shadow-clone",
|
|
375
375
|
"type": "official",
|
|
376
|
-
"content_sha256": "
|
|
376
|
+
"content_sha256": "e5a08cb754c3914aca87d3bc20abe7f2e3d2d9ab1605e493d44c7eebaffdf0b0",
|
|
377
377
|
"hash_history": [],
|
|
378
378
|
"deprecated_aliases": []
|
|
379
379
|
},
|
|
380
380
|
{
|
|
381
381
|
"canonical_name": "sks",
|
|
382
382
|
"type": "official",
|
|
383
|
-
"content_sha256": "
|
|
383
|
+
"content_sha256": "09b20a30e60426eeed54d6d846f8fba965afd3fd816108a392670bac2c80c57c",
|
|
384
384
|
"hash_history": [],
|
|
385
385
|
"deprecated_aliases": [
|
|
386
386
|
"ralph",
|
|
@@ -392,28 +392,28 @@
|
|
|
392
392
|
{
|
|
393
393
|
"canonical_name": "solution-scout",
|
|
394
394
|
"type": "official",
|
|
395
|
-
"content_sha256": "
|
|
395
|
+
"content_sha256": "995a08ef4c2096610778b16ae967895a2b46dc116372b15bb4ec1eb7821a68cc",
|
|
396
396
|
"hash_history": [],
|
|
397
397
|
"deprecated_aliases": []
|
|
398
398
|
},
|
|
399
399
|
{
|
|
400
400
|
"canonical_name": "super-search",
|
|
401
401
|
"type": "official",
|
|
402
|
-
"content_sha256": "
|
|
402
|
+
"content_sha256": "71a612120bd5ba44f5f353195f850fb172bf143c9983cd9368922b847c6f0059",
|
|
403
403
|
"hash_history": [],
|
|
404
404
|
"deprecated_aliases": []
|
|
405
405
|
},
|
|
406
406
|
{
|
|
407
407
|
"canonical_name": "swarm",
|
|
408
408
|
"type": "official",
|
|
409
|
-
"content_sha256": "
|
|
409
|
+
"content_sha256": "ffc21a16b55b7ecd2774b35859d66060ee05e6042a9b4d15764789b2f85fb476",
|
|
410
410
|
"hash_history": [],
|
|
411
411
|
"deprecated_aliases": []
|
|
412
412
|
},
|
|
413
413
|
{
|
|
414
414
|
"canonical_name": "team",
|
|
415
415
|
"type": "official",
|
|
416
|
-
"content_sha256": "
|
|
416
|
+
"content_sha256": "be28190c14eb8df6710f2ee6455e59ec341bc7d72cf263761c675054ece55930",
|
|
417
417
|
"hash_history": [],
|
|
418
418
|
"deprecated_aliases": [
|
|
419
419
|
"agent-team"
|
|
@@ -422,35 +422,35 @@
|
|
|
422
422
|
{
|
|
423
423
|
"canonical_name": "turbo-context-pack",
|
|
424
424
|
"type": "official",
|
|
425
|
-
"content_sha256": "
|
|
425
|
+
"content_sha256": "1f36adb488557888dabde7495853ad6e4c1277904ce23c31830fcf425204e883",
|
|
426
426
|
"hash_history": [],
|
|
427
427
|
"deprecated_aliases": []
|
|
428
428
|
},
|
|
429
429
|
{
|
|
430
430
|
"canonical_name": "ui-ux-review",
|
|
431
431
|
"type": "official",
|
|
432
|
-
"content_sha256": "
|
|
432
|
+
"content_sha256": "0e2bb12ce86d9020f39aa3c8d467d0d3143aa6e86630eb853e8834f332343824",
|
|
433
433
|
"hash_history": [],
|
|
434
434
|
"deprecated_aliases": []
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
437
|
"canonical_name": "ux-review",
|
|
438
438
|
"type": "official",
|
|
439
|
-
"content_sha256": "
|
|
439
|
+
"content_sha256": "a4fc3ab516236f42df395eaf546f46875d6d910cdcb3fb5153c5ae60ad8e1352",
|
|
440
440
|
"hash_history": [],
|
|
441
441
|
"deprecated_aliases": []
|
|
442
442
|
},
|
|
443
443
|
{
|
|
444
444
|
"canonical_name": "visual-review",
|
|
445
445
|
"type": "official",
|
|
446
|
-
"content_sha256": "
|
|
446
|
+
"content_sha256": "a2514e295d5f6f284d8e9f522f7d61886ca1d4173d377638b81c5413158b7359",
|
|
447
447
|
"hash_history": [],
|
|
448
448
|
"deprecated_aliases": []
|
|
449
449
|
},
|
|
450
450
|
{
|
|
451
451
|
"canonical_name": "wiki",
|
|
452
452
|
"type": "official",
|
|
453
|
-
"content_sha256": "
|
|
453
|
+
"content_sha256": "af1e65dbb007b1da4e6c8ff34d62d67bdfdf8b74965ada7358f4281181096e2d",
|
|
454
454
|
"hash_history": [],
|
|
455
455
|
"deprecated_aliases": [
|
|
456
456
|
"wiki-refresh",
|
|
@@ -460,21 +460,21 @@
|
|
|
460
460
|
{
|
|
461
461
|
"canonical_name": "with-local-llm-off",
|
|
462
462
|
"type": "official",
|
|
463
|
-
"content_sha256": "
|
|
463
|
+
"content_sha256": "a098b58470ccb56ad7a72b49e718a8fdcdcbf2d452f5d17481d3cda113c6b750",
|
|
464
464
|
"hash_history": [],
|
|
465
465
|
"deprecated_aliases": []
|
|
466
466
|
},
|
|
467
467
|
{
|
|
468
468
|
"canonical_name": "with-local-llm-on",
|
|
469
469
|
"type": "official",
|
|
470
|
-
"content_sha256": "
|
|
470
|
+
"content_sha256": "d088553c047d99ca6ba27fa1dec6866ab98d5b29ef01342969b178dd910c9509",
|
|
471
471
|
"hash_history": [],
|
|
472
472
|
"deprecated_aliases": []
|
|
473
473
|
},
|
|
474
474
|
{
|
|
475
475
|
"canonical_name": "work",
|
|
476
476
|
"type": "official",
|
|
477
|
-
"content_sha256": "
|
|
477
|
+
"content_sha256": "16bcc1dfc7ae3d2b4337cbe6033b5fc84d86d810bfd06c3699a228d7c2854cd0",
|
|
478
478
|
"hash_history": [],
|
|
479
479
|
"deprecated_aliases": []
|
|
480
480
|
}
|