一键导入
lint
Workflow for running and fixing linting across all project modules
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Workflow for running and fixing linting across all project modules
用 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 | lint |
| description | Workflow for running and fixing linting across all project modules |
Use this when you need to run linting and formatting across the entire project, or when fixing lint errors in any service (core-api, console, worker).
cd core-api && npm run lint
The lint script includes --fix. Fix any remaining errors manually.
Checkpoint: 0 errors.
cd console && npm run lint -- --fix
Fix remaining errors manually.
Checkpoint: 0 errors.
cd worker && cargo fmt
cd worker && cargo clippy -- -D warnings
Fix Clippy warnings manually to adhere to Rust best practices.
Checkpoint: 0 warnings/errors.
task lint
All modules must pass linting without errors.