원클릭으로
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>