lookout

A location-aware health briefing that combines air, weather, ultraviolet, pressure, public-health, and local-place information with the user's medical record.

In plain words
What is it for?
Use it for daily briefings, air-quality or weather checks, open-now places such as pharmacies or gyms, and health-related questions about a neighborhood or travel location.
Why use it?
It helps relate general conditions to the person's recorded health context, instead of showing environmental numbers without explanation. It only surfaces information considered relevant to that person.

Skill for Claude CodeCodex

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 skills/realactivity/tula/lookout
Any agent
npx skills add realactivity/tula --skill lookout
Clone the repo
git clone --depth 1 https://github.com/realactivity/tula

Made for: Claude Code, Codex.

Per session 106 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,577 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 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.00106 $0.01577
Opus 5 $0.00053 $0.00788
Sonnet 5 $0.00021 $0.00315
Haiku 4.5 $0.00011 $0.00158

Measured yesterday against content hash 11ef5e6ec08b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

lookout scanned grade A with 0 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 yesterday.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/fetch_environment.py, scripts/init_db.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/lookout/SKILL.md · 96 lines

How it starts

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

Lookout

Ambient health radar. Lookout reads where the user is right now, fuses environmental + place + neighborhood SDoH data with their FHIR record, and surfaces only the items that matter for them. A weather app says "AQI 142." Lookout says "ozone is high, you have asthma on file, want an indoor option?"

When to Use

✅ Use when:

  • The user says "lookout for me" or any natural variant ("how's the air today?", "where can I work out right now?", "anything I should know today?", "what's [ZIP] like for me?")
  • The configured daily briefing time fires
  • The user asks about open-now resources (gym, pharmacy, urgent care, grocery, park) tied to their health
  • The user asks about a neighborhood's SDoH overlay for travel or relocation

When NOT to Use

❌ Don't use when:

  • The user wants a clinical interpretation of a PDF → use med-pdf
  • The user wants to connect/refresh their patient portal → use health-records
  • The user wants a drafted clinician message → use epic-note
  • A request would diagnose, recommend treatment, or adjust a medication
  • A request would produce billing, payor, prior-auth, EOB, or coding content (CPT/HCPCS/HCC). SDoH Z codes are the only codes used, and only as clinical context.

Setup

  1. Init the store. python3 {baseDir}/scripts/init_db.py
    • Creates ~/.openclaw/workspace/.lookout-cache/lookout.db from schema.sql.
    • Seeds only tenant-neutral preferences (imperial, 07:30 briefing, 22:00–07:00 quiet hours). Re-running is safe.
  2. Configure location. Onboarding or the user profile must create one location row with is_default = 1 and latitude/longitude before fetch runs. Location is user data; don't hard-code it in the skill.
  3. Install Python dependency. Ensure httpx is available to Python (python3 -m pip install httpx or the distro/package-manager equivalent).
  4. Optional keys. Lookout runs end-to-end with no keys. For richer data:
    • AIRNOW_API_KEY — US AQI by lat/lon (free key from AirNow).
    • GOOGLE_PLACES_API_KEY — open-now resources layer (paid).
    • LOOKOUT_NWS_UA — descriptive User-Agent for api.weather.gov.

Read the full file on GitHub · 96 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. yesterday First seen · 96 lines · 106 tokens per session scan A 11ef5e6ec08b

Subscribe to this mod's changes

lookout is a skill published in the GitHub repository realactivity/tula (45 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 106 tokens to every session and 1,577 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

lab-report-walkthrough

Walk a person through their lab report — read the original document, organize results by panel, flag out-of-range values against the printed reference ranges, compare with their history, and explain in plain language. Use when the user uploads a lab report (PDF/image) or asks what their blood test results mean.

thetahealth/mirobody · 67 tokens

comment-compactor

Delete the comments a diff adds unless they earn their place, and condense the few that do. Use as the final step before pushing, submitting, or finalizing a PR — after tests and lint pass, before git push / gh pr create. Also use when asked to "clean up the comments", "check the comments", or when a review flags a…

medplum/medplum · 89 tokens

ehr-data-parsing

Parse and extract clinical data from HL7v2 messages and FHIR R4 resources using Python. Use when the user mentions HL7v2, HL7, FHIR, PID segment, OBX segment, MSH segment, Patient resource, Observation resource, Condition resource, MedicationRequest, EHR data extraction, clinical message parsing, FHIR bundle, HL7 to…

awslabs/hcls-agent-skills · 165 tokens

biomcp-research

Do biomedical literature and variant research with the BioMCP CLI, and file what you learn about the tool itself as issues in the biomcp repo.

genomoncology/biomcp · 36 tokens

system_status

Check system health -- disk usage, memory, running processes, uptime.

AIOSAI/AIPass · 16 tokens

branch_health

Quick health check -- test counts and file stats for AIPass branches.

AIOSAI/AIPass · 17 tokens