openloomi

GitHub

OpenLoomi与Claude Code集成的入口技能。负责处理安装配置、本地记忆查询、宠物状态管理、LLM用量查看及生命周期钩子操作,通过loomi-bridge执行,不复制业务逻辑。

plugins/claude/skills/openloomi/SKILL.md melandlabs/openloomi

Trigger Scenarios

用户提及openloomi, loomi, pet或/命令 需要安装或配置OpenLoomi 查询本地记忆或RAG搜索 修改Loomi Pet状态 查看今日LLM使用量 设置或检查hooks状态

Install

npx skills add melandlabs/openloomi --skill openloomi -g -y
More Options

Non-standard path

npx skills add https://github.com/melandlabs/openloomi/tree/main/plugins/claude/skills/openloomi -g -y

Use without installing

npx skills use melandlabs/openloomi@openloomi

指定 Agent (Claude Code)

npx skills add melandlabs/openloomi --skill openloomi -a claude-code -g -y

安装 repo 全部 skill

npx skills add melandlabs/openloomi --all -g -y

预览 repo 内 skill

npx skills add melandlabs/openloomi --list

SKILL.md

Frontmatter
{
    "name": "openloomi",
    "description": "OpenLoomi runtime integration for Claude Code. Use when the user mentions OpenLoomi, wants to install\/configure it, query their local memory via the Loomi runtime, change the Loomi Pet state, view LLM usage, run a one-shot task through the local runtime, or install the optional hooks that mirror Claude Code's lifecycle onto the Loomi Pet and auto-archive every Stop into OpenLoomi memory. Triggers: openloomi, loomi, \/openloomi:*, local memory, RAG search, insights, loop, pet state.",
    "allowed-tools": "Bash(node ${CLAUDE_PLUGIN_ROOT}\/scripts\/loomi-bridge.mjs *)"
}

OpenLoomi Claude Plugin Skill

This skill is the single entry point for the OpenLoomi ↔ Claude Code integration. It is intentionally thin: it delegates to loomi-bridge.mjs for every side effect and never duplicates OpenLoomi business logic, connector implementations, or memory storage.

When to call loomi-bridge

Call loomi-bridge.mjs whenever ANY of the following is true:

  • User says openloomi, loomi, pet, /openloomi:*, or asks about "the local AI assistant".
  • User wants to install, configure, verify, or update OpenLoomi.
  • User asks Claude Code to query their memory, look up a previous conversation, or "search my notes".
  • User wants to set the Loomi Pet to a specific state.
  • User wants today's LLM cost / usage.
  • User asks about hooking Claude Code up to "the pet" or "loop".

When the user just wants something Claude can do natively (write a file, answer a question, etc.) and OpenLoomi is not mentioned, do not invoke the bridge.

Bridge subcommands (quick reference)

Subcommand Slash command Typical use
setup /openloomi:setup First-run install + status
setup-status [--json] /openloomi:status Stable JSON status
install [--yes] (internal) User-approved install
login (internal) Open OpenLoomi login surface, report status
pet <state> /openloomi:pet Set Pet state (9 universal states; theme-agnostic)
state <name> (internal/hook) Fire-and-forget Pet state from hook
archive (internal/hook) Archive last transcript on Stop
usage /openloomi:usage Today's LLM usage summary
install-hooks /openloomi:hooks install Merge hooks into ~/.claude/settings.json
uninstall-hooks /openloomi:hooks uninstall Strip only the plugin's hook block
hooks-status /openloomi:hooks status Report hook merge state
loop (doorway) /openloomi:loop Loop dashboard snapshot — delegates to the openloomi-loop sub-skill
memory <query> (doorway) /openloomi:memory Search memory + KB + insights — delegates to the openloomi-memory sub-skill
version (internal) Print plugin version

All subcommands emit JSON to stdout unless noted otherwise. All failure modes emit JSON (never bare stack traces).

Secrets contract (verbatim from plugins/codex/README.md §256–296)

Claude Code must never receive or print:

  • model provider API keys (the plugin never reads them — the runtime handles its own AI provider configuration);
  • OAuth access tokens or refresh tokens;
  • connector app secrets;
  • OpenLoomi auth tokens;
  • local secure-storage contents (e.g. ~/.openloomi/token contents).

Allowed status-only checks:

OPENLOOMI_AUTH_TOKEN present/missing
~/.openloomi/token present/missing
native Claude CLI authenticated / not authenticated
AI provider configured/missing
connector configured/missing
local API reachable/unreachable

The bridge may report key names and presence. It must not print values. AI provider readiness comes entirely from the OpenLoomi runtime's /api/preferences/ai response (nativeRuntime / aiProviderConfigured).

Discovery chain

The bridge resolves your local OpenLoomi runtime in this order:

  1. OPENLOOMI_BIN
  2. OPENLOOMI_HOME / OPENLOOMI_INSTALL_DIR
  3. OPENLOOMI_REPO_DIR
  4. PATH lookup
  5. Platform defaults — the desktop app's main binary:
    • macOS: ~/Applications/OpenLoomi.app/Contents/MacOS/openloomi
    • Linux: /opt/openloomi/openloomi (or ~/.local/bin/openloomi, /usr/local/bin/openloomi)
    • Windows: %LOCALAPPDATA%\OpenLoomi\openloomi.exe
  6. ${CLAUDE_PLUGIN_DATA}/config.json (non-secret cached install path)
  7. --bin-path <p> explicit flag
  8. Otherwise: emit nextAction: install_openloomi

Hook events → Pet states

Claude Code hook Pet state
SessionStart greet (fallback presenting if capybara theme active)
UserPromptSubmit thinking
PreToolUse (Bash|Edit|Write|Read|Grep|Glob) working
PostToolUse thinking
Stop archive → happy
SubagentStart juggling
SubagentStop thinking
Notification (permission_prompt|elicitation) needsinput

idle, sleeping, sweeping, presenting are managed by the loop watcher and are not set by hooks.

Reminders for Claude

  • Never handle AI provider keys in this plugin. AI provider configuration lives in the OpenLoomi runtime; the runtime detects the user's local claude CLI auth on its own. If the user reports missing Claude CLI auth, point them at claude auth login or at OpenLoomi Desktop → API Settings for a custom endpoint.
  • Never auto-install hooks. Always require an explicit /openloomi:hooks install.
  • Always exit 0 on Stop. Archive failures are reported via stdout JSON with _openloomi.archive: "skipped", reason: ....
  • When unsure, default to running loomi-bridge setup-status --json and respond based on the structured output — don't guess.

Version History

  • 23e340f Current 2026-07-19 17:58

Same Skill Collection

plugins/claude/skills/composio/SKILL.md
plugins/claude/skills/openloomi-api/SKILL.md
plugins/claude/skills/openloomi-connectors/SKILL.md
plugins/claude/skills/openloomi-feature-guide/SKILL.md
plugins/claude/skills/openloomi-hooks/SKILL.md
plugins/claude/skills/openloomi-install/SKILL.md
plugins/claude/skills/openloomi-memory/SKILL.md
plugins/claude/skills/openloomi-pet/SKILL.md
plugins/codex/skills/composio/SKILL.md
plugins/codex/skills/openloomi-api/SKILL.md
plugins/codex/skills/openloomi-connectors/SKILL.md
plugins/codex/skills/openloomi-feature-guide/SKILL.md
plugins/codex/skills/openloomi-handoff/SKILL.md
plugins/codex/skills/openloomi-install/SKILL.md
plugins/codex/skills/openloomi-loop/SKILL.md
plugins/codex/skills/openloomi-memory/SKILL.md
plugins/codex/skills/openloomi-pet/SKILL.md
plugins/codex/skills/openloomi/SKILL.md
skills/agent-browser/SKILL.md
skills/composio/SKILL.md
skills/cua-driver/SKILL.md
skills/frontend-design/SKILL.md
skills/openloomi-api/SKILL.md
skills/openloomi-connectors/SKILL.md
skills/openloomi-feature-guide/SKILL.md
skills/openloomi-memory/SKILL.md
skills/pdf/SKILL.md
skills/skill-creator/SKILL.md
skills/weather/SKILL.md
plugins/claude/skills/openloomi-loop/SKILL.md
skills/docx/SKILL.md
skills/openloomi-loop/SKILL.md
skills/pptx/SKILL.md
skills/ui-ux-pro-max/SKILL.md
skills/xlsx/SKILL.md

Metadata

Files
0
Version
23e340f
Hash
e81b5d92
Indexed
2026-07-19 17:58

ホーム - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-07-22 13:31
浙ICP备14020137号-1 $お客様$