Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Convert a personal agent skill into a distributable, open-source-ready skill. Runs PII audit, generalization, license compatibility check, cross-platform adapter review, and packaging workflow.
.claude/skills/aperivue-publish-skill/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-07 | ✗→✓ | ▲ Improved | 106% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 195% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 204% | 0% |
| case-12 | ✗→✓ | ▲ Improved | 138% | 0% |
| case-15 | ✗→✓ | ▲ Improved | 224% | 0% |
Convert a personal agent skill into a clean, distributable, open-source-ready skill package. This skill walks through a 7-phase pipeline that audits for personally identifiable information, generalizes language and role assumptions, verifies license compatibility, checks cross-platform adapter needs, and prepares the final package for commit.
Collect from the user:
~/.claude/skills/my-skill/ or ~/.agents/skills/my-skill/)~/workspace/<your-package>/)SKILL.md from the source skill directoryls -R)| File | Lines | Type | Notes |
|------|-------|------|-------|Gate: User confirms source skill and target package before proceeding.
Before spending effort on PII scrubbing and generalization, confirm the workflow is worth distributing as a skill at all. A skill earns its place by encoding a reusable decision heuristic, a hard-won constraint, or a verification step — not a snippet anyone could reconstruct in five minutes. Apply all three gates; any "no" (or "yes" on the inverse) stops publication in favor of documentation or a memory note instead.
| Gate | Question | Pass condition | |------|----------|----------------| | Uniqueness | Could a competent user get the same result by searching the web for ~5 minutes, or by asking a general assistant with no skill installed? | No | | Specificity | Does it encode a workflow, decision heuristic, constraint, or convention specific to this domain or a recurring task — rather than a generic code snippet or a standard-library example? | Yes | | Effort | Did discovering it take real debugging, study design, operational effort, or a reviewer-anticipation lesson (a pitfall, a verification step, a domain convention)? | Yes |
Favor skills that encode reviewer-anticipation, reporting-guideline constraints, verification gates, and decision trees over thin wrappers or one-off snippets. This is the publish-time analogue of the "reusable pattern vs one-off hack" distinction: a workflow that fails the gate is better captured as a doc or a memory note than shipped as a skill that dilutes the catalog.
Gate: If any of the three fails, recommend documentation/memory instead and stop. If the value is real but the skill delegates to private agents, route through Phase 1's orchestrator finding (refactor to standalone first). Only a clear three-way pass proceeds.
Verify the skill is original work suitable for open-source distribution.
references/ come from external sources (published guidelines, textbooks, standards bodies)?| Finding | Action | |---------|--------| | Fully original | Proceed to Phase 2 | | Adapted with compatible license | Add attribution header, proceed | | Contains non-compatible third-party content | Flag for removal or URL manifest conversion | | Orchestrator with private agent references | STOP -- requires refactoring to standalone first | | Competitive/proprietary logic | STOP -- not suitable for open-source |
Zero tolerance: the skill must have exactly 0 PII matches before proceeding.
Before running, ask the user for everything that should also count as a PII hit but is unique to them:
<First Last>|<native-script name>)<Institution>|<Hospital>)Combine the inputs into a single grep -E alternation pattern (pipe-separated).
Run the bundled audit script. The first argument is the skill directory; the second is the user-specific alternation pattern from Pre-scan Setup.
bashbash ${CLAUDE_SKILL_DIR}/scripts/audit_skill.sh <source_skill_path> \ "<First Last>|<native-script name>|<Institution>|<Hospital>"
The script runs nine categories that mirror the medsci-skills monorepo linter (scripts/validate_skills.sh):
/Users/<name>/, /home/<name>/, ~/Documents, ~/Desktop, ~/Downloads, ~/Projects)*.internal, *.local, *.corp)professor <Surname>, Prof. <Surname>, Dr. <Surname>, PGY[0-9], <한글이름> 교수님)> YYYY-MM-DD ... lines that reveal an internal review timeline)<Surname>{Year}_* pattern, e.g., <Surname>2025_<Journal>_Fig01.png; allow-list excludes generic tokens like Issue2024_, Sample2025_)exiftool when installed; skipped silently otherwise with an install hint)False-positive guard: text scans use grep --binary-files=without-match so byte-stream collisions inside .pyc, .png, or .docx files do not trigger findings. __pycache__/ is also explicitly skipped.
For categories the script flags, also manually verify with the Grep tool against ${CLAUDE_SKILL_DIR}/references/pii-patterns.md. Pay particular attention to:
CK-NN, MA-NN, dated cohort namesPresent all findings in a remediation table:
| # | File:Line | Category | Match | Suggested Fix |
|---|-----------|----------|-------|---------------|Gate: User reviews all findings. Fix each one. Re-run audit. Proceed only when 0 hits confirmed.
Transform personal assumptions into universal defaults.
"in Korean" / "한국어로" / "Korean language" → "in the user's preferred language""communicate in [specific language]" → "Communicate with the user in their preferred language"triggers: field (these aid discovery)"radiology researcher" → "medical researcher" (if the skill is domain-general)"professor" / "fellow" → "researcher" or "user" (context-dependent)${CLAUDE_SKILL_DIR} for bundled reference files~/Documents/... → user-provided output directorytools: fieldanalyze-stats")?Show a unified diff of all generalization changes for user review.
Verify all bundled files are compatible with the target package license.
For each file in the skill's references/ and scripts/ directories:
Reference ${CLAUDE_SKILL_DIR}/references/license-compatibility-matrix.md for the full matrix.
Quick reference for MIT target:
| Source License | Can Bundle? | Action | |---------------|------------|--------| | CC0 / Public Domain | Yes | No changes needed | | CC BY 4.0 / 3.0 | Yes | Add attribution header | | MIT / BSD / Apache 2.0 | Yes | Include license notice | | CC BY-NC | No | Convert to URL reference | | CC BY-NC-ND | No | Convert to URL reference | | CC BY-SA | No | Copyleft risk -- convert to URL reference | | GPL v2/v3 | No | Mark as optional external dependency | | Unknown / Proprietary | No | Assume incompatible -- remove or get permission |
For non-compatible content, convert from bundled file to a URL manifest:
markdown## [Checklist Name] This checklist is not bundled due to license restrictions ([License Type]). **Official source**: [URL] **How to use**: Download the checklist from the official source and place it in `references/` before using this skill's reporting check feature.
Present license audit table:
| File | Source | License | Compatible? | Action |
|------|--------|---------|------------|--------|${CLAUDE_SKILL_DIR}/... path resolves to an actual filescripts/ have appropriate shebangsRun audit_skill.sh one final time. Must return exit code 0.
Check whether the skill can run in common desktop-agent environments:
| Platform | Check | |---|---| | Claude Code | No hardcoded dependency on private ~/.claude paths unless documented. | | Codex | SKILL.md is self-contained and installable under ~/.agents/skills/. | | Cursor | A short .cursor/rules/*.mdc adapter can point to the canonical SKILL.md. | | Windows | Commands avoid Unix-only assumptions or provide PowerShell/Python alternatives. | | macOS/Linux | Shell examples use portable paths where possible. |
If the package is intended for a workshop or classroom, prepare direct-download ZIPs rather than asking users to navigate GitHub manually:
texthttps://github.com/{owner}/{repo}/releases/latest/download/{package}-classroom-windows.zip https://github.com/{owner}/{repo}/releases/latest/download/{package}-classroom-macos.zip
Generate a table row matching the target package's README format:
markdown| **{skill-name}** | {One-sentence description of what the skill does.} |
Instruct the user to:
cp -r <cleaned_skill> ~/.claude/skills/<skill-name>/<skill-name> or relevant trigger phrasesGate: User confirms testing is complete.
bashcp -r <cleaned_skill_path> <target_package>/skills/<skill-name>/
Apply the README entry drafted in Phase 5:
Present the exact commands but do NOT auto-execute push:
bashcd <target_package> git add skills/<skill-name>/ git add README.md git diff --cached # User reviews git commit -m "Add <skill-name>: <one-line description>"
Gate: User reviews git diff --cached and explicitly approves the commit. Push is always manual.
Remind the user to:
git clone <repo> && cp -r <repo>/skills/<skill-name> ~/.claude/skills/installers/install-windows.cmdinstallers/install-macos.commandREADME_FIRST.md explains unzip -> double-click -> restart -> test promptgit push -- push is always manual| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→fail | 14,770 | 12,334 | -16% | 1 | 1 | 0% | 2,781 | 4,050 | +46% | 0 | 0 | — |
case-02 | fail→fail | 5,366 | 3,482 | -35% | 1 | 1 | 0% | 351 | 4,144 | +1081% | 0 | 0 | — |
case-03 | fail→fail | 17,128 | 4,510 | -74% | 1 | 1 | 0% | 2,875 | 4,199 | +46% | 0 | 0 | — |
case-04 | fail→fail | 17,074 | 24,840 | +45% | 1 | 1 | 0% | 3,734 | 9,016 | +141% | 0 | 0 | — |
case-05 | fail→fail | 13,308 | 18,389 | +38% | 1 | 1 | 0% | 2,488 | 7,277 | +192% | 0 | 0 | — |
case-06 | fail→fail | 8,234 | 5,575 | -32% | 1 | 1 | 0% | 1,500 | 4,746 | +216% | 0 | 0 | — |
case-07 | fail→pass | 13,212 | 5,567 | -58% | 1 | 1 | 0% | 2,238 | 4,608 | +106% | 0 | 0 | — |
case-08 | fail→pass | 9,552 | 4,730 | -50% | 1 | 1 | 0% | 1,498 | 4,414 | +195% | 0 | 0 | — |
case-09 | pass→fail | 10,342 | 6,596 | -36% | 1 | 1 | 0% | 1,557 | 4,670 | +200% | 0 | 0 | — |
case-10 | fail→pass | 9,510 | 4,890 | -49% | 1 | 1 | 0% | 1,445 | 4,400 | +204% | 0 | 0 | — |
case-11 | pass→pass | 8,661 | 4,180 | -52% | 1 | 1 | 0% | 1,423 | 4,359 | +206% | 0 | 0 | — |
case-12 | fail→pass | 12,799 | 8,358 | -35% | 1 | 1 | 0% | 2,118 | 5,044 | +138% | 0 | 0 | — |
case-13 | pass→pass | 9,262 | 4,191 | -55% | 1 | 1 | 0% | 1,542 | 4,344 | +182% | 0 | 0 | — |
case-14 | pass→pass | 10,860 | 5,761 | -47% | 1 | 1 | 0% | 1,679 | 4,566 | +172% | 0 | 0 | — |
case-15 | fail→pass | 7,727 | 5,376 | -30% | 1 | 1 | 0% | 1,374 | 4,450 | +224% | 0 | 0 | — |
case-16 | fail→pass | 11,353 | 3,978 | -65% | 1 | 1 | 0% | 1,819 | 4,383 | +141% | 0 | 0 | — |
case-17 | pass→pass | 10,863 | 7,009 | -35% | 1 | 1 | 0% | 1,698 | 4,763 | +181% | 0 | 0 | — |
case-18 | pass→pass | 9,866 | 4,118 | -58% | 1 | 1 | 0% | 1,605 | 4,319 | +169% | 0 | 0 | — |
case-19 | fail→pass | 30,919 | 10,482 | -66% | 1 | 1 | 0% | 1,047 | 5,494 | +425% | 0 | 0 | — |
case-20 | pass→pass | 13,598 | 8,388 | -38% | 1 | 1 | 0% | 2,181 | 4,972 | +128% | 0 | 0 | — |
case-21 | pass→pass | 5,183 | 4,490 | -13% | 1 | 1 | 0% | 826 | 4,378 | +430% | 0 | 0 | — |
case-22 | pass→pass | 7,043 | 3,116 | -56% | 1 | 1 | 0% | 1,136 | 4,136 | +264% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 20 counted toward the lift figure. The other 2 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +27 percentage points is the difference between those two pass rates over the 20 comparable cases. 2 cases got worse with the skill loaded, and they are included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.