← 返回 Skills 市场
gendosu

agkan-skills

作者 GENDOSU · GitHub ↗ · v1.0.2 · MIT-0
cross-platform ✓ 安全检测通过
384
总下载
1
收藏
1
当前安装
3
版本数
在 OpenClaw 中安装
/install agkan-skills
功能描述
Use when managing tasks with the agkan CLI tool - creating, listing, updating tasks, managing tags, blocking relationships, or tracking project progress with...
使用说明 (SKILL.md)

agkan

Overview

agkan is an SQLite-based CLI task management tool. It is optimized for collaboration with AI agents.

7 Statuses: iceboxbacklogreadyin_progressreviewdoneclosed


Quick Reference

Agent Guide

# Display a comprehensive guide for AI agents (overview, commands, workflows)
agkan agent-guide

Task Operations

# Create task
agkan task add "Title" "Body"
agkan task add "Title" --status ready --author "agent"
agkan task add "Subtask" --parent 1
agkan task add "Title" --file ./spec.md  # Read body from file
agkan task add "Title" --blocked-by 1,2  # Set tasks that block this task
agkan task add "Title" --blocks 3,4      # Set tasks that this task blocks
agkan task add "Title" --assignees "alice,bob"  # Set task assignees (comma-separated)

# List tasks
agkan task list                    # All tasks
agkan task list --status in_progress
agkan task list --tree             # Hierarchical view
agkan task list --root-only        # Root tasks only
agkan task list --tag 1,2          # Filter by tags
agkan task list --dep-tree         # Dependency (blocking) tree view
agkan task list --sort title       # Sort by field (id / title / status / created_at / updated_at), default: created_at
agkan task list --order asc        # Sort order (asc / desc), default: desc
agkan task list --assignees "alice,bob"  # Filter by assignees (comma-separated)
agkan task list --all              # Include all statuses (including done and closed)

# Get details
agkan task get \x3Cid>

# Search
agkan task find "keyword"
agkan task find "keyword" --all  # Include done/closed

# Update (positional argument form - backward compatible)
agkan task update \x3Cid> status in_progress

# Update (named option form - v1.6.0+)
agkan task update \x3Cid> --status in_progress
agkan task update \x3Cid> --title "New Title"
agkan task update \x3Cid> --body "New body text"
agkan task update \x3Cid> --author "agent"
agkan task update \x3Cid> --assignees "alice,bob"
agkan task update \x3Cid> --file ./spec.md  # Read body from file
agkan task update \x3Cid> --status done --title "Updated Title"  # Multiple options

# Count
agkan task count
agkan task count --status ready --quiet  # Output numbers only

# Update parent-child relationship
agkan task update-parent \x3Cid> \x3Cparent_id>
agkan task update-parent \x3Cid> null  # Remove parent

# Delete task
agkan task delete \x3Cid>

Blocking Relationships

# task1 blocks task2 (task2 cannot be started until task1 is complete)
agkan task block add \x3Cblocker-id> \x3Cblocked-id>
agkan task block remove \x3Cblocker-id> \x3Cblocked-id>
agkan task block list \x3Cid>

Tag Operations

# Tag management
agkan tag add "frontend"
agkan tag list
agkan tag delete \x3Ctag-id-or-name>
agkan tag rename \x3Cid-or-name> \x3Cnew-name>

# Tag tasks
agkan tag attach \x3Ctask-id> \x3Ctag-id-or-name>
agkan tag detach \x3Ctask-id> \x3Ctag-id-or-name>
agkan tag show \x3Ctask-id>

Metadata Operations

# Set metadata
agkan task meta set \x3Ctask-id> \x3Ckey> \x3Cvalue>

# Get metadata
agkan task meta get \x3Ctask-id> \x3Ckey>

# List metadata
agkan task meta list \x3Ctask-id>

# Delete metadata
agkan task meta delete \x3Ctask-id> \x3Ckey>

Priority (priority)

Task priority is managed with the priority key:

agkan task meta set \x3Ctask-id> priority \x3Cvalue>
Value Meaning
critical Requires immediate attention. Blocking issue
high Should be prioritized
medium Normal priority (default)
low Work on if there is time

