linear-solvers

linear-solvers is a skill for Claude Code from HeshamFS/materials-simulation-skills. It costs 140 tokens per session (3,229 once invoked), scanned A, original, Apache-2.0.

A guide for choosing methods to solve linear equations written as Ax=b, often produced by scientific and engineering simulations. It covers direct methods, iterative methods, matrix properties, and preconditioners that can improve convergence.

In plain words
What is it for?
Use it to select and configure LU, Cholesky, CG, GMRES, BiCGSTAB, or MINRES solvers. It also helps assess matrices, choose AMG, ILU, or IC preconditioners, and apply scaling.
Why use it?
It helps avoid choosing a solver that uses too much memory or converges poorly for the matrix at hand. The guidance connects matrix size, sparsity, symmetry, and conditioning to solver choices.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the core-numerical plugin — 8 skills shipped together , and of full

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/heshamfs/materials-simulation-skills/linear-solvers
Any agent
npx skills add HeshamFS/materials-simulation-skills --skill linear-solvers
Clone the repo
git clone --depth 1 https://github.com/HeshamFS/materials-simulation-skills

Made for: Claude Code.

Or install core-numerical, the plugin that ships this one along with the rest of its 8 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 linear-solvers

README.md
[![agentmods](https://agentmods.dev/badge/skills/heshamfs/materials-simulation-skills/linear-solvers.svg)](https://agentmods.dev/skills/heshamfs/materials-simulation-skills/linear-solvers)
Your own site
<a href="https://agentmods.dev/skills/heshamfs/materials-simulation-skills/linear-solvers"><img src="https://agentmods.dev/badge/skills/heshamfs/materials-simulation-skills/linear-solvers.svg" alt="Measured on agentmods" height="20"></a>
Per session 140 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,229 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.1 $0.00140 $0.03229
Opus 5 $0.00070 $0.01614
Sonnet 5 $0.00028 $0.00646
Haiku 4.5 $0.00014 $0.00323

Measured 6d ago against content hash 32a2ed1027a8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

linear-solvers 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 6d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (scripts/convergence_diagnostics.py, scripts/preconditioner_advisor.py, scripts/residual_norms.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/core-numerical/linear-solvers/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.

Linear Solvers

Goal

Provide a universal workflow to select a solver, assess conditioning, and diagnose convergence for linear systems arising in numerical simulations.

Requirements

  • Python 3.10+
  • NumPy, SciPy (for matrix operations)
  • See individual scripts for dependencies

Inputs to Gather

Input Description Example
Matrix size Dimension of system n = 1000000
Sparsity Fraction of nonzeros 0.01%
Symmetry Is A = Aᵀ? yes
Definiteness Is A positive definite? yes (SPD)
Conditioning Estimated condition number 10⁶

Decision Guidance

Solver Selection Flowchart

Is matrix dense and small enough to factor in memory (dense float64
storage n²·8 bytes < ~2 GB, i.e. n ≲ 16000)?
├── YES → Use direct solver (Cholesky/LDLᵀ/LU by symmetry)
└── NO → Is matrix symmetric?
    ├── YES → Is it positive definite?
    │   ├── YES → Use CG with AMG/IC preconditioner
    │   └── NO → Use MINRES
    └── NO → Is it nearly symmetric?
        ├── YES → Use BiCGSTAB
        └── NO → Use GMRES with ILU/AMG

Quick Reference

Matrix Type Solver Preconditioner
SPD, sparse CG AMG, IC
Symmetric indefinite MINRES SPD preconditioner (SSOR, symmetric block-diagonal, or AMG on SPD part)
Nonsymmetric GMRES, BiCGSTAB ILU, AMG
Dense LU, Cholesky None
Saddle point Schur complement, Uzawa Block preconditioner

Script Outputs (JSON Fields)

Script Key Outputs
scripts/solver_selector.py recommended, alternatives, notes
scripts/convergence_diagnostics.py rate, asymptotic_rate, stagnation, recommended_action
scripts/sparsity_stats.py nnz, density, bandwidth, symmetry
scripts/preconditioner_advisor.py suggested, notes
scripts/scaling_equilibration.py row_scale, col_scale, notes
scripts/residual_norms.py residual_norms, relative_norms, converged

Read the full file on GitHub · 249 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. 6d ago First seen · 249 lines · 140 tokens per session scan A 32a2ed1027a8

Subscribe to this mod's changes

linear-solvers is a skill published in the GitHub repository HeshamFS/materials-simulation-skills (66 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 140 tokens to every session and 3,229 once invoked, about $0.0007 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

write-paper

Turn a project's verified fact graph into a publishable LaTeX paper in a configurable house style — a standalone amsart .tex with a real bibliography, compiled to PDF. Use when a project's target theorem is established and the operator wants the paper, or asks to write/revise/audit references for the paper for a…

frenzymath/Danus · 106 tokens

search-math-results

Find program-conditioned math results, constructions, examples, counterexamples, analogies, and background references. Use when the current active program needs repair, mutation, analogy, a program shift, or carefully gated obstruction search.

frenzymath/Danus · 48 tokens

human-summary

Write a human-readable mathematical progress report (compiled PDF) on a project for the operator / the mathematician who posed the problem. This is NOT elaboration (the internal strategy synthesis) and NOT the dashboard. Render from the fact graph's verified statements/proofs into a clean, self-contained report …

frenzymath/Danus · 103 tokens

check-referenced-statements

Validate externally referenced theorems by querying arXiv theorem search first and Codex's built-in web search second. Use when a markdown proof cites statements from external papers.

frenzymath/Danus · 41 tokens

verify-sequential-statements

Verify a markdown proof in the order it is written. Use when the task is to check local correctness, theorem applicability, and reasoning gaps statement by statement through a paper-style proof.

frenzymath/Danus · 42 tokens

construct-counterexamples

Construct candidate counterexamples to test a proposed conjecture, lemma, or intermediate claim by keeping the assumptions true while making the claimed conclusion fail. Use when a proposed conjecture/claim feels fragile or unproved, or when you are stuck in reasoning and want to see where the assumptions take effect…

frenzymath/Danus · 66 tokens