Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Skill Qa

ASecurity

Quality-gate a SKILL.md before it ships — runs the shared validate-skill.ts engine (frontmatter + body structure + absolute-path leak scan + synergy + IPO length + downloadability) and renders a per-check ✅/⚠️/❌ report with file:line and fix suggestions, optionally auto-fixing mechanical issues (strip leaked machine paths, repair the install snippet) with confirmation, then emits a PASS/FAIL verdict gated on ERROR-tier checks. The QA tollgate of the skill pipeline, between /skill-creator and ...

20 stars
0 votes
0 copies
2 views
Added 9/19/2026
businessgobashgit

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add peter-tu-zynkr/zynkr-skill-builder --skill skill-qa --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Skill Qa?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Skill Qa
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/peter-tu-zynkr-skill-qa/badge)](https://www.skillsdirectory.com/skills/peter-tu-zynkr-skill-qa)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: skill-qa
sheetId: "6.09"
description: "Quality-gate a SKILL.md before it ships — runs the shared validate-skill.ts engine (frontmatter + body structure + absolute-path leak scan + synergy + IPO length + downloadability) and renders a per-check ✅/⚠️/❌ report with file:line and fix suggestions, optionally auto-fixing mechanical issues (strip leaked machine paths, repair the install snippet) with confirmation, then emits a PASS/FAIL verdict gated on ERROR-tier checks. The QA tollgate of the skill pipeline, between /skill-creator and /skill-publish — and the ad-hoc health-check /zynkr-skills routes to. Trigger on 'qa this skill', 'check this SKILL.md', 'is this skill ready to ship', 'lint the skill', '健檢', 'does <slug> pass QA', or '/skill-qa'."
category: engineer
project: skill-qa
platform: claude
status: WIP
author: Peter Tu
disable-model-invocation: true
input: "A target SKILL.md: a file path, a skill folder, a skill/<slug> branch, or a bare slug to resolve under skills/**."
process: "Locate target → run validate-skill.ts --tier=all --json → render a tiered report → offer HITL auto-fixes for mechanical findings → emit PASS (0 errors) / FAIL verdict and hand off to /skill-publish."
output: "A QA report (✅/⚠️/❌ per check with file:line + fix), a PASS/FAIL verdict gated on ERROR-tier checks, and optional confirmed auto-fixes applied to the working tree."
synergy: ["skill-publish", "skill-triager", "zynkr-skills"]
handoff: ["skill-publish"]
house-style: exempt — machine artifact — validation report, no prose output

---

# skill-qa

```bash
npx skills add https://github.com/peter-tu-zynkr/zynkr-skill-builder --skill skill-qa
```

The **quality tollgate** of the skill pipeline. Run it on a finished `SKILL.md` after `/skill-creator` and before `/skill-publish`, or any time you want to health-check a skill — `/zynkr-skills` routes "qa `<slug>`" / 「健檢」 here. It does not author or publish; it inspects, reports, and (with your OK) fixes mechanical issues, then returns a clear PASS/FAIL.

QA is a thin wrapper over one engine — `scripts/validate-skill.ts`. Never re-implement a check here: that script is the single source of truth CI also runs, so a local PASS means CI's QA check will pass too.

---

## Step 1 — Locate the target

Resolve the target SKILL.md, in priority order:

1. An explicit file path → use it.
2. A skill-folder path → `./SKILL.md` inside it.
3. A `skill/<slug>` branch → `git fetch origin <branch>`, then read `skills/**/<slug>/SKILL.md` on that ref.
4. A bare slug → glob `skills/**/<slug>/SKILL.md`. If more than one matches, list them and ask which.
5. Nothing resolvable → ask: "Point me at the SKILL.md — a path, slug, or branch."

## Step 2 — Run the engine

From `scripts/`, run the shared engine in JSON mode:

```bash
npx tsx scripts/validate-skill.ts <resolved-path> --tier=all --json
```

Parse the output — an array of per-file objects `{ file, pass, errors, warns, infos, findings[] }`, where each finding is `{ check, tier, message, file, line, fixable, suggestion }`. Do not re-run individual checks by hand.

## Step 3 — Render the report

Lead with the verdict line, then group findings by tier:

- ❌ **ERROR** (blocks ship) — frontmatter schema failure, missing H1 title, leaked machine-specific absolute path.
- ⚠️ **WARN** (advisory) — no install snippet / workflow section, synergy slug not found, IPO field over length.
- ℹ️ **INFO** (notes) — reference-entry downgrades, the post-ship live-download reminder.

For each finding print `<glyph> <CHECK> (<file>:<line>) — <message>`, and the `suggestion` beneath it when present.

## Step 4 — Offer auto-fix (HITL)

For findings flagged `fixable: true`, propose the concrete edit and **ask before writing**:

- `paths.absolute_home` → show the offending line; propose a repo-relative path or the `{{SKILL_DIR}}` placeholder.
- `body.install_snippet` (missing or wrong slug) → insert or repair the snippet immediately after the H1.
- `body.h1_matches_name` → offer to rename the H1 (skip for reference entries).

Never auto-fix prose checks (`body.summary_paragraph`, `attribution.case_c_section`) — leave those as TODOs for the author. After applying any fix, re-run Step 2 to confirm it cleared.

## Step 5 — Verdict & handoff

- **PASS** (0 ERROR): say so, note the WARN count, and point to `/skill-publish`. If `/zynkr-skills` chained you here, return a PASS so it can continue to publish.
- **FAIL** (≥1 ERROR): list the blocking ERRORs and stop. Tell the user to fix and re-run `/skill-qa`. Never publish on a FAIL.

QA is a **pre-ship** gate. The live-download check (that `zynkr.ai/s/<id>.md` resolves) runs **post-ship** in `/skill-triager` Option D — `/skill-qa` only emits an INFO pointer to it.

---

## Error handling

- **Target not found / empty** → report and ask for a valid path or slug.
- **Ambiguous slug** (multiple matches) → list them and ask which.
- **Branch fetch fails** → report the git error; offer to QA the local working copy instead.
- **Engine exits 2** (usage/IO) → a tooling failure, not a skill FAIL; surface stderr and retry. Exit 1 means real ERROR findings (a genuine FAIL).

## Reuse, don't reinvent

Every check lives in `scripts/validate-skill.ts` — the same engine run by CI (`qa.yml`, `publish-skill.yml`, `pickup-approved-issue.yml`). `/skill-qa` only locates the target, runs the engine, presents results, and applies confirmed fixes. If a new check is needed, add it to the engine; never fork the logic into this skill. The pipeline order is `/skill-sourcer → /skill-triager → /skill-creator → /skill-qa → /skill-publish`.

Attribution

peter-tu-zynkrpeter-tu-zynkr
View sourceMore from peter-tu-zynkr →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Solution Architect

Designs system architecture, component specifications, and technical integration strategy. Use when: designing solutions, system architecture, technology stack, or integration approaches.

192 votes

Akorchak:Venture Assessment

Generate a comprehensive VC investment assessment report for a company

72 votes

Stock Analysis

Analyze stocks and cryptocurrencies using Yahoo Finance data. Supports portfolio management (create, add, remove assets), crypto analysis (Top 20 by market cap), and periodic performance reports (daily/weekly/monthly/quarterly/yearly). 8 analysis dimensions for stocks, 3 for crypto. Use for stock analysis, portfolio tracking, earnings reactions, or crypto monitoring.

6511 votes

Just Fucking Cancel

Find and cancel unwanted subscriptions by analyzing bank transactions. Detects recurring charges, calculates annual waste, and helps you cancel with direct URLs and browser automation. Use when: 'cancel subscriptions', 'audit subscriptions', 'find recurring charges', 'what am I paying for', 'save money', 'subscription cleanup', 'stop wasting money'. Supports CSV import (Apple Card, Chase, Amex, Citi, Bank of America, Capital One, Mint, Copilot) OR Plaid API for automatic transaction pull. Out...

6511 votes

Telegram Compose

Compose rich, readable Telegram messages using HTML formatting via direct Telegram API. Use when: (1) Sending any Telegram message beyond a simple one-line reply, (2) Creating structured messages with sections, lists, or status updates, (3) Need formatting unavailable via Clawdbot's Markdown conversion (underline, spoilers, expandable blockquotes, user mentions by ID), (4) Sending alerts, reports, summaries, or notifications to Telegram, (5) Want professional, scannable message formatting wit...

6511 votes
View all in business →