Agent Skills
› melandlabs/openloomi
› openloomi-setup
openloomi-setup
GitHub用于OpenLoomi首次安装前的环境就绪检查与引导。检测桌面应用状态、本地API连通性及Token会话,提供手动安装指引或链接至官方文档,确保后续技能正常运行。
触发场景
用户未安装OpenLoomi Desktop
本地API无法连接
缺少Session或Token
需要手动安装引导
安装
npx skills add melandlabs/openloomi --skill openloomi-setup -g -y
SKILL.md
Frontmatter
{
"name": "openloomi-setup",
"description": "OpenLoomi first-use setup and readiness guidance for skill-only agent runtimes. Use when OpenLoomi is not yet installed, the local API is not reachable, the session\/token is missing, or the user needs a manual install and launch walkthrough before using OpenLoomi skills.",
"allowed-tools": "Bash(node $SKILL_DIR\/scripts\/openloomi-setup.cjs *)"
}
OpenLoomi Setup
Use this skill first when OpenLoomi readiness is unknown.
Keep it lightweight and manual-first:
- If OpenLoomi Desktop is not installed, point the user to the official Getting Started docs.
- If the desktop app is installed but not running, tell the user to open it.
- If the local API is not reachable, ask the user to retry after launch.
- If the token/session is missing, ask the user to complete sign-in or guest session setup inside OpenLoomi.
Check Readiness
Run the bundled status script when you need a quick local check:
node "$SKILL_DIR/scripts/openloomi-setup.cjs" status
The script reports:
- whether OpenLoomi Desktop looks installed
- whether the local API responds on
3414or3515 - whether
~/.openloomi/tokenexists - what the next manual step should be
Output Contract
Treat ready: true as the handoff point to the other OpenLoomi skills:
openloomi-memoryopenloomi-connectorsopenloomi-loopopenloomi-api
If ready is false, surface the returned nextAction and the official
Getting Started link instead of guessing.
Official Install Path
If the desktop app is missing, direct the user to:
https://openloomi.ai/docs/getting-startedhttps://github.com/melandlabs/openloomi/releases
版本历史
- 17e808c 当前 2026-07-31 06:47


