.cursor — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited .cursor (MCP Server) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
[![pre-commit][pre-commit-badge]][pre-commit-link] [![Ruff][ruff-badge]][ruff-link] [![Python versions][python-badge]][python-link] [![CI/CD status][build-deploy-badge]][build-deploy-link] [![Coverage status][codecov-badge]][codecov-link] [![Documentation][docs-badge]][docs-link] [![ASV][asv-badge]][asv-link]
A Model Context Protocol (MCP) server providing AI assistants with access to IMAS (Integrated Modelling & Analysis Suite) data structures through natural language search and optimized path indexing.
IMAS Codex provides a unified MCP server:
imas-codex serveThis single server provides IMAS Data Dictionary knowledge, semantic search, and remote facility exploration.
Read-only mode: Use --read-only to suppress write tools (Python REPL, graph mutation) — ideal for container and public deployments:
# Read-only mode (for container deployments)
imas-codex serve --read-only --transport streamable-httpSelect the setup method that matches your environment:
Choose hosted for instant access; choose a local option for customization or controlled resources.
HTTP | UV | Docker | Slurm / HPC
Connect to the public ITER Organization hosted server—no local install.
#### VS Code (Interactive)
Ctrl+Shift+P → "MCP: Add Server"imashttps://imas-dd.iter.org/mcp#### VS Code (Manual JSON)
Workspace .vscode/mcp.json (or inside "mcp" in user settings):
{
"servers": {
"imas": { "type": "http", "url": "https://imas-dd.iter.org/mcp" }
}
}#### Claude Desktop config
Pick path for your OS:
Windows: %APPDATA%\\Claude\\claude_desktop_config.json macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Linux: ~/.config/claude/claude_desktop_config.json
{
"mcpServers": {
"imas-codex-hosted": {
"command": "npx",
"args": ["mcp-remote", "https://imas-dd.iter.org/mcp"]
}
}
}#### OP Client (Pending Clarification)
Placeholder: clarify what "op" refers to (e.g. OpenAI, Operator) to add tailored instructions.
Install with uv:
# Standard installation (includes sentence-transformers)
uv tool install imas-codex
# Add to a project env
uv add imas-codex#### Data Dictionary Version
The IMAS Data Dictionary version determines which schema definitions are used. The version is resolved in priority order:
| Priority | Source | Description |
|---|---|---|
| 1 | --dd-version CLI option | Highest priority, explicit override |
| 2 | IMAS_DD_VERSION env var | Environment-based override |
| 3 | pyproject.toml default | Configured default from [tool.imas-codex.data-dictionary].version |
Configuration:
Set the default DD version in pyproject.toml:
[tool.imas-codex.data-dictionary]
version = "4.1.0"Runtime Override:
# Via CLI option
imas-codex --dd-version 3.42.2
# Via environment variable
IMAS_DD_VERSION=3.42.2 imas-codex
# Docker build
docker build --build-arg IMAS_DD_VERSION=3.42.2 ...Version Validation:
The server validates that the requested DD version does not exceed the maximum version available in the installed imas-data-dictionaries package. If you request a version that's not available, you'll see:
ValueError: Requested DD version 5.0.0 exceeds maximum available version 4.1.0.
Update imas-data-dictionaries dependency or use a lower version.#### Embedding Configuration
The IMAS Codex server uses Qwen3-Embedding-8B for generating 256-dim embeddings:
Configuration:
The embedding model is configured in pyproject.toml under [tool.imas-codex]:
[tool.imas-codex]
imas-embedding-model = "Qwen/Qwen3-Embedding-8B"
embedding-dimensions = 256Environment variables override pyproject.toml settings:
export IMAS_CODEX_EMBEDDING_MODEL="Qwen/Qwen3-Embedding-8B"Path Inclusion Settings:
Control which IMAS paths are indexed and searchable. These settings affect schema generation, embeddings, and semantic search:
| Setting | pyproject.toml | Environment Variable | Default | Description |
|---|---|---|---|---|
| Include GGD | include-ggd | IMAS_CODEX_INCLUDE_GGD | true | Include Grid Geometry Description paths |
| Include Error Fields | include-error-fields | IMAS_CODEX_INCLUDE_ERROR_FIELDS | false | Include uncertainty bound fields (_error_upper, _error_lower, etc.) |
Example pyproject.toml configuration:
[tool.imas-codex]
include-ggd = true
include-error-fields = falseEnvironment variable overrides:
export IMAS_CODEX_INCLUDE_GGD=false # Exclude GGD paths
export IMAS_CODEX_INCLUDE_ERROR_FIELDS=true # Include error fieldsError Handling:
If model loading fails, an error is raised with the model name and cause.
VS Code (.vscode/mcp.json):
{
"servers": {
"imas-codex-uv": {
"type": "stdio",
"command": "uv",
"args": ["run", "imas-codex", "serve", "--transport", "stdio"]
}
}
}Claude Desktop:
{
"mcpServers": {
"imas-codex-uv": {
"command": "uv",
"args": ["run", "imas-codex", "serve", "--transport", "stdio"]
}
}
}#### SSH ControlMaster Setup (Recommended)
For fast repeated SSH connections during facility exploration, configure SSH ControlMaster. This keeps connections alive, reducing latency from ~1-2 seconds to ~100ms for subsequent commands.
# Create socket directory
mkdir -p ~/.ssh/sockets
chmod 700 ~/.ssh/socketsAdd to ~/.ssh/config:
# EPFL / Swiss Plasma Center
Host tcv
HostName spcepfl.epfl.ch
User your_username
ControlMaster auto
ControlPath ~/.ssh/sockets/%r@%h-%p
ControlPersist 600
# Add other facilities as needed
Host ipp
HostName gateway.ipp.mpg.de
User your_username
ControlMaster auto
ControlPath ~/.ssh/sockets/%r@%h-%p
ControlPersist 600How it works:
ControlPersist 600: Keep connection alive for 10 minutes after last useVerify setup:
# Check if master connection is active
ssh -O check tcv
# Manually close master connection
ssh -O exit tcv#### Facility Exploration Commands
Once SSH is configured, explore facilities directly from the terminal:
# Execute commands on remote facility
uv run imas-codex tcv "python --version"
uv run imas-codex tcv "ls /common/tcv/codes"
# View session history
uv run imas-codex tcv --status
# Persist learnings when done
uv run imas-codex tcv --finish << 'EOF'
python:
version: "3.9.21"
tools:
rg: unavailable
paths:
codes: /common/tcv/codes
EOF
# Or discard session
uv run imas-codex tcv --discard#### ReAct Agents (Autonomous Discovery)
ReAct agents provide autonomous discovery and evaluation of remote resources using LlamaIndex and OpenRouter.
Prerequisites:
.env: OPENROUTER_API_KEY=sk-or-...imas-codex neo4j start)Wiki Discovery Pipeline:
Discover and evaluate wiki pages in three phases:
# Full discovery (scan + score in one command)
imas-codex wiki discover tcv
# Or run phases separately for more control:
# Phase 1: Fast link scanning (no LLM, builds graph structure)
imas-codex wiki scan tcv --max-pages 500
# Phase 2: Agent-based scoring (evaluates pages using graph metrics)
imas-codex wiki score tcv -v # -v for verbose agent reasoning
# Phase 3: Ingest high-score pages
imas-codex wiki ingest tcv --min-score 0.7
# Check progress
imas-codex wiki status tcvModel Configuration:
Models are configured centrally in pyproject.toml:
[tool.imas-codex.models]
discovery = "anthropic/claude-sonnet-4.5" # Accurate scoring for discovery
scoring = "anthropic/claude-sonnet-4.5" # Accurate evaluation
enrichment = "google/gemini-3-pro-preview" # Physics understandingCost Control:
Discovery uses a cost budget (default $10) tracked via OpenRouter:
# Set lower cost limit for testing
imas-codex wiki discover tcv --cost-limit 2.0Graph-Driven Workflow:
The pipeline is graph-driven - it persists progress to Neo4j so you can:
#### Standard Names Pipeline
Generate and refine canonical physics quantity names from IMAS DD paths and facility signals. Six worker pools run concurrently: generate_name → review_name → refine_name (names) and generate_docs → review_docs → refine_docs (documentation).
Prerequisites:
.env: OPENROUTER_API_KEY=sk-or-...# Full six-pool run — all domains, up to $50 LLM budget
imas-codex sn run -c 50
# Scope to one physics domain
imas-codex sn run --physics-domain equilibrium -c 5
# Dry run — preview extraction without LLM calls
imas-codex sn run --physics-domain magnetics --dry-run
# Tighter quality bar, deeper refine chains, custom escalation model
imas-codex sn run --min-score 0.85 --rotation-cap 5 --escalation-model openrouter/anthropic/claude-opus-4.7 -c 20Refine-pipeline flags (Phase 8.1):
| Flag | Default | Description |
|---|---|---|
--min-score | 0.75 | Reviewer-score threshold; names below this are routed to refine_name / refine_docs |
--rotation-cap | 3 | Max REFINED_FROM / DOCS_REVISION_OF chain depth before marking a name exhausted |
--escalation-model | claude-opus-4.6 | Higher-capability model used on the final refine attempt |
Names that score ≥ --min-score advance to accepted. Names that exhaust the refine chain without meeting the threshold are marked exhausted.
Graph-driven: progress is persisted to Neo4j so interrupted runs resume from where they stopped.
Run locally in a container (pre-built indexes included):
docker run -d \
--name imas-codex \
-p 8000:8000 \
ghcr.io/iterorganization/imas-codex:latest
# Optional: verify
docker ps --filter name=imas-codex --format "table {{.Names}}\t{{.Status}}"VS Code (.vscode/mcp.json):
{
"servers": {
"imas-codex-docker": { "type": "http", "url": "http://localhost:8000/mcp" }
}
}Claude Desktop:
{
"mcpServers": {
"imas-codex-docker": {
"command": "npx",
"args": ["mcp-remote", "http://localhost:8000/mcp"]
}
}
}Helper script: scripts/imas_codex_slurm_stdio.sh
VS Code (.vscode/mcp.json, JSONC ok):
{
"servers": {
"imas-slurm-stdio": {
"type": "stdio",
"command": "scripts/imas_codex_slurm_stdio.sh"
}
}
}Launch behavior:
SLURM_JOB_ID present → start inside current allocation.srun --pty then starts server (unbuffered stdio).Resource tuning (export before client starts):
| Variable | Purpose | Default |
|---|---|---|
IMAS_CODEX_SLURM_TIME | Walltime | 08:00:00 |
IMAS_CODEX_SLURM_CPUS | CPUs per task | 1 |
IMAS_CODEX_SLURM_MEM | Memory (e.g. 4G) | Slurm default |
IMAS_CODEX_SLURM_PARTITION | Partition | Cluster default |
IMAS_CODEX_SLURM_ACCOUNT | Account/project | User default |
IMAS_CODEX_SLURM_EXTRA | Extra raw srun flags | (empty) |
IMAS_CODEX_USE_ENTRYPOINT | Use imas-codex entrypoint vs python -m | 0 |
Example:
export IMAS_CODEX_SLURM_TIME=02:00:00
export IMAS_CODEX_SLURM_CPUS=4
export IMAS_CODEX_SLURM_MEM=8G
export IMAS_CODEX_SLURM_PARTITION=computeDirect CLI:
scripts/imas_codex_slurm_stdio.sh --ids-filter "core_profiles equilibrium"Why STDIO? Avoids opening network ports; all traffic rides the existing srun pseudo-TTY.
Once you have the IMAS Codex server configured, you can interact with it using natural language queries. Use the @imas prefix to direct queries to the IMAS server:
Find data paths related to plasma temperature
Search for electron density measurements
What data is available for magnetic field analysis?
Show me core plasma profilesExplain what equilibrium reconstruction means in plasma physics
What is the relationship between pressure and magnetic fields?
How do transport coefficients relate to plasma confinement?
Describe the physics behind current drive mechanismsAnalyze the structure of the core_profiles IDS
What are the relationships between equilibrium and core_profiles?
Show me identifier schemas for transport data
Export bulk data for equilibrium, core_profiles, and transport IDSFind all paths containing temperature measurements across different IDS
What physics domains are covered in the IMAS data dictionary?
Show me measurement dependencies for fusion power calculations
Explore cross-domain relationships between heating and confinementHow do I access electron temperature profiles from IMAS data?
What's the recommended workflow for equilibrium analysis?
Show me the branching logic for diagnostic identifier schemas
Export physics domain data for comprehensive transport analysisThe IMAS Codex server provides 8 specialized tools for different types of queries:
The server includes integrated search for documentation libraries with IMAS-Python as the default indexed library. This feature enables AI assistants to search across documentation sources using natural language queries.
query (required), library (optional), limit (optional, 1-20), version (optional)query (required), limit (optional), version (optional)library (optional)add-docs LIBRARY URL [OPTIONS]--ignore-errors flag (enabled by default) to handle problematic pages gracefully# Search IMAS-Python documentation
search_imas_python_docs "equilibrium calculations"
search_imas_python_docs "IDS data structures" limit=5
search_imas_python_docs "magnetic field" version="2.0.1"
# Search any documentation library
search_docs "neural networks" library="numpy"
search_docs "data visualization" library="matplotlib"
# List all available libraries
list_docs
# Get versions for specific library
list_docs "imas-python"
# Add new documentation using CLI
add-docs udunits https://docs.unidata.ucar.edu/udunits/current/
add-docs pandas https://pandas.pydata.org/docs/ --version 2.0.1 --max-pages 500
add-docs imas-python https://imas-python.readthedocs.io/en/stable/ --no-ignore-errors#### Production (Docker)
docker-compose up --build#### Local Development
# Start IMAS Codex server
python -m imas_codex#### API Key Configuration
For embedding generation (e.g., cluster labeling), you'll need an OpenRouter API key:
# Set up environment variables (create .env file from env.example)
cp env.example .env
# Edit .env with your OPENROUTER_API_KEYFor CI/CD (GitHub Actions):
Settings → Secrets and variables → Actionspackages:read scope (required for graph pull during Docker build)Local Docker Build:
# Build with graph from GHCR (requires GHCR_TOKEN)
export GHCR_TOKEN=$(gh auth token)
docker build --secret id=GHCR_TOKEN,env=GHCR_TOKEN .
# Build with a specific graph package
docker build --secret id=GHCR_TOKEN,env=GHCR_TOKEN \
--build-arg GRAPH_PACKAGE=imas-codex-graph-tcv .IMAS Codex uses a Neo4j knowledge graph to store facility data, IMAS Data Dictionary paths, and semantic embeddings. The CLI provides comprehensive tools for managing graph instances.
Named profiles allow switching between Neo4j instances at runtime. Each profile maps to a host, bolt port, HTTP port, and data directory.
Convention ports (no configuration needed for known facilities):
| Facility | Bolt | HTTP |
|---|---|---|
| iter | 7687 | 7474 |
| tcv | 7688 | 7475 |
| jt-60sa | 7689 | 7476 |
Select the active profile:
export IMAS_CODEX_GRAPH=tcv# Pull a facility graph from GHCR
imas-codex graph pull --facility tcv
# Start Neo4j
imas-codex graph db start
# Verify
imas-codex graph db status
imas-codex graph db shell
# > MATCH (n:FacilityPath) RETURN n.facility_id, count(n)For IMAS Data Dictionary access without facility-specific data:
pip install imas-codex
imas-codex graph init imas
imas-codex graph pull --dd-only
imas-codex serveThis pulls a lightweight graph containing only the IMAS Data Dictionary schema, paths, and semantic clusters. Use --registry ghcr.io/<owner> to pull from a specific registry.
The host field on each profile records where Neo4j physically runs. At connection time, is_local_host(host) determines direct vs tunnel access:
resolve_neo4j("iter") detects the local machine → bolt://localhost:7687 (direct)resolve_neo4j("iter") detects a remote host → uses SSH tunnel → bolt://localhost:7687For dual-instance setups (local + tunneled), set a tunnel port override in .env:
IMAS_CODEX_TUNNEL_BOLT_ITER=17687
# Then: ssh -f -N -L 17687:localhost:7687 iter# Start tunnel to remote graph (reads profile host/port)
imas-codex graph tunnel start iter
# With custom local port (for dual-instance)
imas-codex graph tunnel start iter --local-bolt-port 17687
# Show active tunnels
imas-codex graph tunnel status
# Stop tunnel
imas-codex graph tunnel stop iter# Create a neo4j-admin dump backup
imas-codex graph backup
# Restore from backup (interactive selection)
imas-codex graph restore
# Restore specific file
imas-codex graph restore ~/.local/share/imas-codex/backups/iter-20260213.dump
# Clear graph (auto-backup first)
imas-codex graph clear# Push (requires GHCR_TOKEN with write:packages scope)
imas-codex graph push # Release push (requires git tag)
imas-codex graph push --dev # Dev push (auto-increments revision)
imas-codex graph push --facility tcv --dev # Per-facility push
# Pull
imas-codex graph pull # Pull latest unified graph
imas-codex graph pull --facility tcv # Pull per-facility graph
# List and cleanup
imas-codex graph tags # List available versions
imas-codex graph prune --dev # Remove all dev tags
imas-codex graph prune --backups --older-than 30d # Clean old backupsThe full graph contains all facilities. Per-facility graphs are extracted via dump-and-clean:
# Dump filtered to a single facility (keeps IMAS DD nodes)
imas-codex graph export --facility tcv
# Push to per-facility GHCR package
imas-codex graph push --facility tcv --devThis creates ghcr.io/iterorganization/imas-codex-graph-tcv containing only TCV data plus the shared IMAS Data Dictionary.
The release CLI implements a two-state machine (Stable ↔ RC mode) for semantic versioning with graph data publishing.
# Check current release state and permitted commands
imas-codex release status
# Start a major release candidate
imas-codex release --bump major -m "IMAS DD 4.1.0 support"
# Iterate on the RC after fixes
imas-codex release -m "Fix signal mapping edge case"
# Finalize: promote RC to stable release
imas-codex release --final -m "Production release"
# Abandon current RC, start a different bump level
imas-codex release --bump minor -m "New approach"
# Direct release (skip RC)
imas-codex release --bump patch --final -m "Hotfix"
# Preview without executing
imas-codex release --bump major --dry-run -m "Test"The release pipeline:
Graph package variants:
| Package | Contents | Visibility |
|---|---|---|
imas-codex-graph-dd | IMAS Data Dictionary only | Public-safe |
imas-codex-graph | All facilities + DD | Private |
imas-codex-graph-{facility} | Single facility + DD | Private |
Setup: Set GHCR_TOKEN with write:packages scope. Add upstream remote: git remote add upstream https://github.com/iterorganization/imas-codex.git
# Default ports (iter convention: bolt=7687, http=7474)
docker compose --profile graph up
# Custom ports for another facility
BOLT_PORT=7688 HTTP_PORT=7475 docker compose --profile graph upFor local development and customization:
# Clone repository
git clone https://github.com/iterorganization/imas-codex.git
cd imas-codex
# Install development dependencies (search index build takes ~8 minutes first time)
uv sync --all-extrasThis project requires additional dependencies during the build process that are not part of the runtime dependencies:
For runtime: The imas-data-dictionaries PyPI package is now a core dependency and provides access to stable DD versions (e.g., 4.0.0). This eliminates the need for the git package at runtime and ensures reproducible builds.
For developers: Build-time dependencies are included in the [build-system.requires] section for wheel building. The git package is only needed when building wheels with latest DD changes.
# Regular development - uses imas-data-dictionaries (PyPI)
uv sync --all-extras
# Set DD version for building (defaults to 4.0.0)
export IMAS_DD_VERSION=4.0.0
uv run build-schemasLocation in configuration:
[build-system.requires] in pyproject.tomlimas-data-dictionaries>=4.0.0 in [project.dependencies]Note: The IMAS_DD_VERSION environment variable controls which DD version is used for building schemas and embeddings. Docker containers have this set to 4.0.0 by default.
# Run tests
uv run pytest
# Run linting and formatting
uv run ruff check .
uv run ruff format .
# Build schema data structures from IMAS data dictionary
uv run build-schemas
# Build document store and semantic search embeddings
uv run build-embeddings
# Run the server locally (default: streamable-http on port 8000)
uv run imas-codex serve
# Run with stdio transport for MCP clients
uv run imas-codex serve --transport stdio
# Read-only mode (suppresses write tools and Python REPL)
uv run imas-codex serve --read-onlyThe project includes two separate build scripts for creating the required data structures:
`build-schemas` - Creates schema data structures from IMAS XML data dictionary:
--ids-filter "core_profiles equilibrium" to build specific IDS--force to rebuild even if files exist`build-embeddings` - Creates document store and semantic search embeddings:
--model-name "all-mpnet-base-v2" for different models--force to rebuild embeddings cache--no-normalize to disable embedding normalization--half-precision to reduce memory usage--similarity-threshold 0.1 to set similarity score thresholdsNote: The build hook creates JSON data. Build embeddings separately using build-embeddings for better control and performance.
#### VS Code
The repository includes a .vscode/mcp.json file with pre-configured development server options. Use the imas-local-stdio configuration for local development.
#### Claude Desktop
Add to your config file:
{
"mcpServers": {
"imas-local-dev": {
"command": "uv",
"args": ["run", "imas-codex", "serve", "--transport", "stdio"],
"cwd": "/path/to/imas-codex"
}
}
}imas_codex/resources/schemas/ (LLM-optimized structured data)The IMAS Codex server now includes imas-data-dictionaries as a core dependency, providing stable DD version access (default: 4.0.0). The git development package (imas-data-dictionary) is used during wheel building when parsing latest DD changes.
uv add imas-codex - Includes all transports (stdio, sse, streamable-http)uv add imas-codex - Recommended for all usersThe system uses composable accessors to access IMAS Data Dictionary version and metadata:
IMAS_DD_VERSION (highest priority) - Set to specify DD version (e.g., "4.0.0")imas-data-dictionaries package (4.0.0)This design ensures the server can:
IMAS_DD_VERSIONimas-data-dictionaries PyPI packageimas-data-dictionary package to parse XML and create indexesThe search system is the core component that provides fast, flexible search capabilities over the IMAS Data Dictionary. It combines efficient indexing with IMAS-specific data processing and semantic search to enable different search modes:
#### Search Methods
SearchMode.SEMANTIC):SearchMode.LEXICAL):AND, OR, NOT)* and ? patterns)documentation:plasma ids:core_profiles)SearchMode.HYBRID):SearchMode.AUTO):#### Key Capabilities
We plan to implement MCP resources to provide efficient access to pre-computed IMAS data:
#### Planned Resource Features
#### Resource Types
ids://catalog - Complete IDS catalog with metadataids://structure/{ids_name} - Detailed structure for specific IDSids://physics-domains - Physics domain mappings and relationshipsexamples://search-patterns - Common search patterns and workflowsSpecialized prompts for physics analysis and workflow automation:
#### Planned Prompt Categories
#### Prompt Templates
physics-explain - Generate comprehensive physics explanationsmeasurement-workflow - Create measurement analysis workflowscross-ids-analysis - Analyze relationships between multiple IDSimas-python-code - Generate Python code for data analysisContinued optimization of search and tool performance:
#### Current Optimizations (Implemented)
#### Planned Optimizations
Comprehensive testing strategy for all MCP components:
#### Test Implementation Goals
The server is available as a pre-built Docker container with the index already built:
# Pull and run the latest container
docker run -d -p 8000:8000 ghcr.io/iterorganization/imas-codex:latest
# Or use Docker Compose
docker-compose up -dSee DOCKER.md for detailed container usage, deployment options, and troubleshooting.
[python-badge]: https://img.shields.io/badge/python-3.12-blue [python-link]: https://www.python.org/downloads/ [ruff-badge]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json [ruff-link]: https://docs.astral.sh/ruff/ [pre-commit-badge]: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white [pre-commit-link]: https://github.com/pre-commit/pre-commit [build-deploy-badge]: https://img.shields.io/github/actions/workflow/status/simon-mcintosh/imas-codex/test.yml?branch=main&color=brightgreen&label=CI%2FCD [build-deploy-link]: https://github.com/iterorganization/imas-codex/actions/workflows/test.yml [codecov-badge]: https://codecov.io/gh/simon-mcintosh/imas-codex/graph/badge.svg [codecov-link]: https://codecov.io/gh/simon-mcintosh/imas-codex [docs-badge]: https://img.shields.io/badge/docs-online-brightgreen [docs-link]: https://simon-mcintosh.github.io/imas-codex/ [asv-badge]: https://img.shields.io/badge/ASV-Benchmarks-blue?style=flat&logo=speedtest&logoColor=white [asv-link]: https://simon-mcintosh.github.io/imas-codex/benchmarks/
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.