Pre-built .claw agent packages for HybridClaw.
src/ # Source directories (one per agent)
felix/
workspace/
IDENTITY.md
SOUL.md
AGENTS.md
...
dist/ # Compiled .claw files (zip archives)
felix.claw
build.sh # Build script: src/ -> dist/
src/contains the uncompressed agent workspace directories.dist/contains the built.clawfiles (ZIP archives ready for install).
Rebuild all .claw files from source:
./build.shOr point at a different source directory:
./build.sh /path/to/source/dirsThis zips each subdirectory in src/ and writes <dirname>.claw to dist/.
Download or clone this repo, then install a .claw file into your HybridClaw
instance:
# Inspect the package first
hybridclaw agent inspect dist/felix.claw
# Install it
hybridclaw agent install dist/felix.claw \
--id felix --yesIf you prefer to install from a GitHub release:
gh release download v1.0.0 \
--repo HybridAIOne/claws \
--pattern '*.claw' \
--dir /tmp/claws
hybridclaw agent install /tmp/claws/felix.claw \
--id felix --yes- The archive is validated (ZIP safety, size limits, no symlinks or traversal).
manifest.jsonis read and validated.- The agent is registered in
~/.hybridclaw/agents.json. workspace/files are copied into the agent's workspace path.- Bundled skills are restored into
workspace/skills/. - Bundled plugins (if any) are installed via the normal plugin installer.
- Runtime config is updated (skill dirs, plugin overrides).
- Missing bootstrap files are filled from templates.
There is no built-in update command. To update an installed agent to a newer version:
# Pull latest sources
git pull
# Rebuild
./build.sh
# Re-install with --force to replace the existing workspace
hybridclaw agent install dist/felix.claw \
--id felix --force --yesThe --force flag replaces the existing agent workspace and reinstalls bundled
plugins. Runtime state (session transcripts, runtime files) is not affected.
See AGENTS.md for the full guide on creating .claw agent
packages.
Quick steps:
-
Create a new directory under
src/:mkdir -p src/my-agent/workspace
-
Add the required workspace files (at minimum
IDENTITY.md,SOUL.md, and amanifest.jsonat the directory root):src/my-agent/ manifest.json workspace/ IDENTITY.md SOUL.md AGENTS.md BOOT.md MEMORY.md TOOLS.md USER.md HEARTBEAT.md .hybridclaw/ policy.yaml -
Build:
./build.sh
-
Test the package:
hybridclaw agent inspect dist/my-agent.claw hybridclaw agent install dist/my-agent.claw --id my-agent --yes
-
Commit both
src/my-agent/anddist/my-agent.claw, then open a PR.
Runtime-backed evals live under evals/README.md.
Example:
node evals/run-claw-eval.mjs klara-voss