用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vsetchinfc/agistra.dev --skill scan-sys命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Universal guardrails loaded by every agent. Defines Verify Before Reporting (VBR), Write-Ahead Log (WAL), and the security baseline. Always-on, role-independent.
Conducts multi-axis code review. Use before merging any change. Use when reviewing code written by yourself, another agent, or a human. Use when you need to assess code quality across multiple dimensions before it enters the main branch.
Records decisions and documentation. Use when making architectural decisions, changing public APIs, shipping features, or when you need to record context that future engineers and agents will need to understand the codebase.
基于 SOC 职业分类
正在显示 SKILL.md
| name | scan-sys |
| description | Use when: analysing a project's architecture, structure, and infrastructure health from the System perspective. |
| argument-hint | Project directory, module, or area to assess |
Evaluates the structural and architectural health of a codebase. Assigns a score from 0.0 to 1.0 across three dimensions.
Complexity — Are individual files understandable?
Cohesion — Are responsibilities well-grouped?
Infrastructure — Is the project properly configured?
sys_score = (complexity + cohesion + infrastructure) / 3
Score interpretation:
| Finding | Priority |
|---|---|
| Source files > 300 lines (>3 files) | high |
| Source files > 300 lines (≤3 files) | medium |
| Directories > 20 source files | medium |
| tsconfig.json missing (TS project) | high |
When performing a manual SYS analysis:
strict: true is set; mark TypeScript N/A if no .ts files foundOutput: a ranked list of structural issues, each with the file or directory, the dimension it violates, and a recommended remediation.