When to set priority: Priority is set during the planning phase (agkan-planning-subtask), at the same time the task is moved from backlog to ready. This is the responsibility of the planning skill. Skills that select tasks for execution (e.g., agkan-run) read this value to determine which task to work on next.


Tag Priority

When selecting or tagging tasks, use the following priority order:

Priority Tag Name
1 bug
2 security
3 improvement
4 test
5 performance
6 refactor
7 docs

This is the canonical definition. All skills refer to this table.


JSON Output

Use the --json flag when machine processing is needed:

agkan task list --json
agkan task get 1 --json
agkan task count --json
agkan tag list --json

# Combine with jq
agkan task list --status ready --json | jq '.tasks[].id'

JSON Output Schema

agkan task list --json

{
  "totalCount": 10,
  "filters": {
    "status": "ready | null",
    "author": "string | null",
    "tagIds": [1, 2],
    "rootOnly": false
  },
  "tasks": [
    {
      "id": 1,
      "title": "Task Title",
      "body": "Body | null",
      "author": "string | null",
      "status": "icebox | backlog | ready | in_progress | review | done | closed",
      "parent_id": "number | null",
      "created_at": "2026-01-01T00:00:00.000Z",
      "updated_at": "2026-01-01T00:00:00.000Z",
      "parent": "object | null",
      "tags": [{ "id": 1, "name": "bug" }],
      "metadata": [{ "key": "priority", "value": "high" }]
    }
  ]
}

agkan task get \x3Cid> --json

{
  "success": true,
  "task": {
    "id": 1,
    "title": "Task Title",
    "body": "Body | null",
    "author": "string | null",
    "status": "backlog | ready | in_progress | review | done | closed",
    "parent_id": "number | null",
    "created_at": "2026-01-01T00:00:00.000Z",
    "updated_at": "2026-01-01T00:00:00.000Z"
  },
  "parent": "object | null",
  "children": [],
  "blockedBy": [{ "id": 2, "title": "..." }],
  "blocking": [{ "id": 3, "title": "..." }],
  "tags": [{ "id": 1, "name": "bug" }],
  "attachments": []
}

agkan task count --json

{
  "counts": {
    "icebox": 0,
    "backlog": 0,
    "ready": 2,
    "in_progress": 1,
    "review": 0,
    "done": 8,
    "closed": 5
  },
  "total": 16
}

agkan task find \x3Ckeyword> --json

{
  "keyword": "Search keyword",
  "excludeDoneClosed": true,
  "totalCount": 3,
  "tasks": [
    {
      "id": 1,
      "title": "Task Title",
      "body": "Body | null",
      "author": "string | null",
      "status": "ready",
      "parent_id": "number | null",
      "created_at": "2026-01-01T00:00:00.000Z",
      "updated_at": "2026-01-01T00:00:00.000Z",
      "parent": "object | null",
      "tags": [],
      "metadata": []
    }
  ]
}

agkan task block list \x3Cid> --json

{
  "task": {
    "id": 1,
    "title": "Task Title",
    "status": "ready"
  },
  "blockedBy": [{ "id": 2, "title": "...", "status": "in_progress" }],
  "blocking": [{ "id": 3, "title": "...", "status": "ready" }]
}

agkan task meta list \x3Cid> --json

{
  "success": true,
  "data": [
    { "key": "priority", "value": "high" }
  ]
}

agkan tag list --json

{
  "totalCount": 3,
  "tags": [
    {
      "id": 1,
      "name": "bug",
      "created_at": "2026-01-01T00:00:00.000Z",
      "taskCount": 2
    }
  ]
}

Typical Workflows

Icebox Review (agkan-icebox)

Icebox holds ideas and candidates that are not yet ready for planning. Review them periodically to decide whether to promote or close each one.

# Review icebox tasks
agkan task list --status icebox

# Promote to backlog when requirements become clear
agkan task update \x3Cid> status backlog

# Close if no longer needed
agkan task update \x3Cid> status closed

Icebox → Backlog conditions:

  • Requirements or background are now clear enough to plan
  • External blockers have been resolved
  • Circumstances have changed and the task is now relevant

Icebox → Closed conditions:

  • The need no longer exists
  • A duplicate already exists in a later stage
  • Superseded by another approach

Receiving Tasks as an Agent

# Check assigned tasks
agkan task list --status ready
agkan task get \x3Cid>

