oo-ambee

oo-ambee is a skill for Claude Code from oomol-lab/skills. It costs 43 tokens per session (924 once invoked), scanned C, original, MIT.

A connection for searching and reading data in Ambee through an OOMOL account. The supplied details do not specify what kind of information Ambee provides.

In plain words
What is it for?
Searching Ambee and reading data returned by its supported connector actions.
Why use it?
It avoids calling the service directly and keeps the account connection and request format in one workflow.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Searching Ambee and reading data returned by its supported connector actions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/oomol-lab/skills/oo-ambee
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.

Any agent
npx skills add oomol-lab/skills --skill oo-ambee
Clone the repo
git clone --depth 1 https://github.com/oomol-lab/skills

Made for: Claude Code.

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 oo-ambee

README.md
[![agentmods](https://agentmods.dev/badge/skills/oomol-lab/skills/oo-ambee.svg)](https://agentmods.dev/skills/oomol-lab/skills/oo-ambee)
Your own site
<a href="https://agentmods.dev/skills/oomol-lab/skills/oo-ambee"><img src="https://agentmods.dev/badge/skills/oomol-lab/skills/oo-ambee.svg" alt="Measured on agentmods" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 924 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00043 $0.00924
Opus 5 $0.00022 $0.00462
Sonnet 5 $0.00009 $0.00185
Haiku 4.5 $0.00004 $0.00092

Measured 8d ago against content hash 3e3ecdd371eb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade C, and why

oo-ambee 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 8d 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://cli.oomol.com/install.sh | bash # macOS / Linux

Makes network callslowCapability

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

curl -fsSL https://cli.oomol.com/install.sh | bash # macOS / Linux
app-skills/oo-ambee/SKILL.md · 83 lines

How it starts

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

Ambee

Operate Ambee through your OOMOL-connected account. This skill calls the ambee connector with the oo CLI; OOMOL injects credentials server-side, so you never handle raw tokens.

Running an action

Assume the user has already installed the oo CLI, signed in, and connected Ambee. Do not run oo auth login or open the connection URL proactively — just run the action. Fall back to First-time setup only when a command actually fails with an auth or connection error.

1. Inspect the contract to get the authoritative input/output schema before building a payload:

oo connector schema "ambee" --action "<action_name>"

2. Run the action with a JSON payload that matches the input schema:

oo connector run "ambee" --action "<action_name>" --data '<json>' --json
  • --data takes a JSON object string or @path/to/file.json; omit it to send {}.
  • The response is { "data": ..., "meta": { "executionId": "..." } }; the execution id lives under meta.executionId.

Each action is listed below with a one-line description; actions that change state carry a [write] or [destructive] tag. Before constructing --data, fetch the action's live schema with oo connector schema to get its authoritative input fields.

Available actions

  • geocode_by_place — Convert a place name or address into latitude and longitude with Ambee.
  • get_air_quality_by_lat_lng — Get the latest air quality station readings for one coordinate from Ambee.
  • get_air_quality_forecast_by_lat_lng — Get the air quality forecast for one coordinate from Ambee.
  • get_air_quality_history_by_lat_lng — Get historical air quality readings for one coordinate from Ambee.
  • reverse_geocode_by_lat_lng — Convert latitude and longitude into location details with Ambee.

Safety

  • Untagged actions are reads (get / list / search) — safe to run directly.
  • Actions tagged [write] change Ambee state — confirm the exact payload and effect with the user before running.
  • Actions tagged [destructive] remove or overwrite data — always confirm the target and get explicit approval first.

Read the full file on GitHub · 83 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. 8d ago First seen · 83 lines · 43 tokens per session scan C 3e3ecdd371eb

Subscribe to this mod's changes

oo-ambee is a skill published in the GitHub repository oomol-lab/skills (2 stars, last pushed today), licensed MIT. It adds 43 tokens to every session and 924 once invoked, about $0.0002 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-31.

Related

Other skills, from other repositories

autonomous-run

Prepare, start, inspect, resume, or stop a finite local overnight coding run after a human has accepted a Wayfinder terminal spec; coordinates a declared Claude/Codex maker and independent checker without pushing, merging, or writing to external systems.

PromptPartner/agentsmith · 53 tokens

writing-rules

Write or review anything an agent reads — a core rule, a profile gate, a SKILL.md description, an instruction-file line, a subagent prompt, a handoff note, a verify-phase label. Part of the Agentsmith harness; supplies the levers that decide whether a line changes behaviour or only costs tokens — the two loads…

PromptPartner/agentsmith · 107 tokens

wayfinder

Wayfind a foggy, multi-session effort into an accepted repository spec and separate implementation-ticket drafts. Use when the destination is known but important decisions, dependencies, or scope are not yet clear enough to implement safely.

PromptPartner/agentsmith · 46 tokens

design-review

Use when adding or restyling a Facet UI component, or before merging a UI PR — walks the component against DESIGN.md (tokens, states, a11y, contrast, responsive) so the design system is matched, not just remembered. The judgment check verify.sh can't grep.

PromptPartner/agentsmith · 61 tokens

harness-doctor

Check whether this project's Agentsmith harness is installed correctly and healthy — fires on "is my harness set up right?", "harness doctor", "check my harness". Part of the Agentsmith harness; checks each selected agent's managed rules, settings, skills, hooks, verification, and leanness with a one-line fix for each…

PromptPartner/agentsmith · 74 tokens

handoff

Checkpoint work for recovery — fires on "handoff", "wrap up", context pressure, a closed phase, or before a long external wait or irreversible gate. Part of the Agentsmith harness; writes durable state plus a paste-ready kickoff block so a fresh session loses nothing.

PromptPartner/agentsmith · 58 tokens