fe-quality — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited fe-quality (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
前端质量保障的四大支柱:安全防护、错误监控、自动化流水线、无障碍合规。
对任意前端项目执行质量快速扫描:
# 1. 依赖安全审计
pnpm audit --production
# 2. 代码规范检查
npx eslint . --ext .ts,.tsx,.vue,.js
# 3. 无障碍检查(需安装 axe-core CLI)
npx @axe-core/cli http://localhost:3000
# 4. Lighthouse 综合审计
npx lighthouse http://localhost:3000 --output html --output-path report.html根据具体需求选择对应参考文档:
| 场景 | 参考文档 | 典型触发 |
|---|---|---|
| XSS 防御、CSP 配置、依赖漏洞 | security.md | "加固安全"、"配置 CSP"、"审计依赖" |
| Sentry 接入、自研监控、Error Boundary | error-monitoring.md | "接入 Sentry"、"错误上报"、"监控" |
| CI/CD 搭建、Preview Deploy、Lighthouse CI | cicd-pipeline.md | "搭建流水线"、"自动部署"、"CI" |
| WCAG 合规、ARIA 标注、键盘导航 | accessibility.md | "无障碍"、"a11y"、"屏幕阅读器" |
按风险等级排序处理:
pnpm audit、依赖检查~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.