code-quality
Run comprehensive quality checks by orchestrating sub-skills.
Process
-
Identify context:
- If code changes are involved: run
jj diff -sfirst to see changed files; then usejj diff -- pathto restrict to specific files/directories - If the user specified specific files or paths, focus on those
- If code changes are involved: run
-
Run each of the following skills sequentially:
- Invoke 'code-review' skill (Full mode)
- Invoke 'code-verify' skill (Verify API usage against docs)
- Invoke 'code-test' skill (Run tests)
- Invoke 'code-lint' skill (Run linting)
-
Collect all findings
-
Consolidate findings into a single report
Output
- Summary - Overall code health assessment (including issue counts)
- Review Findings - From code-review (Critical, Quality, Security, Convention, Best Practices)
- Verification Findings - From code-verify (API mismatches or documentation issues)
- Test Results - From code-test (Test coverage, failures, and fixes)
- Lint Results - From code-lint (Auto-fixed summary and manual fix requirements)
- Action items - Prioritized list of fixes (Critical > High > Low)
More from sirn/dotfiles
code-commit
Commit current changes using jj. Analyzes changes, suggests commit messages following repository conventions, proposes splits if needed, and creates commits. Use ONLY when user explicitly asks to commit changes or create commits.
18gemini-reference
Reference for calling the Gemini CLI agent from other agents. ALWAYS read BEFORE invoking Gemini to ensure correct JSON protocol, session management, and subtask delegation patterns.
18context7
Retrieve up-to-date documentation context for libraries using the Context7 API. Use when needing current library documentation (React, Python stdlib, Rust, etc.) BEFORE implementing or writing code.
17code-setup-project
Sets up project development environment (wrapper scripts and/or Nix flake). Use when user wants to set up a development environment, create wrapper scripts, or add a Nix flake.
17code-debug
Debug issues by researching errors and proposing minimal fixes. Use when user asks to troubleshoot or debug a failure.
17code-generate-document
Generate documentation, docstrings, or ADRs. Use when asked to document code or create decision records.
17