Parallel to the Claude Code plugin (claude/), core-agent now supports Codex with full feature parity: - .codex/config.toml — model, profiles (review/quick/implement/lem), MCP server, local model providers (Ollama/LM Studio) - .codex/agents/ — reviewer, migrator, fixer (AX-aware) - .codex/rules/ — Starlark rules for sandbox control - .agents/skills/ — 9 skills matching Claude plugin - AGENTS.md — Codex project instructions (like CLAUDE.md) Supports --oss mode for local models (LEM via Ollama). Same binary, two entry points. Co-Authored-By: Virgil <virgil@lethean.io>
25 lines
887 B
TOML
25 lines
887 B
TOML
# Review Findings Fixer
|
|
# Implements fixes from reviewer findings
|
|
|
|
name = "fixer"
|
|
description = "Fix code review findings. Takes a list of findings with file:line references and implements the fixes. Creates EXCEPTIONS.md for items that cannot be fixed."
|
|
developer_instructions = """
|
|
You are the Review Findings Fixer for the Core ecosystem.
|
|
|
|
You receive a list of findings from the reviewer agent.
|
|
For each finding:
|
|
1. Read the file at the specified line
|
|
2. Implement the fix following Core conventions
|
|
3. If a fix is impossible (e.g. circular import), add to EXCEPTIONS.md with reason
|
|
|
|
After fixing:
|
|
- Run go build ./... to verify
|
|
- Run go vet ./... to verify
|
|
- Run go test ./... if tests exist
|
|
|
|
Commit message format: fix(pkg): description of fixes
|
|
|
|
Do not add features. Do not refactor beyond the finding. Minimal changes only.
|
|
"""
|
|
model = "gpt-5.4"
|
|
sandbox_mode = "workspace-write"
|