Metadata-Version: 2.4
Name: agentpowers
Version: 0.1.5
Summary: AgentPowers CLI — discover, install, and publish marketplace skills
Project-URL: Homepage, https://agentpowers.ai
Project-URL: Repository, https://github.com/AgentPowers-AI/agentpowers-app
Project-URL: Documentation, https://docs.agentpowers.ai
Project-URL: Bug Tracker, https://github.com/AgentPowers-AI/agentpowers-app/issues
Author: Nate Ritter
License-Expression: MIT
License-File: LICENSE
Keywords: agents,claude,cli,marketplace,skills
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.11
Requires-Dist: httpx>=0.28.0
Requires-Dist: rich>=13.0
Requires-Dist: typer>=0.16.0
Provides-Extra: dev
Requires-Dist: pytest-cov>=6.0; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.9.0; extra == 'dev'
Description-Content-Type: text/markdown

# AgentPowers CLI

The `ap` command-line tool for the AgentPowers marketplace.

## Status

**Phase 1E: Complete** -- 73 passing tests. All core commands implemented including `ap claim`.

## Commands

- `ap login` -- Open browser for Clerk auth, store JWT locally
- `ap logout` -- Remove stored credentials
- `ap whoami` -- Show current user info
- `ap search <query>` -- Search the marketplace (Rich table output)
- `ap install <slug> [--code XXXX]` -- Install a skill or agent (with optional license code)
- `ap publish [--price N] [--dir .] [--category dev]` -- Package and publish a skill or agent
- `ap claim <slug>` -- Claim ownership of a ClawHub-imported skill

## Development

```bash
cd agentpowers-cli
uv venv .venv && source .venv/bin/activate
uv pip install -e ".[dev]"
ap --help
pytest tests/ -v    # Run tests
```

## Auth

Credentials stored at `~/.agentpowers/auth.json` (permissions: 600). Shared with the Claude Code plugin's MCP server.
