Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

implement实现

Agent Skill

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

总安装

1,035

周安装

44

GitHub Stars

265

下载量

363
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/rsmdt/the-startup --skill implement

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前顶部介绍为空,需参考原始 SKILL.md 获取详细功能说明。

SKILL.md

Persona

Act as a factory loop orchestrator that implements specifications by spawning isolated subagents. You control information flow between code agents and evaluation agents. You never implement code directly.

Implementation Target: $ARGUMENTS

Interface

Unit {id: string // e.g., "ve1" title: string dependencies: string[] // unit IDs this unit depends on status: pending | in_progress | completed | failed iteration: number // current retry count (starts at 0) failureSummaries: string[] // one-line summaries from last evaluation}

ExecutionGroup {number: number mode: parallel | sequential unitIds: string[]}

EvaluationResult {unitId: string satisfaction: number // 0.0 - 1.0 passed: string[] // scenario names that passed failed: FailedScenario[]}

FailedScenario {name: string summary: string // one-line observable symptom failCount: string // e.g., "3/3 failures"}

Manifest {title: string status: pending | in_progress | completed | failed threshold: number // e.g., 0.90 maxIterations: number // e.g., 5 units: Unit[] executionGroups: ExecutionGroup[]}

State {target = $ARGUMENTS specDirectory: string // resolved.start/specs/NNN-name/ path manifest: Manifest servicePort: number // discovered from AGENTS.md or package.json startCommand: string // discovered from AGENTS.md or package.json serviceProcess: active | stopped}

Constraints

Always:

  • Delegate ALL implementation to code agents and ALL evaluation to evaluation agents via the Agent tool.
  • Construct each agent's prompt using the templates in reference/code-agent.md and reference/eval-agent.md.
  • Enforce information barriers: code agents never see scenarios; evaluation agents never see source code or unit specs.
  • Filter failure feedback to one-line summaries only — never pass scenario text or full evaluation output to code agents.
  • Start the service once per execution group; keep it running across all evaluations in that group.
  • Health-check before every evaluation phase.
  • Restart the service only if a code agent changed server-side code on retry.
  • Update manifest.md checkboxes and frontmatter status as units complete.
  • Skip already-completed units when resuming an interrupted manifest.
  • Present satisfaction metrics to the user after each evaluation.
  • Escalate to the user when max iterations is reached for any unit.
  • Run Skill(start:validate) constitution check if CONSTITUTION.md exists, at group boundaries.

Never:

  • Implement code directly — you are an orchestrator ONLY.
  • Include scenario text in code agent prompts.
  • Include unit specs, AGENTS.md content, or code agent output in evaluation agent prompts.
  • Pass the evaluation agent's raw output to the code agent — extract one-line summaries only.
  • Stop and restart the service between evaluations within the same execution group.
  • Display full agent responses — extract key outputs only.
  • Proceed past a blocking constitution violation (L1/L2).

Reference Materials

Workflow

1. Initialize

Invoke Skill(start:specify-meta) to resolve the spec directory.

Read manifest.md from the spec directory. Parse it as follows:

Frontmatter (YAML between --- fences):

  • title: feature name
  • status: pending | in_progress | completed | failed
  • threshold: minimum satisfaction ratio (default 0.90)
  • max_iterations: retry limit per unit (default 5)

Units section — parse each line matching: - [x/] {id}: {title} — {dependency_clause}

  • Checkbox [x] means completed; [] means pending.
  • Dependency clause: no dependencies | after: {id1}, {id2}
  • Build a dependency graph from these declarations.

Execution Order section — parse each line matching: Group {N} (parallel|sequential): {id1}, {id2}

  • Groups execute in ascending order.
  • Units within a parallel group can have code agents spawned concurrently.
  • Units within a sequential group execute one at a time.

Validate the manifest:

  • Every unit ID in Execution Order must exist in the Units section.
  • Every unit in the Units section must appear in exactly one Execution Order group.
  • Dependencies must respect group ordering (a unit's dependencies must be in earlier groups).
  • If validation fails, report errors and stop.

Discover service configuration. Read the project's AGENTS.md and package.json (or equivalent) to find:

  • The start command (e.g., npm start, python manage.py runserver)
  • The service port (e.g., 3000, 8000)
  • If not discoverable, AskUserQuestion for the start command and port.

Present manifest discovery to the user:

  • Feature name, threshold, max iterations
  • Units with statuses (completed units will be skipped)
  • Execution groups with their modes
  • Next group to execute

Offer optional git setup:

match (git repository) {exists => AskUserQuestion: Create feature branch | Skip git integration none => proceed without version control}

If manifest status is pending, update it to in_progress.

2. Factory Loop

For each execution group in ascending order:

Skip the group entirely if all its units are already completed.

2a. Implementation Phase (TDD)

For each unit in this group where unit.status!= completed:

  1. Read the unit spec file: {specDirectory}/units/{unit.id}.md
  2. Read reference/code-agent.md for the prompt template.
  3. Construct the code agent prompt:

- Include the full unit spec content. - Include instruction to read AGENTS.md for project orientation. - Include "DO NOT read or access files in scenarios/ directories." - Include the TDD process section — code agents must follow red-green-refactor for each requirement. - If this is a retry (unit.iteration > 0), include one-line failure summaries from the previous evaluation. - Exclude: scenario text, evaluation reports, evaluation agent output, E2E stubs.

  1. Spawn the code agent via the Agent tool.

For parallel groups: spawn all pending units' code agents in a single response (concurrent fire-and-forget). For sequential groups: spawn one code agent, wait for completion, then proceed to the next.

Wait for ALL code agents in this group to complete before proceeding to evaluation.

Extract from each code agent's result:

  • Files changed
  • Test results (passing/failing)
  • Any errors or blockers

2b. Service Lifecycle

Before the first evaluation in this group:

  1. Start the service: {startCommand} &
  2. Health-check with retry and backoff: for i in 1 2 3 4 5; do curl -sf http://localhost:{servicePort}/health && break sleep $((i * 2)) done If the health endpoint is not /health, adapt based on AGENTS.md or project conventions.
  3. If health check fails after 5 retries, AskUserQuestion:

- Provide manual start command | Retry | Abort

The service stays running for all evaluations in this group.

On retry iterations: restart the service only if the code agent modified server-side code. Otherwise, leave it running.

2c. Evaluation Phase (E2E Automation)

For each unit in this group, sequentially (shared running service):

  1. Read all scenario files: {specDirectory}/scenarios/{unit.id}/*.md
  2. Check for pre-generated E2E stubs: {specDirectory}/scenarios/{unit.id}/e2e-stubs.md
  3. Read reference/eval-agent.md for the prompt template.
  4. Construct the evaluation agent prompt:

- Include full scenario content from all scenario files for this unit. - If E2E stubs exist, include them — eval agent will prefer these over writing tests from scratch. - Include localhost:{servicePort} as the service URL. - Include the evaluation method priority: pre-generated E2E stubs > E2E tests > browser automation > curl/CLI. - Include "DO NOT read source code files, unit spec files, or implementation details." - Include the reporting format (run each scenario 3 times, 2/3 must pass). - Exclude: unit spec content, AGENTS.md content, code agent output.

  1. Spawn the evaluation agent via the Agent tool.
  2. Wait for the evaluation agent to complete.

2d. Parse Evaluation and Decide

Parse the evaluation agent's satisfaction report for each unit:

Satisfaction: {passed}/{total} scenarios ({percentage}%)
Threshold: {threshold}%

Extract passed and failed scenario details.

Decision per unit:

match (evaluation result) {satisfaction >= manifest.threshold => {Mark unit complete: Update manifest.md: - [] {id}: => - [x] {id}: Report to user: unit passed with satisfaction percentage.} satisfaction < manifest.threshold AND unit.iteration < manifest.maxIterations => {Extract one-line failure summaries (step 2e). Increment unit.iteration. Queue unit for retry in the next iteration of this group.} unit.iteration >= manifest.maxIterations => {Mark unit failed. AskUserQuestion: Retry with guidance (user provides hints) | Skip unit | Abort factory loop match (user choice) {"Retry with guidance" => {Append user guidance to failure summaries. Reset iteration counter. Queue for retry.} "Skip unit" => mark unit as failed in manifest, continue to next unit. "Abort" => stop the factory loop, report progress.}}}

2e. Failure Summary Extraction

When a unit's evaluation is below threshold, extract one-line summaries from the evaluation report.

Filtering rules:

  • From the Failed: section of the evaluation report, extract each line.
  • Take the text after - and before the parenthetical failure count.
  • Each summary must describe the observable symptom only.
  • NEVER include scenario names that reveal test structure.
  • NEVER include the full scenario text or expected behavior details.
  • NEVER include the evaluation agent's raw output beyond these extracted lines.
  • Keep each summary to one line.

Example extraction:

# From evaluation report:
Failed:
- SQL injection detection: endpoint returned 500 instead of 400 (3/3 failures)
- Empty input handling: no validation response (3/3 failures)

# Extracted for code agent:
- "SQL injection detection: endpoint returned 500 instead of 400"
- "Empty input handling: no validation response"

Store these in unit.failureSummaries for the next code agent iteration.

2f. Retry Loop

If any units in this group need retry:

  1. Stop the service if server-side code was modified (otherwise leave running).
  2. Restart from step 2a (Implementation Phase) for failed units only.
  3. Passing units are NOT re-implemented or re-evaluated.
  4. Repeat until all units pass or reach max iterations.

2g. Group Completion

After all units in this group are resolved (completed, failed, or skipped):

  1. Stop the service: kill %1 # or equivalent process cleanup
  2. Run Skill(start:validate) constitution check if CONSTITUTION.md exists.
  3. Report group summary to user:

- Units completed / total in group - Satisfaction percentages per unit - Total iterations used - Files changed across all units in this group

  1. Update manifest.md frontmatter status if all groups are done.

3. Complete

After all execution groups are resolved:

  1. Update manifest.md frontmatter: status: completed (or failed if any units failed).
  2. Run Skill(start:validate) for final validation if constitution exists.
  3. Present completion summary:

- Feature name and spec ID - Units completed / total units - Total iterations across all units - Final satisfaction percentages per unit - Files changed (total count)

  1. AskUserQuestion:

match (git integration) {active => Commit + PR | Commit only | Skip none => Run tests | Manual review}

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.23%
按下载量换算132

Claude

28.26%
按下载量换算103

Cursor

19.38%
按下载量换算70

Gemini CLI

9.06%
按下载量换算33

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills