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

technical-implementation技术实施

Agent Skill

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

总安装

220

周安装

9

GitHub Stars

15

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/leeovery/claude-technical-workflows --skill technical-implementation

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • technical-implementation 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Technical Implementation

Orchestrate implementation by dispatching executor and reviewer agents per task. Each agent invocation starts fresh — flat context, no accumulated state.

  • Executor (../../agents/implementation-task-executor.md) — implements one task via strict TDD
  • Reviewer (../../agents/implementation-task-reviewer.md) — independently verifies the task (opus)

The orchestrator owns: plan reading, task extraction, agent invocation, git operations, tracking, task gates.

Purpose in the Workflow

This skill can be used:

  • Sequentially: To execute a plan created by technical-planning
  • Standalone (Contract entry): To execute any plan that follows plan-format conventions

Either way: dispatch agents per task — executor implements via TDD, reviewer verifies independently.

What This Skill Needs

  • Plan content (required) - Phases, tasks, and acceptance criteria to execute
  • Plan format (required) - How to parse tasks (from plan frontmatter)
  • Specification content (optional) - For context when task rationale is unclear
  • Environment setup (optional) - First-time setup instructions

Before proceeding, verify all required inputs are available and unambiguous. If anything is missing or unclear, STOP — do not proceed until resolved.

If no plan provided

*Output the next fenced block as a code block:*
I need an implementation plan to execute. Could you point me to the plan file
(e.g., .workflows/planning/{topic}/plan.md)?

STOP. Wait for user response.

If plan has no format field in frontmatter

*Output the next fenced block as a code block:*
The plan at {path} doesn't specify an output format in its frontmatter.
Which format does this plan use?

STOP. Wait for user response.

If plan status is not concluded

*Output the next fenced block as a code block:*
The plan at {path} has status '{status}' — it hasn't completed the review
process. Should I proceed anyway, or should the plan be reviewed first?

STOP. Wait for user response.

If no specification is available, the plan becomes the sole authority for design decisions.


Resuming After Context Refresh

Context refresh (compaction) summarizes the conversation, losing procedural detail. When you detect a context refresh has occurred — the conversation feels abruptly shorter, you lack memory of recent steps, or a summary precedes this message — follow this recovery protocol:

  1. Re-read this skill file completely. Do not rely on your summary of it. The full process, steps, and rules must be reloaded.
  2. Check task progress in the plan — use the plan adapter's instructions to read the plan's current state. Also read the implementation tracking file and any other working documents for additional context.
  3. Check task_gate_mode, fix_gate_mode, analysis_gate_mode, fix_attempts, and analysis_cycle in the tracking file — if gates are auto, the user previously opted out. If fix_attempts > 0, you're mid-fix-loop for the current task. If analysis_cycle > 0, you've completed analysis cycles — check for findings files on disk (analysis-*-c{cycle-number}.md in {topic}/) to determine mid-analysis state.
  4. Check git state. Run git status and git log --oneline -10 to see recent commits. Commit messages follow a conventional pattern that reveals what was completed.
  5. Announce your position to the user before continuing: what step you believe you're at, what's been completed, and what comes next. Wait for confirmation.

Do not guess at progress or continue from memory. The files on disk and git history are authoritative — your recollection is not.


Orchestrator Hard Rules

  1. No autonomous decisions on spec deviations — when the executor reports a blocker or spec deviation, present to user and STOP. Never resolve on the user's behalf.
  2. All git operations are the orchestrator's responsibility — agents never commit, stage, or interact with git.

Output Formatting

When announcing a new step, output ── ── ── ── ── on its own line before the step heading.


Step 1: Environment Setup

Run setup commands EXACTLY as written, one step at a time. Do NOT modify commands based on other project documentation (CLAUDE.md, etc.). Do NOT parallelize steps — execute each command sequentially. Complete ALL setup steps before proceeding.

Load environment-setup.md and follow its instructions.

If .workflows/environment-setup.md states "No special setup required"

→ Proceed to Step 2.

If setup instructions exist

Follow them. Complete ALL steps before proceeding.

→ Proceed to Step 2.

If no setup file exists

*Output the next fenced block as a code block:*
No environment setup document found. Are there any setup instructions
I should follow before implementing?

STOP. Wait for user response.

Save their instructions to .workflows/environment-setup.md (or "No special setup required." if none needed). Commit.

→ Proceed to Step 2.


Step 2: Read Plan + Load Plan Adapter

  1. Read the plan from the provided location (typically .workflows/planning/{topic}/plan.md)
  2. Plans can be stored in various formats. The format field in the plan's frontmatter identifies which format this plan uses.
  3. Load the format's per-concern adapter files from ../technical-planning/references/output-formats/{format}/:

