Skip to main content

Installation

pip install agentpowers
Verify the installation:
ap --version

Authentication

ap login     # Opens browser for OAuth sign-in
ap whoami    # Check current session
ap logout    # Clear stored token
Tokens are stored at ~/.agentpowers/auth.json with restricted permissions (0600).

Searching

ap search "code review"
Returns a table with columns: Name, Price, Security, Downloads.

Installing Skills

Free Skills

ap install my-awesome-skill
Downloads and extracts to ~/.claude/skills/my-awesome-skill/.
ap install premium-agent
Opens Stripe Checkout in your browser. After payment, the skill installs automatically.

License Redemption

Use a license code to install on another machine:
ap install premium-agent --license XXXX-XXXX-XXXX

Publishing

1. Create Your Skill

my-skill/
├── SKILL.md      # Required: frontmatter with title, description, price
└── ...            # Your skill files

2. Publish

ap login
ap publish ./my-skill
The CLI packages your directory as a ZIP, creates the skill record, and uploads the package. Your skill enters the security review pipeline automatically.

ClawHub Claims

If you authored a skill on ClawHub, claim ownership:
ap claim my-clawhub-skill
Claims are verified against your GitHub account.

Command Reference

CommandDescription
ap loginAuthenticate via browser OAuth
ap logoutClear stored credentials
ap whoamiShow current user
ap search <query>Search the marketplace
ap install <slug>Install a skill
ap install <slug> --license <code>Install with license code
ap publish <path>Publish a skill directory
ap claim <slug>Claim a ClawHub skill