Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

issue-tracking问题跟踪

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

774

周安装

31

GitHub Stars

1

下载量

250
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/miketromba/issy --skill issue-tracking

简介

持续跟踪 Issue 进展并生成可视化状态图。

  • 适合在跨时区或多成员团队中保持透明度。
  • 自动检测停滞项并发送提醒。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 需定期同步本地与远程状态以防数据不一致。
  • issue-tracking 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Track issues with the issy CLI

Authoring Issues

Issues describe *what* needs to be done and *why*. Keep them high-level unless the user provides specific details.

What to Include

  • Problem/Overview: What's wrong or what's needed (1-2 paragraphs)
  • Proposed Solution: High-level approach
  • Acceptance Criteria: Optional - what "done" looks like from user perspective
  • Verification: Optional but encouraged - how to prove the issue is resolved (see below)
  • Future Considerations: Optional - related ideas for later
  • References: Optional - links to related docs, issues, or resources

Verification Guidance

When possible, include verification steps or hints that tell the implementing agent *how to prove* the issue is resolved. This helps ensure work is actually verified before being marked complete.

Why include verification? Agents should never claim work is done without evidence. If the issue itself describes how to verify, the implementing agent can follow those steps and provide concrete proof (command output, test results, screenshots, etc.).

Verification examples:

  • Commands to run and expected output (curl, CLI commands, bun test)
  • UI flows to test (can use agent-browser skill if available for automation)
  • Database queries to confirm state changes
  • Specific behavior to observe or confirm
  • Edge cases to check

Examples:

## Verification
Run `bun test src/auth.test.ts` — all tests should pass, including the new "handles expired tokens" case.
## Verification
Perform the following using the agent-browser skill:

1. Navigate to /settings and toggle dark mode
2. Refresh the page — preference should persist
3. Check localStorage contains `theme: "dark"`
## Verification
After deployment, `curl https://api.example.com/health` should return `{"status": "ok"}` with a 200 response.

Implementation Details

Only include implementation details if the user explicitly provides them. Don't invent:

  • Task lists or phases
  • Specific code changes or file paths
  • Step-by-step instructions
  • Technical breakdowns

Why? The engineer working on the issue will plan their own implementation. Issues capture the user's intent, not execution plans generated by the agent.

The rule: Capture what the user says. If they provide implementation details, include them. If they don't, keep it high-level.

Issue Sizing

An issue should be completable and verifiable in a single focused session — pick it up, implement it, prove it works, close it. If that's not realistic, split along verification boundaries so each child issue is independently closeable. Don't split when it adds overhead without adding clarity.

Roadmap Ordering

issy maintains a roadmap — a strict, intentional ordering of all open issues. Every open issue has a position in the roadmap, and the ordering is designed to be dependency-aware and chronological. No issue should be blocked by one that follows it.

Rules

  • When creating an issue: if there are already open issues, you must provide a position flag: --before <id>, --after <id>, --first, or --last.
  • When reopening an issue: same rule — provide a position flag if there are other open issues.
  • When updating an issue: optionally provide a position flag to reposition it in the roadmap.
  • issy next returns the first open issue in roadmap order — the next unit of work.
  • issy list sorts by roadmap order by default.

Choosing placement

Think about logical dependency when choosing position:

  • If issue B requires work from issue A to be done first, A must come before B.
  • Place foundational/infrastructure work early, user-facing features later.
  • Use --first for urgent work that should be tackled immediately.
  • Use --last when in doubt — appends to the end of the roadmap.
  • Use --before <id> or --after <id> for precise placement between existing issues.

CLI Commands

Use the issy CLI. If not installed, install it globally using the project's package manager (e.g., bun install issy --global, pnpm add issy --global, npm install issy --global).

# List issues (roadmap order by default)
issy list                    # Open issues only
issy list --all              # Include closed
issy list --priority high    # Filter: high, medium, low
issy list --scope small      # Filter: small, medium, large
issy list --type bug         # Filter: bug, improvement
issy list --search "keyword" # Fuzzy search
issy list --sort priority    # Sort: roadmap (default), priority, created, updated, id

# Search issues (fuzzy search with typo tolerance)
issy search "dashboard"      # Search open issues
issy search "k8s" --all      # Include closed issues

# Read issue
issy read <id>               # e.g., issy read 0001

# Next issue (first open issue in roadmap order)
issy next

# Create issue (position flag required when open issues exist)
issy create --title "Fix login bug" --type bug --priority high --after 0002
issy create --title "Add dark mode" --type improvement --last --labels "ui, frontend"
issy create --title "Urgent fix" --first
issy create --title "Fix crash" --body "## Problem\n\nApp crashes on startup." --last

# Update issue (position flags to reposition in roadmap)
issy update <id> --priority low
issy update <id> --after 0003
issy update <id> --first
issy update <id> --labels "api, backend"
issy update <id> --body "## Problem\n\nUpdated description of the issue."

# Close issue
issy close <id>

# Reopen issue (position flag required when other open issues exist)
issy reopen <id> --last
issy reopen <id> --after 0004

Hooks

issy supports optional hook files in .issy/ that print context to stdout after successful operations. This is useful for injecting reminders into the agent's context — for example, prompting the agent to update documentation or run post-action checks.

Hook fileTriggered after
on_create.mdCreating an issue
on_update.mdUpdating an issue
on_close.mdClosing an issue

Project Structure

Issues are stored in .issy/issues/ as markdown files with YAML frontmatter. The directory structure:

.issy/
  issues/
    0001-fix-login-redirect.md
    0002-add-dark-mode.md
  on_create.md   # Optional: printed after successful create
  on_update.md   # Optional: printed after successful update
  on_close.md    # Optional: printed after successful close

Closing Issues with Learnings

When closing an issue, append a ## Resolution Notes section if anything useful was discovered during implementation:

  • Alternative approaches considered or rejected
  • Unexpected gotchas or edge cases found
  • Decisions made that differ from the original plan
  • Useful context for future reference

Keep it brief—just capture what someone revisiting this issue would want to know.

Issue Properties

PropertyRequiredValues
titleYesstring
bodyNomarkdown content (the issue body after frontmatter)
priorityYeshigh, medium, low
scopeNosmall, medium, large
typeYesbug, improvement
labelsNocomma-separated strings
statusYesopen, closed
orderAutofractional index key (managed by issy)

After Mutations

If your workflow tracks issues in git, consider committing updates so the tracker stays in sync.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.89%
按下载量换算95

Claude

33.31%
按下载量换算83

Cursor

18.02%
按下载量换算45

Gemini CLI

8.68%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills