clawpilot-config
ClawPilot Config
Use this skill for ClawPilot host configuration inspection and minimal correction. Support:
- OpenClaw host config
- Hermes local API config
- cc-connect runtime config
When To Use
Use this skill when the user needs to:
- Find the relevant OpenClaw config file
- Validate gateway token or password settings
- Validate referenced environment variables
- Understand why pairing or host-side operations cannot authenticate
- Validate Hermes API server settings in
~/.hermes/.env - Check
API_SERVER_ENABLED/API_SERVER_KEY - Validate cc-connect runtime settings in
~/.clawai/runtimes/ccconnect.json - Validate the cc-connect app config in
~/.cc-connect/config.toml - Check whether
cc-connectis installed and runnable - Validate cc-connect daemon readiness when pairing or host-side ccconnect operations depend on it
Do not use this skill for file delivery or general diagnostics when configuration is not the actual issue.
Workflow
- Identify the runtime in question:
openclaw,hermes, orccconnect. - Locate the relevant config file.
- Inspect only the fields relevant to the failure.
- If auth is provided via environment variable references, verify the referenced variables exist.
- Explain exactly what is missing or misconfigured.
- If the fix is obvious and low-risk, propose the minimal change.
Runtime-specific scope:
For openclaw:
- OpenClaw config path
- gateway token/password
- referenced env vars
For hermes:
~/.hermes/.envAPI_SERVER_ENABLEDAPI_SERVER_KEY- local API base URL assumptions
For ccconnect:
~/.cc-connect/config.toml- at least one
[[projects]]entry - correct
[projects.agent]type andwork_dir [projects.agent.options] work_dirmust exist and be writable- do not leave
work_dir = "/"; prefer the user's selected workspace,$HOME/Desktop, or another writable user directory [management] enabled = true, port/token[bridge] enabled = true, port/token
- at least one
~/.clawai/runtimes/ccconnect.jsonccconnectManagementUrlccconnectManagementTokenccconnectBridgeUrlccconnectBridgeTokencc-connectcommand availability- selected coding agent command availability, such as
claude,codex, orgemini - cc-connect daemon status when pairing or PocketClaw access depends on ccconnect staying alive
Important cc-connect notes:
- The official cc-connect AI install guide configures cc-connect but does not install the cc-connect daemon automatically.
- For PocketClaw ccconnect pairing, prefer the official cc-connect daemon so the process survives the shell session. Avoid recommending
cc-connect &, shell background jobs, or terminal background execution. - After installing/upgrading cc-connect or changing
~/.cc-connect/config.toml, reinstall the daemon with the explicit config path:
cc-connect daemon stop || true
cc-connect daemon uninstall || true
cc-connect daemon install --config ~/.cc-connect/config.toml
cc-connect daemon status
- If cc-connect is crashing, use daemon logs to find the real cause:
cc-connect daemon logs -f
- If
~/.cc-connect/config.tomlexists but Management API or Bridge settings are missing, identify those exact missing sections instead of replacing the user's project/platform config.
Output Rules
- Name the exact missing field, file, or environment variable.
- Prefer the shortest direct fix.
- If multiple fixes are possible, recommend one and explain why.
Do Not
- Do not rewrite unrelated config sections.
- Do not say "config is wrong" without naming the specific field or variable.
- Do not proceed as if auth is valid when it is only referenced but not actually present in the environment.
More from rethinking-studio/clawpilot-skills
clawpilot-pair
Use when the user wants to pair PocketClaw, install or upgrade ClawPilot, verify host runtime readiness, and generate a pairing code for OpenClaw, Hermes, or cc-connect Coding Agent hosts. Follow a strict pairing workflow and output the final pairing code on its own line when successful.
21clawpilot-send
Use when the current PocketClaw conversation needs a local or generated file sent back to mobile, regardless of whether the host runtime is OpenClaw or Hermes. Use a single high-level ClawPilot send command and do not expose session routing details.
18clawpilot-doctor
Use when the user wants to diagnose or repair ClawPilot host issues for OpenClaw, Hermes, or cc-connect Coding Agent hosts, including status checks, logs, restart, update, and self-repair. Focus on the concrete blocking issue and the next corrective action.
16