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.
npx agentmods add commands/melandlabs/openloomi/loopgit clone --depth 1 https://github.com/melandlabs/openloomiWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00034 | $0.01718 |
| Opus 5 | $0.00017 | $0.00859 |
| Sonnet 5 | $0.00007 | $0.00344 |
| Haiku 4.5 | $0.00003 | $0.00172 |
Grade B, and why
loop scanned grade B 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 2d 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.
Sends data to an external URLmediumData exfiltration
A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.
allowed-tools: Bash(curl *), Bash(jq *), Bash(cat ~/.openloomi/token *), Bash(base64 -d *) Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
allowed-tools: Bash(curl *), Bash(jq *), Bash(cat ~/.openloomi/token *), Bash(base64 -d *) How it starts
The opening of the file, as written. The whole thing — 139 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/openloomi:loop
Thin doorway into the openloomi-loop
sub-skill. With no arguments it prints the dashboard snapshot from
GET /api/loop/state. To force-refresh the connector snapshot (which the
dashboard reads but caches), say "loop refresh", "refresh
connectors", "force refresh", "check connections", or pass
refresh as the slash argument (/openloomi:loop refresh). For
everything else (run a tick, schedule a decision, register a custom type /
channel / classifier rule), say "loop tick", "loop schedule", "register
loop type", "add loop rule" — the sub-skill's frontmatter triggers on
those phrases and walks Claude through the full API.
Base URL: http://localhost:3414 (fallback http://localhost:3515).
The skill doc spells out which port is which.
Steps
-
Read the bearer token (base64-encoded JWT stored at
~/.openloomi/token) and decode it:TOKEN=$(cat ~/.openloomi/token | base64 -d) -
Decide the mode:
- Refresh mode (user said "refresh connectors" / "force refresh"
/ "check connections" / passed
/openloomi:loop refresh) → go to the Refresh connectors section below, not this one. - Default dashboard mode (no args, or "loop dashboard" / "loop state") → continue.
- Refresh mode (user said "refresh connectors" / "force refresh"
/ "check connections" / passed
-
Fetch the dashboard:
curl -sS "$BASE/api/loop/state" -H "Authorization: Bearer $TOKEN" | jq . -
Print the JSON to the user. Highlight:
pending— number of decisions waiting for Run / Dry / Dismissconnectors— integration health (one entry per signal channel; note: this is the cached snapshot — see Refresh below)lastTickAt— when the last signal pull ranprefs— current interval / brief time / wrap time / timezone
-
If
pending > 0, suggest the natural-language follow-up:Say "loop inbox" to list them, or "loop tick" to pull new signals and classify them now.
-
If any connector shows
connected: falsewith alastErrorlike"no composio surface reachable"and the user actually has those connectors configured through Composio (check withcomposio connections list), suggest:
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.
- 2d ago First seen · 139 lines · 34 tokens per session scan B 8ebd41a181c1
loop is a command published in the GitHub repository melandlabs/openloomi (1,020 stars, last pushed 8d ago), licensed Apache-2.0. It adds 34 tokens to every session and 1,718 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
planwt
You are the orchestrator for a bounded worktree task.
statuswt
You are checking the status of all active worktree task files in the project.
finishwt
You are finishing a worktree task.
review-and-fix
로컬 변경사항을 직접 리뷰하고 문제점 수정 후 커밋·푸시.
takeoff
항공기 이륙 4단계 — develop 리베이스 → push → PR 생성 (원격 영향).
boarding
항공기 이륙 1단계 — Linear 이슈를 읽어 요구사항·코드 영향 범위 정리.