Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计通过

n-version-workflown 版本工作流程

Agent Skill

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

总安装

2,448

周安装

102

GitHub Stars

55

下载量

816
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/rysweet/amplihack --skill n-version-workflow

简介

n-version-workflow 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于版本控制、工作流程管理和多版本维护场景。
  • 通过关键词搜索、来源仓库和原始 README 核验具体用法,结合安装命令使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

N-Version Programming Workflow Skill

Purpose

Execute N-version programming workflow for critical implementations where multiple independent solutions should be generated and compared to select the best approach.

When to Use This Skill

USE FOR:

  • Critical security features (authentication, authorization)
  • Complex algorithms with multiple valid approaches
  • High-risk refactoring of core components
  • Architecture decisions with significant long-term impact
  • When correctness is paramount over speed

AVOID FOR:

  • Simple CRUD operations
  • Straightforward bug fixes
  • Documentation updates
  • Minor UI tweaks
  • Time-sensitive quick fixes

Configuration

Core Parameters

N (Number of Versions):

  • 3 - Default for standard tasks
  • 4-6 - Critical features requiring high confidence
  • 2 - Quick validation of approach

Selection Criteria (priority order):

  1. Correctness - Meets requirements and passes tests
  2. Security - No vulnerabilities or anti-patterns
  3. Simplicity - Ruthless simplicity, minimal complexity
  4. Philosophy Compliance - Follows project principles
  5. Performance - Efficiency and resource usage

Agent Diversity Profiles:

  • conservative - Proven patterns and safety
  • innovative - Novel approaches and optimizations
  • minimalist - Ruthless simplicity
  • pragmatic - Balance trade-offs for practical solutions
  • performance-focused - Optimize for speed and efficiency

Execution Process

Step 1: Prepare Common Context

  • Use prompt-writer agent to create crystal-clear specification
  • Document all requirements explicitly
  • Define success criteria measurably
  • Prepare identical task specification for all N versions
  • Identify evaluation metrics upfront
  • CRITICAL: Capture explicit user requirements that CANNOT be optimized away

Output: Single authoritative specification document

Step 2: Generate N Independent Implementations

  • Spawn N Claude subprocesses simultaneously
  • Each subprocess receives IDENTICAL task specification
  • NO context sharing between subprocesses (true independence)
  • Each uses different agent diversity profile
  • Each produces complete implementation with tests
  • Each works in isolated directory (version_1/, version_2/, etc.)

Example for N=3:

  • Subprocess 1: Conservative approach (proven patterns, comprehensive error handling)
  • Subprocess 2: Pragmatic approach (balance simplicity and robustness)
  • Subprocess 3: Minimalist approach (ruthless simplification, minimal dependencies)

Step 3: Collect and Compare Implementations

  • Wait for all N implementations to complete
  • Use analyzer agent to examine each implementation
  • Use tester agent to run tests for each version
  • Document results in comparison matrix

Comparison Matrix:

| Version | Correctness | Security | Simplicity | Philosophy | Performance | Lines of Code |
|---------|-------------|----------|------------|------------|-------------|---------------|
| v1      | PASS        | PASS     | 7/10       | 8/10       | 150ms       | 180           |
| v2      | PASS        | PASS     | 9/10       | 9/10       | 180ms       | 95            |
| v3      | FAIL        | N/A      | 10/10      | 7/10       | N/A         | 65            |

Step 4: Review and Evaluate

  • Use reviewer agent for comprehensive comparison
  • Use security agent to evaluate security of each version
  • Apply selection criteria in priority order
  • Eliminate versions that fail correctness tests
  • Compare remaining versions on other criteria
  • Identify best parts of each implementation

Evaluation Process:

  1. Filter: Remove versions failing correctness tests
  2. Security Gate: Eliminate versions with security issues
  3. Philosophy Check: Score each on simplicity and compliance
  4. Performance Compare: Measure and compare benchmarks
  5. Synthesis: Identify if hybrid approach could be superior

Step 5: Select or Synthesize Solution

Decision Tree:

  1. Is there ONE version that passes all criteria?

- YES → Select it and document why - NO → Continue to step 2

  1. Are there 2+ versions tied on top criteria?

- YES → Continue to step 3 - NO → Select highest scoring version

  1. Do versions have complementary strengths?

- YES → Synthesize hybrid combining best parts - NO → Select based on weighted criteria priority

Example Synthesis:

Selected: Hybrid of v1 and v2
- Core logic from v2 (ruthless simplicity)
- Error handling from v1 (comprehensive coverage)
- Testing approach from v2 (focused, minimal)
- Documentation style from v1 (thorough)

Rationale: v2's minimalist core paired with v1's robust
error handling provides optimal balance of simplicity
and production-readiness.

Step 6: Implement Selected Solution

  • Use builder agent to implement final version
  • If single version selected: Use it directly
  • If synthesis: Implement hybrid combining best parts
  • Preserve all explicit user requirements from Step 1
  • Run full test suite
  • Document selection rationale in code comments

Documentation Template:

"""
N-Version Implementation Selection

Generated Versions: 3
Selection: Hybrid of v1 (conservative) and v2 (pragmatic)

Rationale:
- v1 had superior error handling and edge case coverage
- v2 had cleaner architecture and better testability
- v3 failed correctness tests (edge case handling)

This implementation combines v2's core logic with v1's
defensive programming approach for production robustness.

Selection Criteria Applied:
1. Correctness: v1=PASS, v2=PASS, v3=FAIL
2. Security: All passed
3. Simplicity: v2 ranked highest
4. Philosophy: v1 and v2 tied
5. Performance: Negligible difference

Step 7: Document Learnings

  • Create analysis document: n_version_analysis.md
  • Document all N implementations generated
  • Explain selection rationale in detail
  • Capture insights from rejected versions
  • Store patterns learned in memory using store_discovery() from amplihack.memory.discoveries
  • Include comparison matrix for future reference

Trade-Offs

Cost: N times the compute resources and time Benefit: Significantly reduced risk of critical errors Best For: Features where bugs are expensive (security, data integrity)

Examples

Example 1: Authentication System

Task: Implement JWT-based authentication Configuration: N=4 (critical security feature) Profiles: conservative, security-focused, pragmatic, minimalist

Result:

  • v1 (conservative): Most comprehensive but over-engineered
  • v2 (security-focused): Excellent security but complex
  • v3 (pragmatic): Good balance, missing edge cases
  • v4 (minimalist): Too simple, security gaps

Selection: Hybrid of v2 and v3

  • Security implementation from v2
  • API design and simplicity from v3

Rationale: Security cannot be compromised, but v3's cleaner API design improved usability without sacrificing security.

Example 2: Data Processing Pipeline

Task: Process large CSV files efficiently Configuration: N=3 (performance-critical) Profiles: pragmatic, performance-focused, minimalist

Result:

  • v1 (pragmatic): Pandas-based, familiar but slow
  • v2 (performance-focused): Custom streaming, 10x faster
  • v3 (minimalist): Python CSV module, simple but slow

Selection: v2 (performance-focused)

Rationale: Performance requirements justified complexity. v2's streaming approach met throughput requirements while v1 and v3 could not scale.

Philosophy Alignment

This workflow enforces:

  • Reduced Risk: Multiple implementations catch errors single approach might miss
  • Exploration: Different approaches reveal design trade-offs
  • Evidence-Based Selection: Systematic comparison vs. gut feeling
  • Learning: Rejected versions still provide valuable insights
  • Parallel Execution: N implementations run simultaneously for efficiency

Integration with Default Workflow

This workflow replaces Steps 4-5 (Research/Design and Implementation) of the DEFAULT_WORKFLOW when enabled. All other steps (requirements, testing, CI/CD) remain the same.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.27%
按下载量换算231

Antigravity

24.25%
按下载量换算198

OpenCode

15.99%
按下载量换算130

Gemini CLI

11.72%
按下载量换算96

windsurf

7.53%
按下载量换算61

Cursor

3.35%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/rysweet/amplihack --skill n-version-workflow;npx skills add rysweet/amplihack --skill "n-version-workflow" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills