Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问clear审计通过

implementation-guide实施指南

Agent Skill

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

总安装

315

周安装

13

GitHub Stars

9

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nbbaier/agent-skills --skill implementation-guide

简介

implementation-guide 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态或协作事项进行整理。

  • 适用于需要查询项目变更、跟踪 Issue 进展或协助 Pull Request 审查的场景。
  • 通过 npx skills add 命令安装,需结合来源 README 核验具体用法。
  • 使用前建议检查是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Implementation Guide Generator

This skill generates detailed implementation guides for coding tasks, designed to help developers implement features themselves rather than receiving completed code. The guides provide deep context, teach underlying concepts, explain architectural decisions, and break work into verifiable milestones.

When to Use This Skill

Use this skill when:

  • User asks for an "implementation guide" or "guide to implement X"
  • User wants to implement something themselves using Cursor, Windsurf, or similar tools
  • User explicitly mentions wanting detailed documentation instead of code
  • User asks for a "tutorial" or "step-by-step guide" for implementing a feature
  • Context suggests the user wants to stay connected to the implementation process

Core Principles

Educational Depth

Implementation guides should teach, not just instruct. Explain:

  • Why decisions are made, not just what to do
  • Background context about technologies and patterns used
  • Tradeoffs between different approaches
  • How the feature fits into the larger system

Verifiable Milestones

Every milestone must include:

  • Clear goal statement
  • Specific changes required
  • Detailed implementation steps
  • Concrete verification method (tests, visible behavior, commands to run)
  • Common pitfalls to avoid

Assume Mid-Level Developer

Default to mid-level developer experience unless specified otherwise:

  • Explain concepts that might not be familiar
  • Don't over-explain basics
  • Include enough detail to implement successfully
  • Provide links for deeper learning

Customizable Experience Level

The user can specify experience level:

  • Junior: More detailed explanations, simpler terminology, more examples
  • Mid-level (default): Balanced detail, assumes familiarity with common patterns
  • Senior: Higher-level guidance, focus on architecture and tradeoffs

Guide Structure

Implementation guides should follow this overall structure, though sections can be adapted based on the specific task:

Opening Sections

  1. Title and Introduction - What you're building and why it matters
  2. What You're Building - Concrete description with bullet points of key features
  3. Why These Features Matter - Explain the reasoning behind feature choices
  4. Tech Stack (if applicable) - Each technology with "What it is", "Why we're using it", "The tradeoff"
  5. Time Estimate - Realistic time breakdown (be specific: "6-8 hours for core features")
  6. Cost (if applicable) - Monthly costs broken down by service
  7. Prerequisites - What needs to be installed/configured with verification commands

Core Implementation Sections

  1. Milestone 1, 2, 3... - Each milestone with:

- Goal statement - "Why start here?" or rationale - Numbered steps (Step X.1, X.2, etc.) - Embedded checkpoints throughout - "Milestone X Complete!" summary

Closing Sections

  1. Summary - Table or list of what was built with why it matters
  2. Architecture Overview (if helpful) - ASCII diagram or high-level explanation
  3. Key Learnings - 3-5 important takeaways from the implementation
  4. What's Next? - Optional enhancements with time estimates
  5. Useful Commands Reference (if applicable) - Quick reference of common commands

See references/template.md for a template structure and references/example-rate-limiting.md for a complete example following these patterns.

Writing Implementation Guides

Start with Context

Before diving into implementation:

  1. Ask clarifying questions about:

- The specific feature or task to implement - Existing codebase context (tech stack, architecture patterns) - Constraints or requirements - Developer experience level (if not specified, use mid-level)

  1. Once you understand the task, generate the guide directly

Writing Style

Be conversational and engaging:

  • Write like you're pair programming with someone, not writing documentation
  • Use questions to engage: "Notice how fast that was?", "What just happened?"
  • Include reactions and observations: "This is where it gets interesting..."
  • Use "we" to create partnership: "We're building..." not "You will build..."

Structure within milestones:

  • Number steps within each milestone: Step 1.1, Step 1.2, etc.
  • After each command or code block, explain "What just happened?"
  • Embed checkpoints immediately after verification steps
  • Use bold callouts: Checkpoint, Why, The tradeoff, What it is

Make tradeoffs explicit:

  • Every significant decision should include "The tradeoff:" section
  • Discuss alternatives inline where decisions are made, not in separate section
  • Be honest about downsides: "This is newer, so you might hit edge cases"

Write verificiation steps clearly:

  • Use "Checkpoint:" before verification steps
  • Use checkmarks (✓) for expected results in lists
  • Include specific expected results: "You should see..." not "Verify it works"
  • Give concrete metrics when possible: "Should complete in < 500ms"
  • List multiple verification methods (visual, command output, tests)
  • Include troubleshooting for common issues right after checkpoints

Code explanations:

  • Add extensive inline comments explaining "why" within code blocks
  • After code blocks, include "Understanding the implementation:" or "What's happening here?" sections
  • Use rhetorical questions: "Why IndexedDB?" followed by the answer
  • Add "Note" paragraphs after code for important observations
  • Include JSDoc-style comments for functions and interfaces when showing complete implementations

Visual elements:

  • Use ASCII diagrams for architecture (box drawing characters work well)
  • Use ✓ checkmarks in checkpoint lists
  • Consider using emojis sparingly for visual markers (✓ ⚠️ etc.)

Milestone Design

Structure each milestone as:

  1. Goal statement - One sentence, what this achieves
  2. Why start here? (or "Why this matters:") - Rationale for doing this now
  3. Numbered steps (Step X.1, X.2, etc.) with:

- Command or code with extensive inline comments - "What just happened?" or "Understanding X:" explanation - "Why X?" rhetorical questions with answers - "Note" observations about important details - Embedded checkpoints with ✓ marks for expected results - Troubleshooting tips if things go wrong

  1. Milestone complete marker - Clear completion statement with bullet list of achievements

Each milestone should:

  • Be completable in 15-60 minutes
  • Build on previous milestones naturally
  • Have multiple verification points throughout
  • Feel like meaningful progress
  • Include time estimates when helpful

Break down complex features into 3-7 milestones. Too few milestones and the steps are overwhelming; too many and it feels fragmented.

Code Snippets

Include code snippets that:

  • Show the actual implementation, not pseudocode
  • Include extensive inline comments explaining "why", not just "what"
  • Are complete enough to be copy-pastable with minor adjustments
  • Follow the project's conventions (infer from context)
  • Have accompanying "Understanding X:" or "What's happening here?" sections

Pattern for code snippets:

[Code block with inline comments]

**Understanding the implementation:**
- Bullet point explanation of key concepts
- Bullet point about important details
- Bullet point about edge cases

[Optional: Note paragraph about a specific detail]

Don't write complete implementations—show the key parts and explain how to fill in the rest.

Upfront Information

Include near the beginning of guides:

  • Time estimate - How long each phase or the total will take
  • Cost estimate - Monthly costs for any services (be specific: "$2-3/month")
  • Prerequisites - What needs to be installed/configured before starting
  • What you're building - Concrete description of the end result

Technical Decisions

When explaining technology choices, use this pattern:

**What it is:** Brief explanation of the technology
**Why we're using it:** Specific benefits relevant to this project
**The tradeoff:** Honest discussion of downsides or alternatives

This pattern makes guides scannable while ensuring every decision is justified.

Handling Different Task Types

Backend Features

Focus on:

  • Database schema changes
  • API design and endpoints
  • Business logic architecture
  • Integration points with existing systems
  • Migration strategies

Frontend Components

Focus on:

  • Component architecture and composition
  • State management approach
  • Accessibility requirements
  • Responsive design considerations
  • Performance (rendering, bundle size)

Refactoring Tasks

Focus on:

  • Current state analysis
  • Incremental migration path
  • Backward compatibility
  • Testing strategy to prevent regressions
  • Rollback approach

Infrastructure/DevOps

Focus on:

  • Configuration management
  • Deployment pipeline changes
  • Monitoring and observability
  • Disaster recovery
  • Cost implications

Performance Optimization

Focus on:

  • Profiling and measurement
  • Specific bottlenecks
  • Optimization strategies with benchmarks
  • Tradeoffs (complexity vs speed)
  • How to validate improvements

Reference Files

  • template.md: Complete template structure for implementation guides
  • example-rate-limiting.md: Full example showing all sections in action

Refer to these files when creating guides to ensure consistency and completeness.

Examples

User Request: "I need to add authentication to my API"

Generate a guide covering:

  • Authentication strategies (JWT vs sessions vs OAuth)
  • Chosen approach with rationale
  • Milestones: Setup auth library → Implement login endpoint → Add middleware → Secure existing routes → Add refresh tokens
  • Security considerations
  • Testing strategy
  • Migration path for existing users

User Request: "Build a real-time notification system"

Generate a guide covering:

  • Real-time technology options (WebSockets, SSE, polling)
  • Architecture (pub/sub, message queue, direct connection)
  • Milestones: WebSocket server setup → Connection management → Event publishing → Client integration → Persistence → Scaling
  • Performance and connection handling
  • Fallback strategies

User Request: "Refactor our monolith to use microservices"

Generate a guide covering:

  • Current monolith analysis
  • Service boundary identification
  • Incremental extraction strategy
  • Milestones: Identify first service → Extract with dual-write → Data migration → Switch traffic → Remove from monolith
  • Inter-service communication
  • Transaction handling
  • Monitoring and debugging distributed system

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.81%
按下载量换算29

Antigravity

20.72%
按下载量换算21

OpenCode

17.53%
按下载量换算18

Cursor

13.38%
按下载量换算14

Gemini CLI

7.81%
按下载量换算8

Codex

3.75%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills