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

project-roadmap-manager项目路线图经理

Agent Skill

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

总安装

285

周安装

12

GitHub Stars

1

下载量

1
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/gaelic-ghost/productivity-skills --skill project-roadmap-manager

简介

project-roadmap-manager 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它支持对仓库状态、代码变更及协作事项进行梳理与分析。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Project Roadmap Manager

Maintain ROADMAP.md in the project root as the canonical roadmap record. Prefer updating existing sections over appending duplicates, and keep Current Milestone synchronized with the latest accepted plan.

Workflow

  1. Load active customization config:

- Prefer <skill_root>/config/customization.yaml. - Fall back to <skill_root>/config/customization.template.yaml. - Apply settings under settings to roadmap generation and update decisions. - Treat missing sub-milestone keys in user config as template defaults.

  1. Identify project root and target file:

- Use <project_root>/ROADMAP.md. - If root is ambiguous, infer from repository root.

  1. Ensure ROADMAP.md exists:

- If missing, create it using the template in this skill.

  1. Classify the request into one of these event types:

- Project bootstrap. - Plan acceptance/completion. - Milestone/version roadmap set or changed. - Milestone reached/blocked/de-scoped. - Roadmap reference/query.

  1. Apply the event-specific update rules.
  2. Keep all sections internally consistent:

- Current Milestone matches active milestone in Milestones. - Plan History includes accepted plan snapshots. - Change Log captures each roadmap mutation with date and reason. - When sub-milestones are enabled, parent/child linkage and ID uniqueness are valid.

Customization Workflow

When a user asks to customize this skill, use this deterministic flow:

  1. Read active config from config/customization.yaml; if missing, use config/customization.template.yaml.
  2. Confirm target profile and desired behavior for:

- milestoneIdStyle - targetStyle - statusValues - sub-milestone enablement, ID style, and status model - owner/dependency fields - plan history and changelog verbosity

  1. Propose 2-4 option bundles with one recommended default.
  2. Create or update config/customization.yaml from the template and set:

- schemaVersion: 1 - isCustomized: true - profile: <selected-profile>

  1. Apply the selected settings immediately to roadmap output behavior.
  2. Validate with a dry-run roadmap update and report changed keys plus behavior deltas.

Customization Reference

  • Detailed knobs and examples: references/customization.md
  • YAML schema and allowed values: references/config-schema.md

ROADMAP.md Template

Use this structure when creating a new roadmap:

# Project Roadmap

## Current Milestone
- ID: M1
- Name: Initial Setup
- Status: Planned
- Target Version: v0.1.0
- Last Updated: YYYY-MM-DD
- Summary: One-paragraph summary of the currently accepted plan.

## Milestones
| ID | Name | Target Version | Status | Target Date | Notes |
| --- | --- | --- | --- | --- | --- |
| M1 | Initial Setup | v0.1.0 | Planned | YYYY-MM-DD | Bootstrap milestone |

<!-- Include this section only when settings.enableSubMilestones is true. -->
## Sub-Milestones
| ID | Parent Milestone | Name | Status | Target Date | Notes |
| --- | --- | --- | --- | --- | --- |
| M1.1 | M1 | First deliverable | Planned | YYYY-MM-DD | Optional child milestone |

## Plan History
### YYYY-MM-DD - Accepted Plan (v0.1.0 / M1)
- Scope:
- Acceptance Criteria:
- Risks/Dependencies:

## Change Log
- YYYY-MM-DD: Initialized roadmap.

Event Handling Rules

Project Bootstrap

  • Create ROADMAP.md if absent.
  • Add an initial milestone (M1 unless user provides a different identifier).
  • If enableSubMilestones is true and initial child milestones are provided, generate IDs deterministically from style settings.
  • Add a changelog entry indicating roadmap initialization.

Plan Acceptance or Completion

  • Update Current Milestone to reflect the accepted plan.
  • Add or update corresponding row in Milestones.
  • If enableSubMilestones is true, add or update affected child entries under the active milestone.
  • Append an Accepted Plan entry in Plan History with scope and acceptance criteria.
  • Add a changelog entry summarizing what changed and why (include parent + child transition details when child entries changed).

Milestone or Version Roadmap Set/Update

  • Update existing milestone by ID/version if it exists.
  • Add milestone only when no matching milestone exists.
  • Avoid duplicate milestones for the same ID or target version.
  • When enableSubMilestones is true:

- Avoid duplicate child IDs within the same parent milestone. - Keep child status values inside subMilestoneStatusValues (or inherit statusValues when child list is absent). - Use deterministic ID generation rules from settings: - hierarchical: <milestoneID><delimiter><n> (default M2.1). - letter: <milestoneID><letter> (for example M2a). - ticket: <prefix><delimiter><zero-padded n> and render with parent context (for example M2-T01). - external: accept tracker IDs only when allowExternalTrackerIds is true.

  • If the updated milestone is active, sync Current Milestone.

Milestone Reached/Changed

  • Update milestone status (Completed, In Progress, Blocked, De-scoped, or Planned).
  • Update Current Milestone if active milestone changed.
  • If enableSubMilestones is true, keep child transitions and parent/child linkage consistent.
  • Add a dated note in Change Log that captures transition and reason (include parent + child details when children are involved).

Roadmap Reference Requests

  • Point explicitly to <project_root>/ROADMAP.md.
  • Cite the relevant section name (Current Milestone, Milestones, Plan History, or Change Log).
  • If file is missing, create it first, then reference it.

Quality Bar

  • Preserve existing useful roadmap content.
  • Use ISO date format (YYYY-MM-DD) for all dated fields.
  • Keep edits minimal and deterministic.
  • Never leave conflicting milestone statuses across sections.
  • If sub-milestones are disabled, do not require or mutate any sub-milestone section.
  • If sub-milestones are enabled, enforce deterministic child ID style and unique IDs within parent scope.

Automation Templates

Use $project-roadmap-manager inside automation prompts so Codex consistently applies the roadmap update rules.

For ready-to-fill Codex App and Codex CLI (codex exec) templates, including bounded-edit guardrails and placeholders, use:

  • references/automation-prompts.md

References

  • Automation prompt templates: references/automation-prompts.md
  • Customization guide: references/customization.md
  • Customization schema: references/config-schema.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.69%
按下载量换算0

Claude

30.66%
按下载量换算0

Cursor

20.24%
按下载量换算0

Gemini CLI

10.99%
按下载量换算0

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills