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

harnessharness 文档

Agent Skill

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

总安装

1,505

周安装

64

GitHub Stars

11

下载量

527
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/akillness/oh-my-skills --skill harness

简介

作为 Agent 团队与技能架构的元技能,负责分解复杂任务为协调的多 Agent 团队。

  • 适合选择架构模式、生成 Agent 定义文件和验证端到端有效性。
  • 使用时需启用 CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 环境变量。
  • 主要面向大型项目拆解,不适用于单一简单任务的执行场景。
  • harness 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

harness - Agent Team & Skill Architect

Keyword: harness · build a harness · design agent team · harness engineering Meta-skill: harness designs the teams and skills that run your domain work.

Harness decomposes complex tasks into coordinated teams of specialized agents. It analyzes your domain, selects the right architecture pattern, generates agent definition files and skills, then validates the harness end-to-end.

Agent Teams require: CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1

When to use this skill

  • Decompose a complex project into a coordinated multi-agent team
  • Choose the right architecture: pipeline, fan-out/fan-in, expert pool, producer-reviewer, supervisor, or hierarchical delegation
  • Generate .claude/agents/{name}.md agent definition files
  • Generate .claude/skills/{name}/SKILL.md skill files with bundled resources
  • Validate trigger conditions, dry-run teams, and compare with/without harness quality
  • Build harnesses for: research, coding, content creation, code review, data pipelines, marketing

Instructions

Step 1: Domain Analysis

Analyze the task and project context:

  1. Read the codebase or user request to identify the domain, sub-tasks, and outputs
  2. Detect user expertise level (beginner → detailed scaffolding; expert → lean definitions)
  3. List the distinct task types — these map to agent roles
  4. Decide execution mode:

- Agent Team (default): 2+ agents need to communicate or cross-validate → use TeamCreate + SendMessage - Sub-agents (lightweight): tasks are independent and results only return to orchestrator → use Agent tool

Step 2: Team Architecture Design

Choose a pattern based on task structure (see references/agent-design-patterns.md):

PatternWhen to useExample
PipelineSequential dependent stagesDesign → Code → Review → Deploy
Fan-out/Fan-inParallel independent work merged at the end4 researchers → synthesizer
Expert PoolDynamic routing by input typeRoute to security, perf, or style expert
Producer-ReviewerGeneration + validation cycleWriter + Editor loop
SupervisorCentral coordinator with dynamic assignmentSupervisor + migrators
Hierarchical DelegationRecursive decomposition (max 2 levels)PM → Tech Lead → Engineers

Key rules:

  • Agent teams are the default; choose sub-agents only when no inter-agent communication is needed
  • All agents must be file-based (.claude/agents/{name}.md) — never embed roles inline in Agent tool prompts
  • Avoid nesting teams (team members cannot themselves create teams)
  • Maximum 2 levels for hierarchical delegation

Step 3: Generate Agent Definition Files

Create .claude/agents/{agent-name}.md for each agent. Use this template:

---
name: {agent-name}
description: {role and activation conditions}
model: opus
allowed-tools: {tool list}
---

# {Agent Name}

## Core Responsibilities
- {primary responsibility 1}
- {primary responsibility 2}

## Operational Principles
1. {principle 1}
2. {principle 2}

## Input Protocol
- Receives: {what inputs this agent consumes}
- Format: {expected format}

## Output Protocol
- Produces: {what outputs this agent delivers}
- Format: {output format and location}

## Error Handling
- On failure: {recovery behavior}
- Escalation: {when to notify orchestrator}

## Team Communication
- Reports to: {orchestrator or peer}
- Communicates with: {peer agents via SendMessage}
- Completion signal: {how to signal done}

Use model: opus for all agents by default unless speed is critical.

Step 4: Generate Skill Files

For each skill the team needs, create .claude/skills/{skill-name}/SKILL.md following the Agent Skills spec:

  1. Write a "pushy" description — actively invites triggering with specific conditions and synonyms
  2. Explain why (context), not just what (commands)
  3. Keep SKILL.md under 500 lines — move detailed docs to references/
  4. Bundle reusable logic in scripts/
  5. Apply progressive disclosure: metadata → body → references

For the orchestrator skill template, see references/orchestrator-template.md. For team architecture examples, see references/team-examples.md.

Step 5: Integration & Orchestration

Define the full workflow in the orchestrator skill or agent:

Before running: ensure CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 is set in your environment for agent team mode.
  1. Specify phase dependencies (which agents must complete before the next phase starts)
  2. Define data passing: use absolute paths anchored to _workspace/ for intermediate artifacts
  3. Add error handling for agent failures, timeouts, and data conflicts
  4. Preserve intermediate artifacts for post-execution verification — do not delete them

Step 6: Validation & Testing

Run validation to verify the harness before use:

bash scripts/validate-harness.sh .claude/agents/ .claude/skills/

Validation checks:

  • Structure: required sections present in agent definition files
  • Trigger conditions: 20 eval queries (10 should-trigger + 10 should-NOT-trigger)
  • Dry run: simulate team execution without running real tasks
  • Comparative: quality with harness vs without (baseline) — target +50% score improvement

For testing methodology, see references/skill-testing-guide.md.

Examples

Example 1: Research Harness (Fan-out/Fan-in)

Prompt: "Build a harness for deep technology research"

Generated agents:
  .claude/agents/official-researcher.md    — documentation & official sources
  .claude/agents/media-researcher.md       — investment trends & news
  .claude/agents/community-researcher.md   — social response & forums
  .claude/agents/background-researcher.md  — competitive landscape
  .claude/agents/research-orchestrator.md  — synthesizes findings

Pattern: Fan-out/Fan-in (4 parallel researchers → orchestrator)

Example 2: Code Review Harness (Expert Pool)

Prompt: "Design an agent team for thorough code review"

Generated agents:
  .claude/agents/security-reviewer.md      — OWASP, injection, secrets
  .claude/agents/performance-reviewer.md   — complexity, memory, latency
  .claude/agents/testing-reviewer.md       — coverage, assertions, mocks
  .claude/agents/review-orchestrator.md    — consolidates findings

Key feature: reviewers communicate directly (cross-domain issue detection)

Example 3: Content Production Harness (Pipeline + Parallel)

Prompt: "Build a harness for webtoon production"

Phase 1 (parallel): worldbuilder + character-designer + plot-architect
Phase 2 (sequential): prose-stylist writes based on Phase 1
Phase 3 (parallel): science-consultant + continuity-manager review
Phase 4 (sequential): prose-stylist incorporates feedback

Best practices

  1. File-based agents always — embedding roles inline in Agent tool prompts prevents reuse across sessions
  2. Agent teams by default — prefer TeamCreate + SendMessage over sub-agents for any work requiring coordination
  3. "Pushy" descriptions — passive descriptions mean skills never activate; write active invitations
  4. Explain why, not just what — agents follow reasoning better than rigid commands
  5. Preserve intermediate artifacts_workspace/ files enable post-run verification and debugging
  6. Validate before deploy — run trigger eval (20 queries) and dry-run before using the harness in production
  7. Max 2 hierarchy levels — deeper nesting creates coordination overhead without quality gains

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.15%
按下载量换算196

Claude

31.65%
按下载量换算167

Cursor

16.17%
按下载量换算85

Gemini CLI

8.24%
按下载量换算43

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills