Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Skills are shared capability modules. Runtime adapters should point to shared sk
Agent definitions are runtime-specific because model names, tool names, and frontmatter schemas differ:

- Copilot agents: `agents/*.md`
- Claude agents: `claude/agents/`
- Claude agents: `claude/agents/*.md`
- Codex agent templates: `codex/agent-templates/`

Logical roles are stable, but physical runtime names may differ:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ Combining all runtime agent definitions in one discovery path risks duplicate or
Runtime adapter files are separated by runtime while all shared skills remain under `plugins/coding-agent-orchestration-harness/skills/`.

- Copilot agents remain directly under `plugins/coding-agent-orchestration-harness/agents/` with their root `*.md` filenames.
- Claude agents live under `plugins/coding-agent-orchestration-harness/claude/agents/`.
- Claude agents live under `plugins/coding-agent-orchestration-harness/claude/agents/*.md`.
- Codex TOML files are stored as inert templates under `plugins/coding-agent-orchestration-harness/codex/agent-templates/` and are installed by bootstrap.

## Implementation Impact

- `.github/plugin/plugin.json` points to `./agents/` and `./skills/`.
- `.claude-plugin/plugin.json` points to `./claude/agents/` and `./skills/`.
- `.claude-plugin/plugin.json` lists the Claude agent Markdown files under `./claude/agents/` and points to `./skills/`.
- `.codex-plugin/plugin.json` points to `./skills/`; Codex agent installation is handled by bootstrap.

## Considered Options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
"harness",
"claude-code"
],
"agents": "./claude/agents/",
"agents": [
"./claude/agents/harness-orchestrator.md",
"./claude/agents/harness-researcher.md",
"./claude/agents/harness-worker.md",
"./claude/agents/harness-reviewer.md"
],
"skills": "./skills/"
}