compare-implementation-paths

A guide for comparing practical implementation paths that could achieve the same engineering goal. It examines migration shape, ownership, testing, rollout, rollback, and future maintenance.

In plain words
What is it for?
Use it to compare incremental refactoring with a rewrite, a frontend-heavy approach with a backend-heavy one, or a service split with extending a monolith.
Why use it?
It exposes the real delivery and migration costs behind choices such as rewriting, splitting services, or adding an abstraction. It helps match a path to uncertainty and operational risk.

Skill for Claude CodeCodex

Part of the decision-simulator plugin — 4 skills, 1 agent shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/echoo19/decision-simulator/compare-implementation-paths
Any agent
npx skills add echoo19/decision-simulator --skill compare-implementation-paths
Clone the repo
git clone --depth 1 https://github.com/echoo19/decision-simulator

Made for: Claude Code, Codex.

Or install decision-simulator, the plugin that ships this one along with the rest of its 4 skills, 1 agent.

Per session 83 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 438 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00083 $0.00438
Opus 5 $0.00042 $0.00219
Sonnet 5 $0.00017 $0.00088
Haiku 4.5 $0.00008 $0.00044

Measured 2d ago against content hash 877f35e095fc, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

compare-implementation-paths scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/decision-simulator/skills/compare-implementation-paths/SKILL.md · 60 lines

What it actually says

Compare Implementation Paths

Compare plausible ways to achieve the same outcome. Focus on execution reality, not architecture theater.

Method

  1. State the shared goal first.
  2. Define the implementation paths as concrete execution strategies.
  3. Compare how each path changes delivery risk, code ownership, testing scope, rollback safety, and future evolution.
  4. Explain when each path is better, not just what each path is.
  5. Highlight migration shape: one-shot cutover, incremental adoption, dual-running, or compatibility layer.

Practical Lenses

Use the lenses that matter here:

  • where complexity lands
  • who owns the code after launch
  • how hard the rollout and rollback are
  • how much temporary glue code is required
  • how much new surface area must be tested
  • how observable failures will be
  • whether the path creates a trap that is expensive to unwind later

Quality Bar

  • Do not confuse conceptual elegance with delivery fitness.
  • Penalize paths that look clean on paper but create migration or coordination pain.
  • Reward incremental paths when uncertainty is high and rollback matters.
  • Reward direct paths when the extra abstraction buys little and will linger forever.

Suggested Output

Goal

State the desired outcome.

Paths

List the practical implementation paths.

Where each path wins

Explain the contexts where each path is the right choice.

Operational implications

For each path, cover rollout, rollback, debugging, testing, and ownership consequences.

Include a Reversibility rating per path — High, Medium, or Low — with one sentence on what makes rollback difficult or straightforward.

Recommendation

Recommend the path that best fits the current constraints and explain the trigger for switching paths later.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 60 lines · 83 tokens per session scan A 877f35e095fc

Subscribe to this mod's changes

compare-implementation-paths is a skill published in the GitHub repository echoo19/decision-simulator (4 stars, last pushed 3mo ago), licensed MIT. It adds 83 tokens to every session and 438 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

obra/superpowers · 37 tokens

auto-perf-optimize

Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.

microsoft/vscode · 62 tokens

chat-perf

Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.

microsoft/vscode · 51 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens