skillmarketplace

starchild-ai-agent/official-skills · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/starchild-ai-agent/official-skills --skill skillmarketplace
0 commentsdiscussion
summary

Search, install, and publish skills across local, community, and global ecosystems.

  • Use search_skills tool to discover and auto-install skills from local, Starchild community, and skills.sh indexes; disable auto-install with auto_install=false for search-only mode
  • Call search_skills() with no arguments to list all currently installed skills
  • Publish Starchild-authored skills via gateway by validating SKILL.md frontmatter, obtaining an OIDC token, and POSTing to /skills/publish
  • Vers
skill.md

Skill Market

Searching & Installing Skills

Always use the search_skills tool. Do NOT manually curl, browse GitHub, or download SKILL.md files.

search_skills does everything automatically:

  1. Local — checks installed skills first
  2. Starchild community — searches community-skills index
  3. skills.sh — searches the global skills ecosystem (OpenClaw, Vercel, Anthropic, etc.)
  4. Auto-install — installs the best match via npx skills add (default: auto_install=true)

Usage

search_skills(query="deploy")           # search + auto-install best match
search_skills(query="trading")          # search + auto-install
search_skills(query="k8s", auto_install=false)  # search only, don't install
search_skills()                         # list all installed skills

After search_skills installs a skill, it's immediately available. Call skill_refresh() only if you manually edited skill files.

What NOT to do

  • Do NOT curl GitHub repos to browse/download skills
  • Do NOT mkdir -p skills/<name> and manually write SKILL.md
  • Do NOT use web_fetch to download skill files
  • Do NOT use the old gateway search/install endpoints (they no longer exist)

Publishing (Starchild Only)

Publishing still uses the gateway. Only Starchild-authored skills can be published.

SKILL.md Requirements

---
name: my-skill
version: 1.0.0
description: What this skill does
author: your-name
tags: [tag1, tag2]
---
Field Required Rules
name Yes Lowercase, alphanumeric + hyphens, 2-64 chars
version Yes Semver (e.g. 1.0.0) — immutable once published
description Recommended Short summary for search
author Recommended Author name
tags Recommended Array of tags for discoverability

Publish Workflow

Step 1: Validate the skill directory

SKILL_DIR="./skills/my-skill"
head -20 "$SKILL_DIR/SKILL.md"

Step 2: Get OIDC token

TOKEN=$(curl -s --unix-socket /.fly/api \
  -X POST -H "Content-Type: application/json" \
  "http://localhost/v1/tokens/oidc" \
  -d '{"aud": "skills-market-gateway"}')

Step 3: Build and send publish request

SKILL_DIR="./skills/my-skill"
GATEWAY="https://skills-market-gateway.fly.dev"

PAYLOAD=$(python3 -c "
import os, json
files = {}
for root, dirs, fnames in os.walk('$SKILL_DIR'):
    for f in fnames:
        full = os.path.join(root, f)
        rel = os.path.relpath(full, '$SKILL_DIR')
        with open(full) as fh:
            files[rel] = fh.read()
print(json.dumps({'files': files}))
")

curl -s -X POST "$GATEWAY/skills/publish" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d "$PAYLOAD" | python3 -m json.tool

Response (201)

{
  "namespace": "@554",
  "name": "my-skill",
  "version": "1.0.0",
  "tag": "@554/[email protected]",
  "download_url": "https://github.com/.../bundle.zip",
  "release_url": "https://github.com/.../releases/tag/..."
}

Version Rules

  • Each version is immutable — once published, it cannot be overwritten.
  • To update, bump the version and publish again.

Decision Tree

User wants to find/install a skill
  → Use search_skills(query) tool — it searches all sources and auto-installs
  → NEVER curl GitHub or manually download files

User wants to list installed skills
  → Use search_skills() with no query

User wants to publish a skill
  → Validate SKILL.md frontmatter
  → Get OIDC token (audience: skills-market-gateway)
  → POST to /skills/publish

User wants to create a new skill
  → Read the skill-creator skill first
how to use skillmarketplace

How to use skillmarketplace on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add skillmarketplace
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/starchild-ai-agent/official-skills --skill skillmarketplace

The skills CLI fetches skillmarketplace from GitHub repository starchild-ai-agent/official-skills and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/skillmarketplace

Reload or restart Cursor to activate skillmarketplace. Access the skill through slash commands (e.g., /skillmarketplace) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

Task Automation & Efficiency

Automate repetitive workflows and reduce manual effort

Example

Generate reports, summarize documents, draft communications

Save 3-5 hours per week on routine tasks

Knowledge Enhancement

Learn new skills, understand complex topics, get expert guidance

Example

Explain concepts, provide examples, suggest learning resources

Accelerate learning and skill development by 2x

Quality Improvement

Enhance output quality through reviews, suggestions, and refinements

Example

Review drafts, suggest improvements, catch errors

Improve work quality by 30-40% with less effort

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client with skill support
  • Clear understanding of task or problem to solve
  • Willingness to iterate and refine outputs

Time Estimate

15-45 minutes depending on use case complexity

Installation Steps

  1. 1.Install skill using provided installation command
  2. 2.Test with simple use case relevant to your work
  3. 3.Evaluate output quality and relevance
  4. 4.Iterate on prompts to improve results
  5. 5.Integrate into regular workflow if valuable

Common Pitfalls

  • Expecting perfect results without iteration
  • Not providing enough context in prompts
  • Using skill for tasks outside its intended scope
  • Accepting outputs without review and validation

Best Practices

✓ Do

  • +Start with clear, specific prompts
  • +Provide relevant context and constraints
  • +Review and refine all outputs before using
  • +Iterate to improve output quality
  • +Document successful prompt patterns

✗ Don't

  • Don't use without understanding skill limitations
  • Don't skip validation of outputs
  • Don't share sensitive information in prompts
  • Don't expect skill to replace human judgment

💡 Pro Tips

  • Be specific about desired format and style
  • Ask for multiple options to choose from
  • Request explanations to understand reasoning
  • Combine AI efficiency with human expertise

When to Use This

✓ Use When

Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.

✗ Avoid When

Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.

Learning Path

  1. 1Familiarize yourself with skill capabilities and limitations
  2. 2Start with low-risk, non-critical tasks
  3. 3Progress to more complex and valuable use cases
  4. 4Build expertise through regular use and experimentation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.574 reviews
  • Xiao Lopez· Dec 24, 2024

    I recommend skillmarketplace for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Nia Gill· Dec 24, 2024

    Solid pick for teams standardizing on skills: skillmarketplace is focused, and the summary matches what you get after install.

  • Ganesh Mohane· Dec 16, 2024

    skillmarketplace fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Kofi Anderson· Dec 8, 2024

    Useful defaults in skillmarketplace — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Evelyn Zhang· Dec 8, 2024

    skillmarketplace fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Mia Jain· Dec 4, 2024

    I recommend skillmarketplace for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Kofi Mehta· Nov 27, 2024

    skillmarketplace has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Xiao Martin· Nov 27, 2024

    skillmarketplace is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Hiroshi Taylor· Nov 23, 2024

    Registry listing for skillmarketplace matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Arjun Smith· Nov 23, 2024

    Solid pick for teams standardizing on skills: skillmarketplace is focused, and the summary matches what you get after install.

showing 1-10 of 74

1 / 8