Metadata-Version: 2.4
Name: cinchdb
Version: 0.2.3
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 :: Rust
Classifier: Topic :: Database
Requires-Dist: requests>=2.31.0
Requires-Dist: typing-extensions>=4.5.0 ; python_full_version < '3.11'
Summary: CinchDB Python SDK and CLI - databases for agents
Keywords: database,cli,redis,sql,graph,cinch,sdk
Home-Page: https://cinchdb.dev
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Documentation, https://cinchdb.dev/docs
Project-URL: Homepage, https://cinchdb.dev
Project-URL: Repository, https://github.com/cinchdatabase/cinch-cloud

# cinchdb

CLI for [CinchDB](https://cinchdb.dev) - databases for agents.

## Install

```bash
# From PyPI (any platform)
pip install cinchdb

# From crates.io (requires Rust toolchain)
cargo install cinchdb

# From source
git clone https://github.com/cinchdatabase/cinch-cloud.git
cd cinch-cloud/cli
cargo install --path .
```

## Quick start

```bash
# Log in (opens browser)
cinch auth login

# Create a Redis database
cinch db create cache --type redis

# Open a shell
cinch db shell cache
```

## Commands

```
cinch auth login          # Browser-based login (--headless for CI)
cinch auth whoami         # Show current user and context
cinch auth api-keys list  # Manage API keys
cinch db create           # Create a database (redis, sql, graph)
cinch db list             # List databases
cinch db shell            # Interactive shell
cinch config              # Show/set persistent context
cinch config set org X    # Set default organization
```

Run `cinch --help` for the full command reference.

