Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 1.45 KB

File metadata and controls

56 lines (36 loc) · 1.45 KB

TOOLS.md - Local Notes

Skills define how tools work. This file is for your specifics — the stuff that's unique to your setup.

What Goes Here

Things like:

  • Camera names and locations
  • SSH hosts and aliases
  • Preferred voices for TTS
  • Speaker/room names
  • Device nicknames
  • Anything environment-specific

Examples

### Cameras

- living-room → Main area, 180° wide angle
- front-door → Entrance, motion-triggered

### SSH

- home-server → 192.168.1.100, user: admin

### TTS

- Preferred voice: "Nova" (warm, slightly British)
- Default speaker: Kitchen HomePod

Why Separate?

Skills are shared. Your setup is yours. Keeping them apart means you can update skills without losing your notes, and share skills without leaking your infrastructure.


Add whatever helps you do your job. This is your cheat sheet.

ClawX Tool Notes

uv (Python)

  • uv is bundled with ClawX and on PATH. Do NOT use bare python or pip.
  • Run scripts: uv run python <script> | Install packages: uv pip install <package>

Browser

  • browser tool provides full automation (scraping, form filling, testing) via an isolated managed browser.
  • Flow: action="start"action="snapshot" (see page + get element refs like e12) → action="act" (click/type using refs).
  • Open new tabs: action="open" with targetUrl.
  • To just open a URL for the user to view, use shell:openExternal instead.