curating-library-kg — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited curating-library-kg (Agent Skill) 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.
Guide users through curating .satk/library-kg/ for better agent block selection. Users can mark common blocks, define categories, and improve descriptions. Curation data is saved to .satk/library-curation.json and applied when the KG is generated — no pre-existing KG is required.
building-simulink-models Gate 3 when user chooses "Guided setup"configuring-block-policybuilding-simulink-modelsbuilding-simulink-models.satk/reuse-libraries.json must exist with libraries declaredIf .satk/library-kg/index.md already exists, start at step 1 (review existing state). If not, start at step 2 (collect curation data first, generate at the end).
index.md and common.md, summarize current state to user (libraries, block count, categories, common blocks).LibraryCatalog (see API below). Save to commonBlocks field.categoryOverrides or define entirely custom categories.descriptionOverrides..satk/library-curation.json via library.LibraryCuration.save(projectRoot, curation), then run library.kg.Populate.run(projectRoot). The KG is generated with all curation applied in one pass. Confirm the output with the user.Use LibraryCatalog to load and display all available blocks from declared libraries. The constructor parses .slx libraries (or loads from cache) and getContextSummary() returns a formatted summary of all blocks grouped by category:
libConfig = library.LibraryConfig.load(projectRoot);
catalog = library.LibraryCatalog(libConfig, projectRoot);
summary = catalog.getContextSummary();
disp(summary);All curation state is persisted to .satk/library-curation.json via LibraryCuration.save():
curation = library.LibraryCuration.load(projectRoot);
curation.commonBlocks = {'SpeedController', 'TorqueEstimator'};
curation.categories = struct('name', 'motors', 'description', 'Electric motors', 'keywords', {{'motor', 'drive'}});
curation.categoryOverrides = struct('OldBlock', 'motors');
curation.descriptionOverrides = struct('MyBlock', 'Better description here');
library.LibraryCuration.save(projectRoot, curation);
library.kg.Populate.run(projectRoot);| Field | Type | Effect |
|---|---|---|
commonBlocks | string array | Always shown in common.md regardless of quality score |
categories | array of {name, description, keywords} | Replaces hardcoded categories when present |
categoryOverrides | object {blockName: categoryName} | Per-block category correction |
descriptionOverrides | object {blockName: description} | Per-block custom description |
commonBlocks): always first, regardless of qualityLibraryCatalog.getContextSummary(), library.kg.Populate.run(), library.kg.Query.search()). These APIs handle parsing, caching, and staleness automatically..satk/library-cache/*.json or .satk/library-kg/*.md directly — they are auto-generatedlibrary.LibraryCuration.save() (writes .satk/library-curation.json)----
Copyright 2026 The MathWorks, Inc.
----
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.