AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Publish Skill

skill-tylerjhayden-agent-toolkit-publish-skill · by tylerjhayden

Publish skills and tools to the public agent-toolkit repo. Use when user says "publish skill", "push to marketplace", or wants to share skills publicly.

No reviews yet
0 installs
23 views
0.0% view→install

Install

$ agentstack add skill-tylerjhayden-agent-toolkit-publish-skill

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-tylerjhayden-agent-toolkit-publish-skill)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Publish Skill? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

publish-skill

Sanitize and publish your skills and tools to the public agent-toolkit GitHub repo.

Overview

Automates the process of taking a private skill or tool, stripping internal references (paths, names, cross-references), generating user-facing docs, and pushing to the your-username/agent-toolkit public repo. Tracks versions and file hashes to detect changes.

When to Use

  • "Publish bear to the marketplace"
  • "Push this skill public"
  • "What skills are published?"
  • "Diff bear against the published version"

README vs SKILL.md — Two-Audience Doctrine

These files serve different readers and should be authored differently:

| | SKILL.md | README.md | |---|---|---| | Audience | The AI agent | Humans installing the skill | | Tone | Dense, operational | Explanatory, setup-focused | | Must include | When to invoke, commands, data locations | Installation, shell alias setup, why it works the way it does | | Should include | Common mistakes (for the agent) | First-time config steps, common mistakes, full command ref | | Should NOT include | Verbose rationale, setup prose | Internal implementation details |

SKILL.md is optimized for context. Every line burns tokens. Keep it tight: trigger phrases, command reference, data locations.

README.md must be useful before the AI is involved. A human follows it to install the skill — they can't ask the AI for help yet. It must answer: What is this? Why does it work this way? How do I get it running?

Skills with CLI tools nearly always need three things in the README that generate_readme cannot produce:

  1. Shell alias setup — how the tool gets on PATH for terminal use
  2. "Why" explanations — rationale for non-obvious design choices (e.g., "Why Playwright?", "Why URL scheme?")
  3. First-time credential/config steps — concrete instructions for acquiring API keys, session cookies, etc.

When a README needs this level of detail, set preserve_readme: true in the manifest. The publish flow will preserve the handcrafted README instead of regenerating it from SKILL.md.

Common Mistakes

Publishing without init first. Skills must be initialized in the manifest before publishing. Run publish-skill init to add a skill to the manifest with default config.

Forgetting per-skill strip rules. Default sanitization handles common patterns, but each skill may have unique internal references. Use --dry-run to inspect sanitized output before committing.

Handcrafted README getting overwritten. If a skill has a detailed, human-authored README, set preserve_readme: true in the manifest before publishing. Without it, generate_readme overwrites the README with a sparse auto-generated version from SKILL.md.

CLI Tool

Alias: publish-skill Requirements: bash, jq, rsync, git

Quick Reference

publish-skill publish              # Sanitize + scan + copy + commit + push
publish-skill publish  --dry-run   # Sanitize + scan only — no commit or push
publish-skill publish  --force     # Publish even if source is unchanged
publish-skill list                       # Show all skills and publish status
publish-skill diff                 # Diff local vs published version
publish-skill init                 # Mark a skill as publishable
publish-skill help                       # Show help

Commands

| Command | Description | |---------|-------------| | publish | Sanitize skill/tool, security scan, copy to agent-toolkit, bump version, commit and push | | publish --dry-run | Sanitize and scan only — inspect output without committing | | publish --force | Publish even if source hashes are unchanged | | list | Show all skills in manifest with version and publish status | | diff | Show diff between local source and published version | | init | Add a skill to the manifest as publishable | | help | Show usage |

Publish Flow

  1. Verify skill exists in manifest
  2. Compute SHA256 hashes of all source files
  3. Skip if unchanged (use --force to override)
  4. Copy skill to ~/your-agent-toolkit-repo///
  5. Apply sanitization (default rules + per-skill overrides)
  6. If category: "tools": remove SKILL.md from published artifact
  7. Run security scan — hard stop on any finding (all failures collected before aborting)
  8. Generate README.md from sanitized SKILL.md (skipped for tools — must use preserve_readme: true)
  9. Prompt for version bump (patch/minor/major)
  10. Update manifest with hashes, version, timestamp
  11. Update top-level README.md catalog table (Skills or Tools table based on category)
  12. Git commit and push in agent-toolkit repo

> With --dry-run, the flow stops after step 6. No version bump, no commit, no push. Use this to inspect sanitized output before committing to a release.

Data Locations

| Operation | Path | Description | |-----------|------|-------------| | Config | .claude/skills/publish-skill/publish-manifest.json | Publish config, versions, hashes | | Target | target_repo in manifest | Public repo (push target) — ~/your-agent-toolkit-repo | | Source | .claude/skills// | Skill source directory (read-only) | | Category | category field per skill in manifest | "skills" (default) or "tools" — determines target subdirectory and whether SKILL.md is stripped |

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.