Claude-skill-registry ic-explain
Explain IC10 code behavior in plain English. Use when user pastes IC10 code and asks what it does, how it works, or wants to understand existing Stationeers scripts.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/ic-explain" ~/.claude/skills/majiayu000-claude-skill-registry-ic-explain && rm -rf "$T"
manifest:
skills/data/ic-explain/SKILL.mdsource content
IC10 Code Explanation
Explain IC10 code behavior in clear, understandable language.
Workflow
-
Analysis Phase Use Task tool to spawn:
- Analyze code structure, execution flow, and behaviorcode-analyzer
-
Explanation Phase Take the analysis output and create a human-readable explanation
Instructions
When the user asks to explain IC10 code:
-
Launch
agent with the provided codecode-analyzer -
From the analysis, create a clear explanation that includes:
- Overview: 1-2 sentences describing what the code does
- Device Setup: What devices need to be connected where
- How It Works: Step-by-step explanation of the logic
- Key Behaviors: What happens under different conditions
-
Keep the explanation accessible:
- Use plain language, not just code terms
- Relate to real-world behavior (e.g., "when pressure is too high")
- Highlight important thresholds and values
-
If issues are found, mention them but don't fix (that's for ic-debug)
Example Triggers
- "What does this code do?"
- "Explain this script"
- "How does this work?"
- "Can you walk me through this?"
- "I don't understand this code"