Back to list
RoninRage

run-quality-gates

by RoninRage

0🍴 0📅 Jan 11, 2026

SKILL.md


name: run-quality-gates description: Run lint, typecheck, and tests, then summarize results with remediation guidance.

Run Quality Gates Skill

Workflow

  1. Ask approval to run terminal commands.
  2. Execute sequentially in project root or app folder:
    • npm run lint
    • npm run typecheck
    • npm test
  3. Collect outcomes (pass/fail) for each gate.
  4. Summarize results and provide targeted remediation steps.

Interpreting Failures

  • Lint failures: show rule name and offending file; suggest quick fixes (e.g., quotes, unused vars).
  • Typecheck failures: show file and TypeScript error; recommend typing or config fixes.
  • Test failures: show failing test name and assertion; propose test or code adjustments respecting boundaries.

Sample Output Format

Quality Gates Summary
- Lint: PASS
- Typecheck: FAIL (src/components/Foo.tsx: TS1234 ...)
- Tests: PASS (12/12)

Next Steps
- Fix TS1234 in src/components/Foo.tsx by narrowing type of prop `bar`.
- Re-run: npm run typecheck

Notes

  • Cross-platform commands; no external binaries.
  • Stream diffs and ask approval before running terminals.

Score

Total Score

45/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

0/5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon