Metadata-Version: 2.4
Name: techtide-swarm
Version: 0.1.0
Summary: TechTide Swarm 357 — layered orchestration, durable memory bridge, and observability hooks.
Project-URL: Homepage, https://github.com/TechTideOhio/swarm-357
Project-URL: Repository, https://github.com/TechTideOhio/swarm-357
Project-URL: Documentation, https://github.com/TechTideOhio/swarm-357#readme
Project-URL: Changelog, https://github.com/TechTideOhio/swarm-357/blob/main/CHANGELOG.md
Project-URL: Bug Tracker, https://github.com/TechTideOhio/swarm-357/issues
Author-email: TechTide AI <ai@techtide.ai>
License: Apache-2.0
Keywords: agents,ai,ai-agents,anthropic,claude,llm,multi-agent,orchestration,swarm
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires-Python: >=3.10
Requires-Dist: anthropic>=0.40
Requires-Dist: fastapi>=0.115
Requires-Dist: httpx>=0.27
Requires-Dist: pydantic>=2.5
Requires-Dist: pyyaml>=6
Requires-Dist: rich>=13
Requires-Dist: uvicorn[standard]>=0.30
Provides-Extra: dev
Requires-Dist: build>=1.0; extra == 'dev'
Requires-Dist: mypy>=1.13; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.24; extra == 'dev'
Requires-Dist: pytest>=8; extra == 'dev'
Requires-Dist: ruff>=0.8; extra == 'dev'
Requires-Dist: types-pyyaml>=6.0; extra == 'dev'
Provides-Extra: supabase
Requires-Dist: supabase>=2.0; extra == 'supabase'
Provides-Extra: web
Requires-Dist: exa-py>=1.0; extra == 'web'
Requires-Dist: firecrawl-py>=0.0.20; extra == 'web'
Description-Content-Type: text/markdown

# techtide-swarm

Python package for **Swarm 357**: `Agent`, `Swarm`, `UltraPlan`, `MemoryManager` (flat `.swarm/` or Memvid `.mv2` via `memvid-swarm-bridge`), `BashSecurityGate`, and the `swarm` CLI.

## Install (editable, from repo root)

```bash
cd packages/techtide-swarm
pip install -e ".[dev]"
```

Or from the monorepo root:

```bash
pip install -e "packages/techtide-swarm[dev]"
```

Ensure `anthropic` can reach the API when using live `Agent.run` (set `ANTHROPIC_API_KEY`).

## Memvid bridge

Optional: build `packages/memvid-swarm-bridge` and set `MEMVID_SWARM_BRIDGE` to the binary path, or add it to `PATH`. See [docs/MEMVID_BRIDGE.md](../../docs/MEMVID_BRIDGE.md) (repo root).

## CLI

```bash
swarm init
swarm demo
```

Full developer context: [CLAUDE.md](../../CLAUDE.md) at the swarm357 repo root.
