paperclip-skills
v2.1.1
Published
CLI for publishing and managing Paperclip skills
Readme
paperclip-skills
CLI for publishing and managing skills on the Paperclip Skills marketplace.
Install
npx paperclip-skills <command>Or install globally:
npm i -g paperclip-skillsSetup
- Go to paperclipskills.com/publisher and connect your wallet
- Claim a namespace (e.g.,
@yourname) - Copy your publish credential (
psk_ns_*) - Save it to the CLI:
npx paperclip-skills login
# Enter your publish credential (psk_ns_*): ████████Or pass it directly:
npx paperclip-skills login --credential psk_ns_xxxxCommands
login
Save your publish credential for authentication.
npx paperclip-skills login [--credential <psk_ns_*>] [--registry-url <url>]validate
Validate a skill.md file locally without uploading.
npx paperclip-skills validate [file]publish
Validate and upload a skill to the registry.
npx paperclip-skills publish [file] [--dry-run]preview
Preview how a skill will appear on the marketplace.
npx paperclip-skills preview [file]versions
List published versions of a skill.
npx paperclip-skills versions @namespace/skill-nameSkill format
A skill is a markdown file with YAML front-matter:
---
name: "@yourname/my-skill"
version: "1.0.0"
author: "Your Name"
description: "What this skill does."
tags:
- your-tag
price: 0
license: "MIT"
---
# My Skill
Instructions for agents go here.For the full schema and agent blueprint format, see the developer docs.
Config
Credentials are saved to ~/.paperclip-skills/config.json.
Environment variable overrides:
PAPERCLIP_SKILLS_TOKEN— publish credentialPAPERCLIP_REGISTRY_URL— registry URL (default:https://www.paperclipskills.com)
