CLI Reference

All agentlife commands — pack, marketplace, mesh, and more.

Global Usage

agentlife [command] [subcommand] [options]

Pack Commands

Manage persona packs — list, view details, and export portable bundles.

pack list

List all available persona packs in the framework.

agentlife pack list

pack info

Show detailed information about a specific persona pack, including skills, use cases, scripts, and MCP servers.

agentlife pack info <name>

Examples:

agentlife pack info life-ops
agentlife pack info student

pack export

Export a persona pack as a portable SKILL.md bundle or ZIP archive.

agentlife pack export <name> [--format skill.md|zip] [--output <dir>]

Options:

  • --format, -f — Output format: skill.md (default) or zip
  • --output, -o — Output directory (default: current directory)

Examples:

agentlife pack export life-ops
agentlife pack export enterprise-architect --format zip
agentlife pack export student --output ~/personas/

Marketplace Commands

Browse and install persona packs from the marketplace registry.

marketplace search

Search for persona packs in the registry.

agentlife marketplace search [<query>]

Examples:

agentlife marketplace search
agentlife marketplace search finance

marketplace install

Install a persona pack from the marketplace.

agentlife marketplace install <name>

Example:

agentlife marketplace install life-ops

marketplace list

List all installed persona packs.

agentlife marketplace list

marketplace publish

Publish a persona pack to the marketplace (requires GitHub access).

agentlife marketplace publish <name>

Mesh Commands

Multi-agent coordination via n2n-nexus. Manage coordination sessions between persona agents.

mesh init

Initialize a new coordination session.

agentlife mesh init <room> [--topic "<text>"] [--personas <list>]

Example:

agentlife mesh init enterprise-review \
  --topic "Cloud Migration Strategy" \
  --personas enterprise-architect,life-ops

mesh join

Join an existing coordination session.

agentlife mesh join <room>

mesh list

List all active (unarchived) coordination sessions.

agentlife mesh list

mesh status

Show status and recent messages from a coordination session.

agentlife mesh status <room>

mesh leave

Leave a coordination session (session remains active for other participants).

agentlife mesh leave <room>

mesh stop

Stop and archive a coordination session.

agentlife mesh stop <room>

Quick Reference

CommandDescription
agentlife pack listList available persona packs
agentlife pack info <name>Show pack details
agentlife pack export <name>Export as portable SKILL.md
agentlife marketplace searchSearch marketplace
agentlife marketplace install <name>Install a pack
agentlife marketplace listList installed packs
agentlife mesh init <room>Start coordination session
agentlife mesh join <room>Join coordination session
agentlife mesh listList active sessions
agentlife mesh status <room>Session status & messages
agentlife mesh stop <room>Archive session