ワンクリックで
bugfix
Strict bug fix workflow from root cause analysis to deployment and regression testing
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Strict bug fix workflow from root cause analysis to deployment and regression testing
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Execute security scanning commands on remote worker agents. Use when you need to run CLI tools like nmap, subfinder, httpx, nuclei, or any shell command on worker nodes.
Perform deep analysis of CVEs and security vulnerabilities including CVSS scoring, affected versions, exploit maturity, and remediation steps. Use when the user needs detailed vulnerability intelligence.
Perform web research using CVE databases, security advisories, and threat intelligence sources. Use when the user asks about CVEs, security news, vulnerabilities, patch releases, or any external security information not available in the workspace.
Workflow for committing code with comprehensive validation from linting to deployment
Workflow for API development and modification with strict checks from design to deployment
Workflow for creating and submitting bug reports to GitHub
| name | bugfix |
| description | Strict bug fix workflow from root cause analysis to deployment and regression testing |
Use this when fixing any bug in the codebase. The process ensures root cause analysis before implementation, proper test coverage, and regression verification.
# Backend
cd core-api && npx eslint src/path/to/modified/files.ts
# Frontend
cd console && npx eslint src/path/to/modified/files.tsx
Zero errors, zero warnings.
# Backend
cd core-api && npm run test
# Frontend
cd console && npm run test
Also manually test affected functionality if applicable.
English comments only for non-obvious logic or complex edge cases. No unnecessary comments.