
Stop writing the same instructions over and over. This pack gives you battle-tested, production-grade configurations for every major AI coding tool.
**What's Inside:**
**Claude Code (2 Skills)**
• Code Review Pro — 4-phase security + performance + quality audit with APPROVE/BLOCK verdicts
• TDD Workflow — Enforced Red-Green-Refactor cycle with idiomatic test patterns for Jest, Pytest, Go, Rust
**OpenAI Codex (AGENTS.md)**
• Full-stack development agent with schema-first DB design, REST API contracts, and frontend component architecture
**Gemini CLI (GEMINI.md)**
• Project-aware code generation that reads your manifests, matches your naming conventions, and generates code that looks like your team wrote it
**Jules (config.yaml)**
• Automated issue resolution with triage rules, safety guardrails, protected file lists, and blocked dependency patterns (supply chain attack prevention)
Each configuration is 150-400 lines of detailed, tested instructions. No generic placeholder text — these are real workflows refined over months of daily use.
--- Sample Output ---
Code Review Pro (/code-review-pro):
═══ CODE REVIEW: src/api/auth/login.ts ═══
Phase 1: Security Scan
🔴 CRITICAL Line 45: SQL injection risk
db.query(`SELECT * FROM users WHERE email = '${email}'`)
→ Fix: Use parameterized query
🟡 WARNING Line 23: Hardcoded JWT secret
→ Fix: Use environment variable
Phase 2: Performance Audit
🟡 WARNING Line 38: N+1 query inside loop
→ Fix: Batch query with WHERE IN (...)
Phase 3: Code Quality
🟡 WARNING Line 12: Function 89 lines long
→ Extract into smaller functions
Phase 4: Verdict
❌ REQUEST_CHANGES
Critical: 1 | Warning: 3 | Passed: 4
TDD Workflow (/tdd-workflow):
🔴 RED — Writing failing test...
it('should create user with hashed password')
❌ Test FAILED: registerUser is not defined
✅ Fails for the right reason → Moving to GREEN
🟢 GREEN — Minimal implementation...
export async function registerUser({ email, password }) { ... }
✅ Test PASSED
🔵 REFACTOR — Improving while green...
• Added input validation
• Extracted password hashing to utility
✅ All tests still passing (3/3)
Coverage: 94%
Codex Full-Stack Agent:
Step 1/4: Database Schema
✅ Migration: 20260323_add_user_profiles.sql
Step 2/4: API Endpoints
✅ GET /api/profiles/:id
✅ PUT /api/profiles/:id
Step 3/4: Frontend Components
✅ ProfileCard.tsx, ProfileForm.tsx, AvatarUpload.tsx
Step 4/4: Integration Checklist ✅ All passed
Tags
claude-codecodexgeminijulesai-codingskillsdeveloper-tools
Compatibility
Claude CodeOpenAI CodexGemini CLIJules
Reviews (0)
No reviews yet. Be the first to review!