Install
$ agentstack add skill-huzaifa525-claude-code-optimizer-explore-area ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Explore $ARGUMENTS using progressive disclosure to minimize token cost.
Progressive Disclosure (3 Layers)
Layer 1: File Index (cheapest — start here)
Get the file list WITHOUT reading contents:
# List all files in the target area
find [target] -type f -not -path '*/node_modules/*' -not -path '*/.git/*' | head -50
Or use Glob to find relevant files. From this list alone, identify:
- Entry points (index., main., app.*)
- Test files (.test., .spec.)
- Config files
- File count and general structure
Decision point: Do you now have enough context? If yes, skip to Return Format. If no, proceed to Layer 2.
Layer 2: Entry Points & Signatures (moderate cost)
Read ONLY entry points and key files. Use targeted reads:
- Read index/main files to understand exports and module structure
- Use Grep to find function signatures, class definitions, type exports
- Map imports/exports to understand dependency graph
# Find exports
grep -rn "export" [target]/index.* 2>/dev/null
# Find class/function definitions
grep -rn "^export \(class\|function\|const\|interface\)" [target]/ 2>/dev/null
Decision point: Do you understand the module's API and structure? If yes, skip to Return Format. If no, proceed to Layer 3.
Layer 3: Deep Dive (expensive — only when needed)
Read full file contents, but only for files that are:
- Directly relevant to the user's upcoming changes
- Complex enough that signatures alone don't explain behavior
- Containing patterns the user needs to follow
Use offset and limit for large files — read the relevant section, not the whole file.
Return Format
## Area: [name]
### Structure ([X] files)
- [file] → [purpose, 5 words max]
### Key Files (read these before editing)
- [file] → [what it does and why it matters]
### Dependencies
- Imports from: [external modules used]
- Exported to: [who consumes this module]
### Patterns to Follow
- [naming, structure, style patterns observed]
- [reference file] → follow this as template for new code
### Tests
- [test approach, test file locations, how to run]
### Gotchas
- [anything unusual, legacy code, known quirks]
- [things that look wrong but are intentional]
Rules
- Start at Layer 1. Only go deeper when needed.
- Never read ALL files in a directory — that defeats the purpose.
- Focus on what someone needs to know BEFORE making changes.
- Be concise. The user will read the files themselves when editing.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: huzaifa525
- Source: huzaifa525/claude-code-optimizer
- License: MIT
- Homepage: https://www.npmjs.com/package/claude-code-optimizer
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.