Claude-skill-registry ic-lookup
Look up Stationeers device properties and IC10 instruction syntax. Use when user asks about logic values, device pins, prefab hashes, or IC10 command syntax.
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-lookup" ~/.claude/skills/majiayu000-claude-skill-registry-ic-lookup && rm -rf "$T"
manifest:
skills/data/ic-lookup/SKILL.mdsource content
IC10 Lookup
Quick reference lookup for IC10 instructions and device properties.
Workflow
- Parallel Lookup
Spawn these agents simultaneously based on query type:
- For IC10 instruction syntaxinstruction-researcher
- For device logic types and propertiesdevice-researcher
Instructions
When the user asks about IC10 syntax or device properties:
-
Determine query type:
- Instruction query: "How do I use [instruction]?", "What's the syntax for...?"
- Device query: "What logic values does [device] have?", "How do I read from...?"
- Both: When question involves using specific instructions with specific devices
-
Launch appropriate researcher(s):
- For instructions:
instruction-researcher - For devices:
device-researcher - For combined questions: Both in parallel
- For instructions:
-
Present results clearly:
- Instruction syntax with examples
- Device logic types (readable/writable)
- Practical IC10 code snippet
-
If the lookup involves batch operations:
- Include the prefab hash
- Show lb/sb syntax example
Quick Reference Cheat Sheet
Common Instructions
- Read from devicel r0 device LogicType
- Write to devices device LogicType value
- Batch read (0=avg, 1=sum, 2=min, 3=max)lb r0 hash LogicType mode
- Batch writesb hash LogicType value
Common Logic Types
,On
,Power
,Open
- Boolean statesLock
,Temperature
- Float valuesPressure
,Setting
- Configurable valuesMode
Example Triggers
- "How do I use lb?"
- "What's the syntax for select?"
- "What logic values does the gas sensor have?"
- "What's the prefab hash for..."
- "How do I read temperature?"
- "What can I set on a vent?"