بنقرة واحدة
source-command-improve
Proactively discover and implement improvements
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Proactively discover and implement improvements
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
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.
استنادا إلى تصنيف SOC المهني
| 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.