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

epic-tracker史诗追踪器

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

5

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/adeonir/agent-skills --skill epic-tracker

简介

Epic Tracker 通过 Markdown 工件管理交付生命周期,可选对接外部跟踪系统进行状态同步。

  • 适用于需要规划史诗、更新故事状态或向规格驱动开发移交成果的敏捷项目场景。
  • 首次同步前需配置 MCP 连接器并授权访问目标跟踪系统,后续操作将询问用户是否推送更新。
  • 安装命令为 npx skills add https://github.com/adeonir/agent-skills --skill epic-tracker。
  • 涉及状态变更时应确认当前用户具备对应项目的编辑权限,防止未授权修改引发冲突。

SKILL.md

Epic Tracker

Manage the delivery lifecycle with markdown artifacts and optional tracker integration. Plan epics, track stories, report bugs, group releases, push to a tracker when MCP is configured, and hand off to spec-driven.

Workflow

discover --> create --> sync* --> track --> handoff
                          ^_______|  (sync is optional, gated by config)

Discover checks for existing docs (PRD, brief). Create generates the artifact in markdown. Sync (optional) pushes to the configured tracker when an MCP is available; user is asked once per session whether to push. Track updates status -- in the tracker when configured, in markdown frontmatter when not. Handoff suggests spec-driven and surfaces tracker URLs.

Context Loading Strategy

Load only the reference matching the current trigger. Never load multiple references simultaneously unless explicitly noted.

Base load:

  • Current epic folder contents (when working within an epic)

On-demand:

  • .artifacts/docs/prd.md (discover phase, if exists)
  • .artifacts/docs/brief.md (discover phase, if exists)

Never simultaneous:

  • Multiple epic folders
  • Reference files for different artifact types

Triggers

Trigger PatternReference
Create epic, new epicepic.md/epic-tracker/references/epic.md)
Create story, new story, add storystory.md/epic-tracker/references/story.md)
Create bug, report bug, bug reportbug.md/epic-tracker/references/bug.md)
Create release, new releaserelease.md/epic-tracker/references/release.md)
Status, update status, mark donestatus.md/epic-tracker/references/status.md)
Show roadmap, list epics, overviewstatus.md/epic-tracker/references/status.md)
Sync to tracker, push to linear, push to github, push to jira, pull from tracker, configure trackersync.md/epic-tracker/references/sync.md)
Handoff, implement story, start storyhandoff.md/epic-tracker/references/handoff.md)

Notes:

  • status.md covers both status updates and overview reads.
  • handoff.md suggests spec-driven and surfaces tracker URLs -- it does not auto-trigger other skills.
  • sync.md is also auto-loaded by core refs (epic, story, bug, release) after the artifact is saved when tracker config is present and kind is not none.
  • adapters/{linear,github,jira}.md are not direct triggers. They are loaded by sync.md based on tracker.kind from config.

Cross-References

docs-writer -------> epic-tracker      (PRD/brief feed epic discovery)
epic.md -----------> story.md          (epic contains stories)
epic.md -----------> bug.md            (bugs can belong to an epic)
epic.md -----------> sync.md           (push after save when tracker configured)
story.md ----------> sync.md           (push after save when tracker configured)
bug.md ------------> sync.md           (push after save when tracker configured)
release.md --------> sync.md           (push after save when tracker configured)
release.md --------> status.md         (release groups stories by status)
sync.md -----------> adapters/linear   (when tracker.kind = linear)
sync.md -----------> adapters/github   (when tracker.kind = github-issues or github-projects)
sync.md -----------> adapters/jira     (when tracker.kind = jira)
status.md ---------> sync.md           (overview reads from tracker when configured)
story.md ----------> handoff.md        (story hands off to spec-driven)
bug.md ------------> handoff.md        (bug hands off to spec-driven)
epic-tracker ------> spec-driven       (handoff feeds implementation)

Tracker Integration

Optional and adaptive. When the user has an MCP for a supported tracker installed, the skill can push markdown artifacts to that tracker and pull state back. When no MCP is available, markdown stays the source of truth (current behavior).

Supported trackers and primitive mapping:

ArtifactLinearGitHub IssuesGitHub ProjectsJira
EpicProjectMilestoneIssue parent (with sub-issues)Epic
StoryIssueIssueSub-issueStory
BugIssue + label bugIssue + label bugSub-issue + label bugBug
ReleaseCycleRelease tagRelease tagFix Version

Release uses the closest native primitive each tracker offers; no forced single concept across trackers.

Config lives at .artifacts/epics/.config.yml. First operation that needs a tracker triggers bootstrap: detect available MCPs, ask user, persist. Push is asked per session (cached after first ask).

Guidelines

DO:

  • Check for existing PRD/brief before creating an epic (discover phase)
  • Use status in frontmatter for all artifacts (planned, in-progress, done, blocked) when no tracker is configured
  • When tracker is configured, treat tracker as source of truth for status; markdown frontmatter status becomes a cache updated on pull
  • Keep each file to a single artifact type in its proper folder
  • Use kebab-case for all artifact and folder names
  • Present the artifact for user review before saving
  • After save, ask user once per session whether to push to tracker (cache the answer)
  • Suggest spec-driven as the next step; let the user invoke it
  • When pulling from tracker, warn the user about any divergence (status, title, body) before resolving
  • Read from tracker when composing overview if configured; markdown when not
  • Sizing stays with spec-driven

DON'T:

  • Skip the discover phase (contrasts: check for existing PRD/brief first)
  • Auto-trigger spec-driven (contrasts: suggest, let user invoke)
  • Push to tracker without asking (contrasts: ask once per session, cache choice)
  • Auto-resolve conflicts silently (contrasts: warn user about divergence in pull, default tracker wins, allow override)
  • Hardcode tracker primitives in core refs (contrasts: core refs stay tracker-agnostic; adapters own tracker mapping)
  • Create an index file or add size fields (contrasts: read artifacts/tracker directly; spec-driven handles sizing)
  • Mix artifact types in a single file (contrasts: single type per file in its folder)

Output

All artifacts save to .artifacts/epics/. Create the directory structure as needed.

.artifacts/epics/
├── epic-name/
│   ├── epic.md
│   ├── story-name.md
│   └── bug-name.md
├── standalone/
│   └── bug-name.md
└── releases/
    └── release-name.md
TypeLocation
Epic.artifacts/epics/{epic-name}/epic.md
Story.artifacts/epics/{epic-name}/{story-name}.md
Bug (with epic).artifacts/epics/{epic-name}/{bug-name}.md
Bug (standalone).artifacts/epics/standalone/{bug-name}.md
Release.artifacts/epics/releases/{release-name}.md

Error Handling

  • No .artifacts/epics/: create the directory
  • Epic not found: list available epics
  • Ambiguous trigger: ask which artifact type to create
  • Story without epic: ask which epic it belongs to or create one
  • Bug without epic: place in standalone/
  • Conflicting status update: show current status, ask for confirmation
  • PRD/brief not found during discover: ask user for context directly

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.69%
按下载量换算24

Claude

31.77%
按下载量换算21

Cursor

17.36%
按下载量换算11

Gemini CLI

9.35%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills