소스 정보
- 저장소
- NikiforovAll/claude-code-kanban
- 최근 소스 활동
- 2026년 8월 21일 06:07
- 감지된 SKILL.md 언어
- 영어
- 스타
- 55
- 포크
- 12
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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.