Open Standard · v1.0

Ship your agents
like you ship code

Agentic Engineering Standard

The open standard for structuring, sharing, and
discovering agentic engineering projects.

AES standardizes how agent instructions, skills, permissions, and memory
are organized — making entire agentic flows portable and transferable.

~/.agent
# Install the CLI
$ pip install aes-cli

# Scaffold a new AES project
$ aes init

# Validate your .agent/ directory
$ aes validate

# Search the registry
$ aes search "deploy"

# Install a skill from the registry
$ aes install aes-hub/deploy@^1.0.0

Everything lives in .agent/

A single directory. Every agent artifact — instructions, skills, permissions, memory — organized and portable.

.agent/
  agent.yaml          # Project manifest
  instructions.md     # Agent instructions
  permissions.yaml    # Tool access rules
  skills/             # Composable capabilities
    deploy.skill.yaml
    deploy.md
  workflows/          # State machines
  memory/             # Persistent context
  commands/           # Runbook triggers
  registry/           # Vendored packages

Built for the agentic era

Start like a pro

One command. Full agent project — instructions, skills, permissions, memory — all structured and ready to go.

Share your flows

Package your entire agentic setup and publish it to the registry. Anyone can install it with one command.

Plug & play skills

Install skills and templates built by others. Drop them into your project and they just work — with any AI tool.

pip install aes-cli — get started in seconds.