lisa
Lisa - intelligent assistant for memory and tasks. Triggers on 'lisa', 'hey lisa', or addressing lisa directly.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Lisa - intelligent assistant for memory and tasks. Triggers on 'lisa', 'hey lisa', or addressing lisa directly.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
GitHub and Git workflow helpers, Issues and Projects v2 management via gh CLI; triggers on 'github', 'create issue', 'list issues', 'github project', 'project board', 'sync tasks', 'create pr', 'pr checks', 'retrigger tests', 'bump version', 'push'.
PR workflow operations: create PRs, check status, link PRs to issues, poll for comments, address feedback, watch PRs, save notes to memory. Triggers on 'pr create', 'pr checks', 'pr link', 'pr poll', 'pr address', 'pr comments', 'pr remember', 'watch pr', 'watching'.
Create, list, view, and manage Jira issues via REST API; triggers on 'jira', 'create ticket', 'list issues', 'change type'.
Permanent memory using Lisa.
Create, load, or summarize tasks via Graphiti MCP; triggers on 'tasks', 'list tasks', 'add task', usable by any model (Claude, Gemini).
Capture each prompt into Graphiti memory (episodes) for this repo/user.
| name | lisa |
| description | Lisa - intelligent assistant for memory and tasks. Triggers on 'lisa', 'hey lisa', or addressing lisa directly. |
Primary interface for project memory, tasks, and knowledge. Routes natural language requests to appropriate capabilities.
Use when the user addresses "lisa" directly:
lisa memory load --cachelisa memory load --cache --query "<topic>"lisa memory add "<text>" --cachelisa tasks list --cachelisa tasks add "<text>" --cachelisa storage status --cachelisa storage switch <mode> --cachelisa compile-skillsWhen user asks for a retrospective, follow these steps:
git diff HEAD~20 --stat or git log --oneline -20 to see recent changeslisa memory add "RETROSPECTIVE: <findings>" --cache
| User Says | Intent | Route To |
|---|---|---|
| "show memories", "recent memories", "what's stored" | recall | memory load |
| "what do you know about X", "recall X", "search X" | search | memory load --query X |
| "remember that X", "save this", "note that X" | remember | memory add X |
| "tasks", "what are we working on", "todo" | list tasks | tasks list |
| "add task X", "new task X", "create task X" | add task | tasks add X |
| "what storage", "current mode", "storage status" | storage status | storage status |
| "switch to local", "use docker", "local mode" | switch local | storage switch local |
| "switch to zep", "use cloud", "zep-cloud mode" | switch zep-cloud | storage switch zep-cloud |
| "do a retrospective", "retrospective on session" | retrospective | git diff + memory add |
| "what did we learn", "session learnings" | retrospective | git diff + memory add |
| "compile skills", "rebuild skills" | compile skills | compile-skills |
| "merge skill extensions", "apply local skills" | compile skills | compile-skills |
👧 lisa-> (emoji, space, "lisa >>", space)👧 lisa-> Recent Memories: for memory listings👧 lisa-> Tasks: for task listings👧 lisa-> for conversational responses👧 lisa-> Tasks: (neo4j) or 👧 lisa-> Recent Memories: (zep-cloud)created_at descending (newest first)👧 lisa-> Tasks: (neo4j)
Active (3):
1. 📋 Newest task here (Jan 23)
2. 📋 Second newest (Jan 22)
3. 📋 Third newest (Jan 20)
Completed (2):
1. ✅ Recently completed (Jan 22)
2. ✅ Older completed (Jan 15)
created_at descending (newest first)👧 lisa-> Recent Memories: (neo4j)
1. **Memory title** (date)
- Details here
CLI commands return JSON:
{ status: "ok", action: "load", facts: [...] }{ status: "ok", action: "add", text: "..." }{ status: "ok", action: "list", tasks: [...] }{ status: "ok", action: "add", task: {...} }{ status: "ok", action: "status", mode: "local|zep-cloud", isConnected: true|false }{ status: "ok", action: "switch", previousMode: "...", newMode: "...", verified: true|false }{ status: "ok", action: "compile-skills", skillsDir: "...", results: [...], merged: N, skipped: N, errors: N }