map

map is a skill for Claude Code, Codex from bgmacris/quimera-ai. It costs 98 tokens per session (2,976 once invoked), scanned A, original, MIT.

A site-specific navigation memory for a shared browser. It stores a website’s routes, reliable page targets, navigation recipes, and known problems so they can be reused later.

In plain words
What is it for?
Use it to list, view, index, or locate navigation profiles for websites, and to record how particular sites should be operated.
Why use it?
It reduces the need to rediscover a site’s layout and controls during every browser session. This can make repeated navigation more consistent.

Skill for Claude CodeCodex

Part of the tandem plugin — 2 skills, 6 commands, 1 agent, 1 MCP server shipped together

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/bgmacris/quimera-ai/map
Any agent
npx skills add bgmacris/quimera-ai --skill map
Clone the repo
git clone --depth 1 https://github.com/bgmacris/quimera-ai

Made for: Claude Code, Codex.

Or install tandem, the plugin that ships this one along with the rest of its 2 skills, 6 commands, 1 agent, 1 MCP server.

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 map

README.md
[![agentmods](https://agentmods.dev/badge/skills/bgmacris/quimera-ai/map.svg)](https://agentmods.dev/skills/bgmacris/quimera-ai/map)
Your own site
<a href="https://agentmods.dev/skills/bgmacris/quimera-ai/map"><img src="https://agentmods.dev/badge/skills/bgmacris/quimera-ai/map.svg" alt="Measured on agentmods" height="20"></a>
Per session 98 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,976 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.00098 $0.02976
Opus 5 $0.00049 $0.01488
Sonnet 5 $0.00020 $0.00595
Haiku 4.5 $0.00010 $0.00298

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

Security

Grade A, and why

map 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 4d 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.

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.

plugins/tandem/skills/map/SKILL.md · 180 lines

How it starts

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

tandem:map — per-site navigation memory

Persists how a specific site is navigated in a per-host profile. Avoids re-deriving the structure (huge snapshots, ephemeral refs) every session. Complements the "Real navigation — patterns" section of the tandem skill: that is CROSS-site technique (infinite scroll, cookie banners…); this is knowledge OF-a-site (the routes of THAT site).

Full design and rationale: tandem/docs/01-navigation-memory.md.

Store (engine: scripts/map.sh)

Profiles in ~/.claude/tandem/sites/<host>.md (OUTSIDE git; override TANDEM_DATA_DIR). The SOURCE OF TRUTH are the .md files; the index is DERIVED from their frontmatter, not kept separately.

  • map.sh list ............ table of profiles (host · updated · file)
  • map.sh show <host> ..... dumps the profile (accepts a full URL: normalizes to host)
  • map.sh path <host> ..... the file path (whether it exists or not) — for reading/writing
  • map.sh index ........... derived JSON index (to stdout + caches sites/index.json)

Invoke it by its path within the plugin (scripts/map.sh); there's no bin on PATH for map.

When to act (reflexes)

  1. When you start operating a site: if a profile already exists, it usually reaches you on its own — a PostToolUse hook on browser_navigate injects the host's profile the first time you navigate to it in the session (scripts/hook-inject-profile.mjs). If it didn't arrive (or you want to re-read it): map.sh show <host>. If there's no profile and the work isn't trivial → offer the human to do a recon and save it.
  2. Before trusting a route's locators (cheap re-check): validate with fingerprint.mjs check <host> <route> (structural signal, small JSON), NOT with a targeted browser_snapshot (it weighs ~18× the whole profile). match → trust that route's sel: values WITHOUT a snapshot (see "Frugal flow"). drift → point 4. No fingerprint yet → a one-off targeted snapshot, and capture the fingerprint for next time.
  3. After a recon worth keeping: draft the profile, show it to the human, and only with their OK write it.
  4. If a locator fails (drift): do NOT try to repair it. Re-derive live, update the profile line with the new anchor and today's date, and tell the human about the change. Rule: a wrong cached click is worse than a slow click.

Read the full file on GitHub · 180 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. 4d ago First seen · 180 lines · 98 tokens per session scan A cceda17a7775

Subscribe to this mod's changes

map is a skill published in the GitHub repository bgmacris/quimera-ai (11 stars, last pushed 1mo ago), licensed MIT. It adds 98 tokens to every session and 2,976 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

chrome-agent

Local browser automation with structured, verified outcomes. Use for web navigation, scraping and extraction, form interaction, screenshots and downloads, network or console checks, responsive testing, or page-scoped device emulation.

sderosiaux/chrome-agent · 44 tokens

scrape-structured-data

Get the repeating records off a web page (product grids, search results, job listings, news feeds, tables) as JSON, without writing CSS selectors and without spending a model call to read the HTML. Works on sites with no API, including ones behind a login or bot protection. Runs locally, one binary, no API key. Use…

sderosiaux/chrome-agent · 111 tokens

owb

Open Web Bridge (OWB) — drive the user's own real browser with the owb command. Read pages behind their existing logins, gather and cross-check information, fill forms, walk multi-step flows, debug their site, audit responsive/accessibility behavior, and capture or reverse-engineer network traffic. Use this whenever…

woniu9524/open-web-bridge · 143 tokens

nekoro-browser

浏览器自动化——打开网页、搜索、点击、截图、执行 JS、填表、上传文件、处理对话框。通过 Chrome 扩展的 chrome.debugger API 操控用户日常浏览器,保留登录态,不开调试端口。触发词:"浏览器"、"打开网页"、"搜索"、"截图"、"点击"、"填表"、"上传文件"、"自动化操作"。.

zeshuochen/nekoro-browser · 102 tokens

control-chrome-bridge

Drive the user's real Chrome browser — their own profile, tabs, cookies and logged-in sessions — through the chrome-bridge MCP server. Use for tasks that need existing browser state: reading a page behind a login, filling a form on a site the user is signed into, testing a local app in a real browser, or inspecting…

ShalomObongo/chrome-bridge-mcp · 114 tokens

chrome-cdp-ex

Your EYES into the user's live Chrome browser and Electron apps. This skill lets you SEE and INTERACT with the user's actual browser or Electron app — their open tabs, logged-in sessions, and live page state. You MUST use this whenever the user's request involves browser content or Electron app inspection in ANY way.…

EndeavorYen/chrome-cdp-ex · 321 tokens