neo-harnesslisted
Install: claude install-skill Benknightdark/neo-skills
# Unified Agent Harness Architect & Workflow Generator
This skill integrates three core Agent engineering domains (**Harness Assessment**, **Execution Protocol**, and **Orchestration Architecture**) to analyze a target project and generate a tailored, strict `AGENTS.md` file (Harness Workflow Specification).
## Core Principle
```text
Agent = Model (Reasoning & Generation) + Harness (Guides + Sensors + Gates + Topologies)
```
The generated `AGENTS.md` acts as the single source of truth governing all AI Agents operating in the project.
> [!IMPORTANT]
> **Template Compliance & Size Constraint**:
> Any created or modified `AGENTS.md` MUST strictly adhere to the design specification of [`assets/AGENTS.md.template`](assets/AGENTS.md.template) (containing 4 mandatory sections: Project Overview, Commands Table, 9-stage Workflow Mermaid loop, and Forbidden Antipattern Redlines Table) and MUST NOT exceed 32 KiB (32,768 bytes).
---
## Quick Automation (Non-Interactive Generator Script)
To quickly analyze a repository and generate or preview an `AGENTS.md` file, run the non-interactive script:
```bash
# Preview generated content (dry-run)
python3 skills/neo-harness/scripts/generate-agents-md.py --target-dir /path/to/repo --dry-run
# Generate AGENTS.md directly in target repository
python3 skills/neo-harness/scripts/generate-agents-md.py --target-dir /path/to/repo --force
# Validate existing AGENTS.md against assets/AGENTS.md.template design specification
python3 skills/neo-har