domain-sensemaking

domain-sensemaking is a skill for Claude Code from carbonshow/intent-fluid. It costs 189 tokens per session (3,834 once invoked), scanned A, original, MIT.

A research workflow for making sense of an unfamiliar, unclear, or complicated subject before taking action. It structures exploration, evidence collection, concept mapping, question refinement, and final explanation.

In plain words
What is it for?
Use it to explore a new domain, compare evidence, build a map of related concepts, or investigate an emerging topic. It can work with local files, notes, web research, papers, databases, interviews, code experiments, or conversation.
Why use it?
It prevents a vague question from turning into an unstructured pile of notes or premature conclusions. It helps connect claims to evidence and check whether the research has reached a stable understanding.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents.

Part of the intent-fluid plugin — 5 skills shipped together

Good fit Use it to explore a new domain, compare evidence, build a map of related concepts, or investigate an emerging topic. It can work with local files, notes, web research, papers, databases, interviews, code experiments, or conversation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/carbonshow/intent-fluid/domain-sensemaking
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 carbonshow/intent-fluid --skill domain-sensemaking
Clone the repo
git clone --depth 1 https://github.com/carbonshow/intent-fluid

Made for: Claude Code.

Or install intent-fluid, the plugin that ships this one along with the rest of its 5 skills.

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 domain-sensemaking

README.md
[![agentmods](https://agentmods.dev/badge/skills/carbonshow/intent-fluid/domain-sensemaking.svg)](https://agentmods.dev/skills/carbonshow/intent-fluid/domain-sensemaking)
Your own site
<a href="https://agentmods.dev/skills/carbonshow/intent-fluid/domain-sensemaking"><img src="https://agentmods.dev/badge/skills/carbonshow/intent-fluid/domain-sensemaking.svg" alt="Measured on agentmods" height="20"></a>
Per session 189 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,834 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Rogue Agent · line 59
    Skill modifies its own code, configuration, or behavior at runtime. Self-modification enables an agent to escalate privileges, disable safety constraints, or install persistent backdoors.
    Fix: Prevent the skill from modifying its own code, SKILL.md, or configuration files. Treat skill files as read-only at runtime.
How audits are shown
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.00189 $0.03834
Opus 5 $0.00095 $0.01917
Sonnet 5 $0.00038 $0.00767
Haiku 4.5 $0.00019 $0.00383

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

Security

Grade A, and why

domain-sensemaking 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 8d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/sensemaking_helper.py, scripts/test_sensemaking_helper.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/domain-sensemaking/SKILL.md · 249 lines

How it starts

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

Domain Sensemaking

Use this skill to convert a vague question into an iterative research workflow: frame the problem, generate and rank exploration frontiers, collect evidence, build a concept/claim graph, reframe the question, test convergence, then synthesize a reader-calibrated conclusion.

This skill is platform-neutral. Use whatever capabilities are available: local files, user-provided notes, web search, papers, databases, interviews, code experiments, or only dialogue. If a platform lacks browsing, file writes, or subagents, continue with explicit assumptions and ask for the missing inputs.

Deterministic Helpers

When a filesystem and Python are available, use the bundled scripts/sensemaking_helper.py for fixed-format work instead of recreating tables manually:

python scripts/sensemaking_helper.py init --output path/to/workspace --question "..." --mode Learning
python scripts/sensemaking_helper.py select-frontier path/to/workspace --top 3 --focus "..."
python scripts/sensemaking_helper.py new-round path/to/workspace --focus "..."
python scripts/sensemaking_helper.py new-source path/to/workspace --title "..." --url "..."
python scripts/sensemaking_helper.py score-frontier path/to/frontier.csv --format markdown
python scripts/sensemaking_helper.py lint-workspace path/to/workspace
python scripts/sensemaking_helper.py check-convergence path/to/workspace/convergence.csv --workspace path/to/workspace
python scripts/sensemaking_helper.py record-feedback --workspace path/to/workspace --artifact final-synthesis.md --dimension evidence --verdict negative --tag weak_sources --feedback "..."
python scripts/sensemaking_helper.py summarize-feedback --min-count 3
python scripts/sensemaking_helper.py propose-evolution --min-count 3

All paths above are relative to this skill's directory. Resolve them against the skill's installed location before executing.

  • Use init at the start of substantial research to create a problem card, frontier queue, relationship tables, convergence checklist, and synthesis scaffold.
  • Use select-frontier after scoring or revising the frontier; it creates the next rounds/round-XX.md from the highest-priority nodes. Manual overrides require an explicit reason.
  • Use new-round before each new exploration cycle so the investigation leaves an auditable trail.
  • Use new-source whenever you inspect a substantial webpage, paper, report, dataset, interview, or internal document whose contents may need reuse.
  • Fill reader-brief.md before writing final-synthesis.md; it controls explanation depth, terminology, structure, and citation expectations for the human-facing artifact.
  • Use score-frontier whenever candidate nodes have impact, uncertainty, explorability, and cost scores.
  • Treat frontier scores as a scheduling aid, not the final research judgment. Override the ranking when a lower-scoring node is structurally central, blocks many dependencies, or better serves the user's target output.
  • Use lint-workspace before final synthesis; fix missing rounds, source notes, empty priorities, or untraceable high-confidence claims before polishing.
  • Use check-convergence --workspace before final synthesis to avoid ending with an unchecked narrative or self-declared convergence.
  • Use record-feedback when the user critiques a result or when lint/self-review reveals a reusable weakness.
  • Use summarize-feedback and propose-evolution after repeated feedback patterns; proposals require human review and tests before changing the skill.
  • If scripts cannot run, follow references/templates.md manually and keep the same fields.

Read the full file on GitHub · 249 lines

Files

What ships with it

6 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. 8d ago First seen · 249 lines · 189 tokens per session scan A cd3182b3a91c

Subscribe to this mod's changes

domain-sensemaking is a skill published in the GitHub repository carbonshow/intent-fluid (6 stars, last pushed yesterday), licensed MIT. It adds 189 tokens to every session and 3,834 once invoked, about $0.0009 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-31.