Statespace: Build Interactive Web Apps for OpenClaw Agents with Markdown

Statespace is a free and open-source framework for building and sharing interactive web applications specifically for OpenClaw agents. It addresses the challenge of building, spinning up, and sharing applications for agents to use.
How It Works
You build apps by writing Markdown web pages that contain three key elements:
- tools: Constrained CLI commands that agents can call. These are defined with regex constraints on inputs and run server-side to avoid shell interpretation and prompt injection.
- components: Live data that renders on page load.
- instructions: Context that guides the agent on how to interact with the page.
Once served or deployed, OpenClaw agents interact with these apps over HTTP, similar to an API.
Example Implementation
The source provides this example Markdown structure:
---
tools:
- [grep, -r, { }, ./docs]
- [psql, -c, { regex: "^SELECT\\b.*" }]
---
```component
psql -c "SELECT count(*) FROM users"
```
# Instructions
- Search the documentation with grep
- Query the database for user metrics (read-only)
- See [reports](src/reports.md) for more workflowsKey Features
- Markdown-based: No SDKs, dependencies, or complex setup required.
- Scalable by adding pages: Each new topic or task can be a new Markdown page.
- Shareable via URL: Every app gets a URL that can be pasted into prompts or instructions.
- Agent-agnostic: Works with any agent configuration that has HTTP access.
- Safety features: Includes regex constraints on tool inputs and server-side tool execution.
For deployment, there's also a hosted version available that makes the process easier.
📖 Read the full source: r/openclaw
👀 See Also

OpenUtter: Query Google Meet Transcripts Live via OpenClaw
OpenUtter is a skill that joins Google Meet as a guest via a headless browser, captures live captions, and streams them to your OpenClaw event bus. You can query the live transcript mid-call via Telegram, WhatsApp, Slack, or Discord.

Org Studio: Open-source dashboard for managing multi-agent AI teams
Org Studio is an open-source dashboard that applies organizational design principles to coordinate teams of AI agents, with native support for both OpenClaw and Hermes Agent runtimes. It features team topology management, event-driven task boards, and cross-runtime communication where agents can mention each other in task comments.

PageAgent: Browser AI Agent That Runs Inside Web Pages with Ollama Support
PageAgent is a JavaScript library that runs AI agents directly inside web pages, reading live DOM as text instead of using screenshots. It works with any OpenAI-compatible endpoint including Ollama, enabling local LLM calls directly from the browser.

Claude Code Workflow Visual Details Memory Hierarchy and Skills System
A Reddit user shared a visual diagram showing how Claude Code organizes memory through layered CLAUDE.md files and implements reusable skills via SKILL.md files. The workflow loop suggests using Plan mode with auto-accept and frequent commits.