Metadata-Version: 2.4
Name: aes-cli
Version: 0.4.2
Summary: CLI tool for the Agentic Engineering Standard
Author: Hiro
License: Apache-2.0
Project-URL: Homepage, https://aes-official.com
Project-URL: Repository, https://github.com/user-1221/agentic-engineering-standard
Project-URL: Documentation, https://github.com/user-1221/agentic-engineering-standard/tree/main/spec
Keywords: agentic,ai,engineering,standard,cli
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software 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: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Code Generators
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: click>=8.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: jsonschema>=4.17
Requires-Dist: jinja2>=3.1
Requires-Dist: rich>=13.0
Requires-Dist: mcp>=1.2.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-tmp-files>=0.0.2; extra == "dev"

# aes-cli

CLI tool for the [Agentic Engineering Standard](https://github.com/user-1221/agentic-engineering-standard) (AES) — an open standard for structuring, sharing, and discovering agentic engineering projects.

AES treats agent instructions, skills, permissions, and memory as **first-class engineering artifacts**, making them portable, composable, and shareable across AI coding tools.

## Installation

```bash
pipx install aes-cli

# Or inside a virtual environment
pip install aes-cli
```

Requires Python 3.10+.

## Quick Start

### Initialize a new project

```bash
aes init
```

Interactive wizard that scaffolds a `.agent/` directory with agent config, skills, permissions, and memory. Supports multiple domains (web, ML, DevOps, research) and modes (dev-assist, agent-integrated).

### Validate a project

```bash
aes validate .
```

Checks `.agent/` files against the AES JSON Schema, validates dependency graphs, and reports errors/warnings.

### Sync to your AI tool

```bash
aes sync -t claude    # or: cursor, copilot, windsurf
```

Generates tool-specific config from your `.agent/` directory. Write once, use with any supported AI coding tool.

### Publish & install skills

```bash
aes publish ./my-skill    # share a skill or template to the AES registry
aes install user/skill    # install a skill into your project
aes search "deploy"       # search the registry
```

### Inspect a project

```bash
aes inspect .
```

Displays a summary of the project's agent configuration: skills, workflows, permissions, and dependencies.

## Commands

| Command     | Description                                    |
|-------------|------------------------------------------------|
| `init`      | Scaffold a new `.agent/` directory             |
| `validate`  | Validate against the AES spec                  |
| `sync`      | Generate tool-specific config                  |
| `publish`   | Publish a skill or template to the registry    |
| `install`   | Install a skill or template from the registry  |
| `search`    | Search the AES registry                        |
| `inspect`   | Inspect project agent configuration            |
| `status`    | Show sync status and drift                     |

## Links

- [Specification](https://github.com/user-1221/agentic-engineering-standard/tree/main/spec)
- [Examples](https://github.com/user-1221/agentic-engineering-standard/tree/main/examples)
- [Templates](https://github.com/user-1221/agentic-engineering-standard/tree/main/templates)
- [Registry](https://registry.aes-official.com)

## License

Apache 2.0
