Getting Started

Install and run Lifeverse AI for your organization

Prerequisites

RequirementVersion
Python3.10+
Node.js18+ (for dashboards)
SQLite3.35+ (FTS5 support)
Claude CodeLatest
Git2.30+

Installation

1. Clone the repository

git clone https://github.com/metaweavehq/lifeverse-ai.git
cd lifeverse-ai

2. Run the installer

python3 install.py

This creates:

  • SQLite databases for each agent
  • Agent configuration files
  • Daemon scheduler setup
  • Skill library initialization
  • A2A messaging infrastructure

3. Validate

python3 validate_system.py

All checks should pass.

4. Check health

python3 daemon/health_dashboard.py

Your first agent interaction

# Check agent status
python3 scripts/agent_status.py

# Send a test message to the CEO agent
python3 -c "
from lib.a2a import send_message
send_message(
    to='ceo',
    subject='Hello from the Foundation',
    body='Lifeverse AI is online. All agents ready.',
    priority='normal'
)
"

Configuration

Edit these files to customize for your organization:

FilePurpose
config/agents.yamlAgent roles, teams, and authority levels
config/daemon.yamlExecution schedules
config/fleet.yamlVessel definitions (maritime)
config/skills.yamlAvailable skills per agent

Next steps

On this page