@assistkick/create 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/create.js +0 -0
- package/package.json +7 -9
- package/templates/assistkick-product-system/packages/frontend/index.html +3 -0
- package/templates/assistkick-product-system/packages/frontend/package.json +5 -1
- package/templates/assistkick-product-system/packages/frontend/src/App.tsx +16 -7
- package/templates/assistkick-product-system/packages/frontend/src/components/DesignSystemView.tsx +363 -0
- package/templates/assistkick-product-system/packages/frontend/src/components/GitRepoModal.tsx +6 -8
- package/templates/assistkick-product-system/packages/frontend/src/components/KanbanView.tsx +92 -188
- package/templates/assistkick-product-system/packages/frontend/src/components/QaIssueSheet.tsx +11 -20
- package/templates/assistkick-product-system/packages/frontend/src/components/SidePanel.tsx +15 -70
- package/templates/assistkick-product-system/packages/frontend/src/components/Toolbar.tsx +149 -77
- package/templates/assistkick-product-system/packages/frontend/src/components/ds/KanbanCard.tsx +254 -0
- package/templates/assistkick-product-system/packages/frontend/src/components/ds/KanbanCardShowcase.tsx +216 -0
- package/templates/assistkick-product-system/packages/frontend/src/components/ds/NavBarSidekick.tsx +163 -0
- package/templates/assistkick-product-system/packages/frontend/src/hooks/useGraph.ts +6 -21
- package/templates/assistkick-product-system/packages/frontend/src/hooks/useProjects.ts +15 -80
- package/templates/assistkick-product-system/packages/frontend/src/routes/CoherenceRoute.tsx +19 -0
- package/templates/assistkick-product-system/packages/frontend/src/routes/DashboardLayout.tsx +54 -0
- package/templates/assistkick-product-system/packages/frontend/src/routes/DesignSystemRoute.tsx +6 -0
- package/templates/assistkick-product-system/packages/frontend/src/routes/GraphRoute.tsx +93 -0
- package/templates/assistkick-product-system/packages/frontend/src/routes/KanbanRoute.tsx +30 -0
- package/templates/assistkick-product-system/packages/frontend/src/routes/TerminalRoute.tsx +9 -0
- package/templates/assistkick-product-system/packages/frontend/src/routes/UsersRoute.tsx +6 -0
- package/templates/assistkick-product-system/packages/frontend/src/stores/useGitModalStore.ts +14 -0
- package/templates/assistkick-product-system/packages/frontend/src/stores/useGraphStore.ts +36 -0
- package/templates/assistkick-product-system/packages/frontend/src/stores/useGraphUIStore.ts +25 -0
- package/templates/assistkick-product-system/packages/frontend/src/stores/useProjectStore.ts +87 -0
- package/templates/assistkick-product-system/packages/frontend/src/stores/useQaSheetStore.ts +27 -0
- package/templates/assistkick-product-system/packages/frontend/src/stores/useSidePanelStore.ts +76 -0
- package/templates/assistkick-product-system/packages/frontend/src/styles/index.css +64 -100
- package/templates/assistkick-product-system/packages/frontend/vite.config.ts +2 -1
- package/templates/assistkick-product-system/packages/shared/lib/graph.ts +11 -5
- package/templates/skills/assistkick-bootstrap/SKILL.md +3 -3
- package/templates/skills/assistkick-code-reviewer/SKILL.md +2 -2
- package/templates/skills/assistkick-debugger/SKILL.md +2 -2
- package/templates/skills/assistkick-developer/SKILL.md +3 -3
- package/templates/skills/assistkick-interview/SKILL.md +2 -2
- package/templates/assistkick-product-system/packages/frontend/package-lock.json +0 -2666
|
@@ -119,7 +119,7 @@ npx tsx packages/shared/tools/move_card.ts <feature_id> todo --project-id <proje
|
|
|
119
119
|
npx tsx packages/shared/tools/get_node.ts <node_id> --project-id <project_id>
|
|
120
120
|
npx tsx packages/shared/tools/get_node.ts --name "Node Name" --project-id <project_id>
|
|
121
121
|
```
|
|
122
|
-
Returns
|
|
122
|
+
Returns the node content (formatted as markdown) plus a Relations section listing all connected nodes with direction, relation type, name, type, and status.
|
|
123
123
|
|
|
124
124
|
### search_nodes
|
|
125
125
|
```
|
|
@@ -148,7 +148,7 @@ npx tsx packages/shared/tools/get_status.ts --project-id <project_id>
|
|
|
148
148
|
2. Never approve without reading the full spec, all connected nodes, and related done features first
|
|
149
149
|
3. Never approve without running tests
|
|
150
150
|
4. Always provide actionable rejection notes — reference specific acceptance criteria, integration issues, or connected node requirements
|
|
151
|
-
5.
|
|
151
|
+
5. All graph data is stored in SQLite (via Drizzle ORM) — always use the tools above to read and write data
|
|
152
152
|
6. If you find a spec gap during review, add an open question via `update_node` and flag it to the user
|
|
153
153
|
7. All tool commands must be run from the `assistkick-product-system/` directory
|
|
154
154
|
8. Review one feature at a time — complete the verdict before moving to the next
|
|
@@ -156,7 +156,7 @@ npx tsx packages/shared/tools/move_card.ts <feature_id> todo --project-id <proje
|
|
|
156
156
|
npx tsx packages/shared/tools/get_node.ts <node_id> --project-id <project_id>
|
|
157
157
|
npx tsx packages/shared/tools/get_node.ts --name "Node Name" --project-id <project_id>
|
|
158
158
|
```
|
|
159
|
-
Returns
|
|
159
|
+
Returns the node content (formatted as markdown) plus a Relations section listing all connected nodes with direction, relation type, name, type, and status.
|
|
160
160
|
|
|
161
161
|
### search_nodes
|
|
162
162
|
```
|
|
@@ -201,7 +201,7 @@ npx tsx packages/shared/tools/get_status.ts --project-id <project_id>
|
|
|
201
201
|
|
|
202
202
|
## Rules
|
|
203
203
|
1. Never write production code — you only read, run tests, add temporary debug logs, and investigate
|
|
204
|
-
2.
|
|
204
|
+
2. All graph data is stored in SQLite (via Drizzle ORM) — always use the tools above to read and write data
|
|
205
205
|
3. Always call `get_node` on affected features AND their related nodes before investigating
|
|
206
206
|
4. Always create a bugfix feature with detailed findings — the developer should be able to fix it without re-investigating
|
|
207
207
|
5. Include specific file paths, line numbers, root cause analysis, and fix guidance in your bugfix notes
|
|
@@ -120,7 +120,7 @@ npx tsx packages/shared/tools/search_nodes.ts --project-id <project_id> --comple
|
|
|
120
120
|
npx tsx packages/shared/tools/get_node.ts <node_id> --project-id <project_id>
|
|
121
121
|
npx tsx packages/shared/tools/get_node.ts --name "Node Name" --project-id <project_id>
|
|
122
122
|
```
|
|
123
|
-
Returns
|
|
123
|
+
Returns the node content (formatted as markdown) plus a Relations section listing all connected nodes with direction, relation type, name, type, and status.
|
|
124
124
|
|
|
125
125
|
### add_node
|
|
126
126
|
```
|
|
@@ -178,9 +178,9 @@ npx tsx packages/shared/tools/rebuild_index.ts --project-id <project_id> --dry-r
|
|
|
178
178
|
```
|
|
179
179
|
|
|
180
180
|
## Rules
|
|
181
|
-
1.
|
|
181
|
+
1. All graph data is stored in SQLite (via Drizzle ORM) — always use the tools above to read and write data
|
|
182
182
|
2. Always call `get_node` on a feature AND its related nodes before implementing — understand the full context
|
|
183
|
-
3. Always use `get_kanban` to check kanban state and `move_card` to transition cards
|
|
183
|
+
3. Always use `get_kanban` to check kanban state and `move_card` to transition cards
|
|
184
184
|
4. Call `move_card <feat_id> in_progress` before starting work, `move_card <feat_id> in_review` when done
|
|
185
185
|
5. Follow all coding standards from `nfr_001` — arrow functions, DI, single responsibility, node:test
|
|
186
186
|
6. Write tests for every feature — test logic and data transformations
|
|
@@ -94,7 +94,7 @@ npx tsx packages/shared/tools/search_nodes.ts --project-id <project_id> --comple
|
|
|
94
94
|
npx tsx packages/shared/tools/get_node.ts <node_id> --project-id <project_id>
|
|
95
95
|
npx tsx packages/shared/tools/get_node.ts --name "Node Name" --project-id <project_id>
|
|
96
96
|
```
|
|
97
|
-
Returns
|
|
97
|
+
Returns the node content (formatted as markdown) plus a Relations section listing all connected nodes with direction, relation type, name, type, and status.
|
|
98
98
|
|
|
99
99
|
### add_node
|
|
100
100
|
```
|
|
@@ -219,7 +219,7 @@ The user's time is for product decisions, not answering questions about their
|
|
|
219
219
|
own codebase that you have full access to.
|
|
220
220
|
|
|
221
221
|
## Rules
|
|
222
|
-
1.
|
|
222
|
+
1. All graph data is stored in SQLite (via Drizzle ORM) — always use the tools above to read and write data
|
|
223
223
|
2. Always call get_node before update_node — never update blind
|
|
224
224
|
3. Always record answers via resolve_question — don't just add a note
|
|
225
225
|
4. Nodes you create should reflect what the user actually said, not your inferences — use assumption node type for inferences
|