connect

connect is a command for coding agents from melandlabs/openloomi. It costs 15 tokens per session (773 once invoked), scanned C, original, Apache-2.0.

An interactive setup command for Composio, a tool that connects an agent to external services, and screen memory. It checks what is already available and asks for approval before each optional setup action.

In plain words
What is it for?
Checking Composio readiness, optionally installing its command-line tool, restoring its bundled skill, and enabling screen memory through separate user-approved steps.
Why use it?
It prevents setup steps from running silently and helps identify whether the command-line tool or bundled skill is missing.

Command

Installs and runs on its own, but its text points at files inside its plugin — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed. Installing the plugin gets both.

Part of the openloomi plugin — 11 skills, 10 commands, 8 hooks shipped together

About the project

OpenLoomi is an open-source desktop AI coworker that connects work tools, gathers context, and highlights decisions or actions needing attention. It is for people managing work across multiple apps, and its catalogue add-ons extend the resident desktop for agent frameworks such as Claude Code, Codex, OpenCode, Hermes, and OpenClaw.

melandlabs/openloomi · 1,021 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/melandlabs/openloomi/connect
Clone the repo
git clone --depth 1 https://github.com/melandlabs/openloomi

Or install openloomi, the plugin that ships this one along with the rest of its 11 skills, 10 commands, 8 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for connect

README.md
[![agentmods](https://agentmods.dev/badge/commands/melandlabs/openloomi/connect.svg)](https://agentmods.dev/commands/melandlabs/openloomi/connect)
Your own site
<a href="https://agentmods.dev/commands/melandlabs/openloomi/connect"><img src="https://agentmods.dev/badge/commands/melandlabs/openloomi/connect.svg" alt="Measured on agentmods" height="20"></a>
Per session 15 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 773 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00015 $0.00773
Opus 5 $0.00008 $0.00387
Sonnet 5 $0.00003 $0.00155
Haiku 4.5 $0.00002 $0.00077

Measured 5d ago against content hash ff6c7f0a594a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade C, and why

connect scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

> (`curl -fsSL https://composio.dev/install | bash`) [y/N]

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

> (`curl -fsSL https://composio.dev/install | bash`) [y/N]
plugins/claude/commands/connect.md · 78 lines

How it starts

The opening of the file, as written. The whole thing — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/openloomi:connect

Walk the user through three independent opt-in steps. Each step is gated by an explicit y/N from the user. NOTHING happens silently.

Step 1 — Verify composio skill readiness

Before asking the user anything, detect whether composio is already in place. Two pieces must both exist for Step 1 to be a no-op:

# 1. CLI on PATH?
command -v composio >/dev/null 2>&1

# 2. Skill shipped in this plugin?
test -f "${CLAUDE_PLUGIN_ROOT}/skills/composio/SKILL.md"

Then branch on the combined result:

  • Both present → print one line (composio ready: CLI on PATH, skill loaded from plugins/claude/skills/composio/) and continue straight to Step 2. No y/N.
  • CLI missing only → ask:

    Composio CLI not on PATH. Install it via the official installer? (curl -fsSL https://composio.dev/install | bash) [y/N] On y, run that command. Never run npm install -g without consent.

  • Skill missing only → ask:

    The composio skill isn't shipped in this plugin (plugins/claude/skills/composio/SKILL.md missing). Restore it (e.g. git pull or reinstall the plugin)? [y/N] On y, defer to whatever restore flow the user picks; do not regenerate skill content here.

  • Both missing → ask the CLI-missing question; the skill ships with the plugin and will come back when the plugin is restored, so one y/N is enough.

After Step 1 resolves (no-op or install), continue to Step 2.

Step 2 — Enable screen memory

Tell the user:

OpenLoomi Desktop's user profile / preferences page has a "Chronicle" section that controls Screen Memory. Turn it on to let Loomi summarize what you're looking at. Open the Preferences page now? [y/N]

Only on explicit y/N: print the navigation hint OpenLoomi Desktop → Preferences → Chronicle → Screen Memory and continue.

Do NOT print any openloomi://... URL. The plugin codebase does not register a deep-link scheme for this entry — only the navigation hint above is real.

Read the full file on GitHub · 78 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 78 lines · 15 tokens per session scan C ff6c7f0a594a

Subscribe to this mod's changes

connect is a command published in the GitHub repository melandlabs/openloomi (1,021 stars, last pushed 5d ago), licensed Apache-2.0. It adds 15 tokens to every session and 773 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.