- Reset master to upstream/main (16,697 commits) - Overlay 2,271 local-only files (skills, tools, workspace, configs, apps) - Restore IDENTITY.md and USER.md templates - Build verified, gateway running, Discord working Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1.4 KiB
1.4 KiB
OpenClaw Tools
Collection of utilities and services for OpenClaw.
Available Tools
Voice Surface 🎤
Local voice interface for OpenClaw - push-to-talk web UI with full speech-to-text and text-to-speech pipeline.
Features:
- Push-to-talk browser interface (mouse, touch, spacebar)
- Full audio pipeline: STT → Agent → TTS
- Token-based authentication for owner-only access
- Systemd service support for persistent deployment
- Works on Linux (tested on Ubuntu 24.04)
Quick Start:
cd voice-surface
pnpm install
./run.sh
See voice-surface/README.md for full documentation.
Reddit Tools
Collection of Python scripts for Reddit research and workflow automation:
reddit_researcher.py- Basic Reddit researchreddit_deep_dive.py- Deep dive into specific topicsreddit_to_kanban.py- Convert Reddit content to Kanban boardskanban_reddit_cleanup.py- Cleanup and organize Kanban boards
Contributing
When adding a new tool:
- Create a dedicated directory under
tools/ - Include a README.md with:
- Purpose and features
- Installation instructions
- Usage examples
- Dependencies
- Add entry to this index
- Update CHANGELOG.md if user-facing
Guidelines
- Keep tools self-contained
- Document dependencies clearly
- Provide run scripts where appropriate
- Follow the repository coding style
- Add tests when feasible