Metadata-Version: 2.4
Name: agentsmd
Version: 1.0.3
Summary: CLI tool for scaffolding and syncing AI agent workspace configuration files
License-Expression: MIT
Author: Harshith: Admin
Author-email: contact@gentlabs.ai
Requires-Python: >=3.13,<4.0
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.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Environment :: Console
Classifier: Operating System :: OS Independent
Requires-Dist: httpx (>=0.28.0,<0.29.0)
Requires-Dist: jinja2 (>=3.1.0,<4.0.0)
Requires-Dist: pydantic (>=2.0.0,<3.0.0)
Requires-Dist: pyyaml (>=6.0,<7.0.0)
Requires-Dist: typer (>=0.9.0,<1.0.0)
Project-URL: Bug Tracker, https://gentlabs.ai/contact
Project-URL: Documentation, https://agentsmd.live/docs/cli
Project-URL: Homepage, https://agentsmd.live/
Description-Content-Type: text/markdown

# AgentsMD

CLI tool for scaffolding and syncing AI agent workspace configuration files.

## Installation

```bash
pip install agentsmd
```

## Quick Start

```bash
# Initialize a new workspace
agentsmd init

# Sync workspace across machines
agentsmd sync

# Check sync status
agentsmd status

# Authenticate
agentsmd login
```

## Features

- **Workspace Scaffolding** — Interactive interview to generate AGENTS.md, CLAUDE.md, .cursorrules, and more
- **Cross-Tool Sync** — Convert between AI tool config formats (Claude Code, Cursor, Copilot, Windsurf)
- **Format Migration** — Migrate existing config files between formats
- **Reconciliation** — Re-derive all tool formats from a single source of truth

## Commands

| Command | Description |
|---------|-------------|
| `agentsmd init` | Initialize a new workspace with interactive setup |
| `agentsmd sync` | Synchronize workspace to/from cloud storage |
| `agentsmd status` | Show workspace synchronization status |
| `agentsmd login` | Authenticate via API token |
| `agentsmd logout` | Clear local credentials |
| `agentsmd migrate` | Convert between AI tool config formats |
| `agentsmd reconcile` | Re-derive all tool config formats from source of truth |
| `agentsmd tool-list` | Show detected AI tools in this workspace |
| `agentsmd tool-add` | Register a custom AI tool interactively |

## Supported AI Tools

- Claude Code (CLAUDE.md)
- Cursor (.cursorrules)
- GitHub Copilot (.github/copilot-instructions.md)
- Windsurf (.windsurfrules)
- AGENTS.md (universal format)

## Requirements

- Python 3.13+

