ワンクリックで
refactor
Scan the project for refactoring opportunities, then fix them. No behavior/visual changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Scan the project for refactoring opportunities, then fix them. No behavior/visual changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Bump version, generate changelog draft, tag, and deploy a release.
Create a feature branch, commit changes, push, and open a PR to main.
Check docs/ai/ spec files and ADRs for inconsistencies with the actual codebase. Report only, no modifications.
Check docs/ai/ spec files and ADRs for inconsistencies with the codebase, then fix all discrepancies.
Scan the codebase for security vulnerabilities. Check OWASP top 10, input validation, auth, crypto, and known BACKLOG security items.
Create a new Architecture Decision Record (ADR) for a proposed feature or design change.
| name | refactor |
| description | Scan the project for refactoring opportunities, then fix them. No behavior/visual changes. |
Identify and fix code quality issues across the project without changing behavior, visuals, or public API.
pnpm check after all changes to verify no type errors were introducedLaunch an Explore agent to scan src/ for issues in these categories:
.svelte files > 300 lines that mix unrelated concerns and could be split (skip files with a // NOTE: Large file by design comment — these have been reviewed and deemed unsplittable)$state that duplicates or could be $derived from other stateSkip lines marked with // REFACTOR-OK: <reason> — these have been reviewed and intentionally kept as-is.
Output a numbered list of findings with file paths and line numbers, sorted by severity (high → low). Do NOT fix anything yet.
Present the findings list to the user. Ask which items to fix (e.g. "all", specific numbers, or "skip"). Wait for the user to respond before proceeding.
Fix only approved items, one at a time. After all fixes, run pnpm check to verify.
Briefly summarize what was changed.