Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

kanbankanban 搜索

Agent Skill

kanban 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

499

周安装

20

GitHub Stars

235

下载量

162
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:kanban(kanban 搜索)
来源仓库:https://github.com/flpbalada/my-opencode-config
仓库路径:skills/kanban
安装命令:
npx skills add https://github.com/flpbalada/my-opencode-config --skill kanban
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/flpbalada/my-opencode-config --skill kanban

简介

kanban 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,注意是否触发联网、命令执行或文件读写。
  • 建议结合原始 README 和仓库内容核验具体用法和功能边界。

SKILL.md

Kanban - Visualize Work, Limit WIP, Optimize Flow

Kanban is a visual workflow management method originating from Toyota's manufacturing system. It focuses on visualizing work, limiting work-in-progress (WIP), and optimizing the flow of work through a system.

When to Use This Skill

  • Managing team workflow and task prioritization
  • Identifying and resolving bottlenecks
  • Improving delivery predictability
  • Balancing team capacity with demand
  • Implementing continuous improvement
  • Transitioning from chaotic to structured work

Core Concepts

The Kanban Board

+----------+----------+----------+----------+
|  TO DO   |  DOING   |  REVIEW  |   DONE   |
|          |  (WIP:3) |  (WIP:2) |          |
+----------+----------+----------+----------+
| [Task 1] | [Task 4] | [Task 6] | [Task 8] |
| [Task 2] | [Task 5] |          | [Task 9] |
| [Task 3] |          |          |          |
+----------+----------+----------+----------+

Six Core Practices

PracticeDescription
Visualize workflowMake all work visible on the board
Limit WIPCap items in each stage
Manage flowTrack and optimize throughput
Make policies explicitDocument rules for moving work
Implement feedback loopsRegular reviews and retrospectives
Improve collaborativelyEvolve process based on data

Key Metrics

MetricDefinitionWhy It Matters
Lead TimeRequest → DeliveryCustomer perspective
Cycle TimeWork Started → DoneTeam efficiency
ThroughputItems completed per periodCapacity planning
WIPItems currently in progressFlow health

Little's Law

Lead Time = WIP / Throughput

To reduce lead time:
- Reduce WIP (easier)
- Increase throughput (harder)

Analysis Framework

Step 1: Map Current Workflow

Identify all stages work passes through:

Idea → Backlog → Analysis → Development → Testing → Deploy → Done

Step 2: Set WIP Limits

Start with: WIP limit = Team size - 1

StageTeam MembersInitial WIP Limit
Dev43
Review22
Test22

Step 3: Identify Bottlenecks

Look for columns where work accumulates:

+------+------+------+------+
| Dev  |Review| TEST | Done |
+------+------+------+------+
| [1]  | [4]  | [8]  | [9]  |
| [2]  | [5]  | [10] |      |
| [3]  | [6]  |      |      |
|      | [7]  |      |  ← Bottleneck in Review
+------+------+------+------+

Step 4: Optimize Flow

Actions to address bottlenecks:

  • Add capacity to bottleneck stage
  • Reduce WIP in preceding stages
  • Improve efficiency at bottleneck
  • Change policies (batch size, etc.)

Output Template

## Kanban Board Setup

**Team/Project:** [Name] **Date:** [Date]

### Workflow Stages

| Stage     | WIP Limit | Entry Criteria | Exit Criteria |
| --------- | --------- | -------------- | ------------- |
| [Stage 1] | [n]       | [Criteria]     | [Criteria]    |
| [Stage 2] | [n]       | [Criteria]     | [Criteria]    |

### Current Metrics

| Metric     | Current  | Target   |
| ---------- | -------- | -------- |
| Lead Time  | [X days] | [Y days] |
| Cycle Time | [X days] | [Y days] |
| Throughput | [X/week] | [Y/week] |

### Bottleneck Analysis

**Current bottleneck:** [Stage] **Root cause:** [Analysis] **Action plan:**
[Steps to resolve]

### Improvement Experiments

| Experiment | Hypothesis         | Measure  | Duration |
| ---------- | ------------------ | -------- | -------- |
| [Change 1] | [Expected outcome] | [Metric] | [Time]   |

Real-World Examples

Example 1: Software Development Team

Before: 15 items in progress, 3-week average delivery After: 6 WIP limit, 5-day average delivery

Changes:

  • Visualized all work (including hidden tasks)
  • Set WIP limits (forced focus)
  • Daily standups at the board
  • Swarming on blocked items

Example 2: Content Marketing Team

+--------+--------+--------+--------+--------+
| Ideas  | Draft  | Edit   | Design | Publish|
| (10)   | WIP:3  | WIP:2  | WIP:2  |        |
+--------+--------+--------+--------+--------+

Bottleneck discovered: Design stage Solution: Created template library, reduced design dependency

Best Practices

Do

  • Start with current process, evolve gradually
  • Make WIP limits visible and enforced
  • Track metrics consistently
  • Review board in daily standups
  • Celebrate flow improvements

Avoid

  • Treating Kanban as just a task board
  • Setting WIP limits too high (defeats purpose)
  • Ignoring blocked items
  • Skipping retrospectives
  • Comparing team throughput to others

WIP Limit Guidelines

SituationAdjustment
Items stuck too longLower WIP
Team has idle timeRaise WIP slightly
Too much context switchingLower WIP
Bottleneck formingAddress root cause

Integration with Other Methods

MethodCombined Use
Hypothesis TreeInvestigate flow problems
Five WhysFind root cause of bottlenecks
Cognitive LoadJustify WIP limits (context switching cost)

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.32%
按下载量换算52

Claude

29.31%
按下载量换算47

Cursor

19.69%
按下载量换算32

Gemini CLI

9.91%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills