Skip to content
Data
Skill

/matlab

Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.

From plugin
k-dense-ai-scientific-agent-skills-2
45k166 skills
Install
$ npx -y skills add K-Dense-AI/scientific-agent-skills --skill matlab --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/matlab

Context preview

The summary Claude sees to decide when to auto-load this skill.

Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.

SKILL.md

matlab.SKILL.md
name: matlab
description: Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.
license: MIT
compatibility: >-
  Documentation is pinned where noted to proprietary MATLAB R2026a and free
  GNU Octave 11.3.0. Bundled Python CLIs require Python 3.11+ and run locally
  without MATLAB or Octave; optional MAT inventory uses scipy and/or h5py.
allowed-tools: Read Write Bash Glob Python
metadata:
  version: "1.2"
  skill-author: "K-Dense Inc."
  last-reviewed: "2026-07-23"

MATLAB and GNU Octave

Use this skill to design or review numerical code, migrate MATLAB releases, prepare reproducible projects, and plan trusted execution. MATLAB and GNU Octave are distinct products: compatibility is partial, not a license or behavior guarantee.

Product and license gate

  • **MATLAB R2026a is proprietary.** Do not assume MATLAB, MATLAB Online, a

named toolbox, MATLAB Test, MATLAB Compiler, MATLAB Coder, Parallel Computing Toolbox, or an add-on is installed, licensed, or available to the user.

  • **MATLAB Runtime is not MATLAB.** It runs compatible applications produced

with MATLAB Compiler; it cannot run arbitrary source or host MATLAB Engine for Python. Building artifacts needs the applicable licensed compiler and every product used by the source.

  • **GNU Octave 11.3.0 is free software under GPLv3+.** Octave packages are not

MATLAB toolboxes. Similar names do not imply API, numerical, graphics, or licensing equivalence.

  • Ask which runtime, release, platform, installed products, and license context

the user actually has. Treat availability as `unknown` until confirmed.

See [Octave compatibility](references/octave-compatibility.md) and [execution/product boundaries](references/executing-scripts.md).

Nonnegotiable safety boundary

Never run an untrusted `.m`, `.mlx`, MEX binary, MAT file, project startup or shutdown action, package installer, or generated artifact. Static review does not prove safety.

Treat these as execution or code-loading surfaces:

  • `eval`, `evalin`, `assignin`, text-derived `feval`, `str2func`, callbacks,

timers, app callbacks, and dynamically modified paths;

  • `system`, `unix`, `dos`, shell escape `!`, Java, .NET, Python (`py.*`,

`pyrun`, `pyrunfile`), MEX, and native libraries;

  • `mex`, `codegen`, MATLAB Compiler, build tasks, package/project startup, and

generated code;

  • `load`, object deserialization (`loadobj`, custom serialization), function

handles, Java/System objects, and class code reachable from MAT files.

`.mlx` is an opaque archive for this toolkit and MEX is native executable code. Do not use Python pickle for exchange. Inspect first, isolate when appropriate, obtain explicit approval, then invoke a user-confirmed executable and license. Bundled scripts are static or dry-run tools: none launches MATLAB, Octave, Python Engine, a compiler, or a subprocess.

Default workflow

1. **Clarify target.** Record MATLAB release or Octave version, OS/architecture, base product versus required toolboxes/packages, expected inputs/outputs, numerical tolerances, and whether execution is authorized. 2. **Inventory statically.** Scan `.m` files, opaque artifacts, project paths, required products, and MAT headers before any runtime loads them. 3. **Choose code form.** Prefer functions with an `arguments` block for automation. Use scripts only for controlled orchestration and live scripts for reviewed interactive narratives. 4. **Make semantics explicit.** Record shapes, classes, units, missing-value rules, indexing, implicit expansion, RNG algorithm/seed, tolerances, and output formats. 5. **Test without hidden state.** Keep fixtures synthetic, paths project-local, graphics deterministic, and tests independent of base-workspace residue. 6. **Plan execution.** Generate an argv plan, review startup/path effects and licenses, and launch only after explicit approval outside these helpers. 7. **Capture provenance.** Hash named inputs/code and record release, products, RNG policy, tolerances, and command plan without dumping the environment.

Language and data checklist

Scripts, functions, and live scripts

  • Scripts share the caller/base workspace and leave variables behind.

Functions have local workspaces and explicit inputs/outputs.

  • Live scripts (`.mlx`) mix code and rich output but are not plain-text

review artifacts. Export reviewed code to `.m` for static inspection.

  • Avoid `clear all`, broad `addpath(genpath(...))`, dependence on `pwd`, global

variables, and silent name shadowing. Use project roots and `fullfile`.

  • Validate sizes, classes, and values in `arguments` blocks. Remember that

type declarations can convert inputs; validators check without converting.

  • A main function file should match the main function name. Local functions

are private to the file; since R2024a they can appear anywhere in a script outside conditional contexts.

function y = scaleSignal(x, options)
arguments
    x (:,1) double {mustBeFinite}
    options.Scale (1,1) double {mustBeFinite, mustBeNonzero} = 1
end
y = x .* options.Scale;
end

Read [programming](references/programming.md).

Arrays, indexing, and numerics

  • MATLAB uses 1-based, column-major indexing. `A(i,j)`, `A(k)`, `A(:,j)`,

`A{...}`, and `A.(name)` have different semantics.

  • `*`, `/`, `\`, and `^` are matrix operations; dotted forms are

element-wise. Use `A\b`, not `inv(A)*b`.

  • Since R2016b, compatible dimensions expand implicitly. Assert intended shape

before operations that could accidentally form an outer result.

  • Preallocate when output size is known, but do not vectorize at the cost of

huge temporaries or unreadable code. Measure with `timeit` or the profiler.

  • Compare floating-point results with domain-chosen absolute and relative

tolerances, not blanket `==` or a magic m

Read more
Ships withk-dense-ai-scientific-agent-skills-2

🔔 Claude Scientific Skills is now Scientific Agent Skills. Same skills, broader compatibility — now works with any AI agent that supports the open Agent Skills standard, not just Claude.

Get the whole plugin
Stats
44,851
Stars
4,066
Forks
Active
Maintenance
Python
Language
MIT
License
2d ago
Last commit
11mo ago
Created

Repo: K-Dense-AI/scientific-agent-skills