@slycode/slycode 0.2.22 → 0.2.24
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/dist/bridge/api.d.ts +2 -1
- package/dist/bridge/api.js +114 -1
- package/dist/bridge/api.js.map +1 -1
- package/dist/bridge/git-utils.d.ts +9 -0
- package/dist/bridge/git-utils.js +49 -0
- package/dist/bridge/git-utils.js.map +1 -0
- package/dist/bridge/index.js +8 -2
- package/dist/bridge/index.js.map +1 -1
- package/dist/bridge/response-store.d.ts +46 -0
- package/dist/bridge/response-store.js +95 -0
- package/dist/bridge/response-store.js.map +1 -0
- package/dist/bridge/session-manager.d.ts +33 -1
- package/dist/bridge/session-manager.js +185 -2
- package/dist/bridge/session-manager.js.map +1 -1
- package/dist/bridge/types.d.ts +37 -0
- package/dist/data/scaffold-templates/tutorial-project/documentation/kanban.json +1 -1
- package/dist/messaging/bridge-client.d.ts +4 -0
- package/dist/messaging/bridge-client.js +20 -1
- package/dist/messaging/bridge-client.js.map +1 -1
- package/dist/messaging/index.js +38 -10
- package/dist/messaging/index.js.map +1 -1
- package/dist/scripts/kanban.js +448 -2
- package/dist/scripts/scaffold.js +40 -1
- package/dist/store/actions/approve.md +1 -1
- package/dist/store/actions/challenge-implementation.md +149 -0
- package/dist/store/actions/challenge.md +119 -0
- package/dist/store/actions/checkpoint.md +2 -2
- package/dist/store/actions/context.md +3 -3
- package/dist/store/actions/create-card.md +1 -1
- package/dist/store/actions/deep-design.md +13 -3
- package/dist/store/actions/design-requirements.md +11 -1
- package/dist/store/actions/explore.md +1 -1
- package/dist/store/actions/implement.md +1 -1
- package/dist/store/actions/onboard.md +2 -4
- package/dist/store/actions/show-card.md +2 -2
- package/dist/store/actions/summarize.md +3 -3
- package/dist/store/actions/test-review.md +1 -1
- package/dist/store/skills/kanban/SKILL.md +77 -3
- package/dist/web/.next/BUILD_ID +1 -1
- package/dist/web/.next/app-path-routes-manifest.json +1 -0
- package/dist/web/.next/build-manifest.json +2 -2
- package/dist/web/.next/prerender-manifest.json +3 -3
- package/dist/web/.next/routes-manifest.json +6 -0
- package/dist/web/.next/server/app/_global-error.html +2 -2
- package/dist/web/.next/server/app/_global-error.rsc +1 -1
- package/dist/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/dist/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/dist/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/dist/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/dist/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/dist/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/dist/web/.next/server/app/_not-found.html +1 -1
- package/dist/web/.next/server/app/_not-found.rsc +10 -10
- package/dist/web/.next/server/app/_not-found.segments/_full.segment.rsc +10 -10
- package/dist/web/.next/server/app/_not-found.segments/_head.segment.rsc +4 -4
- package/dist/web/.next/server/app/_not-found.segments/_index.segment.rsc +5 -5
- package/dist/web/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +2 -2
- package/dist/web/.next/server/app/_not-found.segments/_not-found.segment.rsc +3 -3
- package/dist/web/.next/server/app/_not-found.segments/_tree.segment.rsc +2 -2
- package/dist/web/.next/server/app/api/changelog/route/app-paths-manifest.json +3 -0
- package/dist/web/.next/server/app/api/changelog/route/build-manifest.json +11 -0
- package/dist/web/.next/server/app/api/changelog/route/server-reference-manifest.json +4 -0
- package/dist/web/.next/server/app/api/changelog/route.js +7 -0
- package/dist/web/.next/server/app/api/changelog/route.js.map +5 -0
- package/dist/web/.next/server/app/api/changelog/route.js.nft.json +1 -0
- package/dist/web/.next/server/app/api/changelog/route_client-reference-manifest.js +2 -0
- package/dist/web/.next/server/app/api/cli-assets/assistant/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/cli-assets/fix/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/cli-assets/import/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/cli-assets/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/cli-assets/store/preview/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/cli-assets/store/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/cli-assets/sync/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/cli-assets/updates/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/dashboard/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/file/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/git-status/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/kanban/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/kanban/stream/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/projects/[id]/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/projects/reorder/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/projects/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/scheduler/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/search/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/sly-actions/invalidate/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/sly-actions/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/api/version-check/route.js.nft.json +1 -1
- package/dist/web/.next/server/app/page.js.nft.json +1 -1
- package/dist/web/.next/server/app/page_client-reference-manifest.js +1 -1
- package/dist/web/.next/server/app/project/[id]/page.js.nft.json +1 -1
- package/dist/web/.next/server/app/project/[id]/page_client-reference-manifest.js +1 -1
- package/dist/web/.next/server/app-paths-manifest.json +1 -0
- package/dist/web/.next/server/chunks/[root-of-the-server]__92f81907._.js +1 -1
- package/dist/web/.next/server/chunks/[root-of-the-server]__a259539f._.js +3 -0
- package/dist/web/.next/server/chunks/_next-internal_server_app_api_changelog_route_actions_d6e239bf.js +3 -0
- package/dist/web/.next/server/chunks/node_modules_next_dist_esm_build_templates_app-route_18324462.js +1 -1
- package/dist/web/.next/server/chunks/src_lib_scheduler_ts_03988e3e._.js +1 -1
- package/dist/web/.next/server/chunks/src_lib_scheduler_ts_7120457c._.js +1 -1
- package/dist/web/.next/server/chunks/ssr/[root-of-the-server]__1f5fc489._.js +4 -3
- package/dist/web/.next/server/chunks/ssr/{[root-of-the-server]__077f472c._.js → [root-of-the-server]__6183d28c._.js} +1 -1
- package/dist/web/.next/server/chunks/ssr/[root-of-the-server]__bcbe4bf2._.js +4 -3
- package/dist/web/.next/server/chunks/ssr/src_components_Dashboard_tsx_efc4dc27._.js +1 -1
- package/dist/web/.next/server/chunks/ssr/src_components_c4135402._.js +1 -1
- package/dist/web/.next/server/chunks/ssr/src_contexts_VoiceContext_tsx_cfba7292._.js +1 -1
- package/dist/web/.next/server/pages/404.html +1 -1
- package/dist/web/.next/server/pages/500.html +2 -2
- package/dist/web/.next/server/server-reference-manifest.js +1 -1
- package/dist/web/.next/server/server-reference-manifest.json +1 -1
- package/dist/web/.next/static/chunks/293449b828207656.css +1 -0
- package/dist/web/.next/static/chunks/{8415039c5941cf5c.js → 3a5721af09d1c753.js} +4 -3
- package/dist/web/.next/static/chunks/{8fb2a99c64580de7.js → 98311243e9a5a0ec.js} +1 -1
- package/dist/web/.next/static/chunks/{b8e0c1aeea4a14bc.js → a47f36b030917d1f.js} +1 -1
- package/dist/web/.next/static/chunks/d60c422421920130.js +5 -0
- package/dist/web/.next/static/chunks/{f55f3c8c1a52f80c.js → f566a4b05a9cd6ba.js} +1 -1
- package/dist/web/.next/static/chunks/{4049cceee6a49323.js → fa78afe3ceed998b.js} +1 -1
- package/dist/web/src/app/api/changelog/route.ts +45 -0
- package/dist/web/src/app/api/kanban/route.ts +52 -12
- package/dist/web/src/app/api/terminal-classes/route.ts +43 -4
- package/dist/web/src/components/ActivityFeed.tsx +3 -0
- package/dist/web/src/components/BranchTab.tsx +115 -0
- package/dist/web/src/components/ChangelogModal.tsx +233 -0
- package/dist/web/src/components/Dashboard.tsx +11 -0
- package/dist/web/src/components/GlobalClaudePanel.tsx +6 -0
- package/dist/web/src/components/ProjectKanban.tsx +38 -8
- package/dist/web/src/components/VersionUpdateToast.tsx +6 -4
- package/dist/web/src/components/VoiceControlBar.tsx +1 -1
- package/dist/web/src/lib/scheduler.ts +2 -1
- package/dist/web/src/lib/types.ts +24 -0
- package/dist/web/tsconfig.tsbuildinfo +1 -1
- package/lib/cli/sync.d.ts +7 -0
- package/lib/cli/sync.d.ts.map +1 -1
- package/lib/cli/sync.js +25 -0
- package/lib/cli/sync.js.map +1 -1
- package/lib/cli/update.d.ts.map +1 -1
- package/lib/cli/update.js +9 -0
- package/lib/cli/update.js.map +1 -1
- package/package.json +1 -1
- package/templates/changelog.json +268 -0
- package/templates/kanban-seed.json +1 -1
- package/templates/store/actions/approve.md +1 -1
- package/templates/store/actions/challenge-implementation.md +149 -0
- package/templates/store/actions/challenge.md +119 -0
- package/templates/store/actions/checkpoint.md +2 -2
- package/templates/store/actions/context.md +3 -3
- package/templates/store/actions/create-card.md +1 -1
- package/templates/store/actions/deep-design.md +13 -3
- package/templates/store/actions/design-requirements.md +11 -1
- package/templates/store/actions/explore.md +1 -1
- package/templates/store/actions/implement.md +1 -1
- package/templates/store/actions/onboard.md +2 -4
- package/templates/store/actions/show-card.md +2 -2
- package/templates/store/actions/summarize.md +3 -3
- package/templates/store/actions/test-review.md +1 -1
- package/templates/store/skills/kanban/SKILL.md +77 -3
- package/templates/terminal-classes.json +51 -0
- package/templates/tutorial-project/documentation/kanban.json +1 -1
- package/templates/updates/actions/approve.md +1 -1
- package/templates/updates/actions/challenge-implementation.md +149 -0
- package/templates/updates/actions/challenge.md +119 -0
- package/templates/updates/actions/checkpoint.md +2 -2
- package/templates/updates/actions/context.md +3 -3
- package/templates/updates/actions/create-card.md +1 -1
- package/templates/updates/actions/deep-design.md +13 -3
- package/templates/updates/actions/design-requirements.md +11 -1
- package/templates/updates/actions/explore.md +1 -1
- package/templates/updates/actions/implement.md +1 -1
- package/templates/updates/actions/onboard.md +2 -4
- package/templates/updates/actions/show-card.md +2 -2
- package/templates/updates/actions/summarize.md +3 -3
- package/templates/updates/actions/test-review.md +1 -1
- package/templates/updates/skills/kanban/SKILL.md +77 -3
- package/dist/web/.next/static/chunks/18cfbdd7e977bb01.css +0 -1
- package/dist/web/.next/static/chunks/a0f5f9cdee8a22c1.js +0 -4
- /package/dist/web/.next/static/{b2V8jC3HBMi4vgm7Kie3H → O1Ine2WtyXv6EQJcwHyOV}/_buildManifest.js +0 -0
- /package/dist/web/.next/static/{b2V8jC3HBMi4vgm7Kie3H → O1Ine2WtyXv6EQJcwHyOV}/_clientMiddlewareManifest.json +0 -0
- /package/dist/web/.next/static/{b2V8jC3HBMi4vgm7Kie3H → O1Ine2WtyXv6EQJcwHyOV}/_ssgManifest.js +0 -0
package/lib/cli/sync.d.ts
CHANGED
|
@@ -20,5 +20,12 @@ export declare function refreshUpdates(workspace: string): RefreshResult;
|
|
|
20
20
|
export declare function refreshProviders(workspace: string): {
|
|
21
21
|
updated: boolean;
|
|
22
22
|
};
|
|
23
|
+
/**
|
|
24
|
+
* Seed terminal-classes.json from package templates if missing in workspace.
|
|
25
|
+
* This ensures existing installations get the file on first sync/update.
|
|
26
|
+
*/
|
|
27
|
+
export declare function refreshTerminalClasses(workspace: string): {
|
|
28
|
+
seeded: boolean;
|
|
29
|
+
};
|
|
23
30
|
export declare function sync(_args: string[]): Promise<void>;
|
|
24
31
|
//# sourceMappingURL=sync.d.ts.map
|
package/lib/cli/sync.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sync.d.ts","sourceRoot":"","sources":["../../src/cli/sync.ts"],"names":[],"mappings":"AAIA,MAAM,WAAW,aAAa;IAC5B,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,EAAE,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CACvD;AA6BD;;;GAGG;AACH,wBAAgB,cAAc,CAAC,SAAS,EAAE,MAAM,GAAG,aAAa,CAoD/D;AAED;;;GAGG;AACH,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,MAAM,GAAG;IAAE,OAAO,EAAE,OAAO,CAAA;CAAE,CA8BxE;AAED,wBAAsB,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"sync.d.ts","sourceRoot":"","sources":["../../src/cli/sync.ts"],"names":[],"mappings":"AAIA,MAAM,WAAW,aAAa;IAC5B,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,EAAE,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CACvD;AA6BD;;;GAGG;AACH,wBAAgB,cAAc,CAAC,SAAS,EAAE,MAAM,GAAG,aAAa,CAoD/D;AAED;;;GAGG;AACH,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,MAAM,GAAG;IAAE,OAAO,EAAE,OAAO,CAAA;CAAE,CA8BxE;AAED;;;GAGG;AACH,wBAAgB,sBAAsB,CAAC,SAAS,EAAE,MAAM,GAAG;IAAE,MAAM,EAAE,OAAO,CAAA;CAAE,CAe7E;AAED,wBAAsB,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAyBzD"}
|
package/lib/cli/sync.js
CHANGED
|
@@ -35,6 +35,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
36
|
exports.refreshUpdates = refreshUpdates;
|
|
37
37
|
exports.refreshProviders = refreshProviders;
|
|
38
|
+
exports.refreshTerminalClasses = refreshTerminalClasses;
|
|
38
39
|
exports.sync = sync;
|
|
39
40
|
const path = __importStar(require("path"));
|
|
40
41
|
const fs = __importStar(require("fs"));
|
|
@@ -145,6 +146,25 @@ function refreshProviders(workspace) {
|
|
|
145
146
|
return { updated: false };
|
|
146
147
|
}
|
|
147
148
|
}
|
|
149
|
+
/**
|
|
150
|
+
* Seed terminal-classes.json from package templates if missing in workspace.
|
|
151
|
+
* This ensures existing installations get the file on first sync/update.
|
|
152
|
+
*/
|
|
153
|
+
function refreshTerminalClasses(workspace) {
|
|
154
|
+
const workspaceFile = path.join(workspace, 'documentation', 'terminal-classes.json');
|
|
155
|
+
if (fs.existsSync(workspaceFile)) {
|
|
156
|
+
return { seeded: false };
|
|
157
|
+
}
|
|
158
|
+
const packageDir = (0, workspace_1.resolvePackageDir)(workspace);
|
|
159
|
+
if (!packageDir)
|
|
160
|
+
return { seeded: false };
|
|
161
|
+
const templateFile = path.join(packageDir, 'templates', 'terminal-classes.json');
|
|
162
|
+
if (!fs.existsSync(templateFile))
|
|
163
|
+
return { seeded: false };
|
|
164
|
+
fs.mkdirSync(path.join(workspace, 'documentation'), { recursive: true });
|
|
165
|
+
fs.copyFileSync(templateFile, workspaceFile);
|
|
166
|
+
return { seeded: true };
|
|
167
|
+
}
|
|
148
168
|
async function sync(_args) {
|
|
149
169
|
const workspace = (0, workspace_1.resolveWorkspaceOrExit)();
|
|
150
170
|
console.log('Refreshing skill updates...');
|
|
@@ -162,5 +182,10 @@ async function sync(_args) {
|
|
|
162
182
|
console.log('');
|
|
163
183
|
console.log(`Refreshed ${result.refreshed} skill update(s).`);
|
|
164
184
|
}
|
|
185
|
+
// Seed terminal-classes.json if missing
|
|
186
|
+
const tcResult = refreshTerminalClasses(workspace);
|
|
187
|
+
if (tcResult.seeded) {
|
|
188
|
+
console.log(' ✓ Seeded terminal-classes.json');
|
|
189
|
+
}
|
|
165
190
|
}
|
|
166
191
|
//# sourceMappingURL=sync.js.map
|
package/lib/cli/sync.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sync.js","sourceRoot":"","sources":["../../src/cli/sync.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0CA,wCAoDC;AAMD,4CA8BC;AAED,
|
|
1
|
+
{"version":3,"file":"sync.js","sourceRoot":"","sources":["../../src/cli/sync.ts"],"names":[],"mappings":"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"}
|
package/lib/cli/update.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update.d.ts","sourceRoot":"","sources":["../../src/cli/update.ts"],"names":[],"mappings":"AAkEA,wBAAsB,MAAM,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"update.d.ts","sourceRoot":"","sources":["../../src/cli/update.ts"],"names":[],"mappings":"AAkEA,wBAAsB,MAAM,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CA+E3D"}
|
package/lib/cli/update.js
CHANGED
|
@@ -137,6 +137,12 @@ async function update(_args) {
|
|
|
137
137
|
console.log(' ✓ Providers updated');
|
|
138
138
|
console.log('');
|
|
139
139
|
}
|
|
140
|
+
// Step 2c: Seed terminal-classes.json if missing
|
|
141
|
+
const tcResult = (0, sync_1.refreshTerminalClasses)(workspace);
|
|
142
|
+
if (tcResult.seeded) {
|
|
143
|
+
console.log(' ✓ Seeded terminal-classes.json');
|
|
144
|
+
console.log('');
|
|
145
|
+
}
|
|
140
146
|
// Step 3: Restart services using the detected run mode
|
|
141
147
|
if (runMode !== 'none') {
|
|
142
148
|
switch (runMode) {
|
|
@@ -171,6 +177,9 @@ async function update(_args) {
|
|
|
171
177
|
if (providersResult.updated) {
|
|
172
178
|
console.log(' Providers refreshed.');
|
|
173
179
|
}
|
|
180
|
+
if (tcResult.seeded) {
|
|
181
|
+
console.log(' Terminal classes seeded.');
|
|
182
|
+
}
|
|
174
183
|
if (runMode !== 'none') {
|
|
175
184
|
console.log(` Services restarted (${runMode}).`);
|
|
176
185
|
}
|
package/lib/cli/update.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update.js","sourceRoot":"","sources":["../../src/cli/update.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkEA,
|
|
1
|
+
{"version":3,"file":"update.js","sourceRoot":"","sources":["../../src/cli/update.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"version": "0.2.24",
|
|
4
|
+
"date": "2026-04-11",
|
|
5
|
+
"changes": [
|
|
6
|
+
{
|
|
7
|
+
"type": "feature",
|
|
8
|
+
"description": "Seed terminal-classes.json on sync and update for existing workspaces"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"type": "improvement",
|
|
12
|
+
"description": "Scaffold includes terminal-classes.json in new projects"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"type": "improvement",
|
|
16
|
+
"description": "Terminal classes API hardening and error handling"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"type": "bugfix",
|
|
20
|
+
"description": "Minor action priority and metadata fixes across store actions"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"type": "feature",
|
|
24
|
+
"description": "Cross-agent challenge actions: send designs or implementations to another AI provider for adversarial review"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"version": "0.2.23",
|
|
30
|
+
"date": "2026-04-09",
|
|
31
|
+
"changes": [
|
|
32
|
+
{
|
|
33
|
+
"type": "feature",
|
|
34
|
+
"description": "Show current git branch in the web dashboard and messaging responses"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"type": "feature",
|
|
38
|
+
"description": "Changelog modal in the dashboard — view version history and what shipped in each release"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"type": "bugfix",
|
|
42
|
+
"description": "Preserve card fields when merging cards via drag-and-drop"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"type": "bugfix",
|
|
46
|
+
"description": "Fix automation run notifications not being delivered via messaging"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"type": "improvement",
|
|
50
|
+
"description": "Clarify voice shortcut formatting in the tutorial template"
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"version": "0.2.22",
|
|
56
|
+
"date": "2026-04-03",
|
|
57
|
+
"changes": [
|
|
58
|
+
{
|
|
59
|
+
"type": "feature",
|
|
60
|
+
"description": "Cross-card prompt execution: send prompts from one card session to another via the kanban CLI"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"type": "bugfix",
|
|
64
|
+
"description": "Fix double-submit when messaging delivered the same prompt twice in quick succession"
|
|
65
|
+
}
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"version": "0.2.21",
|
|
70
|
+
"date": "2026-03-30",
|
|
71
|
+
"changes": [
|
|
72
|
+
{
|
|
73
|
+
"type": "feature",
|
|
74
|
+
"description": "Per-card provider model selection across web UI, bridge, and messaging — pick which model variant a session uses"
|
|
75
|
+
}
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"version": "0.2.20",
|
|
80
|
+
"date": "2026-03-29",
|
|
81
|
+
"changes": [
|
|
82
|
+
{
|
|
83
|
+
"type": "improvement",
|
|
84
|
+
"description": "Documentation refresh and feature guide updates"
|
|
85
|
+
}
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"version": "0.2.19",
|
|
90
|
+
"date": "2026-03-25",
|
|
91
|
+
"changes": [
|
|
92
|
+
{
|
|
93
|
+
"type": "feature",
|
|
94
|
+
"description": "Shift+Enter inserts newlines in terminal input instead of submitting"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"type": "bugfix",
|
|
98
|
+
"description": "Fix session detection when working directory is a symlink"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"type": "improvement",
|
|
102
|
+
"description": "Cleaner PTY environment variables when spawning provider CLIs"
|
|
103
|
+
}
|
|
104
|
+
]
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"version": "0.2.18",
|
|
108
|
+
"date": "2026-03-25",
|
|
109
|
+
"changes": [
|
|
110
|
+
{
|
|
111
|
+
"type": "improvement",
|
|
112
|
+
"description": "MCP store pipeline updates: managed MCP servers in the canonical store"
|
|
113
|
+
}
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"version": "0.2.17",
|
|
118
|
+
"date": "2026-03-23",
|
|
119
|
+
"changes": [
|
|
120
|
+
{
|
|
121
|
+
"type": "improvement",
|
|
122
|
+
"description": "MCP feature spec groundwork and minor UI tweaks"
|
|
123
|
+
}
|
|
124
|
+
]
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"version": "0.2.16",
|
|
128
|
+
"date": "2026-03-22",
|
|
129
|
+
"changes": [
|
|
130
|
+
{
|
|
131
|
+
"type": "bugfix",
|
|
132
|
+
"description": "Terminal submit fix: Enter key now reliably submits prompts to the active provider"
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"version": "0.2.15",
|
|
138
|
+
"date": "2026-03-22",
|
|
139
|
+
"changes": [
|
|
140
|
+
{
|
|
141
|
+
"type": "improvement",
|
|
142
|
+
"description": "Replaced node-telegram-bot-api with raw Telegram API — smaller dependency footprint, fewer security audit issues"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"type": "bugfix",
|
|
146
|
+
"description": "Fix paste timing issues in the terminal so multi-line pastes land cleanly"
|
|
147
|
+
}
|
|
148
|
+
]
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"version": "0.2.14",
|
|
152
|
+
"date": "2026-03-22",
|
|
153
|
+
"changes": [
|
|
154
|
+
{
|
|
155
|
+
"type": "bugfix",
|
|
156
|
+
"description": "macOS launchd fix: services now spawn with the correct PATH"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"type": "bugfix",
|
|
160
|
+
"description": "PTY PATH fix: provider CLIs find the right binaries in inherited environments"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"type": "feature",
|
|
164
|
+
"description": "Spawn error toast: surface CLI spawn failures directly in the UI"
|
|
165
|
+
}
|
|
166
|
+
]
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"version": "0.2.13",
|
|
170
|
+
"date": "2026-03-22",
|
|
171
|
+
"changes": [
|
|
172
|
+
{
|
|
173
|
+
"type": "feature",
|
|
174
|
+
"description": "sly-kanban archive --undo: restore archived cards from the CLI"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"type": "bugfix",
|
|
178
|
+
"description": "Fix createdAt timestamp on newly created cards"
|
|
179
|
+
}
|
|
180
|
+
]
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"version": "0.2.12",
|
|
184
|
+
"date": "2026-03-21",
|
|
185
|
+
"changes": [
|
|
186
|
+
{
|
|
187
|
+
"type": "feature",
|
|
188
|
+
"description": "AWS Transcribe S3-based STT pipeline as an additional voice transcription backend"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"type": "bugfix",
|
|
192
|
+
"description": "Fix stale entries in the project registry after deletion"
|
|
193
|
+
}
|
|
194
|
+
]
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"version": "0.2.9",
|
|
198
|
+
"date": "2026-03-20",
|
|
199
|
+
"changes": [
|
|
200
|
+
{
|
|
201
|
+
"type": "feature",
|
|
202
|
+
"description": "systemd-aware service lifecycle management on Linux"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"type": "feature",
|
|
206
|
+
"description": "slycode env wrapper for consistent service environment variables"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"type": "feature",
|
|
210
|
+
"description": "slycode restart command for clean service restarts"
|
|
211
|
+
}
|
|
212
|
+
]
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"version": "0.2.6",
|
|
216
|
+
"date": "2026-03-19",
|
|
217
|
+
"changes": [
|
|
218
|
+
{
|
|
219
|
+
"type": "improvement",
|
|
220
|
+
"description": "Store UI now shows all skills regardless of manifest filtering — better visibility for store contents"
|
|
221
|
+
}
|
|
222
|
+
]
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"version": "0.2.5",
|
|
226
|
+
"date": "2026-03-19",
|
|
227
|
+
"changes": [
|
|
228
|
+
{
|
|
229
|
+
"type": "feature",
|
|
230
|
+
"description": "AWS Transcribe Streaming as a voice transcription backend option"
|
|
231
|
+
}
|
|
232
|
+
]
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"version": "0.2.4",
|
|
236
|
+
"date": "2026-03-18",
|
|
237
|
+
"changes": [
|
|
238
|
+
{
|
|
239
|
+
"type": "improvement",
|
|
240
|
+
"description": "Automation diagnostic logging for easier troubleshooting of scheduled runs"
|
|
241
|
+
}
|
|
242
|
+
]
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"version": "0.2.2",
|
|
246
|
+
"date": "2026-03-16",
|
|
247
|
+
"changes": [
|
|
248
|
+
{
|
|
249
|
+
"type": "feature",
|
|
250
|
+
"description": "Quick-access cards in messaging: see active and recent cards immediately after switching projects"
|
|
251
|
+
}
|
|
252
|
+
]
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"version": "0.2.1",
|
|
256
|
+
"date": "2026-03-15",
|
|
257
|
+
"changes": [
|
|
258
|
+
{
|
|
259
|
+
"type": "feature",
|
|
260
|
+
"description": "Store manifest filtering in build pipeline — only manifest-approved skills ship in the package"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"type": "bugfix",
|
|
264
|
+
"description": "Instruction file check now validates correctly during session creation"
|
|
265
|
+
}
|
|
266
|
+
]
|
|
267
|
+
}
|
|
268
|
+
]
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: challenge-implementation
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
label: "Challenge Impl"
|
|
5
|
+
description: "Send implementation to another AI provider for adversarial code review and methodology analysis"
|
|
6
|
+
group: "Card Actions"
|
|
7
|
+
placement: both
|
|
8
|
+
scope: global
|
|
9
|
+
classes:
|
|
10
|
+
testing: 30
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
{{cardContext}}
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Your Task — Challenge Implementation
|
|
18
|
+
|
|
19
|
+
You are initiating a **cross-agent implementation challenge** for card `{{card.id}}`. The goal is to send the completed implementation to a different AI provider for adversarial code review and methodology analysis, then synthesize their feedback.
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
### Phase 1 — Gather Context
|
|
24
|
+
|
|
25
|
+
1. **Read the full card details** (notes, problems, checklist):
|
|
26
|
+
```bash
|
|
27
|
+
sly-kanban show {{card.id}}
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
2. **Prime area context** — use `/context-priming` with the card's **Areas** to understand the codebase architecture and patterns.
|
|
31
|
+
|
|
32
|
+
3. **Read the design document** (if linked):
|
|
33
|
+
{{#if card.design_ref}}
|
|
34
|
+
Read `{{card.design_ref}}`
|
|
35
|
+
{{/if}}
|
|
36
|
+
|
|
37
|
+
4. **Read the feature spec** (if linked):
|
|
38
|
+
{{#if card.feature_ref}}
|
|
39
|
+
Read `{{card.feature_ref}}`
|
|
40
|
+
{{/if}}
|
|
41
|
+
|
|
42
|
+
5. **Identify the changed files** — use git to find what was changed for this card:
|
|
43
|
+
```bash
|
|
44
|
+
git log --oneline --all | head -20
|
|
45
|
+
```
|
|
46
|
+
Look at recent commits related to this card's work. Read the key files that were added or modified.
|
|
47
|
+
|
|
48
|
+
6. **Read all card notes** — these contain implementation context and prior agent observations.
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
### Phase 2 — Determine Target Provider
|
|
53
|
+
|
|
54
|
+
Send the challenge to a **different** provider than yourself.
|
|
55
|
+
|
|
56
|
+
- If you are **Claude** → send to `codex`
|
|
57
|
+
- If you are **Codex** → send to `claude`
|
|
58
|
+
- If you are **Gemini** → try `claude` first; if that fails, try `codex`
|
|
59
|
+
|
|
60
|
+
To determine who you are: Claude models start with "claude-", Codex/OpenAI models are o3, o4-mini, codex-mini, etc., Gemini models start with "gemini-".
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
64
|
+
### Phase 3 — Prepare and Send
|
|
65
|
+
|
|
66
|
+
Before sending, optionally add a context note:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
sly-kanban notes {{card.id}} add "Implementation challenge context: <summary of what was built, key files, architectural decisions>" --agent "<your-provider-name>"
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
Now construct a detailed prompt for the other agent. The prompt must include:
|
|
73
|
+
|
|
74
|
+
1. **The design document content** (paste inline) so they know what was intended
|
|
75
|
+
2. **The feature spec content** if one exists (paste inline)
|
|
76
|
+
3. **The key implementation files** — paste the actual code of the most important changed/added files. Focus on the core logic, not boilerplate.
|
|
77
|
+
4. **A file list** of everything that was changed, so they can request more if needed
|
|
78
|
+
5. **Key notes from the card** that explain decisions made during implementation
|
|
79
|
+
6. **Clear instructions** asking the other agent to:
|
|
80
|
+
|
|
81
|
+
**Code Quality Review:**
|
|
82
|
+
- Analyse the code for bugs, logic errors, and edge cases
|
|
83
|
+
- Evaluate error handling and failure modes
|
|
84
|
+
- Check for security concerns (injection, XSS, auth gaps, data leaks)
|
|
85
|
+
- Assess performance — unnecessary loops, missing caching, N+1 queries, memory leaks
|
|
86
|
+
- Review naming, structure, and readability
|
|
87
|
+
|
|
88
|
+
**Methodology Review:**
|
|
89
|
+
- Does the implementation match the design intent? Any drift?
|
|
90
|
+
- Are the chosen patterns and abstractions appropriate?
|
|
91
|
+
- Is there unnecessary complexity that could be simplified?
|
|
92
|
+
- Are there better approaches that would achieve the same goals?
|
|
93
|
+
- Is the code testable? Are there untested critical paths?
|
|
94
|
+
- Does it follow the existing codebase conventions?
|
|
95
|
+
|
|
96
|
+
**Perspective Analysis:**
|
|
97
|
+
- Review from the perspective of a future maintainer reading this code for the first time
|
|
98
|
+
- Consider what happens when requirements change — how rigid or flexible is this?
|
|
99
|
+
- Think about what could go wrong in production under real usage patterns
|
|
100
|
+
|
|
101
|
+
- Use `sly-kanban respond <response-id> "..."` to send back a structured response
|
|
102
|
+
|
|
103
|
+
**Send the prompt:**
|
|
104
|
+
|
|
105
|
+
```bash
|
|
106
|
+
sly-kanban prompt {{card.id}} "<your constructed prompt>" --provider <target-provider> --wait --timeout 180
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
Use `--timeout 180` (3 minutes). Do **not** use `--fresh`.
|
|
110
|
+
|
|
111
|
+
If the prompt times out, tell the user you're waiting — the response will arrive asynchronously.
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
### Phase 4 — Synthesize Feedback
|
|
116
|
+
|
|
117
|
+
When the response arrives, critically evaluate each point:
|
|
118
|
+
|
|
119
|
+
1. **Categorise each finding** as:
|
|
120
|
+
- **Valid bug/issue** — real problem that should be fixed before approval
|
|
121
|
+
- **Valid improvement** — correct observation, worth doing but not blocking
|
|
122
|
+
- **Disagree** — you believe the implementation is correct, explain why
|
|
123
|
+
- **Needs discussion** — legitimate trade-off, user should decide
|
|
124
|
+
|
|
125
|
+
2. **For valid bugs**: Fix them immediately or log as problems:
|
|
126
|
+
```bash
|
|
127
|
+
sly-kanban problem {{card.id}} add "description" --severity <minor|major|critical>
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
3. **For valid improvements**: Propose the changes. If they're small, offer to make them now.
|
|
131
|
+
|
|
132
|
+
4. **For disagreements**: Explain your reasoning clearly.
|
|
133
|
+
|
|
134
|
+
5. **For ambiguous points**: Present both perspectives and ask the user.
|
|
135
|
+
|
|
136
|
+
6. **Add a summary note** to the card:
|
|
137
|
+
```bash
|
|
138
|
+
sly-kanban notes {{card.id}} add "Implementation challenge complete: <N> bugs found, <N> improvements suggested, <N> disagreements, <N> need user input." --agent "<your-provider-name>"
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
7. **Present the synthesis to the user** with:
|
|
142
|
+
- Any bugs that need fixing (blockers for approval)
|
|
143
|
+
- Improvements worth making (non-blocking)
|
|
144
|
+
- Disagreements with your reasoning
|
|
145
|
+
- Open questions for the user
|
|
146
|
+
|
|
147
|
+
---
|
|
148
|
+
|
|
149
|
+
**Start now** — begin Phase 1.
|