一键导入
replay-consolidation
Three-phase memory replay for deep consolidation. Use when the API recommends "review" or "spaced_review" for multiple related concepts.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Three-phase memory replay for deep consolidation. Use when the API recommends "review" or "spaced_review" for multiple related concepts.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Connect a notification channel (Slack, Gmail, etc.) so Cognition can send you learning exercises throughout the day — even when your laptop is off.
Schedule learning exercises for the next 24 hours via Slack/Gmail. Runs at the end of every session so exercises arrive even when Claude Code is closed. The API decides WHEN and WHAT technique — you build the exercise and schedule delivery.
Send screen observations to the Cognition API as learning events. Transforms Screenpipe data into API event format.
Launch the Cognition GUI app. Opens the Electron window and connects Claude Code to it via WebSocket. Use this after /cognition:start or whenever you need the GUI.
Generate and deliver a learning exercise based on what the user is forgetting. Orchestrates different learning techniques.
Test if the user's confidence matches their actual knowledge. Use when calibration ECE is high or strategy is "overconfident".
| name | replay-consolidation |
| description | Three-phase memory replay for deep consolidation. Use when the API recommends "review" or "spaced_review" for multiple related concepts. |
| user-invocable | false |
A structured multi-phase review that consolidates fragile memories into long-term storage.
curl -s -H "x-api-key: $TOKEN" \
"https://cognition-api.fly.dev/v1/replay/plan?user_id=USER_ID"
The plan has three phases:
You remembered that useEffect runs after render, but forgot about the cleanup function. The cleanup runs when the component unmounts OR before the next effect runs. Think of it like checking out of a hotel room — you clean up before the next guest arrives. Quick check: If your useEffect sets up a WebSocket connection, what should the cleanup do?
curl -s -X POST -H "x-api-key: $TOKEN" -H "Content-Type: application/json" \
"https://cognition-api.fly.dev/v1/replay/materialize?user_id=USER_ID" \
-d '{ "plan_id": "<plan_id>" }'