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 skills add carbonshow/intent-fluid --skill domain-sensemakinggit clone --depth 1 https://github.com/carbonshow/intent-fluidWrote 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.
[](https://agentmods.dev/skills/carbonshow/intent-fluid/domain-sensemaking)<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>- NVIDIA SkillSpector warn
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.
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.
| Model | Per session | Once 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 |
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.
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.
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
initat the start of substantial research to create a problem card, frontier queue, relationship tables, convergence checklist, and synthesis scaffold. - Use
select-frontierafter scoring or revising the frontier; it creates the nextrounds/round-XX.mdfrom the highest-priority nodes. Manual overrides require an explicit reason. - Use
new-roundbefore each new exploration cycle so the investigation leaves an auditable trail. - Use
new-sourcewhenever you inspect a substantial webpage, paper, report, dataset, interview, or internal document whose contents may need reuse. - Fill
reader-brief.mdbefore writingfinal-synthesis.md; it controls explanation depth, terminology, structure, and citation expectations for the human-facing artifact. - Use
score-frontierwhenever candidate nodes haveimpact,uncertainty,explorability, andcostscores. - 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-workspacebefore final synthesis; fix missing rounds, source notes, empty priorities, or untraceable high-confidence claims before polishing. - Use
check-convergence --workspacebefore final synthesis to avoid ending with an unchecked narrative or self-declared convergence. - Use
record-feedbackwhen the user critiques a result or when lint/self-review reveals a reusable weakness. - Use
summarize-feedbackandpropose-evolutionafter repeated feedback patterns; proposals require human review and tests before changing the skill. - If scripts cannot run, follow
references/templates.mdmanually and keep the same fields.
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.
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.
- 8d ago First seen · 249 lines · 189 tokens per session scan A cd3182b3a91c
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.
Other skills, from other repositories
repo-harness
Route explicit repo-harness setup, planning, execution, verification, and handoff actions through deterministic repository state.
openlore-brainstorm
Transform a feature idea into an annotated story using a Domain Sketch or Constrained Option Tree. Use when asked to brainstorm, explore, or shape a feature before implementation.
openlore-execute-refactor
Apply a confirmed .openlore/refactor-plan.md with a test gate after each change. Use when asked to execute or continue an OpenLore refactoring plan.
openlore-analyze-codebase
Run a full static OpenLore analysis and summarize architecture, call graph, refactoring issues, and duplicate code. Use when asked to analyze, map, or assess a codebase without LLM inference.
sdlc-accelerate
End-to-end SDLC ramp-up from idea to construction-ready with automated phase transitions.
ralph-memory
Manage Al semantic memory entries — list, query, and clear lessons learned across loop iterations.