Metadata-Version: 2.4
Name: arctx-cli
Version: 0.3.1b4
Summary: CLI for ARCTX — append-only DAG editing and refactoring
Project-URL: Homepage, https://github.com/takumiecd/arctx
Project-URL: Repository, https://github.com/takumiecd/arctx
Author: Takumi Ishida
License: MIT
Keywords: agents,arctx,cli,dag,developer-tools,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 :: Utilities
Requires-Python: >=3.10
Requires-Dist: arctx==0.3.1b4
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'
Description-Content-Type: text/markdown

# ARCTX CLI

Command-line interface for ARCTX experiment graphs. Use it to initialize runs,
record steps, attach results, cut abandoned branches, export reports, and serve
the Web GUI.

## Installation

```bash
pip install arctx-cli
```

This also installs `arctx` as a dependency.

## Usage

```bash
arctx init optimize --extension git --run-id demo
arctx add --from <node_id> --type experiment --field variant=A
arctx dump
```

## Package layout

This package provides the `arctx` CLI command. The core API is in the separate
`arctx` package; the experimental TUI is shipped separately as `arctx-tui`.