- reading.md — how to read tasks from the plan - updating.md — how to write progress to the plan

  1. If no format field exists, ask the user which format the plan uses.
  2. These adapter files apply during Step 6 (task loop) and Step 7 (analysis).
  3. Also load the format's authoring.md adapter — needed in Step 7 if analysis tasks are created.

→ Proceed to Step 3.


Step 3: Initialize Implementation Tracking

If .workflows/implementation/{topic}/tracking.md already exists

Reset task_gate_mode, fix_gate_mode, and analysis_gate_mode to gated, fix_attempts to 0, and analysis_cycle to 0 (fresh session = fresh gates/cycles).

→ Proceed to Step 4.

If no tracking file exists

Create .workflows/implementation/{topic}/tracking.md:

---
topic: {topic}
plan: ../../planning/{topic}/plan.md
format: {format from plan}
status: in-progress
task_gate_mode: gated
fix_gate_mode: gated
analysis_gate_mode: gated
fix_attempts: 0
linters: []
analysis_cycle: 0
project_skills: []
current_phase: 1
current_task: ~
completed_phases: []
completed_tasks: []
started: YYYY-MM-DD  # Use today's actual date
updated: YYYY-MM-DD  # Use today's actual date
completed: ~
---

# Implementation: {Topic Name}

Implementation started.

Commit: impl({topic}): start implementation

→ Proceed to Step 4.


Step 4: Project Skills Discovery

If project_skills is populated in the tracking file

Present the existing configuration for confirmation:

*Output the next fenced block as markdown (not a code block):*
Previous session used these project skills:
- `{skill-name}` — {path}
- ...

· · · · · · · · · · · ·
- **`y`/`yes`** — Keep these, proceed
- **`c`/`change`** — Re-discover and choose skills
· · · · · · · · · · · ·

STOP. Wait for user choice.

  • yes: → Proceed to Step 5.
  • change: Clear project_skills and fall through to discovery below.

If .claude/skills/ does not exist or is empty

*Output the next fenced block as a code block:*
No project skills found. Proceeding without project-specific conventions.

→ Proceed to Step 5.

If project skills exist

Scan .claude/skills/ for project-specific skill directories. Present findings:

*Output the next fenced block as markdown (not a code block):*
Found these project skills that may be relevant to implementation:
- `{skill-name}` — {brief description}
- `{skill-name}` — {brief description}
- ...

· · · · · · · · · · · ·
- **`a`/`all`** — Use all listed skills
- **`n`/`none`** — Skip project skills
- **Or list the ones you want** — e.g. "golang-pro, react-patterns"
· · · · · · · · · · · ·

STOP. Wait for user to confirm which skills are relevant.

Store the selected skill paths in the tracking file.

→ Proceed to Step 5.


Step 5: Linter Discovery

Load linter-setup.md and follow its discovery process to identify project linters.

If linters is already populated in the tracking file, present the existing configuration for confirmation (same pattern as project skills in Step 4). If confirmed, skip discovery and proceed.

Otherwise, present discovery findings to the user:

*Output the next fenced block as markdown (not a code block):*
**Linter discovery:**
- {tool} — `{command}` (installed / not installed)
- ...

Recommendations: {any suggested tools with install commands}

· · · · · · · · · · · ·
- **`y`/`yes`** — Approve these linter commands
- **`c`/`change`** — Modify the linter list
- **`s`/`skip`** — Skip linter setup (no linting during TDD)
· · · · · · · · · · · ·

STOP. Wait for user choice.

  • yes: Store the approved linter commands in the tracking file.
  • change: Adjust based on user input, re-present for confirmation.
  • skip: Store empty linters array.

→ Proceed to Step 6.


Step 6: Task Loop

Load task-loop.md and follow its instructions as written.

After the loop completes:

→ If the task loop exited early (user chose stop), proceed to Step 8.

→ Otherwise, proceed to Step 7.


Step 7: Analysis Loop

Load analysis-loop.md and follow its instructions as written.

→ If new tasks were created in the plan, return to Step 6.

→ If no tasks were created, proceed to Step 8.


Step 8: Mark Implementation Complete

Before marking complete, present the sign-off:

*Output the next fenced block as markdown (not a code block):*
· · · · · · · · · · · ·
- **`y`/`yes`** — Mark implementation as completed
- **Comment** — Add context before completing
· · · · · · · · · · · ·

STOP. Wait for user response.

If comment

Discuss the user's context. If additional work is needed, route back to Step 6 or Step 7 as appropriate. Otherwise, re-present the sign-off prompt above.

If yes

Update the tracking file (.workflows/implementation/{topic}/tracking.md):

  • Set status: completed
  • Set completed: YYYY-MM-DD (use today's actual date)
  • Update updated date

Commit: impl({topic}): complete implementation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.46%
按下载量换算28

Claude

29.92%
按下载量换算21

Cursor

17.79%
按下载量换算13

Gemini CLI

8.94%
按下载量换算6

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills