Metadata-Version: 2.4
Name: stobo
Version: 0.1.2
Summary: Stobo CLI — AI-powered SEO/AEO audit tool
Project-URL: Homepage, https://trystobo.com
Project-URL: Documentation, https://trystobo.com
Project-URL: Repository, https://github.com/stobo-app/stobo-cli
Author-email: Stobo <hello@trystobo.com>
License-Expression: MIT
Keywords: aeo,ai,audit,cli,content-optimization,seo
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: rich>=13.0.0
Requires-Dist: typer[all]>=0.9.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: respx>=0.21.0; extra == 'dev'
Description-Content-Type: text/markdown

# Stobo CLI

AI-powered SEO/AEO audit tool for the terminal.

## Install

```bash
pip install stobo
```

## Quick Start

```bash
# Authenticate
stobo auth login sk_your_api_key

# Run a full audit
stobo audit run https://example.com

# SEO only
stobo audit run https://example.com --seo-only

# JSON output
stobo audit run https://example.com --json

# Extract brand voice
stobo tone extract https://blog.example.com

# Full optimization pipeline
stobo optimize run https://example.com
```

## Commands

| Command | Description |
|---------|-------------|
| `stobo auth login <key>` | Save and validate API key |
| `stobo auth status` | Show current auth status |
| `stobo audit run <url>` | Run SEO+AEO audit |
| `stobo audit list` | List recent audits |
| `stobo tone extract <blog>` | Extract brand voice |
| `stobo tone list` | List profiles |
| `stobo optimize run <url>` | Full audit+tone+rewrite |
| `stobo freshness run <sitemap>` | Sitemap schema audit |
| `stobo export run <cid> <type>` | Generate markdown report |

## Global Options

- `--api-key` — Override stored API key
- `--base-url` — Override API base URL
- `--json` — Raw JSON output
- `--version` — Show version
