with one click
memory
// Agent Memory system with canonical Memory Notes, derived Memory Views, Dream capture, and explicit note operations.
// Agent Memory system with canonical Memory Notes, derived Memory Views, Dream capture, and explicit note operations.
Make websites accessible for AI agents. Navigate, click, type, extract, wait — using Chrome with existing login sessions. No LLM API key needed.
Use when creating a new OpenCLI adapter from scratch, adding support for a new website or platform, exploring a site's API endpoints via browser DevTools, or when a user asks to automatically generate a CLI for a website (e.g. "帮我生成 xxx.com 的 cli"). Covers automated generation, API discovery workflow, authentication strategy selection, TS adapter writing, and testing.
Use when quickly generating a single OpenCLI command from a specific URL and goal description. 4-step process — open page, capture API, write TS adapter, test. For full site exploration, use opencli-explorer instead.
Teach you how to efficiently use a browser.
Use when running OpenCLI commands to interact with websites (Bilibili, Twitter, Reddit, Xiaohongshu, etc.), desktop apps (Cursor, Notion), or public APIs (HackerNews, arXiv). Covers installation, command reference, and output formats for 87+ adapters.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
| name | memory |
| description | Agent Memory system with canonical Memory Notes, derived Memory Views, Dream capture, and explicit note operations. |
| always | true |
memory/notes.jsonl is the canonical Agent Memory store. It contains typed Memory Notes with status, priority, confidence, source trace-back, timestamps, and lifecycle links.memory/MEMORY.md is the project Memory View rendered from active project, decision, fix, and followup notes.USER.md is the user Memory View rendered from active preference notes.SOUL.md is the assistant Memory View rendered from active instruction notes.memory/conversations/*.jsonl stores clean Conversation Evidence for completed user/assistant messages. Dream processes it before legacy summary history.memory/.evidence_cursor tracks processed Conversation Evidence. memory/history.jsonl and .dream_cursor remain the legacy fallback path.Use Memory Note operations for durable agent-side memory:
save_memory_note for new durable preferences, instructions, project facts, decisions, fixes, or followups.search_memory_notes to find notes by query, type, status, and limit.trace_memory_note to inspect note content and source trace-back.reject_memory_note to remove a wrong or obsolete note from default recall and Memory Views.supersede_memory_note to replace an old note while preserving the lifecycle link.USER.md or other Memory Views.memory/notes.jsonl remains canonical and indexes must be rebuildable from it.SOUL.md, USER.md, or memory/MEMORY.md directly. They are Memory Views refreshed from active Memory Notes./dream-log command.session.user_profile is only a runtime cache. Durable user facts belong in user-scoped Memory Notes.