Plugin Claude Code
Plugin marketplace listing 1 plugin: coral.
Plugin Claude Code
Plugin marketplace listing 1 plugin: coral.
Skill Claude CodeCodex
Verify and debug changes to CORAL itself — smallest reproduce loop per area (grader / daemon / CLI / hooks / manager / workspace / hub / template / config / web), where to look when something breaks (hung graders, agent restart loops, stalled agents, missing heartbeat actions, corrupted shared state, broken worktree…
Skill Claude CodeCodex
Add a new component to the CORAL framework itself — a new agent runtime under coral/agent/builtin/ (claudecode/codex/cursoragent style), a new CLI command in coral/cli/, a new bundled skill or subagent template under coral/template/skills/ or coral/template/agents/, a new hook in coral/hooks/, a new field in…
Skill Claude CodeCodex
End-to-end recipe for adding a new task under examples/ — the three pieces that have to line up (task.yaml, seed/, and grader/), what to put in each, the TaskGrader API surface, the coral validate → smoke-test loop, and the common mistakes (repopath pointing at the wrong dir, score direction backwards, hidden answer…
Skill Claude CodeCodex
Use when preparing, reviewing, resolving conflicts for, or merging a CORAL release pull request from the long-lived dev branch into main.
Instructions file CodexOpenCode
Instructions for Human-Agent-Society/CORAL, covering agents.md — ai-assisted contributions to coral, 1. human accountability, 2. scope discipline, 3. duplicate-work checks and 4. keep agent guidance synchronized.
Instructions file
Instructions for Human-Agent-Society/CORAL, covering coral, project overview, directory structure, how it works and tech stack.
Agent
Deep researcher — spawn to conduct thorough web research on the problem domain, save raw sources, and write structured findings. Use proactively when starting a new task, when scores plateau, or when the team needs fresh ideas from literature.
Agent
Knowledge librarian — spawn to organize notes, deduplicate findings, and consolidate reusable patterns into skills. Use proactively when the notes directory has grown large, contains duplicates, or is hard to navigate.
Skill Claude CodeCodex
Write a note to {shareddir}/notes/ that future agents can actually act on. Use after every coral eval, when a heartbeat (reflect / consolidate / pivot) asks for a note, or when you discover a grader / build / runtime issue that future agents will hit. Covers 4 note variants (experiment / infra / focus / synthesis)…
Skill Claude CodeCodex
Research the problem domain before coding. Web search for techniques, save raw sources, write structured findings, update the index.
Agent
Verify that every claim in a research note is grounded in its linked raw sources.
Skill Claude CodeCodex
Organize the shared notes directory when it becomes hard to navigate. Restructure within research/ and experiments/, deduplicate, update index.md.
Agent
Decide what to do with two notes flagged as near-duplicates — without knowing which is which.
Skill Claude CodeCodex
Autonomously create, test, and optimize skills by detecting reusable patterns in your own work. Use when you notice repeated tool sequences, recurring code patterns across attempts, or insights that should be captured as a packaged skill. Also use to benchmark and iterate on existing skills.
Agent
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
Agent
Compare two outputs WITHOUT knowing which skill produced them.
Agent
Evaluate expectations against an execution transcript and outputs.
Plugin Claude Code
Author and run CORAL tasks from your own harness. Teaches the coral CLI workflow (init/validate, start/status/resume/log/show) and checks coral is installed on session start.
Agent
Use this subagent to diagnose a CORAL run that's misbehaving — agents restarting, every eval failing, the score plateaued, or "is this run healthy?". It reads coral status / coral log / coral show / notes, identifies the pathology, and returns a ranked set of concrete fixes (fix the grader, resume with an instruction…
Agent
Use this subagent to turn "optimize / speed up / improve this with CORAL" into a working CORAL task. Give it the code (or just a repo and a rough goal) and it acts immediately — explores the repo to infer the optimization target, scaffolds a .coralworkspace/, writes the grader, and iterates coral validate until the…
Hook
Runs when a session starts on startup, resume, clear and compact, executing session-start.py via python3. From Human-Agent-Society/CORAL.
Skill Claude CodeCodex
The fast path from zero to a running CORAL experiment — what CORAL is and when to reach for it, installing the coral CLI, registering a runtime with coral setup, and the .coralworkspace/ convention for pointing CORAL at code you already have and want optimized. Use this whenever the user asks "what is coral", "should…
Skill Claude CodeCodex
Author a new CORAL task — the three pieces that must line up (task.yaml, seed/, a packaged grader/), the coral init → coral validate → smoke-test loop, and how to pick a grader pattern (stdout float, test pass-rate, ratio-vs-baseline, multi-metric, or an LLM rubric judge). Use whenever the user wants to create a CORAL…