kanban
π―Skillfrom lobbi-docs/claude
kanban skill from lobbi-docs/claude
Installation
npx skills add https://github.com/lobbi-docs/claude --skill kanbanSkill Details
Kanban methodology including boards, WIP limits, flow metrics, and continuous delivery. Activate for Kanban boards, workflow visualization, and lean project management.
Overview
# Kanban Skill
Provides comprehensive Kanban methodology capabilities for the Golden Armada AI Agent Fleet Platform.
When to Use This Skill
Activate this skill when working with:
- Kanban board setup
- WIP limit configuration
- Flow metrics analysis
- Continuous delivery workflows
- Pull-based systems
Kanban Board Structure
\\\`
ββββββββββββββ¬βββββββββββββ¬βββββββββββββ¬βββββββββββββ¬βββββββββββββ
β BACKLOG β TO DO β IN PROGRESSβ REVIEW β DONE β
β (β) β (10) β (5) β (3) β (β) β
ββββββββββββββΌβββββββββββββΌβββββββββββββΌβββββββββββββΌβββββββββββββ€
β β β β β β
β ββββββββ β ββββββββ β ββββββββ β ββββββββ β ββββββββ β
β β Task β β β Task β β β Task β β β Task β β β Task β β
β β 1 β β β 2 β β β 3 β β β 4 β β β 5 β β
β ββββββββ β ββββββββ β ββββββββ β ββββββββ β ββββββββ β
β β β β β β
β ββββββββ β ββββββββ β ββββββββ β β ββββββββ β
β β Task β β β Task β β β Task β β β β Task β β
β β 6 β β β 7 β β β 8 β β β β 9 β β
β ββββββββ β ββββββββ β ββββββββ β β ββββββββ β
β β β β β β
ββββββββββββββ΄βββββββββββββ΄βββββββββββββ΄βββββββββββββ΄βββββββββββββ
\\\`
Kanban Principles
Core Practices
- Visualize the workflow - Make work visible
- Limit WIP - Focus on finishing, not starting
- Manage flow - Optimize throughput
- Make policies explicit - Clear rules for moving work
- Implement feedback loops - Regular reviews
- Improve collaboratively - Continuous improvement
WIP Limits
\\\`markdown
WIP Limit Guidelines
| Column | WIP Limit | Rationale |
|---------------|-----------|-------------------------------|
| Backlog | β | Unlimited ideas storage |
| To Do | 10 | Committed work for near-term |
| In Progress | 5 | Active development capacity |
| Review | 3 | Prevent review bottleneck |
| Done | β | Completed work archive |
Setting WIP Limits
- Start with team size Γ 1.5
- Adjust based on flow metrics
- Too high = loss of focus
- Too low = idle time
\\\`
Flow Metrics
Lead Time vs Cycle Time
\\\`
Lead Time
βββββββββββββββββββββββββββββββββββββββββββββΊ
β β
β Cycle Time β
β βββββββββββββββββββββββΊ β
β β β β
βββββΌβββββΌββββ ββββββββββββ ββββββββββββ ββΌββββββββββ
β Created ββββΊβIn ProgressββββΊβ Review ββββΊβ Done β
β (Backlog) β β β β β β β
ββββββββββββββ ββββββββββββ ββββββββββββ ββββββββββββ
Lead Time: Time from request to delivery
Cycle Time: Time from start to completion
\\\`
Throughput Calculation
\\\`python
# Throughput: Items completed per time period
def calculate_throughput(completed_items: list, period_days: int) -> float:
items_completed = len(completed_items)
throughput = items_completed / period_days
return throughput
# Example
completed_this_week = 15
throughput = completed_this_week / 7 # 2.14 items per day
\\\`
Cumulative Flow Diagram
\\\`
Items β
50 β βββββ Done
β ββββββ
40 β ββββββ
β ββββββ βββββ Review
30 β ββββββ ββββββ
βββββββ βββββ βββββ In Progress
20 β βββββ βββββ
β βββββ βββββ To Do
10 β βββββ
β βββββ
0 βββββ_________________________________
Week 1 2 3 4 5 6 7
\\\`
Card Structure
\\\`markdown
Kanban Card Template
Title
[Clear, concise description]
Type
[ ] Feature [ ] Bug [ ] Tech Debt [ ] Support
Details
- Requester: [Name]
- Priority: [High/Medium/Low]
- Size: [S/M/L/XL]
- Due Date: [If applicable]
Description
[What needs to be done]
Acceptance Criteria
- [ ] Criterion 1
- [ ] Criterion 2
Blockers
[Any dependencies or impediments]
Class of Service
[ ] Expedite (Urgent, bypass WIP)
[ ] Fixed Date (External deadline)
[ ] Standard (Normal flow)
[ ] Intangible (Low priority)
\\\`
Service Level Expectations
\\\`markdown
SLE by Card Type
| Type | Target Lead Time | % On Time Target |
|---------------|------------------|------------------|
| Expedite | 1 day | 95% |
| Bug Fix | 3 days | 90% |
| Feature | 2 weeks | 85% |
| Tech Debt | 1 month | 80% |
\\\`
Swimlanes
\\\`
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β EXPEDITE (WIP: 1) β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β ββββββββββββ β
β β CRITICAL β β
β β Bug #123 β β
β ββββββββββββ β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β STANDARD (WIP: 5) β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β ββββββββ ββββββββ ββββββββ ββββββββ β
β β Task β β Task β β Task β β Task β β
β β 1 β β 2 β β 3 β β 4 β β
β ββββββββ ββββββββ ββββββββ ββββββββ β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β INTANGIBLE (WIP: 2) β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β ββββββββ ββββββββ β
β β Docs β β Tech β β
β β Task β β Debt β β
β ββββββββ ββββββββ β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
\\\`
Kanban Meetings
Daily Standup (Walking the Board)
- Start from right (Done) to left (Backlog)
- Focus on blocked items
- Identify bottlenecks
- 15 minutes max
Replenishment Meeting (Weekly)
- Review backlog
- Prioritize incoming work
- Pull items to "To Do"
- Discuss capacity
Delivery Planning (Bi-weekly)
- Review completed items
- Update forecasts
- Communicate delivery dates
Golden Armada Kanban Commands
\\\`bash
# View board status
/kanban-status --board golden-armada
# Add item to backlog
/kanban-add --title "Feature X" --type feature --size M
# Move item
/kanban-move GA-123 --to "In Progress"
# Generate metrics report
/kanban-metrics --period 30d
\\\`
More from this repository10
helm skill from lobbi-docs/claude
gcp skill from lobbi-docs/claude
deep-analysis skill from lobbi-docs/claude
atlassianapi skill from lobbi-docs/claude
restapi skill from lobbi-docs/claude
jira:commit skill from lobbi-docs/claude
mongodb-atlas skill from lobbi-docs/claude
tool-use skill from lobbi-docs/claude
scrum skill from lobbi-docs/claude
llmintegration skill from lobbi-docs/claude