Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

code-implementation代码实现

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/hifisaputra/skills --skill code-implementation

简介

code-implementation 提供结构化编码流程:理解任务、探索代码库、计划实现与提交准备。

  • 适用于新功能开发与 bug 修复,采用 TDD 模式(当项目有测试设施时)或直接实现。
  • 若任务引用其他文件或 PRD,必须先阅读以确保上下文完整,避免孤立修改导致副作用。
  • 操作前请确认用户对目标文件的写入权限,建议在 feature 分支上操作以便隔离变更影响。
  • 本技能强调计划先行,无 plan.md 则禁止编码;输出代码需通过本地测试与构建验证方可提交。

SKILL.md

Code Implementation

Structured approach to implementing a code task: understand, plan, implement, commit. Uses TDD when the project has test infrastructure, and direct implementation otherwise.

Inputs

This skill expects a clear task — either an issue body, a user description, or a PR comment with requested changes. If the task is unclear, ask a specific clarifying question before proceeding.

Step 1: Understand the task

Read the task description thoroughly. If it references other files, PRDs, or issues, read those too. Explore relevant parts of the codebase to understand the existing patterns and architecture.

Load stack-specific references

Check the project root for framework config files and load the corresponding reference from references/:

  • next.config.* detected → read references/nextjs.md (App Router patterns, Server/Client Components, Server Actions, common pitfalls)
  • wrangler.toml / wrangler.jsonc / wrangler.json detected → read references/cloudflare.md (D1, R2, KV, Queues, Workers constraints, Next.js on Workers bindings)

Load both if both are present (Next.js on Cloudflare Workers). Skip if neither exists.

Look up external docs

Before writing code that uses external libraries or APIs, look up the current documentation first (via context7 resolve-library-id + query-docs, or WebSearch). Do not rely on memory for method signatures or options. The bundled references cover common patterns but are not exhaustive — always verify against current docs for less common APIs.

If the task is ambiguous or missing critical information, stop and ask — never guess at requirements.

Step 2: Estimate scope

Estimate how many lines of code this will likely require. If the estimate is >500 lines of changes, report the estimate and suggest breaking it into smaller pieces. If the caller (user or another skill) confirms to proceed anyway, continue — the threshold is a warning, not a hard stop.

Step 3: Plan

Write a brief plan before touching any code:

  • What files you'll change or create
  • What behaviors you'll implement
  • If using TDD: your red-green cycle order
  • For bug fixes: which test will reproduce the bug

Post the plan where appropriate (as a comment on the issue, or communicate it to the user). Do NOT wait for approval — post and start.

Step 4: Detect project tooling

Test infrastructure

Check for test infrastructure in this order:

  • package.jsonscripts.testnpm test (or bun test if using Bun)
  • vitest.config.* or package.json scripts.test containing vitestnpx vitest run (or bunx vitest run)
  • Makefile / Justfilemake test / just test
  • pytest.ini, pyproject.toml [tool.pytest], or tests/ dir → pytest
  • Cargo.tomlcargo test
  • bun.lockb without explicit test script → bun test (Bun's built-in test runner)
  • .github/workflows/*.yml → look for the test step command

Detect the package manager from the lockfile: bun.lockb → bun, pnpm-lock.yaml → pnpm, yarn.lock → yarn, package-lock.json → npm. Use the matching runner for commands (e.g., bunx instead of npx).

If test infrastructure exists, verify the existing tests pass before writing any code:

<detected test command>

If tests are already failing, stop and report: "Existing tests are failing before any changes." Do not proceed until the suite is green.

If no test infrastructure is found, skip to Step 6.

Linter / formatter

Also detect if the project has a linter or formatter:

  • package.jsonscripts.lintnpm run lint (use detected package manager)
  • next.config.*next lint (Next.js built-in linter, wraps ESLint)
  • .eslintrc* / eslint.config.*, biome.jsonnpx eslint / npx biome check
  • pyproject.toml [tool.ruff] or ruff.tomlruff check
  • rustfmt.toml or Cargo.tomlcargo fmt --check
  • .prettierrc*npx prettier --check

Prefer scripts.lint from package.json over individual tool detection — it reflects the project's intended lint configuration.

If found, run the linter after implementation (in both Step 5 and Step 6) to catch style issues before committing.

Build command

Detect the build command:

  • package.jsonscripts.buildnpm run build (use detected package manager)
  • next.config.* without explicit build script → next build
  • Cargo.tomlcargo build
  • Makefile / Justfilemake build / just build
  • pyproject.toml with [build-system] → the configured build backend

If found, run the build after tests and lint pass (in both Step 5 and Step 6) to catch type errors, broken imports, and other compilation issues before pushing.

Step 5: Implement with TDD

For bug fixes, start by writing a regression test that reproduces the bug — confirm it fails, then fix the code and confirm the test passes. This ensures the bug can't silently return.

For new features, implement each behavior in your plan:

RED:   Write one test that captures expected behavior → verify it fails
GREEN: Write minimal code to pass → verify it passes

Rules:

  • One test at a time, vertical slices
  • Tests verify behavior through public interfaces, not implementation details
  • Only enough code to pass the current test
  • Run tests after each step to confirm RED/GREEN state
  • Never refactor while RED

After all tests pass, refactor if needed. Run tests again.

Commit after each meaningful unit of work (a completed red-green cycle, a refactor pass) rather than saving all commits for the end. This keeps commits atomic and makes review easier.

git add <specific-files>
git commit -m "<type>(#<ref>): <description>"

Run the full test suite one final time to make sure nothing else broke:

<detected test command>

If a linter was detected in Step 4, run it now and fix any issues before proceeding.

If a build command was detected in Step 4, run it now and fix any errors before proceeding. Build failures (type errors, missing imports, invalid config) must be resolved — do not push code that doesn't build.

If any pre-existing tests broke, fix them before proceeding.

Skip to Step 7.

Step 6: Implement directly (no tests)

For documentation, configuration, or projects without test infrastructure — make the changes and verify them manually. Check that:

  • Files are syntactically valid
  • Changes match the task requirements
  • Nothing unrelated was accidentally modified

If a linter was detected in Step 4, run it and fix any issues.

If a build command was detected in Step 4, run it and fix any errors before proceeding.

Step 7: Push

Stage any remaining uncommitted changes explicitly rather than using git add -A, which can accidentally include secrets, build artifacts, or other untracked files.

git add <specific-files>
git commit -m "<type>(#<ref>): <description>"
git push -u origin HEAD

Commit types: feat for new features, fix for bug fixes, docs for documentation, refactor for restructuring.

If the push fails due to diverged history, rebase on main and retry:

git fetch origin main
git rebase origin/main

If the rebase produces conflicts, stop and report: "Merge conflict with main on <file>." Do not force push or silently discard changes.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.07%
按下载量换算27

Claude

27.93%
按下载量换算21

Cursor

17.04%
按下载量换算13

Gemini CLI

9.78%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills