CLI for A3IP - AI Infrastructure Installation Package (pronounced 'ay-trip')
Project description
a3ip CLI
Pronounced "ay-trip"
Command-line tool for creating, validating, and bundling A3IP packages.
Install
pip install a3ip
Optional: install with YAML support for faster, more reliable manifest parsing:
pip install "a3ip[yaml]"
Commands
a3ip new <name>
Scaffold a new package that passes a3ip validate on the first run.
a3ip new my-workflow
Creates my-workflow/ with:
my-workflow/
├── manifest.yaml ← package metadata, permissions, components
├── CONFIGURE.md ← questions to ask the user at install time
├── INSTALL.md ← step-by-step install guide for the AI
├── README.md ← human-facing description
├── components/
│ └── skills/
│ └── my-workflow.md ← the main skill file
└── scripts/ ← Python/PowerShell automation scripts go here
a3ip validate <package_dir>
Run 9 normative checks against the A3IP spec.
a3ip validate my-workflow/
Validating: my-workflow/
Check 1 (config coverage): 0 error(s) 0 warning(s)
Check 2 (script existence): 0 error(s) 0 warning(s)
...
Check 9 (trust→plan section): 0 error(s) 0 warning(s)
✓ Validation passed — no errors or warnings.
Exit code 0 if clean, 1 if any errors. Warnings don't affect the exit code.
Add --json to get a machine-readable report alongside the human output.
a3ip bundle <package_dir>
Build a .a3ip.bundle file ready to distribute.
a3ip bundle my-workflow/
# → my-workflow.a3ip.bundle
The bundle is a plain-text file containing every package file. Drop it into a conversation with any A3IP-compatible AI and ask it to install.
To include the spec for recipients who may not know A3IP:
a3ip bundle my-workflow/ --spec path/to/A3IP-SPEC-v1.5.md
Full example
pip install "a3ip[yaml]"
a3ip new code-review-flow
cd code-review-flow
# ... edit manifest.yaml, INSTALL.md, skills/ ...
a3ip validate .
a3ip bundle .
# → ../code-review-flow.a3ip.bundle
Links
- Specification: a3ip.dev — github.com/a3ip-standard/spec
- Example packages: github.com/a3ip-standard/packages
- PyPI: pypi.org/project/a3ip
License
Apache 2.0 — use freely in commercial and open source projects. Includes explicit patent grant.
A3IP CLI v1.0.0 · © 2026 Maksym Prydorozhko
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file a3ip-1.3.1.tar.gz.
File metadata
- Download URL: a3ip-1.3.1.tar.gz
- Upload date:
- Size: 24.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5db6b858e0e867adb6824a8f39c59c1ad5abcca667455455dc2d00aa8b3ea4a3
|
|
| MD5 |
00d1bd7e19b59ffa4c434554281728f9
|
|
| BLAKE2b-256 |
9df040b586630acefb97c442cb069ec8af86abd44a41e1673ec8150b872a7646
|
File details
Details for the file a3ip-1.3.1-py3-none-any.whl.
File metadata
- Download URL: a3ip-1.3.1-py3-none-any.whl
- Upload date:
- Size: 24.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ac2e7473bba85f0473fbeadfbc9e1f2a47d4a82e30e55e3f496720c09f09f64
|
|
| MD5 |
7d82f48ea8cf4a3419d682d6168bd7e3
|
|
| BLAKE2b-256 |
c2b839559b1452a829a70ab952ed8a44178db46a00114b3d78170d4280058227
|