ワンクリックで
commit
Workflow for committing code with comprehensive validation from linting to deployment
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Workflow for committing code with comprehensive validation from linting to deployment
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 API development and modification with strict checks from design to deployment
Workflow for creating and submitting bug reports to GitHub
Strict bug fix workflow from root cause analysis to deployment and regression testing
| name | commit |
| description | Workflow for committing code with comprehensive validation from linting to deployment |
Use this when committing and pushing code changes across any service (core-api, console, worker). Runs validation checks before committing to ensure code quality.
.gitignoregit status to review staged and unstaged changescd core-api && npm run lint
cd core-api && npm run test
Requirements: 0 errors, 0 warnings, 100% tests pass, 80%+ coverage.
cd console && npm run lint
cd console && npm run typecheck
cd console && npm run test
Requirements: 0 errors, 0 warnings.
task worker:format && task worker:lint
cd worker && go test ./...
Requirements: go fmt passes, go vet 0 issues, 100% tests pass.
cd core-api && npm run build
cd console && npm run build
task worker:check
Requirements: all builds pass with 0 errors.
If API changes were made in core-api:
task console:gen-api
Follow Conventional Commits: type(scope): description
Closes # or Fixes #Examples:
feat(core-api): add target service history endpoint
fix(console): resolve dashboard loading state
chore(deps): update NestJS to v10
git add <files>
git commit -m "<message>"
git push origin <current-branch>
For new branches: git push -u origin <current-branch>