用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/NikiforovAll/claude-code-kanban --skill kanban命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | kanban |
| description | Drive the kanban board — open, pin, preview, link, inspect. |
| argument-hint | [open|pin|unpin|preview|link] [target] |
| disable-model-invocation | true |
This session id is ${CLAUDE_SESSION_ID}, substituted when the skill loads.
An argument names the section below that handles it; with no argument, open the current session. Prefer the bare claude-code-kanban binary, falling back to npx claude-code-kanban when it is off PATH or the user asks for npx.
To be driven by the board instead — card moves arriving as instructions — the user types /claude-code-kanban:kanban-follow.
open — the current sessionPins the session and switches the board to the Active tab.
claude-code-kanban session open ${CLAUDE_SESSION_ID}
pin — keep the session visibleclaude-code-kanban session pin ${CLAUDE_SESSION_ID} # pin
claude-code-kanban session pin ${CLAUDE_SESSION_ID} --sticky # always at the top
claude-code-kanban session pin ${CLAUDE_SESSION_ID} --unpin # clear
claude-code-kanban session pins # list pinned; --sticky narrows
preview — open a file in the modalMarkdown or standalone HTML. HTML renders in a sandboxed iframe, so sibling assets like ./style.css do not load. Relative paths are fine — the server resolves them.
claude-code-kanban preview-doc <file.md|.html> --session ${CLAUDE_SESSION_ID}
link — attach a doc without the modalAdds the file to the session's linked docs in the sidebar. Any extension, and nothing pops up, so it is the safe choice while the user is working.
claude-code-kanban link-doc <path> --session ${CLAUDE_SESSION_ID} # link
claude-code-kanban link-doc <path> --session ${CLAUDE_SESSION_ID} --unlink # remove
list / view / peek — read-onlyclaude-code-kanban session list --active # recent active sessions
claude-code-kanban session list --project <name> # filter by project
claude-code-kanban session list --days 0.5 --limit all # touched in last 12h, uncapped
claude-code-kanban session view ${CLAUDE_SESSION_ID} # full stats for current session
claude-code-kanban session peek ${CLAUDE_SESSION_ID} --limit 20 # last 20 messages (server caps at 50)
session list shows 10 rows and always includes pinned sessions, sticky first (--no-pins disables both). --json works on any list-style verb.
claude-code-kanban help <command> prints the authoritative flags — read it instead of guessing.
claude-code-kanban. If they run it elsewhere, set PORT=<n> when invoking the CLI.