Skip to main content

Install the CLI

pip install agentpowers

Search for Skills

ap search "code review"
This returns a table of matching skills with titles, prices, security status, and download counts.

Install a Free Skill

ap install my-awesome-skill
The CLI downloads and extracts the skill to ~/.claude/skills/my-awesome-skill/.

Install a Paid Skill

ap install premium-agent
For paid skills, the CLI opens a Stripe Checkout page. After purchase, you receive a license code. The skill installs automatically after payment, or you can redeem the license code later:
ap install premium-agent --license XXXX-XXXX-XXXX

Use the Plugin (In-Conversation)

Install the AgentPowers plugin in Claude Code:
claude /plugin install agentpowers
claude /plugin enable agentpowers
Once enabled, Claude can search and install skills during your conversation through the MCP server tools.

Publish a Skill

1

Create your skill directory

my-skill/
├── SKILL.md      # Frontmatter with title, description, price
└── ...            # Your skill files
2

Login

ap login
3

Publish

ap publish ./my-skill
Your skill enters the security review pipeline. Once approved, it appears in the marketplace.