You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The agent reshapes the interface
Ask for a page, tool, widget, or workflow and the agent can build it straight into the running workspace while you work.
Endless possibilities
The agent is not trapped inside a fixed product surface. It can develop the capabilities it needs from within the system itself and keep extending the Space toward whatever the user can imagine.
The agent lives in the frontend runtime
Space Agent runs in the browser layer itself, whether you open it in a tab or through the desktop app, so the agent can work directly with the same framework, modules, spaces, and UI it is reshaping.
Text-based agent
New capabilities can live in simple SKILL.md files that the agent can write and extend itself in plain text.
Token-efficient execution
No bulky tool-call JSON. When action is needed, the agent can stay in plain text and plain JavaScript inside the same message.
Puzzle-piece modularity
The core stays small. Most of Space Agent is made of modular pieces that can be added, removed, or swapped cleanly instead of being welded into one rigid app.
Personal to hierarchical
Use Space Agent as a completely personal assistant, or organize it into a hierarchical system of users and groups as the scope grows.
Per-user work, group sharing
Users can build in their own layer without affecting anyone else, then groups can share tools, workflows, and behavior across teams when they are ready.
Persistent admin and time travel
When something breaks, admin mode gives you a stable control plane, and Git-backed history lets you roll back user or group changes without taking everyone down with you.
Grab the latest build from GitHub Releases. It runs everything as one app. No terminal required.
A real server, for you or your team
git clone https://github.com/agent0ai/space-agent.git
cd space-agent
npm install
# create yourself an admin
node space user create admin --password "change-me-now" --full-name "Admin" --groups _admin
# start the server
node space serve
For development
npm run dev # server with auto-reload
Open the checked-in VS Code launch entry Dev Server (npm run dev) when you want breakpoints in server/ code. It launches the same watcher and auto-attaches to the spawned node space serve process across restarts.
For production
node space set CUSTOMWARE_PATH=/srv/space/customware
node space supervise HOST=0.0.0.0 PORT=3000 # zero downtime auto-update
Run node space help to see the full command surface and built-in help for each from commands/params.yaml.
AI-driven development and documentation
Space Agent is developed by AI agents, including its documentation.
The framework keeps a hierarchical AGENTS.md instruction system, plus skills and focused docs, so agents can understand ownership, architecture, workflows, and local implementation rules while they build and maintain the system autonomously.
DeepWiki covers the human-readable side of that same knowledge base. Together, this keeps the codebase and its documentation prepared for autonomous agent work, and helps the documentation keep up with the pace of AI-driven development instead of falling behind.