# Start work
agkan task update \x3Cid> status in_progress

# Complete
agkan task update \x3Cid> status done

Structuring Tasks

# Create parent task
agkan task add "Feature Implementation" --status ready

# Add subtasks
agkan task add "Design" --parent 1 --status ready
agkan task add "Implementation" --parent 1 --status backlog
agkan task add "Testing" --parent 1 --status backlog

# Set dependencies (Design → Implementation → Testing)
agkan task block add 2 3
agkan task block add 3 4

# View overall structure
agkan task list --tree

Configuration

Place .agkan.yml in the project root to customize the DB path:

path: ./.agkan/data.db

Or use environment variable: AGENT_KANBAN_DB_PATH=/custom/path/data.db

安全使用建议
This skill is a CLI reference for the agkan tool and appears internally consistent. Before installing or enabling it for autonomous use, verify that the agkan binary you trust is installed on the agent host (the SKILL.md assumes agkan is available), and be aware that some commands (e.g., agkan task add --file ./spec.md) cause the agent to read local files — avoid granting access to sensitive directories or run in an isolated environment if you are unsure. No network credentials or installs are requested, so the risk profile is low.
功能分析
Type: OpenClaw Skill Name: agkan-skills Version: 1.0.2 The skill bundle provides documentation and command references for 'agkan', an SQLite-based CLI task management tool designed for AI agents. The instructions in SKILL.md are purely functional, covering task creation, status updates, tagging, and metadata management without any evidence of malicious intent, data exfiltration, or prompt injection attacks.
能力评估
Purpose & Capability
The SKILL.md is a CLI reference for the agkan task manager and its commands are coherent with the described purpose. Minor mismatch: the skill metadata lists no required binaries while the guide presumes an 'agkan' CLI is available on PATH (the registry should ideally declare the binary dependency). No other unrelated capabilities or secrets are requested.
Instruction Scope
Instructions are narrow and limited to using the agkan CLI and its JSON output; examples reference reading task body from a local file (--file) which is expected for a CLI tool. There are no instructions to read unrelated system files, access credentials, or post data to external endpoints.
Install Mechanism
There is no install spec (instruction-only), so nothing is downloaded or written to disk by the skill itself. This is the lowest-risk pattern for a skill that documents a CLI.
Credentials
The skill requests no environment variables, no credentials, and no config paths. That aligns with its stated role as a local CLI reference and is proportionate.
Persistence & Privilege
The skill is not marked 'always' and uses default invocation behavior. It does not request persistent system modifications or act on other skills' configs. Autonomous invocation is allowed by platform default but is not combined with any broad privileges here.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install agkan-skills
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /agkan-skills 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
agkan-skills v1.0.2 changelog - Updated documentation to clarify priority/tag priorities for agents and skills. - Added new CLI options for more flexible task creation and updating (e.g., assignees, blocked-by, blocks, tag/assignee filters). - Introduced `agkan agent-guide` command for a comprehensive in-tool agent/skill guide. - Improved tag and task workflows with additional features (task deletion, tag renaming). - Enhanced documentation and workflows for typical AI-agent use-cases.
v1.0.1
- All documentation rewritten from Japanese to English for broader accessibility. - No changes to functionality, commands, or options. - All command examples and JSON output schemas updated to use English field names and comments. - Descriptions and workflow examples provided in English. - No changes to the CLI or its usage, only translation of documentation.
v1.0.0
agkan-skills v1.0.0 - Initial release. - Provides concise documentation for managing tasks using the agkan CLI tool. - Covers common workflows, command references, JSON output schemas, and configuration options. - Suitable for task tracking, tag management, blocking relationships, and kanban board progress monitoring.
元数据
Slug agkan-skills
版本 1.0.2
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 3
常见问题

agkan-skills 是什么?

Use when managing tasks with the agkan CLI tool - creating, listing, updating tasks, managing tags, blocking relationships, or tracking project progress with... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 384 次。

如何安装 agkan-skills?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install agkan-skills」即可一键安装,无需额外配置。

agkan-skills 是免费的吗?

是的,agkan-skills 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

agkan-skills 支持哪些平台?

agkan-skills 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 agkan-skills?

由 GENDOSU(@gendosu)开发并维护,当前版本 v1.0.2。

💬 留言讨论