Token导航 LogoToken导航TokenDH.com
开发执行命令github未标认证来源可访问许可证需确认审计通过

agent-harnessAgent 线束

Agent Skill

agent-harness 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,058

周安装

45

GitHub Stars

8

下载量

371
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wangdahoo/agent-harness --skill agent-harness

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前需确认权限范围、维护状态,注意是否触发联网、命令执行或文件读写。
  • agent-harness 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Agent Harness

Subcommand Routing

When invoked as /agent-harness <subcommand>, route to the appropriate workflow:

SubcommandAction
init <name>Run python3 scripts/init_project.py "<name>" --project-dir "$(pwd)"
sprint [req]Execute Sprint Agent workflow (see references/sprint-agent.md)
codeExecute Coding Agent workflow (see references/coding-agent.md)
996Execute 996 parallel orchestration (see references/996-agent.md)
statusRun python3 scripts/status.py --project-dir "$(pwd)"
archiveRun archive workflow
force-archiveRun force archive workflow
help or emptyShow available commands

Usage examples:

  • /agent-harness init "My Project" - Initialize new project
  • /agent-harness sprint "Add authentication" - Plan sprint
  • /agent-harness code - Start coding session
  • /agent-harness 996 - Execute parallel coding with subagent orchestration
  • /agent-harness status - Show status

CRITICAL: Always operate on files in the current project directory, NOT in the skill directory. At the start of every workflow, run python3 scripts/resolve_project_dir.py to get the correct absolute path. Use this path for ALL reads/writes of features.json and progress.md.

Framework for executing complex, multi-session projects using Sprint-Coding agent cycles.

Overview

Agent Harness enables Claude to manage long-running projects by:

  • Sprint Agent: Plans features and breaks down requirements
  • Coding Agent: Implements features one at a time
  • 996 Agent: Orchestrates parallel feature implementation with subagents
  • Progress Tracking: Maintains context across sessions
  • Quality Gates: Ensures working code at each step

Commands

Agent Harness provides slash commands with tab completion. Type /agent-harness to see all commands.

/agent-harness

Show available commands and usage.

Output:

Agent Harness Commands:
  /agent-harness init <name>           - Initialize new project tracking files
  /agent-harness sprint [req]          - Create or update sprint with feature breakdown
  /agent-harness code                  - Start coding session for next feature
  /agent-harness 996                   - Execute parallel coding with subagent orchestration
  /agent-harness status                - Show current project status
  /agent-harness archive               - Archive completed sprints
  /agent-harness force-archive         - Force archive ALL sprints (including incomplete)

/agent-harness init <name>

Initialize new project tracking files.

Example: /agent-harness init My App

Actions:

  • Create features.json and progress.md
  • Run python3 scripts/init_project.py "My App"
  • Commit the initialized files: git add features.json progress.md && git commit -m "chore: initialize project tracking"

/agent-harness sprint [requirements]

Create or update sprint with feature breakdown.

Examples:

  • /agent-harness sprint - Review current sprint and plan next
  • /agent-harness sprint Add user authentication with email and social login
  • /agent-harness sprint Build dashboard with charts and filters

Actions:

  1. Archive completed sprints (if any)
  2. Analyze requirements
  3. Break into atomic features with acceptance criteria
  4. Update only features.json and progress.md — do NOT create extra files like summary documents
  5. Display sprint planning summary in terminal
  6. Ask user to confirm the sprint plan before committing
  7. After user confirms, commit: git add features.json progress.md && git commit -m "chore: sprint planning - <sprint-name>"
  8. Read sprint-agent.md for detailed workflow

/agent-harness code

Start coding session for next feature.

Actions:

  1. Review progress.md and features.json
  2. Select next pending feature
  3. Implement following session protocol
  4. Commit code after implementation: git add -A && git commit -m "feat(<scope>): <description>"
  5. Read coding-agent.md for protocol

/agent-harness 996

Execute parallel coding tasks with subagent orchestration.

