بنقرة واحدة
memory-write
Write memories to persistent storage using the file system
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Write memories to 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-write |
| description | Write memories to 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.write"]}} |
Write memories to persistent storage using the file system.
Ported from CARNELIAN memory-tool.ts.
{
path: string; // Required: file path (relative to memory directory)
content: string; // Required: content to write
append?: boolean; // Optional: append to file instead of overwriting (default false)
}
{
ok: true;
path: string; // Absolute path where content was written
bytesWritten: number; // Number of bytes written
}
CARNELIAN_MEMORY_DIR or current working directory)append: true to add content to an existing file without overwritingfs.writeFile / fs.appendFile exposed in the node sandbox{
"path": "notes/meeting.txt",
"content": "Meeting notes from 2026-02-25\n",
"append": true
}