Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

feature-tracking特征跟踪

Agent Skill

feature-tracking 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,402

周安装

59

GitHub Stars

28

下载量

491
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill feature-tracking

简介

feature-tracking 跟踪功能实现状态与需求文档的对应关系,支持分层 FR 编码和 PRD 集成。

  • 适用于 Codex、Claude、Cursor、Gemini CLI,适合维护需求与代码同步时使用。
  • 支持按开发阶段分组、PRD 链接和 TODO.md 同步,防止实现偏离需求。
  • 安装前需确认权限范围和维护状态,注意可能触发文件读写和 JSON 更新操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Feature Tracking Skill

Track feature implementation status against requirements documents using hierarchical FR codes.

Overview

The feature tracker maintains a JSON file that maps requirements from a source document (e.g., REQUIREMENTS.md) to implementation status. It supports:

  • Hierarchical FR codes: FR1, FR2.1, FR2.1.1, etc.
  • Phase-based development: Group features by development phase
  • PRD integration: Link features to Product Requirements Documents
  • Task tracking: Track in-progress and pending tasks (replaces work-overview.md)
  • Sync targets: Keep TODO.md in sync

When to Use

Run feature tracking operations when:

  • Feature implementation status changes
  • New PRD is added or completed
  • After major development milestones
  • Before generating status reports
  • Starting a new development phase

Core Concepts

Feature Status

Each feature has one of five statuses:

  • complete: Implementation files exist, tests pass, TODO item checked
  • partial: Some implementation exists, not all sub-features done
  • in_progress: Active work, files modified recently
  • not_started: No implementation files, TODO unchecked
  • blocked: Missing dependencies or explicitly marked

Hierarchical Structure

Features are organized hierarchically:

FR1 (Game Setup & Configuration)
├── FR1.1 (Window Configuration)
├── FR1.2 (Game Mode Selection)
│   ├── FR1.2.1 (Versus Mode)
│   └── FR1.2.2 (Cooperative Mode)
└── FR1.3 (Scenario Setup)

Phase Organization

Features are grouped by development phase:

  • phase-0: Foundation
  • phase-1: Core gameplay
  • phase-2: Advanced features
  • etc.

File Structure

docs/blueprint/
├── feature-tracker.json       # Main tracker file (source of truth)
└── schemas/                   # Optional: local schema copy
    └── feature-tracker.schema.json

The project's TODO.md is a sync target for checkbox states.

Note: As of v1.1.0, feature-tracker.json includes a tasks section that tracks in-progress and pending tasks, replacing the separate work-overview.md file.

Quick Commands

View completion stats

jq '.statistics' docs/blueprint/feature-tracker.json

List incomplete features

jq -r '.. | objects | select(.status == "not_started") | .name' docs/blueprint/feature-tracker.json

Show PRD completion

jq '.prds | to_entries | .[] | "\(.key): \(.value.status)"' docs/blueprint/feature-tracker.json

List features by phase

jq -r '.. | objects | select(.phase == "phase-1") | .name' docs/blueprint/feature-tracker.json

Count features by status

jq '[.. | objects | select(.status?) | .status] | group_by(.) | map({(.[0]): length}) | add' docs/blueprint/feature-tracker.json

Schema

The feature tracker uses a JSON Schema for validation. The schema is bundled with the blueprint-plugin at:

schemas/feature-tracker.schema.json

Key schema features:

  • Strict FR code validation: ^FR\d+(\.\d+)*$
  • Phase pattern validation: ^phase-\d+$
  • Recursive feature definitions for nesting
  • PRD naming pattern: ^PRD_[A-Z_]+$

Validate tracker

# Using ajv-cli or similar JSON schema validator
ajv validate -s schemas/feature-tracker.schema.json \
             -d docs/blueprint/feature-tracker.json

Integration Points

Manifest Integration

The manifest.json references the feature tracker:

{
  "structure": {
    "has_feature_tracker": true
  },
  "feature_tracker": {
    "file": "feature-tracker.json",
    "source_document": "REQUIREMENTS.md",
    "sync_targets": ["TODO.md"]
  }
}

PRD Mapping

Features link to PRDs via the prd field:

{
  "name": "Terrain Visual Enhancement",
  "status": "complete",
  "prd": "PRD_TERRAIN_VISUAL_ENHANCEMENT"
}

PRDs track which features they implement:

{
  "PRD_TERRAIN_VISUAL_ENHANCEMENT": {
    "name": "Terrain Visual Enhancement",
    "status": "complete",
    "features_implemented": ["FR2.8.1", "FR2.8.2", "FR2.8.3"],
    "tests_passing": 107
  }
}

Work Order Integration

Work orders can reference specific FR codes. When a work order is completed, update the corresponding feature status in the tracker.

Sync Process

The sync process ensures consistency between:

  1. feature-tracker.json (source of truth for features AND tasks)
  2. TODO.md (checkbox-based task list)

Sync Steps

  1. Load current state from feature-tracker.json (features and tasks)
  2. Compare with TODO.md checkbox states
  3. Verify implementation status for each feature
  4. Recalculate statistics
  5. Update TODO.md with changes
  6. Report what was synchronized

Human-Readable Summary

Use --summary flag to generate a markdown overview:

/blueprint:feature-tracker-sync --summary

Status Verification

For each feature, verify:

  • complete: Files exist, tests pass (if applicable), TODO checked
  • partial: Some files exist, not all sub-features complete
  • in_progress: Recent commits touch feature files
  • not_started: No implementation evidence
  • blocked: Documented dependency issues

Commands

Related blueprint commands:

  • /blueprint:feature-tracker-status: Display statistics and completion summary
  • /blueprint:feature-tracker-sync: Synchronize tracker with sync targets

Example: Updating Feature Status

When completing a feature:

  1. Update feature status in feature-tracker.json: {"name": "Unit Selection", "status": "complete", "phase": "phase-2", "implementation": {"files": ["src/systems/selection.rs"], "notes": "Box selection and click selection", "tests": ["tests/selection_tests.rs"]}}
  2. Run /blueprint:feature-tracker-sync to update:

- Move task from tasks.in_progress to tasks.completed - TODO.md checkboxes - Statistics recalculation

  1. Commit all changes together for consistency

Statistics

The tracker maintains aggregate statistics:

{
  "statistics": {
    "total_features": 42,
    "complete": 22,
    "partial": 4,
    "in_progress": 2,
    "not_started": 14,
    "blocked": 0,
    "completion_percentage": 52.4
  }
}

These are recalculated during sync operations.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.15%
按下载量换算177

Claude

30.6%
按下载量换算150

Cursor

17.23%
按下载量换算85

Gemini CLI

9.09%
按下载量换算45

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills