The Path › Chapter 5 of 9
Agent packs
a whole agent in one command
Teach
What a pack is
A pack is an agent you did not write. Someone — maybe Aitherium, maybe another user — built a complete agent with brain settings, tools, and a job, and published it so you can have it in one line.
You already met packs: Bonsai in chapter 2 is a pack (it comes as a container), and the "tools" chapter 4 talks about are tools that packs bring with them.
The pack you will try
OpenClaw is a research agent — it searches the web, gathers sources, cites them, and builds a knowledge graph so you can ask follow-up questions and it remembers context across them. Research agents without your own tools are useful, but the ones with tools are agents: they can act (search, retrieve, synthesize) instead of just guessing.
Where packs come from
Right now, packs ship inside awdk. When you pip install awdk, you get a bundled catalog of packs — free ones like the Orchestrator, and paid tiers like Hydra (testing and QA). The packs live inside the kit.
The awpack public registry is being built. When it ships, this page will change to "go to the marketplace, browse, pick one, install". Until then, the bundled set is what you have.
The difference between packs and skills
A skill is smaller — one procedure. Research a question, send an email, approve a decision. Skills live in awskills (https://aitherium.github.io/awskills/) and are used by agents to do specific jobs. A pack is a whole agent; a skill is one thing an agent can do. Think of a pack as a person and a skill as a technique that person knows.
Do
adk packs
You should see: Available Agent Packs - a short table (analyst, claude-code, code-discipline, gobbonet, hermes, openclaw) and Install with: adk install pack:<name>
If not: An empty table means the kit did not install completely. pip install --force-reinstall awdk restores the bundled packs.
adk install pack:openclaw
You should see: Installing openclaw... then Installed to: <a folder in your home directory> and Next steps
If not: The name must match a row from adk packs exactly - pack:openclaw, lower case.
adk run --agents openclaw
You should see: Starting AitherADK fleet server - agents: openclaw, port: 8080 - the pack's agent is now serving; Ctrl+C stops it
If not: If port 8080 is busy, add --port 8081. If it says the agent is unknown, the install step did not finish - read its last line.
Check you are done
adk run --agents openclaw
You should see: Starting AitherADK fleet server - agents: openclaw
What you learned
- A pack is an agent in a box - brain settings, tools, skills - that installs in one command.
- Packs ship inside awdk today; the public pack registry (awpack) is being built, and this page says so until it is not.
- Skills are smaller than packs - one procedure each - and live in awskills.