VAEN packages AI coding-agent setups into portable .agent bundles
VAEN is a new open-source CLI that packages agent instructions, skills, and project-scoped MCP declarations into portable .agent archives without carrying secrets.
VAEN is an open-source CLI for packaging AI coding-agent setups into portable .agent bundles. The repository says it bundles instructions, skills, and project-scoped MCP declarations from an agent.yaml manifest, then imports that setup into another repository without transporting secrets. The Hacker News Show HN item confirms the public launch context and links back to the same GitHub project.
Key takeaways
- VAEN targets a real team problem: copying agent instructions, skills, and MCP configuration between repositories without turning the handoff into a fragile zip file.
- The package format is explicit:
agent.yamldeclares what should be included, what should be imported, and which credential variable names the receiver must provide locally. - The repository says VAEN packages authoring/configuration files, not runtime environments,
.envfiles, private keys, OAuth state, or MCP server implementations. - The GitHub API reported an MIT license and 6 stars during this scan, so this is early-stage but inspectable open-source infrastructure.
- The strongest immediate use case is standardizing coding-agent harnesses across internal repos while keeping local secrets out of shared bundles.
Practical LinkLoot angle
VAEN is useful if your team already has a working AI coding-agent setup but keeps losing time recreating it per repository. Instead of pasting instructions into every project, you can define a manifest, validate it, build a .agent archive, inspect what it contains, and import it into a target repo. That makes agent setup more reviewable, which matters when skills and MCP declarations start behaving like part of the development environment.
| Tool or pattern | Best use | Limitation | Source |
|---|---|---|---|
| Copy-pasted agent instructions | One-off personal setup | Easy to drift, hard to review, and often undocumented | Common developer workflow |
| Zip archive of config files | Quick file transfer | Does not explain import targets, credential requirements, or client compatibility | VAEN README comparison |
VAEN .agent bundle | Portable coding-agent harnesses across repos or teams | Early project; needs local testing before standardization | GitHub repository |
| Internal template repo | Organization-wide defaults | Can be heavier than needed for per-agent skill bundles | Practical alternative |
A useful pilot is to package one non-sensitive internal agent setup that contains only instructions, public skills, and placeholder MCP variable names. Ask a second developer to inspect and import it into a clean repository. If they can reproduce the intended behavior without receiving secrets or hidden state, the format is doing useful work.
What to verify before you act
Start by inspecting a generated .agent archive before importing it into any important repository. The project is designed to avoid credential values, but you still need to confirm your own manifest does not include sensitive files through broad paths or accidental skill contents. Also check client support: the README examples mention importing for Codex, but your team should verify how imports land for the exact coding-agent hosts you use.
The Hacker News launch item had only light early traction at scan time, so this should be treated as a promising utility rather than a proven standard. Check the command behavior in a disposable repo, review the MIT license in the repository, and decide whether your team needs a portable bundle format or whether a simpler template repository is enough.
Why it matters
Agent harnesses are becoming part of the software supply chain. Instructions, skills, MCP declarations, and local conventions influence what an agent can do, which files it touches, and how reproducible its work is. A portable bundle format gives teams a way to review and share those pieces deliberately instead of relying on scattered markdown files and tribal knowledge.
For broader setup patterns, see LinkLoot's guide to AI agent tools. VAEN is most interesting for teams that already have agent conventions worth packaging; solo users may not need the extra format until their setup becomes hard to recreate.
VAEN is an open-source CLI that packages AI coding-agent instructions, skills, and MCP declarations into portable .agent bundles.
