Skill & Bundle-Plugin Optimizer (bundles-forge optimizing)
An orchestrator that diagnoses a Claude Code skill or bundle-plugin and improves its triggering description, token cost, workflow chain and security findings step by step.
Dev & CodingAdvanced★ 230⑂ 14AI score 7/10Last updated: Apr 27, 2026
What it does
- Normalizes the target (local path, GitHub URL, or zip) into a safe working directory, then auto-detects scope: whole project vs. a single skill.
- Runs the audit tooling (
bundles-forge audit-skill / audit-security / audit-workflow) and routes findings into 7 optimization targets: description triggering, content/token layout, workflow chain integrity, security remediation, restructuring, optional components, and deprecation/migration. - Classifies every action as FIX (defect repair), DERIVED (enhancement), or CAPTURED (new skill for a capability gap), then delegates the actual edits to
bundles-forge:authoringwith a section-level change spec instead of a vague "improve this". - Runs A/B evals (original vs. optimized) when a change could regress trigger rate or output quality, and closes with a single re-audit verification pass.
- Gates user feedback behind a 3-question validation framework (goal alignment, necessity, side effects) plus explicit user confirmation.
Who it's for
- Authors who build and maintain multi-skill bundle-plugins for Claude Code.
- Anyone whose skills fire at the wrong time (or never fire) and need better descriptions.
- Anyone with a bloated SKILL.md who needs principled rules for extracting to
references/. - Existing users of the bundles-forge toolchain (CLI + auditing/authoring/scaffolding skills).
Examples
- "Review and improve this whole plugin" → audits, finds three descriptions over 250 chars that merely summarize workflow, drafts replacements, A/B compares trigger accuracy, applies.
- "This SKILL.md is 700 lines" → auto-switches to single-skill mode, produces a move spec for platform-specific sections into
references/platform-details.md, hands it to authoring. - "The skill triggered but skipped step 3" → feedback iteration: 3-question validation, user approval, edits made on a
-optimizedcopy, A/B against the original before adoption.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/OdradekAI/bundles-forge/HEAD/skills/optimizing/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/optimizing folder from the GitHub repo OdradekAI/bundles-forge into my ~/.claude/skills/optimizing/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/OdradekAI/bundles-forge.git && mkdir -p ~/.claude/skills && cp -r bundles-forge/skills/optimizing ~/.claude/skills/optimizing⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal in your working folder.
- Clone the repository:
git clone https://github.com/OdradekAI/bundles-forge.git - Create the skills directory:
mkdir -p ~/.claude/skills - Copy this skill:
cp -r bundles-forge/skills/optimizing ~/.claude/skills/optimizing - Important: it depends on sibling skills, so copy them all:
cp -r bundles-forge/skills/* ~/.claude/skills/(auditing, authoring, scaffolding, etc.). - Install the
bundles-forgeCLI per the repo README — thebundles-forge audit-skill ...commands must actually run. - Restart Claude Code and try a request like "optimize this skill's triggering description".
- Tip: commit the target project to git first so any edits are easy to roll back.
View source on GitHub ↗License: Apache-2.0