Setup custom libraries
Skill matlab/simulink-agentic-toolkit/skills-catalog/model-based-design-core/setup-custom-libraries
The Simulink Agentic Toolkit gives your AI agent both the tools and the expertise to work effectively with Simulink and Model-Based Design.
npx -y skills add matlab/simulink-agentic-toolkit --skill setup-custom-librariesAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Register, add, or update existing custom Simulink block libraries and configure block policy and knowledge index. Use when a user wants to register, set up, configure, or add existing .slx library files for agent-assisted model building. Do NOT use when the user wants to create or author a new library from scratch — that requires building-simulink-models.
The file declares its own license as MathWorks BSD-3-Clause. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
5.8 KB, as published. Nobody here has run it
Setup Custom Libraries
Register or update custom Simulink block libraries so the agent prefers them over built-in blocks during model building.
When to Use
- User asks to set up, register, add, or configure custom libraries
- User wants to add new
.slxfiles to an existing library configuration - User says "setup custom libraries", "add my library", "configure libraries", "add a new library file"
building-simulink-modelsroutes here via the policy gate (gatePass: false)- Never invoke when
found: false— that means no custom libraries are configured and the user hasn't asked for them
When NOT to Use
- User wants to create a custom library from scratch (author new blocks, build a new
.slxlibrary file) → usebuilding-simulink-modelsskill withmodel_editdirectly. This skill only registers existing libraries; it cannot create library content. - Only configuring block exclusions or parameter protection (libraries already declared) →
configuring-block-policy - Only curating block descriptions/categories (libraries already declared) →
curating-library-kg
Workflow
Do this FIRST and ALONE — no other tool calls in the same message.
Call library.settingsLookup() — returns a struct with resolved absolute paths:
found— whether a libraries file was located (satk-libraries.json or legacy reuse-libraries.json)enabled— whether custom libraries are configuredgatePass— whether the gate is satisfieddataRoot— absolute path to the directory containing.satk/kgIndexPath,librariesPath,policyPath— absolute paths to data files
Interpret the result:
found: false→ no custom libraries configured. Do NOT proceed with setup unless the user explicitly asked. Return control to the calling skill.gatePass: true, found: true→ all data files present and KB populated. Offer management menu (below).gatePass: false, found: true→ libraries declared but KB needs population. Skip Gate 1 (libraries already exist). Start from Gate 2 below usingdataRootas the target.
Follow references/library-setup.md for all gate API details — it is the single source of truth for API calls, examples, and options at each gate.
Gate 1 — Library declaration: Only when the user explicitly asked to set up custom libraries and no libraries file exists yet. STOP and ask the user about reusable libraries. Present two options: Yes (declare libraries) or None (no libraries right now). Do not read reference files, open models, or plan blocks until they respond.
- If user provides libraries (Yes) → save to
prefdirvialibrary.LibraryConfig.save(prefdir(), libraries). - If user says "none" → do not create any files. The gate remains open (no config = use standard blocks).
Gate 2 — Block policy: If .satk/block-policy.json is missing, STOP and ask the user about policy setup by following references/library-setup.md. Do not proceed until policy is resolved.
Gate 3 — Library blocks knowledge index: If the KB is empty (index.md contains populated: false) or missing, STOP and ask the user whether to index their library blocks so the agent knows which blocks are available during model building. Offer two options: Automatic (agent infers categories/descriptions autonomously) or Guided setup (interactive curation). Both invoke the curating-library-kg skill. Follow references/library-setup.md for details. Do not proceed until KG generation completes.
Management menu (config already complete)
Retrieve and display the user's current configuration status using the APIs in references/library-setup.md § "Status Display (Management Menu)". Show library names/paths, policy mode with fallback, and KG block/category counts. Then offer:
- (a) Add or remove libraries — load existing config via
library.LibraryConfig.load(dataRoot), append/remove entries, save vialibrary.LibraryConfig.save(dataRoot, allLibs), then invokecurating-library-kgskill (automatic mode) to regenerate KG. - (b) Update block policy — load
configuring-block-policyskill. - (c) Promote config to prefdir — only show if tier is
projectorlegacy. Copy.satk/folder toprefdir/.satk/(expand relative paths to absolute). Seereferences/library-setup.md§ "Gate 1" for the promote API. - (d) Regenerate knowledge index — load
curating-library-kgskill.
Adding files to existing config
When satk-libraries.json already exists with declared libraries: read the existing config, append the new library entries, save via library.LibraryConfig.save(), then invoke the curating-library-kg skill (automatic mode) to infer categories/descriptions for the new blocks and regenerate the knowledge index.
Guardrails
- Never write config files or
.satk/JSON manually. Always follow the instructions and APIs inreferences/library-setup.mdfor each case. - Do not use
find_system,load_systemto discover, validate, or enumerate library contents. All library operations must go through the specified APIs inreferences/library-setup.md. - Each gate requires explicit user input before proceeding. Do not assume anything, wait for the response before moving to the next gate.
- Paths at prefdir must be absolute. (Project-level paths can be relative to project root.)
Copyright 2026 The MathWorks, Inc.