Skip to main content
GeneralParslee-ai

neo-optimize

Ask Neo for optimization suggestions on a function, file, or hot path. Targets algorithmic improvements, redundant work, allocation/hot-loop issues — not micro-style.

Stars
12
Source
Parslee-ai/neo
Updated
2026-05-26
Slug
Parslee-ai--neo--neo-optimize
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/Parslee-ai/neo/HEAD/plugins/neo/skills/neo-optimize/SKILL.md -o .claude/skills/neo-optimize.md

Drops the SKILL.md into .claude/skills/neo-optimize.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

Neo Optimization Analysis

When the user invokes this skill ($neo-optimize <target>), do the following:

  1. Locate the target. It may be a function name (process_large_dataset), a file, or a description ("the user-search query path"). Use Grep/Read to find the actual implementation.

  2. Capture the current implementation plus its callers if you can do so cheaply. Neo can suggest better algorithms, but only if it sees how the code is used.

  3. Apply the provider boundary. Redact secrets, credentials, tokens, cookies, and session material. Before an external-provider call, tell the user which Neo provider will receive which files or data categories. Production, private, or customer code requires explicit authorization for that provider and scope.

  4. Invoke Neo with an optimization-framed prompt. Allow up to 5 minutes. Use Codex's approval flow for required network access, naming the provider and summarized data in the approval description.

    neo --json --no-scan --no-memory --mode advise <<'QUERY'
    Suggest optimizations for the following code. Focus on: algorithmic improvements (lower asymptotic complexity), redundant computation, allocation in hot loops, IO batching opportunities. Skip micro-style changes.
    
    <paste current implementation + relevant callers>
    QUERY
    
  5. Present Neo's suggestions ranked by expected impact. Each CodeSuggestion includes estimated_risk and blast_radius — surface those alongside the recommendation.

  6. For high-risk changes, recommend benchmarking before applying. Neo's confidence reflects pattern-match strength, not measured speedup.

--no-scan is mandatory: Codex already selected the implementation and callers, so Neo must not silently add working-directory files to the provider request. --no-memory is the default so unrelated stored facts cannot enter the provider prompt. Omit it only when the user explicitly authorizes relevant Neo memory; include stored facts as a disclosed data category.

Reading Neo's output

Invoke with --json. stdout is exactly one JSON document; stderr is JSONL progress events (parse lines starting with {, ignore the rest). Never parse the human-readable text output. On failure stdout is {"error": ...} with no orchestrator key — check for error first.

Lead with orchestrator.summary, surface every entry in orchestrator.cautions, and relay orchestrator.personality verbatim when present. Neo writes in the first person and his register shifts with how much he remembers about this project — keep his wording rather than translating it into yours. See the $neo skill for the full contract.

Attribute explicitly and keep going. You are calling Neo inside your own coding loop, so nothing marks where his reasoning ends and yours begins — say "Neo found …" and keep your own analysis in your own voice. His result is an input, not the deliverable: continue the task and report the combined outcome.

For optimization specifically: show the evidence for the bottleneck — the complexity argument or the code path Neo pointed at. An optimization claim with no evidence is a guess wearing a confidence score. State the expected impact and its basis; if Neo estimated rather than measured, say "estimated", because Neo never executes or benchmarks anything. Surface correctness risks especially — a faster wrong answer is a regression. Recommend measuring before and after.

Notes

  • Algorithmic suggestions tend to come back with high confidence when Neo has seen similar patterns before — that's the memory-driven reasoning effort kicking in.
  • If Neo returns "I cannot find evidence" or low-confidence-only output, that's a signal the optimization isn't obvious and warrants human investigation rather than blind application.