Metadata-Version: 2.4
Name: cf-agent
Version: 0.1.0
Summary: AI agent for Adobe AEM Content Fragments
Project-URL: Homepage, https://github.com/your-org/cf-agent
Project-URL: Repository, https://github.com/your-org/cf-agent
Project-URL: Issues, https://github.com/your-org/cf-agent/issues
Author: CF Agent Maintainers
License: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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
Requires-Python: >=3.10
Requires-Dist: anthropic>=0.40.0
Requires-Dist: click>=8.1.0
Requires-Dist: httpx>=0.27.0
Description-Content-Type: text/markdown

# cf-agent

AI agent CLI for managing Adobe AEM Content Fragments with natural language.

## Features

- Chat-driven operations for content fragments
- Login command to configure Adobe and Anthropic credentials
- Non-interactive mode for scripting (`--message`)

## Installation

Install from PyPI (after publishing):

```bash
pip install cf-agent
```

Install from a local wheel:

```bash
pip install dist/cf_agent-0.1.0-py3-none-any.whl
```

## Usage

```bash
cf-agent login
cf-agent chat
```

Run a single command non-interactively:

```bash
cf-agent chat --message "list fragments in /content/dam/my-project"
```

## Development Build

```bash
python -m pip install --upgrade build
python -m build
```

Generated artifacts will be in `dist/`.

## License

MIT
# aem-cs-cli
