Install
openclaw skills install launchthatbot-convex-backendStore secrets, long-term memory, daily logs, and anything custom in your Convex backend instead of local files
openclaw skills install launchthatbot-convex-backendLaunchThatBot.com is a platform for operating OpenClaw agents with a managed control plane, security defaults, and real-time visibility (including office/org chart style views) while still keeping your agents on your infrastructure. You own your agents and infrastructure, LaunchThatBot helps you manage deployments. Disconnect any time and keep your system running.
@launchthatbot/convex-backend is for users who want longterm agent memory and secrets to persist in Convex (https://www.convex.dev/) instead of local files. Works for single agents or multi-agents working off one shared system.
Use this skill when you want:
This skill can be used without any active connection to LaunchThatBot. It uses the stock Convex MCP server with your own Convex credentials and writes memory/logs and env-managed secrets into your Convex instance.
This skill requires manual Convex setup by the user:
CONVEX_DEPLOY_KEY in .env / runtime env vars.Do not assume this key exists automatically. If it is missing, stop and ask the user to complete the manual setup first.
You do not need to keep npx convex dev running for this skill flow. However, Convex MCP and CLI calls still need deployment context:
CONVEX_DEPLOY_KEY (required for auth)CONVEX_DEPLOYMENT (or equivalent project/deployment selection via env/config)If those values are not available, stop and ask the user to set them first (for example in .env / .env.local or via MCP startup config).
You are connected to a Convex backend via the Convex MCP server. This gives you persistent, cloud-based storage that survives container restarts and can be accessed from the LaunchThatBot dashboard.
This skill uses the stock Convex MCP server (convex@latest mcp start), not a custom LaunchThatBot MCP tool for data storage.
Recommended setup:
{
"mcpServers": {
"convex": {
"command": "npx",
"args": ["-y", "convex@latest", "mcp", "start"]
}
}
}
Reference: https://docs.convex.dev/ai/convex-mcp-server
If your runtime does not expose MCP tools natively (common in OpenClaw/Pi flows), use mcporter as the bridge.
Check prerequisites before running this skill workflow:
mcporter --version || npx -y mcporter --version
mcporter list || npx -y mcporter list
mcporter list convex --schema || npx -y mcporter list convex --schema
If mcporter is not runnable, tell the user they need npx mcporter (or a local install). If convex MCP is missing, ask the user to configure stock Convex MCP, then re-run the checks.
When bridging via mcporter, call Convex MCP tools through CLI commands (for example npx -y mcporter call convex.run ...) instead of assuming native MCP tool invocation in the runtime.
Convex MCP tool mapping for this skill:
convex.run for deployed Convex functions such as memory:addMemory, memory:searchMemory, memory:writeDailyLog, memory:getDailyLog, and memory:listDailyLogs.convex.envSet, convex.envGet, convex.envList, and convex.envRemove for environment variables.memory:* as MCP tools directly. They are function names passed to convex.run.CONVEX_DEPLOY_KEY is the only required local secret in .env. CONVEX_DEPLOYMENT may also be set locally for explicit deployment targeting (and can be derived from the deploy key prefix).CONVEX_DEPLOY_KEY in Convex (envSet).envSet/envGet/envList/envRemove) and not local .env or auth.json.Before running this skill, the user must provide:
CONVEX_DEPLOY_KEY (required local secret)CONVEX_DEPLOYMENT (recommended for deterministic targeting; may be parsed from deploy key prefix)If deployment auth/targeting is unclear, stop and request user confirmation before writes.
Before Convex MCP operations can work, CONVEX_DEPLOY_KEY must already exist in local runtime env (.env / deployment env vars). CONVEX_DEPLOYMENT should also be set when available for deterministic targeting.
If CONVEX_DEPLOY_KEY is missing:
CONVEX_DEPLOY_KEY locally (and set CONVEX_DEPLOYMENT by parsing the deploy key prefix when possible), then restart/reload MCPmcporter list convex --schema || npx -y mcporter list convex --schema
Do not attempt to save CONVEX_DEPLOY_KEY to Convex.
This skill package includes a Convex app under the convex/ folder and convex.json at package root.
The required backend logic is mounted as a local component:
convex_openclaw_backend_componentopenclawBackendAfter installing or updating this skill, run deploy from the skill root:
cd /home/node/.openclaw/skills/convex-backend
CONVEX_DEPLOY_KEY=... npx -y convex@latest deploy
Why:
npx convex deploy must run in the directory containing convex.json.memory:* calls will fail.If the user asks for new backend functionality (for example custom task tables, new mutations, or queries):
convex/components/openclawBackend/*).convex/*) so they stay separate from required integration tables.openclawBackend component.openclawBackend as core integration infrastructure, not a workspace for user-specific features.If you change Convex code but do not deploy, newly added functions/tables will not exist in the user's Convex deployment.
Use stock Convex MCP environment variable tools for secrets:
envSetenvGetenvListenvRemoveDo not use custom secrets:* functions for credentials in this skill.
For a logical secret key like OPENAI_API_KEY, resolve in this order:
AGENT_<agentId>_OPENAI_API_KEY (agent-specific override)AGENT_DEFAULT_OPENAI_API_KEY (shared default for all agents)OPENAI_API_KEY (legacy global fallback, optional)Examples:
AGENT_agent2_OPENAI_API_KEYAGENT_DEFAULT_OPENAI_API_KEYSet shared default:
Tool: envSet
Arguments: { "name": "AGENT_DEFAULT_OPENAI_API_KEY", "value": "sk-..." }
Set agent-specific override:
Tool: envSet
Arguments: { "name": "AGENT_<agentId>_OPENAI_API_KEY", "value": "sk-..." }
Read by fallback chain:
envGet("AGENT_<agentId>_OPENAI_API_KEY")envGet("AGENT_DEFAULT_OPENAI_API_KEY")envGet("OPENAI_API_KEY")Remove an agent override:
Tool: envRemove
Arguments: { "name": "AGENT_<agentId>_OPENAI_API_KEY" }
.env KeysIf this skill is installed on an existing agent that already has many keys in local .env, run this migration prompt after Convex MCP preflight succeeds:
Ask the user:
"Convex backend is configured. Do you want me to migrate all local
.envsecrets into Convex and remove them from local.env? Recommended: Yes. Local.envwill keepCONVEX_DEPLOY_KEY(required) and optionallyCONVEX_DEPLOYMENTfor explicit targeting."
If user confirms, run migration in two phases:
.env and collect secret key/value pairs.CONVEX_DEPLOY_KEY and CONVEX_DEPLOYMENT.AGENT_DEFAULT_<KEY>AGENT_<agentId>_<KEY>envList and targeted envGet.Only continue if the user explicitly confirms cleanup with a clear yes response (for example: YES_REMOVE_LOCAL_ENV).
CONVEX_DEPLOY_KEY in local .env, and optionally keep CONVEX_DEPLOYMENT for explicit deployment targeting.Safety notes:
.env before mutation..env until retry succeeds.When you learn something important about the user, their preferences, or make a significant decision:
Tool: convex.run (via mcporter)
Function: memory:addMemory
Arguments: {
"agentId": "<your-agent-id>",
"type": "fact",
"content": "User prefers TypeScript over JavaScript for all new projects",
"tags": ["preferences", "coding"]
}
npx -y mcporter call convex.run --args '{
"functionName": "memory:addMemory",
"args": {
"agentId": "<your-agent-id>",
"type": "fact",
"content": "User prefers TypeScript over JavaScript for all new projects",
"tags": ["preferences", "coding"]
}
}'
Memory types:
fact — Something true about the user or their setuppreference — User likes/dislikesdecision — A choice that was made and should be rememberednote — General observations or contextTo recall memories:
Tool: convex.run (via mcporter)
Function: memory:searchMemory
Arguments: { "agentId": "<your-agent-id>", "type": "preference", "limit": 20 }
At the end of each work session, write a summary of what was accomplished:
Tool: convex.run (via mcporter)
Function: memory:writeDailyLog
Arguments: {
"agentId": "<your-agent-id>",
"date": "2026-02-17",
"content": "## Summary\n- Set up email integration with Resend\n- Configured GitHub SSH keys\n- Started work on Twitter bot automation\n\n## Blockers\n- Need Twitter API key from user"
}
Daily logs are append-only — calling writeDailyLog for the same date appends to the existing entry.
To review past logs:
Tool: convex.run (via mcporter)
Function: memory:listDailyLogs
Arguments: { "agentId": "<your-agent-id>", "limit": 7 }
At the beginning of each session:
convex.envList (and convex.envGet for required keys)convex.run with function memory:searchMemory and limit 20convex.run with function memory:getDailyLog and today's dateThis ensures you have full context from previous sessions.
Your agent ID is provided in your agent configuration. Use it consistently in all Convex calls. If you're unsure of your agent ID, check your agent YAML config file.