crosspad-mcp: Skill for Claude Code

.claude/skills/crosspad-pc-iter/SKILL.md

crosspad-pc-iter is a skill for Claude Code from CrossPad/crosspad-mcp. It costs 82 tokens per session (1,519 once invoked), scanned B, original, MIT.

A workflow guide for changing and checking the CrossPad PC simulator, a program that imitates a CrossPad computer. It covers the repeated steps from editing C++ code to running and inspecting the result.

In plain words
What is it for?
Use it while developing the CrossPad PC simulator: edit C++ code, choose a build method, run the simulator, check its behavior, and stop it safely.
Why use it?
It helps avoid confusion when a simulator is still running, does not respond, or is using an old executable. It also explains when to rebuild only changed parts or rebuild everything.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is CrossPad/crosspad-mcp's own configuration. It tells Claude Code how to work on crosspad-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything crosspad-mcp configures →

Part of the crosspad plugin — 3 skills, 2 MCP servers shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to CrossPad/crosspad-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/CrossPad/crosspad-mcp/master/.claude/skills/crosspad-pc-iter/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/CrossPad/crosspad-mcp

Made for: Claude Code.

Or install crosspad, the plugin that ships this one along with the rest of its 3 skills, 2 MCP servers.

Wrote 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.

agentmods badge for crosspad-pc-iter

README.md
[![agentmods](https://agentmods.dev/badge/skills/crosspad/crosspad-mcp/crosspad-pc-iter.svg)](https://agentmods.dev/skills/crosspad/crosspad-mcp/crosspad-pc-iter)
Your own site
<a href="https://agentmods.dev/skills/crosspad/crosspad-mcp/crosspad-pc-iter"><img src="https://agentmods.dev/badge/skills/crosspad/crosspad-mcp/crosspad-pc-iter.svg" alt="Measured on agentmods" height="20"></a>
Per session 82 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,519 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00082 $0.01519
Opus 5 $0.00041 $0.00759
Sonnet 5 $0.00016 $0.00304
Haiku 4.5 $0.00008 $0.00152

Measured 8d ago against content hash ab75de9395e3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade B, and why

crosspad-pc-iter scanned grade B with 1 finding 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 8d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

**`crosspad_kill` returns `success: false`** — `error` field tells you *which* signal failed (`EPERM`, `ESRCH`, `EUNKNOWN`) and which PID. EPERM means a different user owns the process (rare in dev, common if you ran the
.claude/skills/crosspad-pc-iter/SKILL.md · 79 lines

How it starts

The opening of the file, as written. The whole thing — 79 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CrossPad PC iteration loop

The MCP server already tells the agent which tools exist (see server instructions). This skill encodes how to chain them into a tight edit→verify loop without thrashing — and how to recover when one of the four common failure modes hits.

The loop

edit source
  → crosspad_check          (decide build mode + spot drift)
  → crosspad_kill           (free port 19840 before respawn)
  → crosspad_build           (mode chosen from check)
  → crosspad_run             (inspect responsive flag)
  → crosspad_screenshot / _input / _stats / _log   (verify)
  → repeat or crosspad_kill

Run crosspad_kill before crosspad_build when a sim is alive. The build itself succeeds either way, but the running binary's text segment is still mapped — kill after the rebuild works (the tool strips the kernel's " (deleted)" suffix from /proc/<pid>/exe), but run will refuse to spawn a duplicate while the old one holds port 19840. Killing first keeps the loop linear.

Build mode decision

Read crosspad_check output and pick:

Check signal Mode Why
needs_reconfigure: true (new source files, missing CMakeLists, no build/) reconfigure CMake GLOB_RECURSE won't pick up new .cpp files until cmake reruns
needs_rebuild: true only (sources newer than exe, submodule HEAD drift, dirty submodule) incremental Default; ninja figures out the deltas
Toolchain change, vcpkg update, weird link errors after a working build clean Nukes build/ — last resort, costs minutes
reasons: ["Build appears up to date"] skip build Just crosspad_run

build_type: Debug is the default and what you want for the loop. Switch to Release only when profiling.

Diagnosing the four common failures

crosspad_run returns already_running: true — another sim is bound to TCP 19840. Run crosspad_kill first; do not pass force: true blindly (two sims clobber each other's window state and you'll get garbage from screenshot/stats).

Read the full file on GitHub · 79 lines

Changes

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.

  1. 8d ago First seen · 79 lines · 82 tokens per session scan B ab75de9395e3

Subscribe to this mod's changes

crosspad-pc-iter is a skill published in the GitHub repository CrossPad/crosspad-mcp (1 stars, last pushed 4d ago), licensed MIT. It adds 82 tokens to every session and 1,519 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

zoom-meeting-sdk-unreal

Zoom Meeting SDK for Unreal Engine wrapper integrations. Use when building Unreal projects that embed Zoom meetings with C++ and Blueprint wrappers, including wrapper-to-SDK mapping concerns.

anthropics/knowledge-work-plugins · 41 tokens

unreal-cpp-gameplay

Write Unreal Engine 5 C++ gameplay code: the UCLASS/UPROPERTY/UFUNCTION reflection macros, the Gameplay Framework (GameMode, Pawn, Character, PlayerController, Actor components), and the module Build.cs. Use when writing or debugging UE C++, deriving from AActor/ACharacter/ AGameModeBase, exposing properties to the…

gamedev-skills/awesome-gamedev-agent-skills · 105 tokens

unreal-development

Unreal Engine development: C++/Blueprint patterns, Gameplay Framework, Niagara, Lumen/Nanite, multiplayer, and packaging.

CoWork-OS/CoWork-OS · 31 tokens

ue-mcp-native-cpp

Use when writing or modifying native C++ UCLASSes in an Unreal project via ue-mcp. Covers createcppclass → writecppfile → livecodingcompile loop, when to use build vs Live Coding, and the addmoduledependency workflow. Pulls in any time the user asks to write a new native class, add a UPROPERTY, or implement a…

db-lyon/ue-mcp · 83 tokens

unreal-live-coding

Trigger Live Coding compilation via UCP. Use when the user asks to recompile C++ code, trigger live coding, hot reload C++ changes, or check compilation status in Unreal Engine.

Italink/UnrealClientProtocol · 44 tokens

unreal-thirdparty

Expert guide for integrating third-party C/C++ libraries into Unreal Engine 5.x projects and plugins. Covers static linking, dynamic linking (DLL/SO/dylib), Build.cs configuration, ModuleType.External, delay loading, runtime dependency staging, wrapping patterns, cross-platform considerations (Windows/macOS/Linux)…

maystudios/claude-skills · 176 tokens