Token导航 LogoToken导航TokenDH.com
前端设计权限需确认github未标认证来源可访问clear审计提醒

implement实现

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

416

周安装

17

GitHub Stars

1

下载量

135
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jschulte/claude-plugins --skill implement

简介

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。

  • 适合生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码。
  • 可整理组件结构,定位布局和性能问题,需结合项目设计系统使用。
  • 涉及页面改动时应配合本地预览和构建检查确认视觉效果。
  • 避免只生成孤立代码片段,注意与现有路由和构建方式兼容。

SKILL.md

Implement from Spec (with GitHub Spec Kit)

Step 6 of 6 in the Reverse Engineering to Spec-Driven Development process.

Directory Convention

All artifact paths use a single convention:

  • specs/ -- canonical location for all specifications and implementation plans
  • docs/gap-analysis-report.md -- phased implementation roadmap
  • .stackshift-state.json -- session state and progress tracking

Context Routing

Determine execution context before proceeding.

Run git branch --show-current to get the current branch name.

If the branch is main or master: Execute Context A (Handoff). Read operations/handoff.md and follow the handoff procedure.

**If the branch matches pattern NNN-* (e.g., 002-feature-name):** Execute Context B (Standard Implementation). Proceed to the Process Overview below.

If neither pattern matches: Ask the user which context applies -- are they starting fresh from reverse engineering (Context A) or working on an existing feature (Context B)?

The handoff (Context A) happens only once after initial reverse engineering. After that, always use Context B on feature branches.


Process Overview (Context B: Standard Implementation)

Step 1: Review Implementation Roadmap

Read docs/gap-analysis-report.md and identify the phased plan:

  • Phase 1 (P0 Critical) -- essential features, security fixes, blocking issues
  • Phase 2 (P1 High Value) -- important features, high user impact
  • Phase 3 (P2/P3) -- nice-to-have, future enhancements

Confirm with the user:

  • Start with Phase 1 (P0 items)?
  • Any blockers to address first?
  • Time constraints?

Report: "Starting Phase [X]. [Y] features to implement. First feature: [name]."

Step 2: Generate Tasks for Current Feature

Run /speckit.tasks [feature-name] to generate actionable tasks from the implementation plan.

This reads specs/[feature-name].md, breaks down the plan into specific tasks, and creates a task checklist.

If /speckit.tasks fails: Read operations/error-recovery.md and follow the /speckit.tasks recovery procedure.

Step 3: Implement Feature

Run /speckit.implement [feature-name] to execute the implementation plan.

This command:

  1. Loads tasks from the /speckit.tasks output
  2. Walks through each task systematically
  3. Generates code for each task
  4. Tests against acceptance criteria
  5. Updates specification status markers
  6. Commits changes with descriptive messages

Review all generated code before committing. Do not blindly accept generated output.

If /speckit.implement fails or partially completes: Read operations/error-recovery.md and follow the /speckit.implement recovery procedure.

Step 4: Validate Implementation

Run /speckit.analyze to verify the implementation.

This checks:

  • Implementation matches the specification
  • All acceptance criteria are met
  • No inconsistencies with related specs
  • Status markers are accurate

If /speckit.analyze reports issues:

  • If the implementation is incomplete (missing feature), fix the implementation to match the spec.
  • If the spec is outdated (requirements changed during implementation), update the spec first, then re-run /speckit.analyze.
  • If uncertain, ask the user which should be the source of truth.

Repeat validation until /speckit.analyze reports no issues.

If /speckit.analyze fails: Read operations/error-recovery.md and follow the /speckit.analyze recovery procedure.

Step 5: Update Progress and Commit

After each feature:

  1. Run /speckit.analyze to confirm feature status (X/Y features complete).
  2. Mark the feature as complete in docs/gap-analysis-report.md.
  3. Update .stackshift-state.json with current phase and feature progress.
  4. Commit: git commit -m "feat: implement [feature-name] ([spec-file].md)"
  5. Report: "Phase [X]: [completed]/[total] features complete. Next: [feature-name]."

Step 6: Iterate Until Complete

Repeat Steps 2-5 for each feature in the roadmap.

Priority checkpoint after all P0 features complete: Pause and report status to the user. Confirm before proceeding to P1. Example: "Phase 1 complete ([N] P0 features implemented). Ready to start Phase 2 ([M] P1 features). Proceed?"

Priority checkpoint after all P1 features complete: Pause and report status. Confirm before proceeding to P2/P3.

Iteration bound: If more than 20 features need implementation, pause after every 5 features and report cumulative progress to the user.


Progress Tracking

After each feature implementation cycle, report progress in this format:

Phase [X]: [completed]/[total] features complete.
Overall: [total_completed]/[total_all] features ([percentage]%).
Current feature: [COMPLETE/FAILED].
Next: [next-feature-name].

Update .stackshift-state.json after each feature so sessions can resume from the correct point.

On session resume, read .stackshift-state.json to determine the current phase and which feature to continue with.


Post-Implementation

After all features are implemented:

  1. Read operations/post-implementation.md and follow the validation, review, and coverage mapping procedures.
  2. Report the final status to the user.

For ongoing development workflows (new features, refactoring, bug fixes), read operations/continuous-development.md.


Success Criteria

After this skill completes:

  • All P0 features implemented (Phase 1 complete)
  • All P1 features implemented (Phase 2 complete)
  • P2/P3 features implemented or intentionally deferred
  • All specifications in specs/ marked COMPLETE
  • /speckit.analyze reports no issues
  • All tests passing
  • .stackshift-state.json updated with final status

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.69%
按下载量换算39

OpenCode

23.59%
按下载量换算32

Codex

18.87%
按下载量换算25

github-copilot

12.73%
按下载量换算17

Antigravity

7.09%
按下载量换算10

Gemini CLI

3.56%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills