一键导入
lobu
Build, run, and maintain Lobu agent projects, including lobu.toml, prompt files, local skills, evals, providers, connections, and Lobu memory workflows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Build, run, and maintain Lobu agent projects, including lobu.toml, prompt files, local skills, evals, providers, connections, and Lobu memory workflows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Repo-specific operational skill for Lobu-managed agents working inside this repository. Covers dev workflow, build commands, validation, and repo constraints.
Demonstrates the LLM egress judge. Declares GitHub and npm as flat allows (fast path), Slack and user-upload hosts as `judge`-gated, and ships two named judge policies the operator can compose with. Pair with `[agents.engineering-control.egress]` in lobu.toml to append an operator policy.
Use when working inside a Lobu project generated by @lobu/cli or any repository centered on lobu.toml, AGENTS.md, agent prompt files, local skills, and evals. This skill helps a coding agent inspect the right files, make Lobu-native changes, keep the stack runnable, and validate behavior with chat tests and evals.
| name | lobu |
| description | Build, run, and maintain Lobu agent projects, including lobu.toml, prompt files, local skills, evals, providers, connections, and Lobu memory workflows. |
Use this skill when the user is working on a Lobu project or wants to scaffold, run, validate, evaluate, or connect one. Also use it when the user wants persistent Lobu memory, MCP client setup, OpenClaw memory plugin configuration, knowledge search/save workflows, watchers, or browser-authenticated connectors.
lobu.toml.IDENTITY.md, SOUL.md, and USER.md.skills/<name>/SKILL.md or agents/<agent>/skills/<name>/SKILL.md.lobu login for CLI authentication. Do not use a separate memory login command.lobu memory ... for memory operations, MCP client wiring, seeding, direct tool calls, and browser-auth capture.lobu.toml first.agents/<id>/.skills/ and agents/<id>/skills/.lobu validate after config changes.lobu eval when prompt or behavior changes.npx @lobu/cli@latest init my-agent
npx @lobu/cli@latest run
npx @lobu/cli@latest validate
npx @lobu/cli@latest eval
npx @lobu/cli@latest login
Your long-term memory is powered by Owletto. Do NOT use local files (memory/, MEMORY.md) for memory.
Configure project-scoped memory in lobu.toml:
[memory.owletto]
enabled = true
org = "my-org"
name = "My workspace"
models = "./models"
data = "./data"
Then seed or operate the memory workspace with:
lobu login
lobu memory org set <org-slug>
lobu memory health --org <org-slug>
lobu memory seed --org <org-slug>
lobu memory run search_knowledge '{"query":"Acme"}' --org <org-slug>
Use search_knowledge first when the user asks about a specific entity or workspace memory. Use save_knowledge to persist durable memory. To update existing knowledge, search first, then save with supersedes_event_id so the old row is tombstoned rather than deleted.
Use the actual MCP URL for the user's runtime. Never hardcode a hosted URL unless the user explicitly asks for that instance.
Common setup commands:
# Claude Code
claude mcp add --transport http lobu <mcp-url>
# Codex
codex mcp add lobu --url <mcp-url>
# Gemini CLI
gemini mcp add --transport http lobu <mcp-url>
# Interactive client wiring wizard
lobu memory init --url <mcp-url>
For ChatGPT, Claude Desktop, Cursor, and other browser-managed clients, paste the MCP URL into the client's MCP/connector settings and complete OAuth in the browser.
For OpenClaw, install the plugin and let the Lobu CLI write plugin config:
openclaw plugins install @lobu/openclaw-plugin
lobu login
lobu memory configure --url <mcp-url> --org <org-slug>
lobu memory health --url <mcp-url> --org <org-slug>
lobu memory configure writes a token command that uses lobu token --raw, so OpenClaw reuses the top-level Lobu login.
For connectors that need cookies from a local browser session:
lobu memory browser-auth --connector <key> --auth-profile-slug <slug>
lobu memory browser-auth --connector <key> --auth-profile-slug <slug> --check
Use --chrome-profile, --launch-cdp, and --dedicated-profile only when the user needs a specific browser profile or dedicated remote-debugging profile.
events is append-only: never delete rows directly; use tombstone/supersede flows.