Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/Ibook000/ibook-skillnpx agentmods add skills/ibook000/ibook-skill/msp0-skillWrote 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.
[](https://agentmods.dev/skills/ibook000/ibook-skill/msp0-skill)<a href="https://agentmods.dev/skills/ibook000/ibook-skill/msp0-skill"><img src="https://agentmods.dev/badge/skills/ibook000/ibook-skill/msp0-skill.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00101 | $0.03700 |
| Opus 5 | $0.00051 | $0.01850 |
| Sonnet 5 | $0.00020 | $0.00740 |
| Haiku 4.5 | $0.00010 | $0.00370 |
Grade A, and why
mspm0-ccs 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 7d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 195 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MSPM0 Agent Skill
Use this skill for TI MSPM0 firmware projects that use SysConfig and DriverLib through CCS / CCS Theia, Keil/uVision, or CMake + Arm GNU Toolchain + OpenOCD workflows. It is intended for Claude Code, OpenCode, OpenClaw, Continue, Cursor, Codex, and similar CLI/editor agents.
Default Workflow
- Locate the project
.syscfgorsystem.syscfg, editable source files, generatedti_msp_dl_config.h, and the active project entrypoint:targetConfigs/*.ccxmlfor CCS,*.uvprojxplus scatter file for Keil/uVision, orCMakeLists.txtplus OpenOCD.cfgfiles for CMake/GCC/OpenOCD. - Run
python scripts/check_syscfg.py <project-dir>when this skill is available. - Read
.syscfgmetadata: device, package, SDK product, SysConfig version, modules, instances, pins, clocks, and interrupts. - Inspect generated
ti_msp_dl_config.hfor macro names, IRQ names, instance names, and the exact SysConfig init function spelling. - Before adding unfamiliar SysConfig fields, inspect the user's existing
.syscfg,examples/*/manifest.json, TI SDK examples, orsource/ti/driverlib/.meta/*.syscfg.js. - Modify the smallest relevant
.syscfgand application-code surface. - Regenerate SysConfig output or rebuild through the active toolchain's generated build flow.
- If flashing or debugging, confirm the configured probe backend matches the connected hardware and prefer a System Reset after programming.
Core Rules
- Treat
.syscfgas the source of truth for pinmux, peripheral setup, clocks, interrupts, DMA ownership, and generated initialization. - Prefer SysConfig + DriverLib for GPIO, UART, PWM, Timer, ADC, I2C, SPI, DMA, and clock setup.
- Do not hand-edit generated outputs such as
Debug/ti_msp_dl_config.c,Debug/ti_msp_dl_config.h, the project-rootti_msp_dl_config.c/ti_msp_dl_config.hpair in Keil layouts,device_linker.cmd,Objects/,Listings/, object files, maps, or.outfiles. - Preserve
.syscfgmetadata such as@cliArgs,@v2CliArgs,@versions,--device,--package, and--product. - Do not guess generated names. Read
ti_msp_dl_config.hand use the local macros and the local init function spelling, such asSYSCFG_DL_init(). - Do not invent SysConfig fields, enum values, device metadata, board names, package names, or tool versions. Validate against local examples, SDK metadata, or SysConfig CLI.
- Preserve unrelated user code, comments, copyright headers, project layout, and existing
.syscfgsettings. If a requested feature requires a larger rewrite, explain why before making it when possible. - Do not change device, package, SDK, compiler, CCS version, board, or debug probe without user confirmation.
- If SysConfig emits warnings, report them separately from build/flash success. Do not call a warning-producing generation "clean".
- If hardware behavior is not verified on a connected board, say that validation stopped at source, SysConfig, or build level.
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- .DS_Store 6.0 KB
- assets/.DS_Store 6.0 KB
- assets/readme/msp0-audit-report.png 98 KB
- assets/readme/msp0-installation.png 148 KB
- assets/snippets/clock_80mhz_mfclk.syscfg.md 1.9 KB
- assets/snippets/gpio_output_led.syscfg.md 2.1 KB
- assets/snippets/mspm0g3507_lqfp64_empty_scaffold.syscfg.md 1.2 KB
- assets/snippets/uart0_blocking_tx.syscfg.md 1.1 KB
- examples/empty_project/empty.syscfg 720 B
- examples/empty_project/manifest.json 708 B
- examples/empty_project/README.md 1.1 KB
- examples/empty_project/src/empty.c 1.7 KB
- examples/led_blink/example.syscfg 1.1 KB
- examples/led_blink/manifest.json 733 B
- examples/led_blink/README.md 1.5 KB
- examples/led_blink/src/main.c 267 B
- examples/oledui_full_g3519/example.syscfg 12 KB
- examples/oledui_full_g3519/manifest.json 6.4 KB
- examples/oledui_full_g3519/README.md 1.2 KB
- examples/oledui_full_g3519/src/app/app_bird_game.c 11 KB
- examples/oledui_full_g3519/src/app/app_bird_game.h 919 B
- examples/oledui_full_g3519/src/app/app_brick_game.c 8.1 KB
- examples/oledui_full_g3519/src/app/app_brick_game.h 756 B
- examples/oledui_full_g3519/src/app/app_dino_game.c 15 KB
- examples/oledui_full_g3519/src/app/app_dino_game.h 796 B
- examples/oledui_full_g3519/src/app/app_game_common.c 5.7 KB
- examples/oledui_full_g3519/src/app/app_game_common.h 1.6 KB
- examples/oledui_full_g3519/src/app/app_gyroscope.c 5.0 KB
- examples/oledui_full_g3519/src/app/app_gyroscope.h 349 B
- examples/oledui_full_g3519/src/app/app_key_task.c 5.0 KB
- examples/oledui_full_g3519/src/app/app_key_task.h 1.0 KB
- examples/oledui_full_g3519/src/app/app_plane_game.c 12 KB
- examples/oledui_full_g3519/src/app/app_plane_game.h 1.6 KB
- examples/oledui_full_g3519/src/app/app_robot_face.c 24 KB
- examples/oledui_full_g3519/src/app/app_robot_face.h 1.7 KB
- examples/oledui_full_g3519/src/app/app_snake_game.c 7.5 KB
- examples/oledui_full_g3519/src/app/app_snake_game.h 602 B
- examples/oledui_full_g3519/src/app/app_task.c 2.2 KB
- examples/oledui_full_g3519/src/app/app_task.h 641 B
- examples/oledui_full_g3519/src/app/app_uart_monitor.c 9.8 KB
- examples/oledui_full_g3519/src/app/app_uart_monitor.h 386 B
- examples/oledui_full_g3519/src/app/game_port_mspm0.c 2.7 KB
- examples/oledui_full_g3519/src/app/game_port.h 1.3 KB
- examples/oledui_full_g3519/src/empty.c 2.8 KB
- examples/oledui_full_g3519/src/hardware/hw_buzzer.c 613 B
- examples/oledui_full_g3519/src/hardware/hw_buzzer.h 214 B
- examples/oledui_full_g3519/src/hardware/hw_delay.c 24 B
- examples/oledui_full_g3519/src/hardware/hw_delay.h 173 B
- examples/oledui_full_g3519/src/hardware/hw_encoder_gpio.c 3.4 KB
- examples/oledui_full_g3519/src/hardware/hw_encoder_qei.c 1.4 KB
- examples/oledui_full_g3519/src/hardware/hw_encoder.h 577 B
- examples/oledui_full_g3519/src/hardware/hw_key.c 479 B
- examples/oledui_full_g3519/src/hardware/hw_key.h 283 B
- examples/oledui_full_g3519/src/hardware/hw_lsm6ds3.c 18 KB
- examples/oledui_full_g3519/src/hardware/hw_lsm6ds3.h 3.3 KB
- examples/oledui_full_g3519/src/hardware/hw_w25qxx.c 9.8 KB
- examples/oledui_full_g3519/src/hardware/hw_w25qxx.h 2.8 KB
- examples/oledui_full_g3519/src/hardware/hw_ws2812_effects.c 6.6 KB
- examples/oledui_full_g3519/src/hardware/hw_ws2812_effects.h 617 B
- examples/oledui_full_g3519/src/hardware/hw_ws2812.c 6.6 KB
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.
- 7d ago First seen · 195 lines · 101 tokens per session scan A d9d165438821
mspm0-ccs is a skill published in the GitHub repository Ibook000/ibook-skill (2 stars, last pushed 8d ago), licensed MIT. It adds 101 tokens to every session and 3,700 once invoked, about $0.0005 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-31.
Other skills, from other repositories
animation-motion-capture
Implement motion capture integration and real-time synchronization.
intent-recognition
Classifies automation requests using two decisions: anchor (which primitive owns the top-level control flow — workflow-anchored, agent-anchored, needs-clarification, or out-of-scope) and embedsother (whether the other primitive appears embedded inside — an agent step inside a workflow, or a workflow invoked as an…
mspm0-ccs
Tool-neutral CLI agent rules for TI MSPM0 development with Code Composer Studio, Keil/uVision, CMake/GCC/OpenOCD, SysConfig, and DriverLib. Use when an agent needs to inspect or modify MSPM0 projects, edit .syscfg configuration, avoid generated SysConfig/build files, use DriverLib APIs, validate SysConfig output…
freecad-scripts
Expert skill for writing FreeCAD Python scripts, macros, and automation. Use when asked to create FreeCAD models, parametric objects, Part/Mesh/Sketcher scripts, workbench tools, GUI dialogs with PySide, Coin3D scenegraph manipulation, or any FreeCAD Python API task. Covers FreeCAD scripting basics, geometry creation…
legacy-circuit-mockups
Generate breadboard circuit mockups and visual diagrams using HTML5 Canvas drawing techniques. Use when asked to create circuit layouts, visualize electronic component placements, draw breadboard diagrams, mockup 6502 builds, generate retro computer schematics, or design vintage electronics projects. Supports 555…
memory-merger
Merges mature lessons from a domain memory file into its instruction file. Syntax: /memory-merger >domain [scope] where scope is global (default), user, workspace, or ws.