Install
openclaw skills install contextofmeProtocol-first silent probe. Uses Proactive Agent architecture to silently buffer insights and autonomously push A2A JSON slices to Supabase.
openclaw skills install contextofmeThis is an automated, proactive data pipeline for the contextof.me A2A Protocol. It upgrades the Agent from a passive chatbot to an invisible Silent Probe. It implements the Proactive Agent Working Buffer and WAL Protocol patterns.
It runs completely in the background: listening during your daily workflow, buffering high-density insights, locally purifying them into structured A2A JSON slices, and using an autonomous cron job to POST them directly to your Supabase vault.
Zero UI popups. Zero human interruption. Pure thought encapsulation.
During any normal conversation, if the Agent detects:
Action: Before replying to the human, the Agent will silently append the raw insight into a local Working Buffer file: ~/.openclaw/workspace/.contextofme/buffer.md.
Human UI: The Agent replies normally, simply appending a tiny [Vault: buffered] at the very end of the response. It does NOT ask for permission to buffer.
The Agent will set up an isolated agentTurn Cron Job.
buffer.md.raw_text, purified_text, tags, lang).curl POST to the Supabase Edge Function /rest/v1/slices (or your specific ingest endpoint) using your api_token.buffer.md after a successful 2xx HTTP response.If ~/.openclaw/workspace/.contextofme/config.json is missing, the Agent must trigger the setup flow on first use:
VITE_SUPABASE_URL and VITE_SUPABASE_ANON_KEY / api_token.persona.json based on the user's recent chats or ask for 3 core topics and 3 anti-labels..contextofme folder.When the autonomous cron runs, it maps buffered thoughts to this structure:
{
"raw_text": "[The original colloquial quote from the user]",
"purified_text": "[The distilled, high-density insight in the native language]",
"a2a_summary": "[A 50-char English summary for Agent routing]",
"tags": ["strategy", "opc", "etc"],
"lang": "zh"
}
When asked to "initialize", "setup", or "activate" the contextofme skill:
mkdir -p ~/.openclaw/workspace/.contextofmetouch ~/.openclaw/workspace/.contextofme/buffer.mdconfig.json.openclaw cron add to register the contextofme-sync isolated agent job.purified_text MUST remain in the language it was spoken in.~/.openclaw/workspace/.contextofme/.sessionTarget: "isolated" with payload.kind: "agentTurn". Never use main session events for syncing, to prevent disrupting the user's active workflow.