Publish repo
Publishes this Agent Skills repository to skills.sh - pre-flight checks, public visibility flip, protections (PVR, ruleset), consumer-style install verification, telemetry seeding, and repo-page groupings. Use when the user asks to publish, deploy, release, go public, or get listed on skills.sh. Not for authoring skills or editing scaffold infrastructure.From its SKILL.md
npx -y skills add Paldom/node-skills --skill publish-repoAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
5.2 KB, ~1.2k tokens by cl100k_base, as published. Nobody here has run it
publish-repo
Deploys this repository to the skills.sh ecosystem. There is no publish API — deployment = a public, installable repo plus a first install that seeds the catalogue telemetry. This skill makes that sequence deliberate instead of ad hoc. Slash-invoked only: it flips repository visibility, which is hard to undo socially (anything ever pushed becomes visible).
When NOT to use
- Writing or fixing a skill →
add-skill. - The repo has zero skills under
skills/→ build first; never publish an empty catalogue. - Routine pushes to an already-public repo → plain git.
Workflow
- Pre-flight (hard gates — stop on any failure): the working tree must be
clean and pushed by the owner — this skill never runs
git commitorgit push; if there are uncommitted changes, stop and hand the list to the owner instead.
Triage everygit status --porcelain # must be empty make check # must end: 0 error(s) npx skills add . --list # every skill under skills/ discovered gh skill publish --dry-run # spec validation (gh >= 2.90; public preview) python3 -c "import json; json.load(open('skills.sh.json'))"gh skillwarning: add missinglicense: MITfrontmatter; the.claude/skills/warning is expected here (bundled first-party dev skills, committed by design — not third-party content). Also verify: README catalogue- CHANGELOG current; every skill description is benefit-led (it is the listing copy); CI green on the latest commit.
- Manual blockers — require explicit user confirmation, never assume:
- full-history secret scan (gitleaks/trufflehog) done;
- personal/private-file review done (everything ever committed goes public).
With
--dry-runin$ARGUMENTS, stop here and report readiness instead.
- Groupings: ensure
skills.sh.jsonlists every skill in exactly one group with an engaging one-sentence description per group (see docs/deploying.md). - Flip visibility (confirm with the user immediately before):
gh repo edit <owner>/<repo> --visibility public --accept-visibility-change-consequences - Protections (public repo unlocks them):
Add a default-branch ruleset. Solo-maintainer default: block force pushes and deletions only (a require-PR rule would block the owner's direct-push workflow); when outside contributors arrive, upgrade to require-PR + code-owner review + thegh api repos/<owner>/<repo>/private-vulnerability-reporting --method PUTvalidatecheck. Also add a tag ruleset onv*(block update + deletion) so published releases are immutable. - Release — cut a versioned GitHub release matching
.claude-plugin/plugin.json:
It re-validates, adds thegh skill publish --tag v<version>agent-skillstopic if missing, and creates the release with auto-generated notes. Add theskills-shtopic too:gh repo edit <owner>/<repo> --add-topic skills-sh. - Verify like a consumer, and seed the catalogue (run locally, NOT in CI —
telemetry is disabled in CI and the first real install is what lists the repo):
npx skills add <owner>/<repo> --list mkdir -p /tmp/skills-verify && cd /tmp/skills-verify npx skills add <owner>/<repo> --skill '*' -a claude-code -y npx skills list -a claude-code - Polish: the README carries the skills.sh badge
(
[](https://skills.sh/<owner>/<repo>)— scaffolded by default); set the homepage (gh repo edit --homepage, e.g. tohttps://skills.sh/<owner>/<repo>); remind about the social preview image (manual UI step). - Report: repo URL, skills.sh page URL, install command, release tag, protections applied, what was skipped (with unlock conditions), and the note that the skills.sh page appears after telemetry processes the seed install (pages are cached).
Output spec
Public repo installable via npx skills add <owner>/<repo> (verified by an
actual install), PVR enabled, ruleset active, skills.sh.json valid with every
skill grouped, seed install performed, user told exactly what to expect next.
Gotchas
- Visibility flip is the point of no return for history — that is why step 2 demands explicit confirmation and never self-certifies.
npx skills add . --listfailing with "No skills found" means frontmatter or layout problems — fix viamake checkoutput, never by restructuring blindly.- The leaderboard/repo page lags the seed install; absence minutes later is normal, not failure.
- Do not enable a require-PR ruleset on a solo repo whose workflow pushes to main directly — it will block the owner; use the staged default in step 5.
What ships with it: 1 file
2.4 KB alongside SKILL.md
evals/
- evals.json2.4 KB
Gives 0 of the 12 instructions most ship operate skills give in ~1.2k tokens
Counted across 779 of the 1,178 authors here whose files we hold, read 2026-08-07
- Document a rollback plan before deploymentin 41 of 779, across 22 files
- Update the changelogin 21 of 779, across 19 files
- Run the test suitein 20 of 779
- Create an annotated git tagin 20 of 779
- Clean up feature flags after full rolloutin 18 of 779, across 10 files
- Verify deployment health after launchin 18 of 779, across 10 files
- Test both feature flag statesin 17 of 779, across 9 files
- Verify the working tree is cleanin 17 of 779
- Make database migrations backward-compatiblein 16 of 779, across 8 files
- Set up error monitoring before launchin 15 of 779, across 7 files
- Monitor metrics at each rollout stagein 14 of 779, across 5 files
- Create a GitHub releasein 14 of 779
Said here and by no other author read
- add the agent-skills and skills-sh topics
- never run git commit or push
- cut a versioned github release
- verify tree is clean before publishing
- stop on pre-flight failures
- triage all publish warnings
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.