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

agentic-backlog-scrumAgent 积压 scrum

Agent Skill

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

总安装

190

周安装

8

GitHub Stars

公开资料未说明

下载量

67
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/hakenshi/agentic-backlog-skill --skill agentic-backlog-scrum

简介

agentic-backlog-scrum 定义任务跟踪的工作流与工具使用规范。

  • 适合实施开发中的任务管理与状态同步。
  • 假设本地 agentic-backlog MCP 服务已运行。
  • 安装命令:npx skills add https://github.com/hakenshi/agentic-backlog-skill --skill agentic-backlog-scrum。
  • 需确保后端 API 可用,否则无法读取或写入任务状态。

SKILL.md

Agentic Backlog Scrum

Use this skill whenever you are doing implementation work and need task tracking discipline.

What this skill is

  • This skill is documentation for agent behavior.
  • It defines workflow, guardrails, and tool usage conventions.
  • It is not a database, API server, or business-logic runtime.

This skill assumes a local MCP server named agentic-backlog is available.

Runtime boundary

  • The running backlog API/application is the source of truth.
  • MCP is how the agent reads context from and sends operations to that running API.
  • This skill only tells the agent how to behave when using MCP tools.

API bootstrap fallback (required)

If backlog MCP calls fail because the API is not reachable (connection refused, timeout, 5xx from missing service), the agent must bootstrap the API container before continuing.

  1. Pull latest API image:

- docker pull lonelyww/agentic-backlog-elysia:latest

  1. Replace any stale container instance:

- docker rm -f agentic-backlog-api || true

  1. Run API on localhost :38117:

- docker run -d --name agentic-backlog-api -p 38117:8000 -e PORT=8000 -e BACKLOG_DB_PATH=/data/backlog.sqlite -v agentic-backlog-data:/data lonelyww/agentic-backlog-elysia:latest

  1. Verify health:

- curl http://127.0.0.1:38117/api/health

  1. Retry the failed backlog MCP call.

Notes:

  • Use Docker named volume agentic-backlog-data to persist SQLite without host bind mount paths.
  • If MCP points to a different port, update BACKLOG_API_BASE_URL to match (recommended default: http://127.0.0.1:38117/api).

MCP connectivity check (required)

After API bootstrap, validate MCP end-to-end before doing backlog operations:

  1. Confirm API health endpoint:

- curl http://127.0.0.1:38117/api/health

  1. Run a lightweight MCP tool call to verify data path:

- backlog.health then backlog.version - backlog.identify_project

If the MCP tool call fails because the MCP server is not configured in the current client:

  • Register a local MCP server named agentic-backlog in the active client.
  • Use local command: npx -y @hakenshi/agentic-backlog-mcp-server.
  • Set env: BACKLOG_API_BASE_URL=http://127.0.0.1:38117/api.

If the API health check fails, run the API bootstrap fallback section above.

Client examples (optional):

  • OpenCode: opencode mcp add and opencode mcp list
  • Any MCP-capable client: add server agentic-backlog with the same command/env above

Trigger phrases

Use this skill proactively when the user says things like:

  • \agentic-backlog:add
  • \agentic-backlog:remove
  • \agentic-backlog:update
  • \agentic-backlog:read
  • \agentic-backlog:board
  • \agentic-backlog:in-progress
  • \agentic-backlog:show-task
  • \agentic-backlog:update-task

Expected behavior by trigger:

  • \agentic-backlog:add -> create a task (backlog.create_task)
  • \agentic-backlog:remove -> delete only with explicit confirmation (backlog.delete_task + confirm: "DELETE")
  • \agentic-backlog:update -> update task fields or status (backlog.update_task / backlog.update_task_status)
  • \agentic-backlog:read -> fetch board/task snapshot (backlog.get_board / backlog.get_console_table)
  • \agentic-backlog:board -> return board overview (backlog.get_board + backlog.get_console_table)
  • \agentic-backlog:in-progress -> list active WIP (backlog.list_tasks with status: in_progress)
  • \agentic-backlog:show-task -> find a specific task by title keywords, then show it (backlog.find_tasks_by_title + backlog.get_task)
  • \agentic-backlog:update-task -> find a specific task by title keywords, then update it (backlog.update_task_by_title)

Task-by-name behavior:

  • Use user-provided title keywords to search current project tasks.
  • Prefer exact title match; otherwise use best partial match.
  • If multiple close matches exist, show top candidates and ask which one to use.
  • For updates, always echo the matched task title/id before applying the change.

Core tools (CRUD)

  • backlog.create_task
  • backlog.get_task
  • backlog.list_tasks
  • backlog.find_tasks_by_title
  • backlog.update_task
  • backlog.update_task_by_title
  • backlog.delete_task

Core tools (operational)

  • backlog.health
  • backlog.version

When available in current MCP version:

  • backlog.get_focus
  • backlog.claim_task
  • backlog.release_task
  • backlog.restore_task

Capability check (required)

  • Before relying on operational tools, verify availability in the current MCP server.
  • If backlog.health/backlog.version are unavailable, fallback to backlog.identify_project as connectivity check.
  • If backlog.get_focus is unavailable, fallback to backlog.get_board + backlog.list_tasks(status=in_progress|blocked).
  • If backlog.restore_task is unavailable, communicate that restore is not exposed in this MCP version.

Goal

Keep a shared backlog that multiple AI agents can update consistently.

Mandatory workflow

  1. Identify project

- Call backlog.identify_project first. - Store returned project.id.

  1. Get current board

- Call backlog.get_board and inspect WIP. - Call backlog.get_focus to prioritize blocked/stale/high-impact work. - Refresh board before each major implementation step. - When reporting progress to the user, call backlog.get_console_table.

  1. Ensure active task exists

- If no suitable task exists, call backlog.create_task.

  1. Start work

- Move task to in_progress with backlog.update_task_status or backlog.update_task.

  1. During work

- Add short progress notes with backlog.add_task_note using 3 fields: - feito: - bloqueio: - proximo: - Re-read the board after each note/status transition.

  1. On completion

- Before moving to review or done, add a compact summary note with outcome + remaining risks. - Move to review or done.

  1. On blockers

- Move to blocked and include reason.

Status model

  • backlog
  • todo
  • in_progress
  • blocked
  • review
  • done
  • cancelled

Tool usage contract

Always include metadata when available:

  • source: agent/client name (for example codex, claude-code, opencode, cursor)
  • agent_id: stable agent identity when available
  • session_id: current conversation/session id when available

Ambiguity protocol (required)

  • If a title query returns multiple plausible tasks, do not auto-apply update/delete.
  • Show top 3 candidates (id, title, status, updated_at) and request explicit selection.
  • Only proceed after user chooses one candidate.

Failure protocol (required)

  • If MCP/API is unavailable, return this standard message:

- Backlog indisponivel no momento. Vou restabelecer conexao e tentar novamente.

  • MCP fail-fast behavior:

- The MCP may open a short circuit window after timeout/5xx errors and return immediate 503 responses. - This is expected and prevents long agent stalls when API is down. - During this window, use backlog.health and backlog.version as recovery probes.

  • Then execute recovery in order:

1. backlog.health 2. API bootstrap fallback (section above) 3. backlog.version 4. Retry original operation once

  • Retry rules:

- Retry only timeout/5xx. - Do not retry 4xx validation/auth/conflict errors.

Planning mode

Use backlog.plan_from_context for fast task drafting from plain text.

  • Default behavior is preview mode.
  • Use apply=true to persist generated actions.
  • Apply only if actions are relevant to the current project scope.

Guardrails

  • Do not perform large code changes without linking to a task.
  • Keep notes objective and short.
  • Prefer one active in_progress task per agent/session.
  • Deletions must be explicit: call backlog.delete_task with confirm: "DELETE".
  • Keep updates frequent: at least one status or note update per completed sub-step.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.35%
按下载量换算22

Claude

29.67%
按下载量换算20

Cursor

19.08%
按下载量换算13

Gemini CLI

9.73%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills