Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计未展示

implement实现

Agent Skill

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

总安装

539

周安装

22

GitHub Stars

公开资料未说明

下载量

174
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add maxritter/claude-codepro --skill "implement"

简介

用于查找和筛选相关信息。implement 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在 Codex、Claude、Cursor 和 Gemini CLI 中使用。
  • 提供基础的信息检索功能。
  • 使用时需确认具体任务需求和关键词设置。
  • 安装方式:通过 github 使用 npx skills add 命令安装。

SKILL.md

IMPLEMENT MODE: Task Execution with Mandatory Context Gathering

WARNING: DO NOT use the Task tool with any subagent_type (Explore, Plan, general-purpose). Perform ALL exploration and implementation yourself using direct tool calls (Read, Grep, Glob, MCP tools). Sub-agents lose context and make implementation inconsistent.

Quality Over Speed - CRITICAL

NEVER rush or compromise quality due to context pressure.

  • Context warnings are informational, not emergencies
  • Work spans sessions seamlessly via plan file and continuation mechanisms
  • Finish the CURRENT task with full quality, then hand off cleanly
  • Do NOT skip tests, compress code, or cut corners to "beat" context limits
  • Quality is the #1 metric - a well-done task split across sessions beats rushed work

Execute tasks continuously with full quality. Hand off cleanly when context is high.

Feedback Loop Awareness

This skill may be called multiple times in a feedback loop:

/implement → /verify → issues found → /implement → /verify → ... → VERIFIED

When called after /verify found issues:

  1. Read the plan - /verify will have added fix tasks (marked with [MISSING] or similar)
  2. Check the Iterations field in the plan header
  3. Report iteration start: "🔄 Starting Iteration N implementation..."
  4. Focus on uncompleted tasks [] - these are the fixes needed
  5. Complete all fix tasks, then set status to COMPLETE as normal

The loop continues automatically until all checks pass (VERIFIED) or context hits 90%.

⛔ CRITICAL: Task Completion Tracking is MANDATORY

After completing EACH task, you MUST:

  1. IMMEDIATELY edit the plan file to change [] to [x] for that task
  2. Update the Progress Tracking counts (Completed/Remaining)
  3. DO NOT proceed to next task until the checkbox is updated

This is NON-NEGOTIABLE. If you skip this step:

  • The rules supervisor will detect incomplete task tracking
  • Verification will fail
  • You will need to re-implement

Example - After completing Task 5:

Edit the plan file:
- [ ] Task 5: Implement X  →  - [x] Task 5: Implement X
Update counts:
**Completed:** 4 | **Remaining:** 8  →  **Completed:** 5 | **Remaining:** 7

Mandatory Context Gathering Phase (REQUIRED)

Before ANY implementation, you MUST:

  1. Read the COMPLETE plan - Understanding overall architecture and design
  2. Verify comprehension - Summarize what you learned to demonstrate understanding
  3. Identify dependencies - List files, functions, classes that need modification
  4. Check current state:

- Git status: git status --short and git diff --name-only - Plan progress: Check for [x] completed tasks

🔧 Tools for Implementation

Use these tools throughout implementation:

ToolWhen to UseExample
Context7Library API lookupresolve-library-id(query="how to use fixtures", libraryName="pytest") then query-docs(libraryId, query)
mcp-cliCustom MCP serversUse mcp-cli <server>/<tool> '<json>' for servers in mcp_servers.json

Context7 requires descriptive queries for both tools - see context7-docs.md for full docs.

Before starting, verify Vexor is available for semantic search:

vexor --version

During implementation:

  • Use vexor search "query" --mode code to find similar implementations and patterns
  • Use Context7 when unsure about library/framework APIs: resolve-library-id(query="your question", libraryName="lib") then query-docs(libraryId, query="specific question") - descriptive queries required

⚠️ CRITICAL: Migration/Refactoring Tasks

When the plan involves replacing existing code, perform these ADDITIONAL checks:

Before Starting Implementation

  1. Locate the Feature Inventory section in the plan
  2. If Feature Inventory is MISSING - STOP and inform user: ` "This migration plan is missing a Feature Inventory section. Without it, features may be accidentally omitted. Please run /plan again to add the inventory, or manually add it to the plan." `
  3. Verify ALL features are mapped - Every row must have a Task #
  4. Read the OLD code completely - Don't rely on the plan alone

During Implementation

For EACH task that migrates old functionality:

  1. Read the corresponding old file(s) listed in Feature Inventory
  2. Create a checklist of functions/behaviors from old code
  3. Verify each function/behavior exists in new code after implementation
  4. Test with same inputs - Old and new code should produce same outputs

Before Marking Task Complete

For migration tasks, add this to Definition of Done:

  • All functions from old code have equivalents in new code
  • Behavior matches old code (same inputs → same outputs)
  • No features accidentally omitted

Red Flags - STOP Implementation

If you notice ANY of these, STOP and report to user:

  • Feature Inventory section missing from plan
  • Old file has functions not mentioned in any task
  • "Out of Scope" items that should actually be migrated
  • Tests pass but functionality is missing compared to old code

TDD is MANDATORY

No production code without a failing test first. Follow the TDD rules in your context.

Requires TDDSkip TDD
New functions/methodsDocumentation changes
API endpointsConfig file updates
Business logicIaC code (CDK, Terraform, Pulumi)
Bug fixesFormatting/style changes

The TDD enforcer hook will warn you if you skip this.

Per-Task Execution Flow

For EVERY task, follow this exact sequence:

  1. READ PLAN'S IMPLEMENTATION STEPS - List all files to create/modify/delete
  2. Perform Call Chain Analysis:

- Trace Upwards (Callers): Identify what calls the code you're modifying - Trace Downwards (Callees): Identify what the modified code calls - Side Effects: Check for database, cache, external system impacts

  1. Mark task as in_progress in TodoWrite
  2. Execute TDD Flow (RED → GREEN → REFACTOR):

- Write failing test first, verify it fails - Implement minimal code to pass - Refactor if needed (keep tests green)

  1. Verify tests pass - uv run pytest tests/path/to/test.py -v
  2. Run actual program - Show real output with sample data
  3. Check diagnostics - Must be zero errors - mcp__ide__getDiagnostics()
  4. Validate Definition of Done - Check all criteria from plan
  5. Mark task completed in TodoWrite

⛔ STEP 10 IS MANDATORY - DO NOT SKIP

  1. UPDATE PLAN FILE IMMEDIATELY: Use Edit tool to change in the plan file: - [] Task N:... → - [x] Task N:... Also update Progress Tracking section: **Completed:** X | **Remaining:** Y You MUST do this BEFORE proceeding to the next task. Failure to update = incomplete implementation.
  2. Check context usage - Run $PWD/.claude/bin/ccp check-context --json

Critical Task Rules

⚠️ NEVER SKIP TASKS:

  • EVERY task MUST be fully implemented
  • NO exceptions for "MVP scope" or complexity
  • If blocked: STOP and report specific blockers
  • NEVER mark complete without doing the work

Verification Checklist

Before marking complete:

  • Test written and FAILED (RED phase)
  • Implementation written
  • Test PASSES (GREEN phase)
  • Program executed with verified output
  • No diagnostics errors

When All Tasks Complete

⚠️ CRITICAL: Follow these steps exactly:

  1. Quick verification: mcp__ide__getDiagnostics() and uv run pytest
  2. FOR MIGRATIONS ONLY - Feature Parity Check:

- Run the NEW code and verify it produces expected output - Compare behavior with OLD code (if still available) - Check Feature Inventory - every feature should now be implemented - If ANY feature is missing: DO NOT mark complete - add tasks for missing features

  1. MANDATORY: Update plan status to COMPLETE Edit the plan file and change the Status line: Status: PENDING → Status: COMPLETE
  2. Inform user: "✅ All tasks complete. Proceeding to verification..."
  3. The /spec workflow will automatically continue to /verify - do not tell user to run another command

Migration Completion Checklist

For migration/refactoring tasks, verify before marking COMPLETE:

  • All tests pass
  • New code runs without errors
  • Feature Inventory shows all features mapped to completed tasks
  • Old code functionality is replicated in new code
  • "Out of Scope" items were intentional removals (user confirmed), not forgotten migrations

If you cannot check ALL boxes, the migration is INCOMPLETE. Add new tasks.


⛔ WHEN THIS SKILL COMPLETES - CRITICAL

When all tasks are done and Status is set to COMPLETE, this skill ends.

Control returns to /spec. /spec MUST then:

  1. Re-read the plan file to confirm Status: COMPLETE
  2. IMMEDIATELY invoke Skill(verify, plan-path) in the same response
  3. DO NOT end the response without invoking /verify

The phrase "Proceeding to verification..." means NOTHING if you don't actually invoke /verify.

This skill's job is done. /spec takes over and MUST continue the workflow.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

30.61%
按下载量换算53

Cursor

24.1%
按下载量换算42

trae

17.38%
按下载量换算30

OpenCode

11.58%
按下载量换算20

Codex

7.77%
按下载量换算14

roo

3.11%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills