with one click
source-command-improve
Proactively discover and implement improvements
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Proactively discover and implement improvements
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Abuse prevention - rate limiting, moderation, bad actors. Use when fighting abuse.
Account security - MFA, sessions, recovery. Use when protecting user accounts.
Admin panel - RBAC, config, admin tools. Use when building admin UI.
Application security - OWASP, validation, secrets. Use when securing the app.
Authentication patterns - sign-in, SSO, passkeys, sessions. Use when implementing auth flows.
Billing - Stripe, webhooks, subscriptions. Use when implementing payments.
| name | source-command-improve |
| description | Proactively discover and implement improvements |
Use this skill when the user asks to run the migrated source command improve.
Analyze project comprehensively. Discover improvement opportunities. Prioritize and execute.
Code Quality:
Architecture:
Performance:
Security:
Developer Experience:
Maintenance:
Features:
Impact vs Effort:
Categories:
For each improvement:
Then execute top priorities:
## Improvement Opportunities
### Critical (Do Now)
1. [Security] Update vulnerable dependency X (CVE-XXXX)
- Impact: High (prevents exploit)
- Effort: Low (5 min)
- Action: `npm update X`
### High Priority
1. [Performance] Optimize user query (N+1 problem)
- Impact: High (10x speedup)
- Effort: Medium (2 hrs)
- Action: Batch queries with JOIN
### Quick Wins
1. [DX] Add pre-commit hooks
- Impact: Medium (catch errors early)
- Effort: Low (30 min)
- Action: Setup husky + lint-staged
### Planned Improvements
1. [Feature] Add caching layer
- Impact: High (reduce server load)
- Effort: High (1 week)
- Action: Design cache strategy, implement Redis
## Execution Plan
1. Fix security vulnerability (now)
2. Optimize query performance (today)
3. Add pre-commit hooks (today)
4. Plan caching implementation (next sprint)
Report: Improvements discovered, implemented, impact metrics.