Skip to main content
ClaudeWave
Skill618 repo starsupdated 8d ago

matlab-build-toolbox

This skill executes the build pipeline by introspecting a buildfile.m, running its dependency chain, and producing a .mltbx toolbox package without manual checkpoints. Use it after the matlab-assess-toolbox readiness check passes and a valid buildfile.m exists in the project root.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/matlab/matlab-agentic-toolkit /tmp/matlab-build-toolbox && cp -r /tmp/matlab-build-toolbox/skills-catalog/matlab-software-development/matlab-build-toolbox ~/.claude/skills/matlab-build-toolbox
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# matlab-build-toolbox — Build Executor

You execute the build pipeline. You are an operator — you introspect the plan to find the right task to invoke, run it, report results at each stage, and stop on failure. This is the only skill in the pipeline with no human checkpoint.

## When to Use

- After `matlab-assess-toolbox` reports READY (no blockers)
- User says "build it", "run the build", or "build package"
- User has their own `buildfile.m` and wants to execute it
- As part of the full pipeline after readiness gate passes

## When NOT to Use

- No `buildfile.m` exists — use `matlab-create-buildfile` first
- User wants to create or modify build tasks — use `matlab-create-buildfile`
- User wants to publish/release — use `matlab-publish-toolbox` after a successful build
- User wants a readiness check — use `matlab-assess-toolbox`

## Key Functions

| Function | Purpose |
|----------|---------|
| `matlab.buildtool.Plan.load` | Introspect the build plan to discover tasks and dependencies |
| `buildtool` | Execute the build pipeline (runs task dependency chain) |
| `dir` | Locate and verify the `.mltbx` artifact after packaging |

## Inputs

- **project_root**: Path to the project (default: current directory)
- **target** (optional): The buildtool task to execute. If omitted, auto-detected from the plan (see Step 2).

## Workflow

### Step 1 — Verify Preconditions

Before executing:
1. Confirm `buildfile.m` exists at the project root
2. Determine pipeline context:
   - **Full pipeline** (`buildUtilities/toolboxSpecification.m` and `buildUtilities/tbxManifest.m` exist): readiness was run, proceed with full context
   - **Standalone buildplan** (only `buildfile.m` exists): user has their own plan not generated by `matlab-create-buildfile`. Skip spec/manifest checks, proceed with introspection.
3. If full pipeline context exists, confirm no blockers from last readiness check

If `buildfile.m` does not exist, stop and direct the user to `matlab-create-buildfile` or ask them to provide one.

### Step 2 — Introspect the Build Plan

Load the plan and discover its structure:

```matlab
plan = matlab.buildtool.Plan.load("buildfile.m");
disp({plan.Tasks.Name})
```

Identify the **target task** (in priority order):
1. Use the `target` input if provided
2. Look for a task named `package`
3. Find the terminal task — one with no downstream dependents that produces the `.mltbx`
4. If ambiguous (multiple candidates), ask the user which to run

Identify the **dependency chain** leading to the target:

```matlab
% The chain executes in topological order when you run the target
% e.g., buildtool package → runs check, test, package
```

Report what will execute:
```
Build target: "package"
Dependency chain: check → test → package
```

### Step 3 — Execute Build Pipeline

Run via MATLAB, stopping on first failure:

```matlab
buildtool <target>
```

Monitor each stage dynamically based on what's in the chain:

| Task Type | Success Condition | On Failure |
|-----------|-------------------|------------|
| `CodeIssuesTask` or "check" | 0 error-severity findings | Report findings, stop |
| `TestTask` or "test" | All tests pass | Report failures, stop |
| Coverage (if present) | Reports coverage | Log warning if below threshold (does not stop) |
| `MexTask` | MEX file produced | Report error, stop |
| `PcodeTask` | P-code files produced | Report error, stop |
| Packaging task | `.mltbx` file produced | Report error, stop |

Not all chains have all stages. Report only what exists in this plan.

### Step 4 — Verify Artifact

After successful packaging, locate and verify the `.mltbx`. First check the task's declared `Outputs` (authoritative), then fall back to scanning `release/` and the project root:

```matlab
mltbxFile = dir(fullfile("release", "*.mltbx"));
assert(~isempty(mltbxFile), "No .mltbx file found in release/");
assert(mltbxFile(1).bytes > 0, "Package file is empty");
fprintf("Package: %s (%.1f KB)\n", fullfile(mltbxFile(1).folder, mltbxFile(1).name), mltbxFile(1).bytes / 1024);
```

If no `.mltbx` in `release/`, check the task's declared `Outputs` or scan the project root. A zero-byte file counts as a failure.

### Step 5 — Report Results

```
## Build Complete

- Package: release/MyToolbox.mltbx (142.3 KB)
- Target: "package"
- Chain: check → test → package
- Static analysis: 0 errors, 2 warnings
- Tests: 25/25 passed
- Coverage: 85%
- Duration: 12.3s

### Next Steps
- Run `matlab-publish-toolbox` to version-tag and release
- Test installation: matlab.addons.toolbox.installToolbox("release/MyToolbox.mltbx")
```

Adapt the report to what actually ran — omit sections for stages not in this plan (e.g., if no coverage task, don't report coverage).

On failure:

```
## Build Failed — [Stage]

### What happened
[error details]

### Suggested fix
[actionable suggestion]

### To retry
Run `matlab-build-toolbox` after fixing the issue.
```

## Output

- `.mltbx` toolbox package
- Build report (pass or fail with details)

## Checkpoint

**No** — this skill is mechanical. It executes an already-approved plan. If it fails, it reports why and stops.

## Key Rules

- **Introspect first.** Read the buildplan before executing. Never assume the task name or dependency chain — discover it.
- **Stop on first failure.** Never continue past a failing stage. A package from broken code is worse than no package.
- **Report everything.** Show counts, percentages, durations. The user should be able to verify the build quality.
- **Verify the artifact.** Check `.mltbx` exists and has non-zero size. A zero-byte package is a silent failure.
- **No decisions.** You execute the plan. You do not modify code, skip tests, or lower thresholds. If something fails, report it and stop.
- **Idempotent.** Running this skill again after fixing an issue should work cleanly.

## Next Steps

- `/matlab-publish-toolbox` — version-stamp and distribute the release

----

Copyright 2026 The MathWorks, Inc.

----
matlab-train-networkSkill

>

matlab-driving-data-importerSkill

Import recorded driving sensor data (GPS, camera, lidar, actor tracks, lanes) into scenariobuilder.* objects (GPSData, CameraData, LidarData, ActorTrackData, Trajectory, laneData) and run preprocessing — synchronize, offset correction, crop, normalizeTimestamps, convertTimestamps. Also: compute actor tracks from lidar when no annotations exist, attach camera/lidar mounting + intrinsics, export to MAT/workspace/timetable/script. Use for raw driving dataset files (KITTI, nuScenes, Waymo, Pandaset, ROS/ROS2 bags, .mat, .csv, .mp4) or driving/vehicle/sensor logs that need wrapping. drivingLogAnalyzer (DLA) is OPT-IN ONLY — invoke only on explicit user request ('DLA', 'open in DLA', 'inspect/explore/analyze the recording') or reported sensor problem (sync drift, timestamp mismatch, overlay misalignment). NEVER auto-launch DLA after wrapping (Rule 0). For 'build scenario / export to RoadRunner / drivingScenario / OpenSCENARIO / Unreal / simulate', hand off to matlab-scenario-builder.

matlab-scenario-builderSkill

Generate driving scenes, scenarios, road surfaces, and 3D content from already-wrapped scenariobuilder.* sensor data (GPS, camera, lidar, actor tracks) using Scenario Builder for Automated Driving Toolbox. Use to BUILD, EXPORT, or AUGMENT a virtual scenario/scene/map: ego or actor trajectories, trajectory smoothing, OpenCRG road-surface extraction, 3D asset generation, static-object placement, point-cloud georeferencing + elevation, lane-based ego localization, sensor-fusion tracking, scenario-event extraction (cut-ins, hard brakes, near-misses, ADAS disengagements), or export to RoadRunner, drivingScenario, OpenDRIVE, OpenCRG, OpenSCENARIO, or Unreal Engine. Also: log-to-scenario, scenario harvesting, accident/near-miss reconstruction, SOTIF (ISO 21448) and ISO 26262 scenario coverage, USGS-aerial-lidar scene augmentation, traffic-sign placement from camera+lidar logs. NOT for raw-data import or multi-sensor sync/crop/offset/timestamp normalization — route those to matlab-driving-data-importer.

roadrunner-asset-mappingSkill

>

roadrunner-convert-lanelet2-to-rrhdSkill

>

roadrunner-import-sceneSkill

>

roadrunner-rrhd-authoringSkill

>

matlab-build-simbiology-modelSkill

Build, modify, and diagram SimBiology models — API reference, helper functions, and layout patterns. Use when constructing or editing models programmatically or visually.