code-yeongyu

Src/agents/ — 11 Agent Definitions — Development agent for Claude Code

Development community intermediate

Generated: 2026-04-11.

How to install Src/agents/ — 11 Agent Definitions

This entry records only its repository, not the path inside it, so there is no exact command to give. Open code-yeongyu/oh-my-openagent and copy the folder into ~/.claude/agents/.

What Src/agents/ — 11 Agent Definitions does

Generated: 2026-04-11.

Alternatives in Development

  • Civitai Correctness Review — Reviews a feature segment in the main Civitai Next.js app (src/) for safety gaps — authorization scoping, mone 7.2k ★
  • CLI Developer — GAIA CLI development specialist 1.5k ★
  • Geometry Change — Use when modifying the keyboard rendering pipeline — the files src/lib/worker/geometry.ts, src/lib/worker/cach 662 ★

README

src/agents/ — 11 Agent Definitions

**Generated:** 2026-04-11

OVERVIEW

Agent factories following `createXXXAgent(model) → AgentConfig` pattern. Each has static `mode` property. Built via `buildAgent()` compositing factory + categories + skills.

AGENT INVENTORY

Agent Model Temp Mode Fallback Chain Purpose
Sisyphus claude-opus-4-7 max 0.1 all k2p5 -> kimi-k2.5 -> gpt-5.4 medium -> glm-5 -> big-pickle Main orchestrator, plans + delegates
Hephaestus gpt-5.4 medium 0.1 all Autonomous deep worker
Oracle gpt-5.4 high 0.1 subagent gemini-3.1-pro high -> claude-opus-4-7 max Read-only consultation
Librarian minimax-m2.7 0.1 subagent minimax-m2.7-highspeed -> claude-haiku-4-5 -> gpt-5-nano External docs/code search
Explore grok-code-fast-1 0.1 subagent minimax-m2.7-highspeed -> minimax-m2.7 -> claude-haiku-4-5 -> gpt-5-nano Contextual grep
Multimodal-Looker gpt-5.3-codex medium 0.1 subagent k2p5 -> gemini-3-flash -> glm-4.6v -> gpt-5-nano PDF/image analysis
Metis claude-opus-4-7 max 0.3 subagent gpt-5.4 high -> gemini-3.1-pro high Pre-planning consultant
Momus gpt-5.4 xhigh 0.1 subagent claude-opus-4-7 max -> gemini-3.1-pro high Plan reviewer
Atlas claude-sonnet-4-6 0.1 primary gpt-5.4 medium Todo-list orchestrator
Prometheus claude-opus-4-7 max 0.1 internal planner Strategic planner (internal)
Sisyphus-Junior claude-sonnet-4-6 0.1 all user-configurable Category-spawned executor

TOOL RESTRICTIONS

Agent Denied Tools
Oracle write, edit, task, call_omo_agent
Librarian write, edit, task, call_omo_agent
Explore write, edit, task, call_omo_agent
Multimodal-Looker ALL except read
Atlas task, call_omo_agent
Momus write, edit, task

STRUCTURE

agents/
├── sisyphus.ts            # 559 LOC, main orchestrator
├── hephaestus.ts          # 507 LOC, autonomous worker
├── oracle.ts              # Read-only consultant
├── librarian.ts           # External search
├── explore.ts             # Codebase grep
├── multimodal-looker.ts   # Vision/PDF
├── metis.ts               # Pre-planning
├── momus.ts               # Plan review
├── atlas/agent.ts         # Todo orchestrator
├── types.ts               # AgentFactory, AgentMode
├── agent-builder.ts       # buildAgent() composition
├── utils.ts               # Agent utilities
├── builtin-agents.ts      # createBuiltinAgents() registry
├── dynamic-agent-prompt-builder.ts    # Dynamic prompt builder system
├── dynamic-agent-core-sections.ts   # Core prompt sections
├── dynamic-agent-policy-sections.ts # Policy prompt sections
├── dynamic-agent-tool-categorization.ts # Tool categorization
├── dynamic-agent-category-skills-guide.ts # Category skills guide
├── custom-agent