Examples:

  • /agent-harness 996 - Run parallel orchestration with default settings
  • /agent-harness 996 --max-parallel=3 - Limit to 3 concurrent subagents

Actions:

  1. Check for uncompleted sprint
  2. Analyze dependencies and file conflicts
  3. Dispatch subagents for parallel execution
  4. Verify results and update tracking files
  5. Commit: git add -A && git commit -m "chore: 996 orchestration complete - N features"
  6. Read 996-agent.md for protocol

Use when: You want to accelerate sprint completion by running multiple coding tasks in parallel.

/agent-harness status

Show current project status.

Output:

  • Current sprint and goal
  • Feature completion statistics
  • Next recommended feature
  • Run python3 scripts/status.py

/agent-harness archive

Archive completed sprints.

Actions:

  • List completed sprints
  • Move to .agent-harness/archived/
  • Run python3 scripts/archive_sprint.py
  • Commit: git add -A && git commit -m "chore: archive completed sprint"

/agent-harness force-archive

Force archive ALL sprints (including incomplete ones).

Warning: This will archive all sprints regardless of their status.

Actions:

  • List all sprints to be archived
  • Confirm with user
  • Move all to .agent-harness/archived/
  • Run python3 scripts/archive_sprint.py --force
  • Commit: git add -A && git commit -m "chore: force archive all sprints"

Quick Start

python3 scripts/init_project.py "Project Name" -d "Description"
python3 scripts/status.py
python3 scripts/validate_structure.py

Workflow

1. Sprint Planning (Sprint Agent)

When: New project or iteration

  1. Analyze user requirements
  2. Break into atomic features with acceptance criteria
  3. Order by dependencies
  4. Update features.json and progress.md

→ Read references/sprint-agent.md for workflow, schemas, and examples

2. Feature Implementation (Coding Agent)

When: Each development session

Session Protocol:

PhaseActions
Startpwd → read progress.mdgit log → run lint/build
WorkSelect ONE feature → implement → test
EndUpdate progress.md → update features.json → commit

→ Read references/coding-agent.md for protocol, testing, and schemas

3. Iterate

Loop: Sprint Agent → Coding Agent → Coding Agent →... → Sprint Agent

Core Files

FilePurpose
features.jsonSprint and feature tracking
progress.mdSession log - add entries at top
AGENTS.mdProject-specific instructions

→ See references/sprint-agent.md or references/coding-agent.md for schemas

Scripts

All scripts support --project-dir / -p to specify the project directory. When using slash commands, --project-dir "$(pwd)" is passed automatically.

python3 scripts/resolve_project_dir.py [-s dir]                # Resolve project directory
python3 scripts/init_project.py <name> [-d desc] [-p dir]     # Initialize tracking
python3 scripts/status.py [-p dir]                             # Show status
python3 scripts/validate_structure.py [-p dir]                 # Validate features.json
python3 scripts/archive_sprint.py [-p dir] [--list|--dry-run]  # Archive completed sprints

CRITICAL: Always prefix with $env:PYTHONIOENCODING="utf-8"; when running scripts (required for Windows GBK compatibility).

Critical Rules

  1. One Feature Per Session - Don't implement multiple
  2. Always Leave Working Code - Never break the build
  3. Test End-to-End - Verify as user would experience
  4. Commit Frequently - Small commits enable rollback
  5. Never Delete Features - Only change status
  6. Use Progress Log - Record every session

References

By Agent Role:

  • sprint-agent.md - Sprint Agent: workflow, feature breakdown, schemas
  • coding-agent.md - Coding Agent: session protocol, testing, schemas
  • 996-agent.md - 996 Agent: parallel orchestration, subagent dispatch, conflict detection

Complete Examples:

  • examples.md - Realistic examples of features.json, progress.md, and workflows

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.2%
按下载量换算134

Claude

28.98%
按下载量换算108

Cursor

20.93%
按下载量换算78

Gemini CLI

10.43%
按下载量换算39

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills