Metadata-Version: 2.4
Name: arctx
Version: 0.2.0b3
Summary: Append-only DAG for reasoning history, parallel agent collaboration, and thought tracking
Project-URL: Homepage, https://github.com/takumiecd/arctx
Project-URL: Repository, https://github.com/takumiecd/arctx
Author: Takumi Ishida
License: MIT
Keywords: agents,dag,graph,history,multi-agent,reasoning,traceability,workflow
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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 :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Version Control
Requires-Python: >=3.10
Requires-Dist: typing-extensions>=4.0.0
Provides-Extra: dev
Requires-Dist: black>=23.0; extra == 'dev'
Requires-Dist: mypy>=1.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.21; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: ruff>=0.1.0; extra == 'dev'
Provides-Extra: fast
Requires-Dist: orjson>=3.9; extra == 'fast'
Description-Content-Type: text/markdown

# arctx

Python API for ARCTX (Arc + Context) — records the process of optimization and problem-solving.

## Installation

```bash
pip install arctx
```

## Usage

```python
import arctx as arctx

handle = arctx.init(arctx.Requirement(text="Solve the problem"))
```

## Package layout

This package provides the core API, storage, and extension framework. The `arctx` command-line tool is in the separate `arctx-cli` package.
