Metadata-Version: 2.4
Name: ossmate
Version: 0.1.0
Summary: Claude-powered co-maintainer for open source projects
Project-URL: Homepage, https://github.com/sunjin12/ossmate
Project-URL: Repository, https://github.com/sunjin12/ossmate
Project-URL: Issues, https://github.com/sunjin12/ossmate/issues
Author-email: sunjin12 <sunjin12333@gmail.com>
License: MIT
Keywords: anthropic,automation,claude,github,maintainer,oss
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.11
Requires-Dist: claude-agent-sdk>=0.1.0
Requires-Dist: httpx>=0.27.0
Requires-Dist: ossmate-mcp>=0.1.0
Requires-Dist: pygithub>=2.4.0
Requires-Dist: rich>=13.7.0
Requires-Dist: typer>=0.12.0
Provides-Extra: dev
Requires-Dist: mypy>=1.11; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.24; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.6; extra == 'dev'
Description-Content-Type: text/markdown

# ossmate (CLI)

Standalone CLI version of [Ossmate](https://github.com/sunjin12/ossmate), built on the [Claude Agent SDK](https://docs.anthropic.com/en/api/agent-sdk). Use it from your terminal, CI, or anywhere outside Claude Code.

## Install

```bash
pipx install ossmate
```

## Commands (planned — Phase 7)

```bash
ossmate triage [--since 24h] [--repo owner/name]
ossmate release-notes --tag vX.Y.Z
ossmate stale-sweep [--days 60] [--dry-run]
ossmate audit-deps
ossmate onboard <github-username>
```

## Configuration

`~/.config/ossmate/config.toml`:

```toml
default_repo = "owner/name"

[anthropic]
# Falls back to ANTHROPIC_API_KEY env var
api_key = "sk-..."

[github]
# Falls back to GITHUB_TOKEN env var
token = "ghp_..."
```
