Skill Claude CodeCodex
Transfer files between local and server. Guide user through SCP or upload methods.
Skill Claude CodeCodex
Transfer files between local and server. Guide user through SCP or upload methods.
Skill Claude CodeCodex
Auto-fix bugs. Observe symptom, find root cause, apply minimal fix, verify, explain in human terms.
Skill Claude CodeCodex
After fixing a bug, explain what went wrong in language the user understands. No jargon for beginners.
Skill Claude CodeCodex
Guide user through errors they see. Translate error messages to human language.
Skill Claude CodeCodex
Step 1 of debugging: observe the symptom carefully before jumping to conclusions.
Skill Claude CodeCodex
Step 2 of debugging: reason about root cause based on observed symptoms.
Skill Claude CodeCodex
Step 3 of debugging: apply minimal fix. One-liner ideal. Verify nothing else broke.
Skill Claude CodeCodex
Full project review from beginning. Check every file. Plain language report.
Skill Claude CodeCodex
Final go-live checklist. Is it accessible? SSL working? Mobile friendly? Show user their live URL.
Skill Claude CodeCodex
Decide when AutoCode acts on its own and when it must stop and ask the user. Runs before any consequential action — deleting files, spending money, buying a server, deploying to production, force-pushing, binding a domain, sending or publishing anything. Ordinary reversible work proceeds silently; only costly or…
Skill Claude CodeCodex
Record mistakes. Check before similar builds. Avoid repeating silently.
Skill Claude CodeCodex
Detect recurring patterns in user's project. Apply automatically next time.
Skill Claude CodeCodex
Learn user's preferences over time. Code style, naming, structure. Save to global prefs.
Skill Claude CodeCodex
Persistent memory across sessions. Save project state and user preferences. Never save secrets.
Skill Claude CodeCodex
Track project milestones. Auto-detect when a significant checkpoint is reached.
Skill Claude CodeCodex
Help user work from multiple devices. Sync project via git.
Skill Claude CodeCodex
Optimize for speed and cost. Pick lightweight solutions. Flag expensive operations.
Skill Claude CodeCodex
Break complex tasks into 5-15 ordered steps with time estimates. Dependency order first.
Skill Claude CodeCodex
Give realistic time and cost estimates for each step. Explain in human terms.
Skill Claude CodeCodex
Decide what to build first. Core function before polish. Revenue before aesthetics.
Skill Claude CodeCodex
Identify risks before building. Flag third-party dependencies, API limits, and cost traps.
Skill Claude CodeCodex
Report progress after each feature. Percentage, what just completed, what comes next.
Skill Claude CodeCodex
Create a visual roadmap for large projects. Phases, milestones, timeline.
Skill Claude CodeCodex
Lock confirmed requirements. Don't change them without user approval.