ワンクリックで
memory-read
Read memories from persistent storage using the file system
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Read memories from persistent storage using the file system
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Execute a single agent step with custom system prompt and wait for completion.
Control the CARNELIAN browser control server (status/start/stop/tabs/snapshot/screenshot/navigate/act). Routes to the local browser control HTTP server.
Render canvas graphics and visualizations via Carnelian gateway node.invoke API
Communicate with Windsurf Cascade via JSONL channel files (message/delegate/request_help/share_context/status).
Manage Gateway cron jobs (status/list/add/update/remove/run/runs) and send wake events.
Send a message to a Discord channel via the Discord REST API
| name | memory-read |
| description | Read memories from persistent storage using the file system |
| metadata | {"CARNELIAN":{"emoji":"📖"},"carnelian":{"runtime":"node","version":"1.0.0","sandbox":{"network":"none","resourceLimits":{"maxMemoryMB":64,"maxCpuPercent":10,"timeoutSecs":10}},"capabilities":["fs.read"]}} |
Read memories from persistent storage using the file system.
Ported from CARNELIAN memory-tool.ts.
{
path: string; // Required: file path (relative to memory directory)
from?: number; // Optional: 1-indexed line number to start reading from
lines?: number; // Optional: number of lines to read
}
{
path: string; // Absolute path that was read
text: string; // File content (full or partial based on from/lines)
}
CARNELIAN_MEMORY_DIR or current working directory)from is 1-indexed (first line is 1, not 0)from and lines are specified, only that range is returnedfs.readFile exposed in the node sandboxRead full file:
{
"path": "notes/meeting.txt"
}
Read lines 10-20:
{
"path": "notes/meeting.txt",
"from": 10,
"lines": 11
}