ワンクリックで
memory
Two-layer memory with vector search + grep. Always load this skill.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Two-layer memory with vector search + grep. Always load this skill.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Manage calendar events and schedules. Create, view, update, and delete events. Supports Google Calendar and Outlook.
Search and install agent skills from ClawHub, the public skill registry.
Schedule reminders and recurring tasks.
Manage email communications. Read, send, search, and organize emails. Supports Gmail and Outlook.
Unified productivity workflows combining calendar, email, and task management. Streamline common work processes like meeting preparation, daily planning, and project tracking.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
| name | memory |
| description | Two-layer memory with vector search + grep. Always load this skill. |
| always | true |
Picobot has two memory systems:
Fast, semantic similarity search for past conversations and facts.
search_memory tool for natural language queries like "what did I say about the API?" or "previous project preferences"remember tool to save important facts with automatic embeddingExample:
Tool: search_memory
query: "what did I ask about OAuth?"
limit: 5
For precise text matching and large history files.
memory/MEMORY.md — Long-term facts (preferences, project context, relationships). Always loaded.memory/HISTORY.md — Append-only event log. Search with grep when vector search misses.grep -i "keyword" memory/HISTORY.mdfindstr /i "keyword" memory\HISTORY.mdUse remember tool immediately for important facts:
Old conversations are automatically summarized and appended to file memory when the session grows large.