Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计提醒

implement-plan-preflight实施飞行前计划

Agent Skill

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

总安装

1,948

周安装

82

GitHub Stars

38

下载量

682
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/terrylica/cc-skills --skill implement-plan-preflight

简介

implement-plan-preflight 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。

  • 适用于研究类任务,如查找技术方案、筛选参考资料或匹配开发需求。
  • 通过 npx skills add 命令安装,需结合来源 README 核验具体用法。
  • 使用前建议确认权限范围和是否会触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Implement Plan Preflight

Execute the Preflight phase of the /itp:go workflow. Creates ADR and Design Spec artifacts with proper cross-linking and verification.

Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.

When to Use This Skill

  • Invoked by /itp:go command during Preflight phase
  • User asks to create an ADR for a feature
  • User mentions "design spec" or "MADR format"
  • Manual preflight verification needed

Preflight Workflow Overview

P.1: Create Feature Branch (if -b flag)
         │
         ▼
P.2: Create ADR File (MADR 4.0)
         │
         ▼
P.3: Create Design Spec (from global plan)
         │
         ▼
P.4: Verify Checkpoint (MANDATORY)

CRITICAL: Do NOT proceed to Phase 1 implementation until ALL preflight steps are complete and verified.


Quick Reference

ADR ID Format

YYYY-MM-DD-slug

Example: 2025-12-01-clickhouse-aws-ohlcv-ingestion

File Locations

ArtifactPath
ADR/docs/adr/$ADR_ID.md
Design Spec/docs/design/$ADR_ID/spec.md
Global Plan~/.claude/plans/<adj-verb-noun>.md

Cross-Links (MANDATORY)

In ADR header:

**Design Spec**: [Implementation Spec](/docs/design/YYYY-MM-DD-slug/spec.md)

In spec.md header:

**ADR**: [Feature Name ADR](/docs/adr/YYYY-MM-DD-slug.md)

Execution Steps

Step P.1: Create Feature Branch (Optional)

Only if -b flag specified. See Workflow Steps for details.

Step P.2: Create ADR File

  1. Create /docs/adr/$ADR_ID.md
  2. Use template from ADR Template
  3. Populate frontmatter from session context
  4. Select perspectives from Perspectives Taxonomy
  5. Use Skill tool to invoke adr-graph-easy-architect for diagrams

Step P.3: Create Design Spec

  1. Create folder: mkdir -p docs/design/$ADR_ID
  2. Copy global plan: cp ~/.claude/plans/<adj-verb-noun>.md docs/design/$ADR_ID/spec.md
  3. Add ADR backlink to spec header

Step P.4: Verify Checkpoint

Run validator or manual checklist:

uv run scripts/preflight_validator.py $ADR_ID

Checklist (ALL must be true):

  • ADR file exists at /docs/adr/$ADR_ID.md
  • ADR has YAML frontmatter with all 7 required fields
  • ADR has **Design Spec**: link in header
  • DIAGRAM CHECK 1: ADR has Before/After diagram (Context section)
  • DIAGRAM CHECK 2: ADR has Architecture diagram (Architecture section)
  • Design spec exists at /docs/design/$ADR_ID/spec.md
  • Design spec has **ADR**: backlink in header

If any item is missing: Create it now. Do NOT proceed to Phase 1.


YAML Frontmatter Quick Reference

---
status: proposed
date: YYYY-MM-DD
decision-maker: [User Name]
consulted: [Agent-1, Agent-2]
research-method: single-agent
clarification-iterations: N
perspectives: [Perspective1, Perspective2]
---

See ADR Template for full field descriptions.


Diagram Requirements (2 DIAGRAMS REQUIRED)

⛔ MANDATORY: Every ADR must include EXACTLY 2 diagrams:

DiagramLocationPurpose
Before/AfterContext sectionShows system state change
ArchitectureArchitecture sectionShows component relationships

SKILL INVOCATION: Invoke adr-graph-easy-architect skill NOW to create BOTH diagrams.

BLOCKING GATE: Do NOT proceed to design spec until BOTH diagrams are embedded in ADR.


Reference Documentation


Validation Script

# Verify preflight artifacts
uv run scripts/preflight_validator.py <adr-id>

# Example
uv run scripts/preflight_validator.py 2025-12-01-my-feature

Troubleshooting

IssueCauseSolution
Validator failsMissing ADR or specCreate both files before running validator
Frontmatter invalidMissing required fieldsCheck all 7 ADR fields and 5 spec fields
Diagram not renderinggraph-easy not installedRun brew install graph-easy
Spec phase mismatchWrong phase valueUse: preflight, phase-1, phase-2, or phase-3
ADR status wrongManual status editLet workflow manage status transitions
Design folder missingWrong path structureUse docs/design/YYYY-MM-DD-slug/spec.md

Post-Execution Reflection

After this skill completes, check before closing:

  1. Did the command succeed? — If not, fix the instruction or error table that caused the failure.
  2. Did parameters or output change? — If the underlying tool's interface drifted, update Usage examples and Parameters table to match.
  3. Was a workaround needed? — If you had to improvise (different flags, extra steps), update this SKILL.md so the next invocation doesn't need the same workaround.

Only update if the issue is real and reproducible — not speculative.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

27.03%
按下载量换算184

OpenCode

26.51%
按下载量换算181

Antigravity

17.92%
按下载量换算122

Gemini CLI

12.15%
按下载量换算83

windsurf

8.83%
按下载量换算60

trae

3.81%
按下载量换算26

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills