소스 정보
- 저장소
- InugamiDev/ultrathink-oss
- 최근 소스 활동
- 2026년 4월 13일 15:28
- 감지된 SKILL.md 언어
- 영어
- 스타
- 43
- 포크
- 10
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/InugamiDev/ultrathink-oss --skill kanban명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Unified design foundations — design system architecture, tokens, component specs, visual principles, creative vision, figma integration, plus brand design system loader (66 real brands via DESIGN.md). Absorbs design, design-system, design-systems, design-principles, design-router, creative-vision, figma, design-md.
Render, summarize, and present markdown documents and structured content in multiple output modes
Ultra UI skill - combines Google's DESIGN.md spec (machine-readable design tokens) with the ui-ux-pro-max knowledge base (91 styles, 161 palettes, 73 font pairings, 161 products, 104 UX guidelines, 25 chart types). Generates lint-clean DESIGN.md files, validates token references and WCAG contrast, exports Tailwind/DTCG tokens, and diffs design systems version-over-version.
| name | kanban |
| description | Task board management -- create, update, and track work items across workflow stages |
| layer | hub |
| category | workflow |
| triggers | ["/kanban","show the board","update task status","what is in progress","move task to done","add a task","show backlog"] |
| inputs | [{"action":"view | add | move | update | archive | stats (defaults to view)"},{"task":"Task description, ID, or reference (for add/move/update)"},{"status":"Target status column (for move)"},{"priority":"low | medium | high | critical (for add/update)"}] |
| outputs | [{"board":"Current state of the kanban board"},{"taskDetails":"Details of created/updated task"},{"stats":"Board statistics and bottleneck analysis"}] |
| linksTo | ["plan","plan-archive"] |
| linkedFrom | ["plan","cook","team","ship"] |
| preferredNextSkills | ["plan","debug","fix"] |
| fallbackSkills | ["plan"] |
| riskLevel | low |
| memoryReadPolicy | selective |
| memoryWritePolicy | selective |
| sideEffects | ["Creates/updates kanban board state in memory","May create/update markdown board file"] |
Manage work items through a visual workflow board, tracking tasks from inception through completion. This skill provides a lightweight but structured way to organize, prioritize, and monitor work without leaving the agent conversation.
The board is a thinking tool, not just a tracking tool. Making work visible exposes bottlenecks, forgotten tasks, and scope creep.
The default kanban board has these columns:
| Column | Meaning | WIP Limit |
|---|---|---|
| Backlog | Identified but not started | None |
| Ready | Refined and ready to pick up | None |
| In Progress | Actively being worked on | 3 |
| In Review | Completed, awaiting verification | 2 |
| Done | Verified and complete | None |
| Blocked | Cannot proceed -- needs resolution | None |
WIP limits (Work In Progress) prevent overcommitment. If In Progress has 3 items, finish or move one before starting another.
Each task on the board has:
### [ID] [Title]
- **Status**: [column]
- **Priority**: Critical | High | Medium | Low
- **Created**: [date]
- **Updated**: [date]
- **Assignee**: [who -- typically "agent" or "user"]
- **Tags**: [searchable labels]
- **Description**: [what needs to be done]
- **Acceptance criteria**: [how to verify completion]
- **Blockers**: [what is preventing progress, if any]
: [additional context, decisions, links]
Display the current board state.
| Backlog | Ready | In Progress | In Review | Done | Blocked |
|---------|-------|-------------|-----------|------|---------|
| T-005 | T-003 | T-001 | T-004 | T-002| T-006 |
| T-007 | | T-008 | | | |
Create a new task on the board.
Change a task's status (move between columns).
Modify task details (priority, description, notes, etc.).
Move completed tasks to archive and clean the board.
plan-archive for tasks associated with a plan.Analyze board health and workflow metrics.
## Board Statistics
| Column | Count | Avg Age | Oldest |
|--------|-------|---------|--------|
| Backlog | 5 | 2d | 5d |
| In Progress | 3 | 1d | 2d |
| Blocked | 1 | 3d | 3d |
### Health Indicators
- WIP: 3/3 (at limit)
- Blocked: 1 task needs attention
- Throughput: 4 tasks completed today
- Bottleneck: Review column (2 tasks waiting)
### Recommendations
- Unblock T-006 before starting new work
- Review T-004 and T-009 to free up Review column
When persisting to a file, use this format:
# Kanban Board
> Last updated: [timestamp]
## Backlog
### T-005: Set up CI/CD pipeline
- **Priority**: Medium
- **Tags**: devops, infrastructure
### T-007: Add rate limiting to API
- **Priority**: High
- **Tags**: security, api
## Ready
### T-003: Write user authentication tests
- **Priority**: High
- **Tags**: testing, auth
## In Progress
### T-001: Implement user registration endpoint
- **Priority**: High
- **Tags**: api, auth
- **Notes**: Schema is defined, starting controller logic
## In Review
### T-004: Design database schema
- **Priority**: Critical
- **Tags**: database
- **Acceptance**: ERD reviewed, migrations tested
## Done
### T-002: Project scaffolding and configuration
- **Priority**: High
- **Completed**: [date]
## Blocked
### T-006: Integrate payment gateway
- **Priority**: Medium
- **Blocker**: Waiting for API credentials from payment provider
/kanban
/kanban show board
/kanban add: Implement password reset flow (high priority)
/kanban add: Write API documentation (medium, tags: docs)
/kanban move T-001 to review
/kanban T-003 is done
/kanban T-006 is blocked -- waiting on third-party API access
/kanban update T-001 priority to critical
/kanban T-005 note: decided to use GitHub Actions
/kanban stats
/kanban What is blocking progress?
/kanban Create board from the authentication plan
Input: Plan with 3 phases, 8 tasks total
Output: Board created with 8 tasks, all in Backlog. Phase 1 tasks tagged with phase-1 and moved to Ready.
Input: /kanban stats
Output: "3 tasks in Review, only 1 in Progress. The bottleneck is the review stage. Recommend reviewing T-004 and T-009 before starting new development work."