ワンクリックで
memory-ops
Use the Memory app to retrieve workspace context, save durable business facts, and link notes to files or app entities.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use the Memory app to retrieve workspace context, save durable business facts, and link notes to files or app entities.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create and manage workspace checklists through the Checklist app CLI and MCP surfaces.
Create an image with the image generation tool, save it into the active workspace with a suitable filename, and verify it through Storage.
Use the Storage app to inspect workspace uploaded files and generated artifacts through official Maverick app surfaces.
Manage Maverick agent roles, agent types, prompt previews, and agent catalog data through the Agents app.
Use the Maverick App Store app to inspect catalogs, install apps, and submit app source to the external public App Store.
Use Chat UI surfaces with core-owned workspace conversation threads and runtime turn operations.
| name | memory-ops |
| description | Use the Memory app to retrieve workspace context, save durable business facts, and link notes to files or app entities. |
Use this skill when a user asks a workspace-specific question, asks about prior work, mentions business facts worth retaining, or asks about files, people, projects, decisions, or status.
Before answering a workspace-specific question, retrieve context:
maverick app memory cli run memory --action context --query "<user question>" --limit 8
Use returned provenance to mention files or app entities only when they are relevant.
When the user asks to filter or curate the Memory graph UI, use the Memory app view surface instead of only reading data:
maverick app memory cli run memory --action set_view_filter --query "Acme"
For a curated graph, pass Memory node references:
maverick app memory cli run memory --action set_custom_view --title "Acme context" --refs '[{"app_id":"memory","entity_type":"node","entity_id":"node_123"}]'
Use clear_custom_view to return the app to normal graph search mode.
Save only stable, business-relevant information:
maverick app memory cli run memory --action remember --title "<short title>" --body "<fact or note>" --type note
Prefer updating or linking existing nodes over creating duplicates.
Attach files when they are relevant evidence:
maverick app memory cli run memory --action attach_file --node-id <node_id> --file-id <file_id> --workspace-relative-path storage/uploaded/example.pdf --reason "<why it matters>"
Attach app entities when they clarify people, companies, deals, emails, or records:
maverick app memory cli run memory --action attach_app_entity --node-id <node_id> --app records --type person --id person_123 --title "Mario Rossi"
Create inferred relationships only with a reason and confidence:
maverick app memory cli run memory --action link --source-node-id <node_id> --target-node-id <node_id> --kind supports --weight 0.8 --confidence 0.7 --reason "<why these are connected>"
Do not save speculative facts as confirmed memory. If uncertain, mark lower confidence or ask the user.