用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vsetchinfc/agistra.dev --skill scan-anl命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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-anl |
| description | Use when: analysing a project's delivery health — CI/CD, commit patterns, and working tree state. |
| argument-hint | Project directory or recent git history to assess |
Evaluates the delivery and process health of a project by analysing CI/CD automation, commit patterns, and working tree state. Assigns a score from 0.0 to 1.0 across five dimensions.
CI/CD — Is there automated validation, and is it meaningful?
gh run list --limit 1 --json conclusion --jq '.[0].conclusion'gh is unavailable, mark as 'unknown' and score 0.5Commit quality — Does the commit history signal healthy development?
Working tree — Is the branch clean?
Commit message quality — Are commit messages informative?
Test automation — Are tests integrated into the delivery pipeline?
anl_score = (ci_score + commit_quality + clean + msg_quality + test_automation) / 5
Score interpretation:
| Finding | Priority |
|---|---|
| No CI/CD pipeline | medium |
| CI pipeline present but missing test step | medium |
| Fix rate > 50% in last 20 commits | medium |
| Uncommitted changes in working tree | medium |
| >40% vague commit messages in last 20 commits | low |
| Tests exist but not run in CI | medium |
| No test suite found | medium |
When performing a manual ANL analysis:
gh run list --limit 1 --json conclusion --jq '.[0].conclusion' for automated status check. If gh is unavailable, mark as 'unknown' and score 0.5.git log -20 --oneline — classify each commit: first check for conventional-commit prefixes (fix:, bugfix:, hotfix: for fixes; feat: for features; chore:, refactor:, docs: for other categories); if no prefix is present, apply keyword fallback (look for fix, feature, add, remove, update, refactor in message); as last resort, use subjective inference from the message content.git status — note any uncommitted changes and their age (stash date)Output: a delivery health assessment with the fix rate, commit message quality ratio, test automation status, and specific automation gaps.