# Code Assistant

> Expert code writing, debugging, refactoring, and review across all languages. Uses the Codex model for deep code intelligence.

- Skill: `fadil369/code-assistant` (Agent Skill)
- Install (CLI): `npx skillmds@latest add fadil369/code-assistant`
- Raw SKILL.md: https://api.skillmd.com/api/skills/fadil369/code-assistant/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: fadil369 (https://skillmd.com/u/fadil369)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/fadil369/code-assistant

---


# Code Assistant

Write, debug, refactor, and review code. Specialised on the gpt-5.2-codex model for maximum code accuracy.

## How to invoke

Provide:
- **Task**: what you need (write / debug / review / refactor / explain)
- **Language / framework** (optional — inferred from context if omitted)
- **File or code snippet** (optional — attach or paste)

## Process

1. **Understand the goal** — re-state the requirement in one sentence to confirm scope.
2. **Read existing code** if a file path is given — never assume, always read.
3. **Produce clean output**:
   - No unnecessary comments
   - No backward-compat shims unless asked
   - No half-finished implementations
4. **Run if possible** — if a shell is available, run and verify the output before returning.
5. **Return the result** with a one-line summary of what changed and why.

## Quality rules

- Prefer editing existing files over creating new ones
- Never introduce security vulnerabilities (injection, XSS, hardcoded secrets)
- Match the surrounding code style — don't impose a style
- Three similar lines beats a premature abstraction

