-
Notifications
You must be signed in to change notification settings - Fork 1
Getting Started
Athena Auto-Operator edited this page Jun 8, 2026
·
1 revision
| Component | Requirement |
|---|---|
| OS | macOS 13+ / Ubuntu 22.04+ / Windows 11+ |
| Python | 3.10+ |
| Node.js | 20+ (for GUI) |
| Memory | 8GB+ RAM |
| Disk | 2GB free space |
pip install marefdocker pull ghcr.io/maref-org/maref:latestgit clone https://github.com/maref-org/maref.git
cd maref
pip install -e ".[dev]"maref desktop demoRuns a safe demonstration of the desktop Agent操控 loop (screenshot → parse → keystroke/mouse → verify).
python scripts/check_desktop_env.pyRuns 15 environment checks to verify your setup is ready for desktop Agent操控.
maref statusShows current governance state machine status and trust scores.
maref serve --port 8000 --guiLaunches the MCP sidecar service with GUI dashboard.
from maref_lite.governance import GovernanceOverlay
from maref_lite.state_machine import GovernanceState
overlay = GovernanceOverlay()
overlay._state_machine.transition(GovernanceState.OBSERVE)
overlay._state_machine.transition(GovernanceState.ANALYZE)
print(overlay.get_status())- Read Architecture to understand the governance model
- Check API Reference for integration details
- Follow Deployment Guide for production setup
© 2026 MAREF Contributors. Licensed under Apache-2.0.