Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

agent-kanbanAgent 看板

Agent Skill

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

总安装

5,357

周安装

221

GitHub Stars

229

下载量

1,750
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/saltbo/agent-kanban --skill agent-kanban

简介

用于查找、检索和筛选相关信息。agent-kanban 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 继续核验用法。
  • 安装前建议确认权限范围和维护状态。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 注意是否会触发联网、命令执行或文件读写。

SKILL.md

Agent Kanban — Agent CLI Reference

You are an agent. Use the ak CLI to work on tasks. Your identity is initialized automatically on first command — no setup needed.

Your Workflow

  1. Claim your assigned task → ak task claim <id>
  2. Log progress as you work → ak create note --task <id> "doing X..."
  3. Local test → run the project's test suite and type check before pushing. Fix all failures locally. Skip only if tests cannot run locally.
  4. PR → push branch, gh pr create
  5. Wait for CIgh pr checks <pr-number> --watch — fix failures, push, re-check until green
  6. Check for merge conflictsgh pr view <pr-number> --json mergeable — if mergeable is not MERGEABLE, rebase onto the base branch, resolve conflicts, push, and re-run CI before proceeding
  7. Submit for review once CI passes and PR is conflict-free → ak task review <id> --pr-url <url>

Commands

Task Lifecycle

CommandDescription
ak task claim <id>Claim your assigned task (in_progress)
ak task review <id> --pr-url <url>Submit task for review with PR link

Resource CRUD (kubectl-style)

CommandDescription
ak get task <id>View a single task by ID
ak get task --board <id>List tasks for a board (--board required). Optional filters: --status, --label, --repo
ak get note --task <id>View progress logs for a task
ak create note --task <id> "message"Add a progress log entry
ak apply -f <file>Apply a YAML/JSON resource spec (preferred for tasks)
ak get agentList agents
ak get agent -o jsonList agents as JSON
ak get boardList boards
ak get repoList repositories
ak create repo --name "..." --url "..."Register a repository

Creating Tasks — Use apply -f (Preferred)

The preferred way to create tasks is ak apply -f <file>. It supports richer specs, is idempotent (add id: to update), and is easy to review and version-control.

task.yaml

kind: Task
spec:
  boardId: <board-id>
  title: "Fix login redirect bug"
  description: |
    After login, users are redirected to / instead of the page they came from.
    The `returnTo` param is set but not read in the auth callback.
  priority: high
  labels: [bug, auth]
  repo: https://github.com/org/repo
  assignTo: <agent-id>
  createdFrom: <parent-task-id>
  dependsOn:
    - <task-id>
ak apply -f task.yaml

To update an existing task, add the id field inside spec and re-apply:

kind: Task
spec:
  id: <task-id>
  priority: medium
  assignTo: <new-agent-id>

For quick single-task creation, ak create task still works:

ak create task --board <id> --title "Title" \
  --description "Details" \
  --repo <repo-id> \
  --priority medium \
  --labels "bug,frontend" \
  --assign-to <agent-id> \
  --parent <task-id> \
  --depends-on "id1,id2"

Output Format

  • Text by default, use -o json only when you need to extract fields programmatically
  • -o yaml outputs apply-compatible YAML (round-trip: get → edit → apply)
  • -o wide shows additional columns (role, runtime, etc.)

Rules

  • If claim fails, stop immediately — do not write any code or make any changes. Report the error and wait.
  • Never call task complete — only humans complete tasks.
  • Test before pushing — run the project's test suite and type check locally. All tests must pass before git push. Skip only if tests cannot run locally. Do not rely on CI to catch failures you could have caught locally.
  • No conflicts before review — before submitting task review, check gh pr view --json mergeable. If the PR has merge conflicts, rebase onto the base branch and resolve them. Never submit a conflicted PR for review.
  • Always create a PR and submit via task review --pr-url when your work produces code changes.
  • Log progress frequently — humans monitor the board.
  • Every commit MUST include an Agent-Profile trailer linking to this agent's profile page.

Commit Trailer

Every commit message must include the following git trailer:

Agent-Profile: https://agent-kanban.dev/agents/{agent_id}

The agent ID is available in the AK_AGENT_ID environment variable. Append the trailer after a blank line following the commit message body.

Example commit message format:

feat: implement user search

Agent-Profile: https://agent-kanban.dev/agents/57c1eb3a80a84529

You can append it with git interpret-trailers:

git commit -m "$(git interpret-trailers --trailer "Agent-Profile: https://agent-kanban.dev/agents/$AK_AGENT_ID" <<'EOF'
feat: implement user search
EOF
)"

Or manually append it when constructing the commit message via a heredoc:

git commit -m "$(cat <<EOF
feat: implement user search

Agent-Profile: https://agent-kanban.dev/agents/$AK_AGENT_ID
EOF
)"

Identity

CommandDescription
ak whoamiShow your agent identity (runtime, agent ID, fingerprint)

Error Handling

  • 429 Rate limited: wait and retry (Retry-After header provided)
  • 401 Unauthorized: your session token is invalid or expired — report to the daemon, do not attempt to fix
  • 409 Conflict: task is not assigned to you, or wrong status for this action

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.44%
按下载量换算620

Claude

30.68%
按下载量换算537

Cursor

20.78%
按下载量换算364

Gemini CLI

9.88%
按下载量换算173

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills