Expand toolkit to 135 agents, 120 plugins, 796 total files

- Add 60 new agents across all 10 categories (75 -> 135)
- Add 95 new plugins with command files (25 -> 120)
- Update all agents to use model: opus
- Update README with complete plugin/agent tables
- Update marketplace.json with all 120 plugins
This commit is contained in:
Rohit Ghumare
2026-02-04 21:08:28 +00:00
parent 79573df7cb
commit c3f43d8b61
540 changed files with 22594 additions and 281 deletions

View File

@@ -0,0 +1,6 @@
{
"name": "optimize",
"version": "1.0.0",
"description": "Code optimization for performance and bundle size reduction",
"commands": ["commands/optimize-perf.md", "commands/optimize-size.md"]
}

View File

@@ -0,0 +1,29 @@
Analyze and optimize code for runtime performance with measurable improvements.
## Steps
1. Identify the performance target:
2. Profile the code:
3. Analyze common performance issues:
4. Apply optimizations in order of impact:
5. Measure the improvement after each optimization.
6. Document the trade-offs of each optimization.
## Format
```
Target: <what was optimized>
Before: <baseline metric>
After: <improved metric>
Improvement: <percentage>
```
## Rules
- Always measure before and after; never optimize without data.
- Fix the biggest bottleneck first (Amdahl's Law).
- Do not sacrifice readability for marginal gains.

View File

@@ -0,0 +1,29 @@
Analyze and reduce code bundle size, dependency bloat, and binary footprint.
## Steps
1. Measure the current size:
2. Identify the largest contributors:
3. Apply size reduction strategies:
4. Optimize assets:
5. Configure build optimizations:
6. Measure the result and compare against the baseline.
## Format
```
Before: <size>
After: <size>
Reduction: <percentage>
Changes:
```
## Rules
- Measure before and after with the same build configuration.
- Do not remove dependencies that are actually used at runtime.
- Verify functionality after removing or replacing dependencies.