ai4kanban 0.6.1 → 0.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/README.md +1 -1
- package/bin/ai4kanban.mjs +4 -2
- package/dist/kanban.mjs +557 -84
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -65,7 +65,7 @@ akb skill install # add it, or bring an older copy up to date
|
|
|
65
65
|
That writes one file into `.claude/skills/kanban/` (Claude Code) and
|
|
66
66
|
`.agents/skills/kanban/` (Codex): `SKILL.md`, a short note telling a coding agent the board
|
|
67
67
|
is here and that `akb` owns it. The board app does the same thing from a button:
|
|
68
|
-
**Configuration →
|
|
68
|
+
**Configuration → Agent setup**.
|
|
69
69
|
|
|
70
70
|
Nothing else is copied in. The flows ship inside the command (`akb guide`), so a newer
|
|
71
71
|
command is newer flows in every project at once — and the command itself stays where npm put
|
package/bin/ai4kanban.mjs
CHANGED
|
@@ -329,7 +329,7 @@ function cmdInstall(root, tracks) {
|
|
|
329
329
|
say('That is the board. Nothing was written outside docs/kanban/.')
|
|
330
330
|
say('')
|
|
331
331
|
say('To drive this board from your coding agent, add the skill — from the button in the')
|
|
332
|
-
say('board UI (Configuration →
|
|
332
|
+
say('board UI (Configuration → Agent setup), or here:')
|
|
333
333
|
say('')
|
|
334
334
|
say(` ${PROGRAM} skill`)
|
|
335
335
|
}
|
|
@@ -538,7 +538,7 @@ Options
|
|
|
538
538
|
|
|
539
539
|
Installing writes the board and nothing outside docs/kanban/. Driving that board from a
|
|
540
540
|
coding agent is a later extra — \`akb skill install\`, or the button in the board UI under
|
|
541
|
-
Configuration →
|
|
541
|
+
Configuration → Agent setup. The flows the agent works by are not copied anywhere either: they
|
|
542
542
|
ship inside this command (\`akb guide\`), so updating the command updates every flow in
|
|
543
543
|
every project at once.
|
|
544
544
|
|
|
@@ -627,6 +627,8 @@ const RUN_COMMANDS = new Set([
|
|
|
627
627
|
'setup',
|
|
628
628
|
'archive',
|
|
629
629
|
'reject',
|
|
630
|
+
// Put a spec agent on a card — a named agent that fills one part of its spec (#187).
|
|
631
|
+
'spec',
|
|
630
632
|
'runs',
|
|
631
633
|
'log',
|
|
632
634
|
'stop',
|