@slycode/slycode 0.2.22 → 0.2.23
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/store/actions/checkpoint.md +1 -1
- package/dist/store/actions/context.md +1 -1
- 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/onboard.md +2 -4
- package/dist/store/actions/summarize.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]__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/{f55f3c8c1a52f80c.js → 3859477038c381ad.js} +1 -1
- 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/{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/components/ActivityFeed.tsx +3 -0
- package/dist/web/src/components/BranchTab.tsx +115 -0
- package/dist/web/src/components/ChangelogModal.tsx +234 -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/package.json +1 -1
- package/templates/changelog.json +242 -0
- package/templates/kanban-seed.json +1 -1
- package/templates/store/actions/checkpoint.md +1 -1
- package/templates/store/actions/context.md +1 -1
- 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/onboard.md +2 -4
- package/templates/store/actions/summarize.md +1 -1
- package/templates/store/skills/kanban/SKILL.md +77 -3
- package/templates/tutorial-project/documentation/kanban.json +1 -1
- package/templates/updates/actions/checkpoint.md +1 -1
- package/templates/updates/actions/context.md +1 -1
- 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/onboard.md +2 -4
- package/templates/updates/actions/summarize.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 → aN-jqftQVvSm0qVskLybH}/_buildManifest.js +0 -0
- /package/dist/web/.next/static/{b2V8jC3HBMi4vgm7Kie3H → aN-jqftQVvSm0qVskLybH}/_clientMiddlewareManifest.json +0 -0
- /package/dist/web/.next/static/{b2V8jC3HBMi4vgm7Kie3H → aN-jqftQVvSm0qVskLybH}/_ssgManifest.js +0 -0
package/package.json
CHANGED
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"version": "0.2.23",
|
|
4
|
+
"date": "2026-04-09",
|
|
5
|
+
"changes": [
|
|
6
|
+
{
|
|
7
|
+
"type": "feature",
|
|
8
|
+
"description": "Show current git branch in the web dashboard and messaging responses"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"type": "feature",
|
|
12
|
+
"description": "Changelog modal in the dashboard — view version history and what shipped in each release"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"type": "bugfix",
|
|
16
|
+
"description": "Preserve card fields when merging cards via drag-and-drop"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"type": "bugfix",
|
|
20
|
+
"description": "Fix automation run notifications not being delivered via messaging"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"type": "improvement",
|
|
24
|
+
"description": "Clarify voice shortcut formatting in the tutorial template"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"version": "0.2.22",
|
|
30
|
+
"date": "2026-04-03",
|
|
31
|
+
"changes": [
|
|
32
|
+
{
|
|
33
|
+
"type": "feature",
|
|
34
|
+
"description": "Cross-card prompt execution: send prompts from one card session to another via the kanban CLI"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"type": "bugfix",
|
|
38
|
+
"description": "Fix double-submit when messaging delivered the same prompt twice in quick succession"
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"version": "0.2.21",
|
|
44
|
+
"date": "2026-03-30",
|
|
45
|
+
"changes": [
|
|
46
|
+
{
|
|
47
|
+
"type": "feature",
|
|
48
|
+
"description": "Per-card provider model selection across web UI, bridge, and messaging — pick which model variant a session uses"
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"version": "0.2.20",
|
|
54
|
+
"date": "2026-03-29",
|
|
55
|
+
"changes": [
|
|
56
|
+
{
|
|
57
|
+
"type": "improvement",
|
|
58
|
+
"description": "Documentation refresh and feature guide updates"
|
|
59
|
+
}
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"version": "0.2.19",
|
|
64
|
+
"date": "2026-03-25",
|
|
65
|
+
"changes": [
|
|
66
|
+
{
|
|
67
|
+
"type": "feature",
|
|
68
|
+
"description": "Shift+Enter inserts newlines in terminal input instead of submitting"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"type": "bugfix",
|
|
72
|
+
"description": "Fix session detection when working directory is a symlink"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"type": "improvement",
|
|
76
|
+
"description": "Cleaner PTY environment variables when spawning provider CLIs"
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"version": "0.2.18",
|
|
82
|
+
"date": "2026-03-25",
|
|
83
|
+
"changes": [
|
|
84
|
+
{
|
|
85
|
+
"type": "improvement",
|
|
86
|
+
"description": "MCP store pipeline updates: managed MCP servers in the canonical store"
|
|
87
|
+
}
|
|
88
|
+
]
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"version": "0.2.17",
|
|
92
|
+
"date": "2026-03-23",
|
|
93
|
+
"changes": [
|
|
94
|
+
{
|
|
95
|
+
"type": "improvement",
|
|
96
|
+
"description": "MCP feature spec groundwork and minor UI tweaks"
|
|
97
|
+
}
|
|
98
|
+
]
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"version": "0.2.16",
|
|
102
|
+
"date": "2026-03-22",
|
|
103
|
+
"changes": [
|
|
104
|
+
{
|
|
105
|
+
"type": "bugfix",
|
|
106
|
+
"description": "Terminal submit fix: Enter key now reliably submits prompts to the active provider"
|
|
107
|
+
}
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"version": "0.2.15",
|
|
112
|
+
"date": "2026-03-22",
|
|
113
|
+
"changes": [
|
|
114
|
+
{
|
|
115
|
+
"type": "improvement",
|
|
116
|
+
"description": "Replaced node-telegram-bot-api with raw Telegram API — smaller dependency footprint, fewer security audit issues"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"type": "bugfix",
|
|
120
|
+
"description": "Fix paste timing issues in the terminal so multi-line pastes land cleanly"
|
|
121
|
+
}
|
|
122
|
+
]
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"version": "0.2.14",
|
|
126
|
+
"date": "2026-03-22",
|
|
127
|
+
"changes": [
|
|
128
|
+
{
|
|
129
|
+
"type": "bugfix",
|
|
130
|
+
"description": "macOS launchd fix: services now spawn with the correct PATH"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"type": "bugfix",
|
|
134
|
+
"description": "PTY PATH fix: provider CLIs find the right binaries in inherited environments"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"type": "feature",
|
|
138
|
+
"description": "Spawn error toast: surface CLI spawn failures directly in the UI"
|
|
139
|
+
}
|
|
140
|
+
]
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"version": "0.2.13",
|
|
144
|
+
"date": "2026-03-22",
|
|
145
|
+
"changes": [
|
|
146
|
+
{
|
|
147
|
+
"type": "feature",
|
|
148
|
+
"description": "sly-kanban archive --undo: restore archived cards from the CLI"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"type": "bugfix",
|
|
152
|
+
"description": "Fix createdAt timestamp on newly created cards"
|
|
153
|
+
}
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"version": "0.2.12",
|
|
158
|
+
"date": "2026-03-21",
|
|
159
|
+
"changes": [
|
|
160
|
+
{
|
|
161
|
+
"type": "feature",
|
|
162
|
+
"description": "AWS Transcribe S3-based STT pipeline as an additional voice transcription backend"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"type": "bugfix",
|
|
166
|
+
"description": "Fix stale entries in the project registry after deletion"
|
|
167
|
+
}
|
|
168
|
+
]
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"version": "0.2.9",
|
|
172
|
+
"date": "2026-03-20",
|
|
173
|
+
"changes": [
|
|
174
|
+
{
|
|
175
|
+
"type": "feature",
|
|
176
|
+
"description": "systemd-aware service lifecycle management on Linux"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"type": "feature",
|
|
180
|
+
"description": "slycode env wrapper for consistent service environment variables"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"type": "feature",
|
|
184
|
+
"description": "slycode restart command for clean service restarts"
|
|
185
|
+
}
|
|
186
|
+
]
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"version": "0.2.6",
|
|
190
|
+
"date": "2026-03-19",
|
|
191
|
+
"changes": [
|
|
192
|
+
{
|
|
193
|
+
"type": "improvement",
|
|
194
|
+
"description": "Store UI now shows all skills regardless of manifest filtering — better visibility for store contents"
|
|
195
|
+
}
|
|
196
|
+
]
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"version": "0.2.5",
|
|
200
|
+
"date": "2026-03-19",
|
|
201
|
+
"changes": [
|
|
202
|
+
{
|
|
203
|
+
"type": "feature",
|
|
204
|
+
"description": "AWS Transcribe Streaming as a voice transcription backend option"
|
|
205
|
+
}
|
|
206
|
+
]
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"version": "0.2.4",
|
|
210
|
+
"date": "2026-03-18",
|
|
211
|
+
"changes": [
|
|
212
|
+
{
|
|
213
|
+
"type": "improvement",
|
|
214
|
+
"description": "Automation diagnostic logging for easier troubleshooting of scheduled runs"
|
|
215
|
+
}
|
|
216
|
+
]
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"version": "0.2.2",
|
|
220
|
+
"date": "2026-03-16",
|
|
221
|
+
"changes": [
|
|
222
|
+
{
|
|
223
|
+
"type": "feature",
|
|
224
|
+
"description": "Quick-access cards in messaging: see active and recent cards immediately after switching projects"
|
|
225
|
+
}
|
|
226
|
+
]
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"version": "0.2.1",
|
|
230
|
+
"date": "2026-03-15",
|
|
231
|
+
"changes": [
|
|
232
|
+
{
|
|
233
|
+
"type": "feature",
|
|
234
|
+
"description": "Store manifest filtering in build pipeline — only manifest-approved skills ship in the package"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"type": "bugfix",
|
|
238
|
+
"description": "Instruction file check now validates correctly during session creation"
|
|
239
|
+
}
|
|
240
|
+
]
|
|
241
|
+
}
|
|
242
|
+
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: deep-design
|
|
3
|
-
version: 1.
|
|
3
|
+
version: 1.1.0
|
|
4
4
|
label: "Deep Design"
|
|
5
5
|
description: "Thorough design with parallel analysis agents for creative, risk, and quality perspectives"
|
|
6
6
|
group: "Card Actions"
|
|
@@ -21,6 +21,8 @@ classes:
|
|
|
21
21
|
|
|
22
22
|
We're starting a **deep design** session for card `{{card.id}}`. This is the thorough version — after creating the initial design doc, we'll run parallel analysis agents to stress-test the design from multiple angles before iterating.
|
|
23
23
|
|
|
24
|
+
**Your role is to investigate and advise.** You must NOT unilaterally cut scope, drop requirements, or decide what to build. All scope and direction decisions belong to the user. Present findings, options, and trade-offs — then ask.
|
|
25
|
+
|
|
24
26
|
---
|
|
25
27
|
|
|
26
28
|
### Phase 1 — Initial Design Doc
|
|
@@ -48,6 +50,7 @@ Now launch sub-agents to analyse the design from different perspectives. Each ag
|
|
|
48
50
|
- Read the card details
|
|
49
51
|
- If the card has Areas, use `/context-priming` with those areas for codebase awareness
|
|
50
52
|
- Return a focused brief (aim for 5-15 bullet points, not essays)
|
|
53
|
+
- **Advise only** — do not recommend cutting scope or dropping requirements. Flag risks and trade-offs, but respect the stated scope as given
|
|
51
54
|
|
|
52
55
|
Here are the 6 available perspectives:
|
|
53
56
|
|
|
@@ -64,7 +67,7 @@ Here are the 6 available perspectives:
|
|
|
64
67
|
> You are a codebase archaeologist. Read the design doc and card details, then search the existing codebase for related patterns, reusable components, utilities, or conventions. Use `/context-priming` with the card's Areas and explore the code. Report: What existing code can be reused? What patterns should this design follow for consistency? Are there similar features we can learn from? Is there anything we'd be duplicating unnecessarily?
|
|
65
68
|
|
|
66
69
|
#### 5. Simplification Advocate
|
|
67
|
-
> You are a complexity skeptic. Read the design doc and card details, then
|
|
70
|
+
> You are a complexity skeptic. Read the design doc and card details, then look for ways the *implementation* could be simpler while still meeting the stated requirements. For each design decision, ask: Could the implementation be simpler? Is there a less complex way to achieve this requirement? Are we over-engineering the solution? Propose concrete simplifications with clear trade-offs. **Important:** Do NOT recommend cutting requirements or reducing scope — the requirements are the user's decision. Focus on simpler ways to achieve what's been asked for.
|
|
68
71
|
|
|
69
72
|
#### 6. Edge Case Hunter
|
|
70
73
|
> You are a boundary condition specialist. Read the design doc and card details, then enumerate edge cases, boundary conditions, and scenarios the design should handle. Think about: empty/null/missing data, concurrent access, very large inputs, rapid repeated actions, permission boundaries, network failures, interrupted operations, first-use vs power-user flows. Rate each edge case by likelihood and severity.
|
|
@@ -81,7 +84,7 @@ Once the agents return, **synthesize** their findings:
|
|
|
81
84
|
- 🟡 **Should consider** — meaningful improvement or risk worth discussing
|
|
82
85
|
- 🟢 **Nice to know** — interesting perspective, may inform decisions later
|
|
83
86
|
3. Update the design doc with a new **"Analysis Notes"** section capturing the key findings.
|
|
84
|
-
4.
|
|
87
|
+
4. Present options and suggestions — do NOT unilaterally fold findings into requirements or cut scope. The user decides what to act on.
|
|
85
88
|
|
|
86
89
|
---
|
|
87
90
|
|
|
@@ -93,6 +96,13 @@ Now begin the normal design iteration:
|
|
|
93
96
|
- Update the design doc as decisions are made
|
|
94
97
|
- Focus on goals, constraints, and acceptance criteria
|
|
95
98
|
|
|
99
|
+
**IMPORTANT — Surface everything in your message.** Do not assume the user has read the design document. Every time you respond, list in your conversation message:
|
|
100
|
+
- Any **outstanding questions** that need answers
|
|
101
|
+
- Any **options or trade-offs** that need a decision
|
|
102
|
+
- Any **suggestions** you want feedback on
|
|
103
|
+
|
|
104
|
+
Questions written into the doc but not surfaced in your message are effectively invisible.
|
|
105
|
+
|
|
96
106
|
**When design is complete — assess complexity:**
|
|
97
107
|
|
|
98
108
|
Look at the scope of work:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: design-requirements
|
|
3
|
-
version: 1.
|
|
3
|
+
version: 1.1.0
|
|
4
4
|
label: "Design Doc"
|
|
5
5
|
description: "Create a requirements document through iterative discovery"
|
|
6
6
|
group: "Card Actions"
|
|
@@ -21,6 +21,8 @@ classes:
|
|
|
21
21
|
|
|
22
22
|
We're starting a **requirements discovery** session for card `{{card.id}}`. The goal is to create a design document that captures WHAT we're building and WHY - not HOW (unless architectural decisions are essential to the requirements).
|
|
23
23
|
|
|
24
|
+
**Your role is to investigate and advise.** You must NOT unilaterally cut scope, drop requirements, or decide what to build. All scope and direction decisions belong to the user. Present findings, options, and trade-offs — then ask.
|
|
25
|
+
|
|
24
26
|
> Card details are provided above. Run `sly-kanban show {{card.id}}` only if you need additional detail.
|
|
25
27
|
|
|
26
28
|
**Workflow:**
|
|
@@ -68,6 +70,14 @@ When in doubt, lean toward creating the feature spec — it's better to over-doc
|
|
|
68
70
|
- Keep the document updated after each decision
|
|
69
71
|
- Focus on goals, constraints, and acceptance criteria
|
|
70
72
|
- Flag when you think the requirements are complete
|
|
73
|
+
- Do NOT unilaterally cut scope or drop requirements — the user decides what's in and out
|
|
74
|
+
|
|
75
|
+
**IMPORTANT — Surface everything in your message.** Do not assume the user has read the design document. Every time you respond, list in your conversation message:
|
|
76
|
+
- Any **outstanding questions** that need answers
|
|
77
|
+
- Any **options or trade-offs** that need a decision
|
|
78
|
+
- Any **suggestions** you want feedback on
|
|
79
|
+
|
|
80
|
+
Questions written into the doc but not surfaced in your message are effectively invisible.
|
|
71
81
|
|
|
72
82
|
---
|
|
73
83
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: onboard
|
|
3
|
-
version: 1.
|
|
3
|
+
version: 1.1.0
|
|
4
4
|
label: "Onboard"
|
|
5
5
|
description: "Analyze and improve a backlog item, then move to design"
|
|
6
6
|
group: "Card Actions"
|
|
@@ -23,7 +23,7 @@ Onboard this backlog item. Analyze it, improve it, and move it to design.
|
|
|
23
23
|
**Do this:**
|
|
24
24
|
1. Analyze the card - understand the intent from title and description
|
|
25
25
|
2. Improve the title - make it clear, concise, action-oriented
|
|
26
|
-
3. Rewrite the description - structure logically, capture the essential gist
|
|
26
|
+
3. Rewrite the description - structure logically, capture the essential gist. **Do not add new solutions or implementation suggestions** — that belongs in the design phase. However, preserve any solution ideas already present in the original description.
|
|
27
27
|
4. Set appropriate areas (run `sly-kanban areas` to see options)
|
|
28
28
|
4.5 Potentially use context-priming to understand that area better
|
|
29
29
|
5. Set correct type and priority
|
|
@@ -34,5 +34,3 @@ Onboard this backlog item. Analyze it, improve it, and move it to design.
|
|
|
34
34
|
- What you understood the intent to be
|
|
35
35
|
- What changes you made and why
|
|
36
36
|
- Ask for confirmation - if I disagree, I'll tell you what to adjust
|
|
37
|
-
# test change
|
|
38
|
-
# user edit
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: kanban
|
|
3
|
-
version: 1.
|
|
4
|
-
updated: 2026-03
|
|
5
|
-
description: "Manage kanban cards via CLI with commands for search, create, update, move, reorder, problem tracking, cross-agent notes, and
|
|
3
|
+
version: 1.5.0
|
|
4
|
+
updated: 2026-04-03
|
|
5
|
+
description: "Manage kanban cards via CLI with commands for search, create, update, move, reorder, problem tracking, cross-agent notes, scheduled automations, and cross-card prompt execution"
|
|
6
6
|
provider: claude
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -26,8 +26,22 @@ Manage kanban cards via CLI: `sly-kanban <command>`
|
|
|
26
26
|
| `problem` | Track issues on cards |
|
|
27
27
|
| `notes` | Manage cross-agent notes |
|
|
28
28
|
| `automation` | Configure and manage scheduled automations |
|
|
29
|
+
| `prompt` | Send a prompt to another card's session (cross-card) |
|
|
30
|
+
| `respond` | Reply to a cross-card prompt (--wait callback) |
|
|
29
31
|
| `areas` | List available areas |
|
|
30
32
|
|
|
33
|
+
## Card Identification
|
|
34
|
+
|
|
35
|
+
All commands accept either a **card ID** or an **exact card title** (case-insensitive, non-archived cards only):
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
sly-kanban show card-1234567890 # By ID
|
|
39
|
+
sly-kanban show "Test Card" # By exact title
|
|
40
|
+
sly-kanban prompt "Test Card" "do X" # Title works for prompt too
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
If a title doesn't match, use the card ID instead.
|
|
44
|
+
|
|
31
45
|
## Quick Reference
|
|
32
46
|
|
|
33
47
|
```bash
|
|
@@ -269,6 +283,66 @@ sly-kanban automation list --tag "deploy"
|
|
|
269
283
|
- One-shot automations auto-disable after firing, config preserved
|
|
270
284
|
- "Report via messaging" toggle appends instructions for the agent to send results
|
|
271
285
|
|
|
286
|
+
## Cross-Card Prompt Execution
|
|
287
|
+
|
|
288
|
+
Send prompts to other cards' sessions for orchestration, multi-provider review, and automation chains.
|
|
289
|
+
|
|
290
|
+
**IMPORTANT:** Only use `sly-kanban prompt` when **explicitly instructed** to do so — either by a user, a card description, or an automation instruction. Never fire prompts at other cards on your own initiative (e.g., during testing, exploration, or as a "helpful" side-effect). Cross-card prompts start real sessions that consume resources and are hard to track if unexpected.
|
|
291
|
+
|
|
292
|
+
### Fire-and-Forget (async)
|
|
293
|
+
|
|
294
|
+
```bash
|
|
295
|
+
sly-kanban prompt <card-id> "Your prompt text"
|
|
296
|
+
sly-kanban prompt <card-id> "Your prompt" --provider codex
|
|
297
|
+
sly-kanban prompt <card-id> "Your prompt" --provider codex --model o3
|
|
298
|
+
sly-kanban prompt <card-id> "Your prompt" --fresh # Stop existing session, start clean
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
Delivers the prompt and returns immediately. Session handling:
|
|
302
|
+
- **Running session** → submits prompt to it directly
|
|
303
|
+
- **Stopped session** → **resumes** it (preserves conversation context), then delivers the prompt
|
|
304
|
+
- **No session** → creates a fresh one
|
|
305
|
+
|
|
306
|
+
Use `--fresh` only when you explicitly want to discard the existing session and start clean. Without it, stopped sessions are always resumed to preserve context.
|
|
307
|
+
|
|
308
|
+
**Card context is auto-injected.** Every prompt is automatically prepended with the target card's ID, title, stage, type, priority, and description. The called AI always knows its own card details without needing to look them up. Your prompt text follows after a `---` separator.
|
|
309
|
+
|
|
310
|
+
### Wait-for-Response (sync)
|
|
311
|
+
|
|
312
|
+
```bash
|
|
313
|
+
sly-kanban prompt <card-id> "Analyze this design" --wait --timeout 120
|
|
314
|
+
```
|
|
315
|
+
|
|
316
|
+
Sends the prompt with an embedded callback instruction. The called card must run `sly-kanban respond` to return data. The CLI blocks until the response arrives or the timeout is reached.
|
|
317
|
+
|
|
318
|
+
**Timeout outcomes:**
|
|
319
|
+
- Response received → data printed to stdout (exit 0)
|
|
320
|
+
- Timeout + session still active → message indicating work is ongoing (exit 1)
|
|
321
|
+
- Timeout + session idle → terminal snapshot showing what blocked it (exit 1)
|
|
322
|
+
|
|
323
|
+
Late responses are automatically injected into the calling session's terminal even after timeout.
|
|
324
|
+
|
|
325
|
+
### Responding to a Prompt
|
|
326
|
+
|
|
327
|
+
When your session receives a prompt with a callback instruction like:
|
|
328
|
+
|
|
329
|
+
> When you have completed this task, you MUST run: `sly-kanban respond <response-id> "<your response>"`
|
|
330
|
+
|
|
331
|
+
Run the respond command:
|
|
332
|
+
|
|
333
|
+
```bash
|
|
334
|
+
sly-kanban respond <response-id> "Your response data here"
|
|
335
|
+
```
|
|
336
|
+
|
|
337
|
+
### Session Guards
|
|
338
|
+
|
|
339
|
+
The submit endpoint enforces three checks:
|
|
340
|
+
1. **Call-locked** — another `--wait` prompt is active on the target session → rejected (409)
|
|
341
|
+
2. **Active/busy** — the target session is mid-generation → rejected (409)
|
|
342
|
+
3. **Idle/ready** — proceeds with submission
|
|
343
|
+
|
|
344
|
+
Use `--force` to bypass all guards.
|
|
345
|
+
|
|
272
346
|
## Error Handling
|
|
273
347
|
|
|
274
348
|
The CLI provides clear error messages:
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"updated_at": "{{TIMESTAMP}}",
|
|
32
32
|
"id": "card-tutorial-2",
|
|
33
33
|
"title": "If You Don't Like Tutorials",
|
|
34
|
-
"description": "If you want the fast version, here are the core points.\n\n- Move cards through stages by dragging them across lanes.\n- Open a card, go to Terminal, and run the stage action buttons; the AI handles the workflow for you.\n - Base Kanban and messaging skills are included to teach your agent how to interact with SlyCode.\n - It can move cards between lanes as part of your workflow.\n - It can attach planning docs to cards (design docs, feature specs, and chore plans when used).\n - It can add/edit notes and keep a running context trail.\n - It can create and update testing checklists directly on the card.\n- Sly Actions are lane-aware meta-prompts built on top of your CLI skills/agents, and they can reuse those same skills/agents. You can customize them from the top-right menu (three-line icon).\n- Cards and workflows can be automated from the top-right clock icon.\n- Archived cards are visible via the top-right archive/box icon.\n- Card terminal (Terminal tab) [runs in project workspace].\n- Project terminal (bottom-right) [runs in project workspace].\n- Global terminal (Dashboard) [runs in SlyCode workspace].\n- Skills are managed from Dashboard/Toolkit: stored centrally, then deployed to projects for Claude or .agents (Codex/Gemini).\n- Voice input works after OpenAI API key setup; default hotkey is Ctrl
|
|
34
|
+
"description": "If you want the fast version, here are the core points.\n\n- Move cards through stages by dragging them across lanes.\n- Open a card, go to Terminal, and run the stage action buttons; the AI handles the workflow for you.\n - Base Kanban and messaging skills are included to teach your agent how to interact with SlyCode.\n - It can move cards between lanes as part of your workflow.\n - It can attach planning docs to cards (design docs, feature specs, and chore plans when used).\n - It can add/edit notes and keep a running context trail.\n - It can create and update testing checklists directly on the card.\n- Sly Actions are lane-aware meta-prompts built on top of your CLI skills/agents, and they can reuse those same skills/agents. You can customize them from the top-right menu (three-line icon).\n- Cards and workflows can be automated from the top-right clock icon.\n- Archived cards are visible via the top-right archive/box icon.\n- Card terminal (Terminal tab) [runs in project workspace].\n- Project terminal (bottom-right) [runs in project workspace].\n- Global terminal (Dashboard) [runs in SlyCode workspace].\n- Skills are managed from Dashboard/Toolkit: stored centrally, then deployed to projects for Claude or .agents (Codex/Gemini).\n- Voice input works after OpenAI API key setup; default hotkey is [Ctrl+.]\n- Telegram can be linked for updates.\n - Create your own Telegram bot with @BotFather, then use that token in config.\n - Add bot token and chat ID in your environment/config.\n - Start messaging service and send a test message.\n - For voice in Telegram, add your OpenAI key (STT) and ElevenLabs key (TTS) in `.env`.\n - Enable report-via-messaging on automations when you want async summaries.\n - You can also ask the agent to message you in any workflow at any time.\n\nIf this is enough context, jump straight to the companion card, or add one of your own projects from the dashboard and start working on your real code.",
|
|
35
35
|
"type": "chore",
|
|
36
36
|
"priority": "low",
|
|
37
37
|
"order": 20
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: deep-design
|
|
3
|
-
version: 1.
|
|
3
|
+
version: 1.1.0
|
|
4
4
|
label: "Deep Design"
|
|
5
5
|
description: "Thorough design with parallel analysis agents for creative, risk, and quality perspectives"
|
|
6
6
|
group: "Card Actions"
|
|
@@ -21,6 +21,8 @@ classes:
|
|
|
21
21
|
|
|
22
22
|
We're starting a **deep design** session for card `{{card.id}}`. This is the thorough version — after creating the initial design doc, we'll run parallel analysis agents to stress-test the design from multiple angles before iterating.
|
|
23
23
|
|
|
24
|
+
**Your role is to investigate and advise.** You must NOT unilaterally cut scope, drop requirements, or decide what to build. All scope and direction decisions belong to the user. Present findings, options, and trade-offs — then ask.
|
|
25
|
+
|
|
24
26
|
---
|
|
25
27
|
|
|
26
28
|
### Phase 1 — Initial Design Doc
|
|
@@ -48,6 +50,7 @@ Now launch sub-agents to analyse the design from different perspectives. Each ag
|
|
|
48
50
|
- Read the card details
|
|
49
51
|
- If the card has Areas, use `/context-priming` with those areas for codebase awareness
|
|
50
52
|
- Return a focused brief (aim for 5-15 bullet points, not essays)
|
|
53
|
+
- **Advise only** — do not recommend cutting scope or dropping requirements. Flag risks and trade-offs, but respect the stated scope as given
|
|
51
54
|
|
|
52
55
|
Here are the 6 available perspectives:
|
|
53
56
|
|
|
@@ -64,7 +67,7 @@ Here are the 6 available perspectives:
|
|
|
64
67
|
> You are a codebase archaeologist. Read the design doc and card details, then search the existing codebase for related patterns, reusable components, utilities, or conventions. Use `/context-priming` with the card's Areas and explore the code. Report: What existing code can be reused? What patterns should this design follow for consistency? Are there similar features we can learn from? Is there anything we'd be duplicating unnecessarily?
|
|
65
68
|
|
|
66
69
|
#### 5. Simplification Advocate
|
|
67
|
-
> You are a complexity skeptic. Read the design doc and card details, then
|
|
70
|
+
> You are a complexity skeptic. Read the design doc and card details, then look for ways the *implementation* could be simpler while still meeting the stated requirements. For each design decision, ask: Could the implementation be simpler? Is there a less complex way to achieve this requirement? Are we over-engineering the solution? Propose concrete simplifications with clear trade-offs. **Important:** Do NOT recommend cutting requirements or reducing scope — the requirements are the user's decision. Focus on simpler ways to achieve what's been asked for.
|
|
68
71
|
|
|
69
72
|
#### 6. Edge Case Hunter
|
|
70
73
|
> You are a boundary condition specialist. Read the design doc and card details, then enumerate edge cases, boundary conditions, and scenarios the design should handle. Think about: empty/null/missing data, concurrent access, very large inputs, rapid repeated actions, permission boundaries, network failures, interrupted operations, first-use vs power-user flows. Rate each edge case by likelihood and severity.
|
|
@@ -81,7 +84,7 @@ Once the agents return, **synthesize** their findings:
|
|
|
81
84
|
- 🟡 **Should consider** — meaningful improvement or risk worth discussing
|
|
82
85
|
- 🟢 **Nice to know** — interesting perspective, may inform decisions later
|
|
83
86
|
3. Update the design doc with a new **"Analysis Notes"** section capturing the key findings.
|
|
84
|
-
4.
|
|
87
|
+
4. Present options and suggestions — do NOT unilaterally fold findings into requirements or cut scope. The user decides what to act on.
|
|
85
88
|
|
|
86
89
|
---
|
|
87
90
|
|
|
@@ -93,6 +96,13 @@ Now begin the normal design iteration:
|
|
|
93
96
|
- Update the design doc as decisions are made
|
|
94
97
|
- Focus on goals, constraints, and acceptance criteria
|
|
95
98
|
|
|
99
|
+
**IMPORTANT — Surface everything in your message.** Do not assume the user has read the design document. Every time you respond, list in your conversation message:
|
|
100
|
+
- Any **outstanding questions** that need answers
|
|
101
|
+
- Any **options or trade-offs** that need a decision
|
|
102
|
+
- Any **suggestions** you want feedback on
|
|
103
|
+
|
|
104
|
+
Questions written into the doc but not surfaced in your message are effectively invisible.
|
|
105
|
+
|
|
96
106
|
**When design is complete — assess complexity:**
|
|
97
107
|
|
|
98
108
|
Look at the scope of work:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: design-requirements
|
|
3
|
-
version: 1.
|
|
3
|
+
version: 1.1.0
|
|
4
4
|
label: "Design Doc"
|
|
5
5
|
description: "Create a requirements document through iterative discovery"
|
|
6
6
|
group: "Card Actions"
|
|
@@ -21,6 +21,8 @@ classes:
|
|
|
21
21
|
|
|
22
22
|
We're starting a **requirements discovery** session for card `{{card.id}}`. The goal is to create a design document that captures WHAT we're building and WHY - not HOW (unless architectural decisions are essential to the requirements).
|
|
23
23
|
|
|
24
|
+
**Your role is to investigate and advise.** You must NOT unilaterally cut scope, drop requirements, or decide what to build. All scope and direction decisions belong to the user. Present findings, options, and trade-offs — then ask.
|
|
25
|
+
|
|
24
26
|
> Card details are provided above. Run `sly-kanban show {{card.id}}` only if you need additional detail.
|
|
25
27
|
|
|
26
28
|
**Workflow:**
|
|
@@ -68,6 +70,14 @@ When in doubt, lean toward creating the feature spec — it's better to over-doc
|
|
|
68
70
|
- Keep the document updated after each decision
|
|
69
71
|
- Focus on goals, constraints, and acceptance criteria
|
|
70
72
|
- Flag when you think the requirements are complete
|
|
73
|
+
- Do NOT unilaterally cut scope or drop requirements — the user decides what's in and out
|
|
74
|
+
|
|
75
|
+
**IMPORTANT — Surface everything in your message.** Do not assume the user has read the design document. Every time you respond, list in your conversation message:
|
|
76
|
+
- Any **outstanding questions** that need answers
|
|
77
|
+
- Any **options or trade-offs** that need a decision
|
|
78
|
+
- Any **suggestions** you want feedback on
|
|
79
|
+
|
|
80
|
+
Questions written into the doc but not surfaced in your message are effectively invisible.
|
|
71
81
|
|
|
72
82
|
---
|
|
73
83
|
|