Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Summary

크로스 플랫폼 AI 에이전트 하네스

Install to Claude Code

/plugin install harness@team-harness

Run in Claude Code. Add the marketplace first with /plugin marketplace add siontext/Harness-Marketplace if you haven't already.

README.md

Cross-Platform AI Harness

Claude Code, Gemini CLI, Codex CLI가 동일한 규칙으로 동작하도록 하는 크로스 플랫폼 하네스.

에이전트와 스킬을 Markdown으로 한 번 작성하면, 빌드 스크립트가 각 플랫폼에 맞는 지시문과 설정 파일을 자동 생성합니다.

구조

harness/
├── .claude-plugin/     # Claude Code 플러그인 매니페스트
│   ├── marketplace.json
│   └── plugin.json
│
├── agents/             # 에이전트 (Single Source of Truth)
│   ├── designer.md     # 설계 전문가
│   ├── backend-dev.md  # 백엔드 개발자
│   ├── reviewer.md     # 코드 리뷰어
│   └── pr-docs.md      # PR/문서 작성자
│
├── skills/             # 스킬 (Single Source of Truth)
│   ├── coding-style/   # 코딩 컨벤션
│   ├── architecture/   # 아키텍처 원칙
│   ├── framework/      # 프레임워크 규칙
│   ├── git/            # Git 워크플로우
│   ├── security/       # 보안 (deny-rules)
│   └── project/        # 프로젝트 컨텍스트
│
├── templates/          # 플랫폼별 Handlebars 템플릿
├── build/              # 빌드 시스템 (parser → validator → assembler → renderer)
├── scripts/            # sync 스크립트
│
└── dist/               # 자동 생성 결과물 (커밋 대상)
    ├── claude/         # CLAUDE.md + plugin.json + agents/ + skills/
    ├── gemini/         # GEMINI.md + agents/ + skills/ + settings.json
    └── codex/          # AGENTS.md + agents/ + skills/ + config.json

초기 설치

1. 레포 클론

git clone https://github.com/siontext/Harness-Marketplace.git ~/config/ai/harness
cd ~/config/ai/harness
npm install

2. Claude Code 플러그인 등록

~/.claude/settings.json에 추가:

{
  "extraKnownMarketplaces": {
    "team-harness": {
      "source": { "source": "github", "repo": "siontext/Harness-Marketplace" }
    }
  },
  "enabledPlugins": {
    "harness@team-harness": true
  }
}

3. Gemini/Codex 동기화

npm run sync

사용법

스킬/에이전트 수정 (리드 개발자)

# 1. 스킬 파일 수정
vi skills/architecture/layered.md

# 2. 커밋 — pre-commit hook이 dist/ 자동 재생성
git add skills/
git commit -m "docs: 레이어 아키텍처 스킬 업데이트"

# 3. 푸시
git push

업데이트 받기 (팀원)

git pull
# Claude Code: 플러그인이 자동 반영
# Gemini/Codex: post-merge hook이 자동 sync

명령어

| 명령어 | 설명 | |---|---| | npm run build:harness | 전체 빌드 (dist/ 재생성) | | npm run build:harness -- --dry-run | 변경 미리보기 | | npm run validate | 스킬/에이전트 검증만 실행 | | npm run sync | Gemini + Codex 동기화 | | npm run sync:gemini | Gemini만 동기화 | | npm run sync:codex | Codex만 동기화 | | npm run sync:settings | settings.json deny rules만 병합 | | npm test | 테스트 실행 |

스킬 파일 작성법

---
id: my-skill                   # 고유 식별자
description: "스킬 설명"        # 한 줄 설명
section: "섹션명"               # 지시문 내 그룹핑 섹션
order: 1                       # 섹션 내 순서 (선택)
platforms: [claude, gemini]    # 적용 플랫폼 (선택, 기본: 전체)
---

## 스킬 내용

여기에 Markdown으로 스킬을 작성합니다.

deny-rules 전용 형식

---
id: deny-rules
description: "위험 명령어 차단"
section: "보안"
type: deny-rules
---

| 패턴 | 설명 |
|---|---|
| rm -rf* | 재귀 삭제 금지 |
| sudo * | 관리자 권한 금지 |

빌드 시 Claude는 CLAUDE.md에 텍스트로, Gemini/Codex는 settings.json에 JSON으로 변환됩니다.

에이전트 파일 작성법

---
id: my-agent                   # 고유 식별자
description: "에이전트 설명"
transform:
  claude: agent                # Claude: 서브에이전트로 생성
  gemini: section              # Gemini: 별도 파일 (on-demand Read)
  codex: section               # Codex: 별도 파일 (on-demand Read)
skills: [skill-a, skill-b]    # 참조할 스킬 id (선택)
---

에이전트의 상세 내용을 여기에 작성합니다.

skills 필드에 참조된 스킬은 Claude에서 스킬 폴더(dist/claude/skills/)로 자동 생성됩니다.

플랫폼별 동작 차이

| | Claude Code | Gemini CLI | Codex CLI | |---|---|---|---| | 배포 | 플러그인 | 파일 복사 | 파일 복사 | | 지시문 | CLAUDE.md (목차, ~1KB) | GEMINI.md (목차, ~3KB) | AGENTS.md (목차, ~3KB) | | 에이전트 | 런타임이 자동 로드 | AI가 Read로 on-demand 로드 | AI가 Read로 on-demand 로드 | | 스킬 | 런타임이 자동 로드 | AI가 Read로 on-demand 로드 | AI가 Read로 on-demand 로드 | | deny rules | CLAUDE.md 텍스트 | settings.json | config.json | | 업데이트 | 자동 (플러그인) | git pull + hook | git pull + hook |

프로젝트별 오버라이드

팀 공통 규칙 위에 프로젝트 고유 규칙을 추가하려면, 프로젝트 레포에 직접 배치:

my-project/
├── CLAUDE.md    # 프로젝트 전용 추가 지침
├── GEMINI.md
└── AGENTS.md

Claude Code는 홈 디렉토리 + 프로젝트 디렉토리의 CLAUDE.md를 자동 병합합니다.

Git Hooks

| Hook | 트리거 | 동작 | |---|---|---| | pre-commit | skills/, agents/, templates/ 변경 커밋 시 | npm run build:harness 후 dist/ 자동 스테이징 | | post-merge | git pull로 스킬/에이전트 변경 받을 시 | npm run sync 자동 실행 |

Related plugins

Browse all →