world-model-workflow

world-model-workflow is a skill for Claude Code from synaptiai/agent-capability-standard. It costs 40 tokens per session (2,801 once invoked), scanned A, original, Apache-2.0.

A structured model of a real system or area, including its current state, how it changes, uncertainty, and the sources behind each fact. It can also provide the basis for a digital twin, which is a computer representation of a real system.

In plain words
What is it for?
Use it to model entities and their relationships, describe how a system changes over time, combine information from sources, and prepare a foundation for simulation.
Why use it?
It prevents system models from becoming collections of unsupported assumptions. Every fact, relationship, and uncertainty is recorded so the model can be checked and updated.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: agent in frontmatter.

Part of the agent-capability-standard plugin — 42 skills, 2 hooks shipped together

Good fit Use it to model entities and their relationships, describe how a system changes over time, combine information from sources, and prepare a foundation for simulation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/synaptiai/agent-capability-standard/digital-twin-bootstrap
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 synaptiai/agent-capability-standard --skill digital-twin-bootstrap
Clone the repo
git clone --depth 1 https://github.com/synaptiai/agent-capability-standard

Made for: Claude Code.

Or install agent-capability-standard, the plugin that ships this one along with the rest of its 42 skills, 2 hooks.

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 world-model-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/synaptiai/agent-capability-standard/digital-twin-bootstrap.svg)](https://agentmods.dev/skills/synaptiai/agent-capability-standard/digital-twin-bootstrap)
Your own site
<a href="https://agentmods.dev/skills/synaptiai/agent-capability-standard/digital-twin-bootstrap"><img src="https://agentmods.dev/badge/skills/synaptiai/agent-capability-standard/digital-twin-bootstrap.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,801 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.
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.00040 $0.02801
Opus 5 $0.00020 $0.01401
Sonnet 5 $0.00008 $0.00560
Haiku 4.5 $0.00004 $0.00280

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

Security

Grade A, and why

world-model-workflow 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.

skills/digital-twin-bootstrap/SKILL.md · 344 lines

How it starts

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

Intent

Run the composed workflow world-model-workflow using atomic capability skills to construct a comprehensive, grounded representation of a system or domain.

A world model captures:

  • State: Current entity states and attributes
  • Dynamics: How the system evolves over time
  • Uncertainty: Confidence bounds and unknowns
  • Provenance: Source and lineage of all facts

Success criteria:

  • Complete entity inventory with identity resolution
  • State representation follows canonical schema
  • Causal relationships and dynamics modeled
  • Uncertainty quantified for all assertions
  • Full provenance chain for every fact
  • Simulation capability established

Compatible schemas:

  • reference/world_state_schema.yaml
  • reference/event_schema.yaml

Inputs

Parameter Required Type Description
goal Yes string The modeling objective (e.g., "model supply chain for disruption analysis")
scope Yes string|array Domain, system, or entities to model
constraints No object Limits (e.g., time horizon, resolution, confidence threshold)
sources No array Data sources for world state extraction
prior_model No object Existing model to extend or refine

Procedure

  1. Create checkpoint marker if mutation might occur:

    • Create .claude/checkpoint.ok after confirming rollback strategy
  2. Invoke /retrieve and store output as retrieve_out

    • Gather raw data from configured sources
  3. Invoke /inspect and store output as inspect_out

    • Examine retrieved data for structure and quality
  4. Invoke /identity-resolution and store output as identity-resolution_out

    • Resolve entity references and establish canonical IDs
  5. Invoke /world-state and store output as world-state_out

    • Construct canonical state representation
  6. Invoke /state-transition and store output as state-transition_out

    • Define rules for state evolution

Read the full file on GitHub · 344 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. 8d ago First seen · 344 lines · 40 tokens per session scan A a2fb919fd2f8

Subscribe to this mod's changes

world-model-workflow is a skill published in the GitHub repository synaptiai/agent-capability-standard (4 stars, last pushed 8d ago), licensed Apache-2.0. It adds 40 tokens to every session and 2,801 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

cran-extrachecks

Prepare R packages for CRAN submission by checking for common ad-hoc requirements not caught by devtools::check(). Use when: (1) Preparing a package for first CRAN release, (2) Preparing a package update for CRAN resubmission, (3) Reviewing a package to ensure CRAN compliance, (4) Responding to CRAN reviewer feedback.…

posit-dev/skills · 98 tokens

paper-opportunity-radar

Run a cumulative daily or retrospective sweep of research papers on a chosen topic, audit their claims, methods, integrity signals, and independent support, then identify overlooked but feasible project or business opportunities in a detailed source-grounded report. Use when asked to monitor papers every day, mine…

tamdogood/builder-essential-skills · 98 tokens

using-cesiumjs-skills

Use when starting any conversation involving CesiumJS development - provides orientation on available domain skills and how they activate.

CesiumGS/cesiumjs-skills · 29 tokens

paper-writing

Use when the user wants to write, structure, or revise academic paper sections, improve notation consistency, or refine figures and tables. Triggers on phrases like "write the abstract", "structure the methods", "improve this section", "notation consistency", "figure refinement", or "paper structure".

fcakyon/phd-skills · 63 tokens

smt-solving-with-z3-cvc5

Use when a query needs direct SMT solving, an unsat core needs debugging, or another tool reports a solver timeout or unknown. Not for deciding what to prove: use proof-driven.

OutlineDriven/odin-claude-plugin · 47 tokens

s4h-evolution-fitness-landscape

Maps the solution space as peaks and valleys to understand local optima, adaptive valleys, and path dependence. Triggers: 'are we stuck', 'local maximum', 'fitness landscape', 'why can't we get to the next level', 'path dependence', 'trapped by success', 'incremental improvement is not working', 'we need a…

human-avatar/skills-for-humanity · 88 tokens