Use this skill as a base profile for systems programming courses in C, C++, Rust, or Zig. Provides core concepts for memory management, performance awareness, safety considerations, and low-level understanding. Language-specific profiles inherit from this. Trigger when user mentions "systems programming", "low-level programming", or "performance-critical development".
/plugin marketplace add NathanJGaul/plugins/plugin install dev-course-builder@njg-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Category: Low-level programming, memory management, performance-critical development Applicable Languages: C, C++, Rust, Zig
This is a base profile for systems programming courses. Language-specific profiles (like C++ Fundamentals) inherit from this and customize for their specific language and audience.
Systems programming deals with invisible concepts. Make them visible:
Help students distinguish:
Compiler errors and crashes are learning tools:
Systems programming courses should typically:
Systems programming courses require robust sandbox environments with full debugging and memory analysis tooling.
All systems programming sandboxes must include:
| Category | Tools | Purpose |
|---|---|---|
| Compilers | GCC 13+, Clang 17+ | Compilation with latest standards |
| Debuggers | GDB, LLDB | Interactive debugging |
| Memory Analysis | Valgrind, ASan, MSan, UBSan | Memory error detection |
| Thread Analysis | ThreadSanitizer, Helgrind | Race condition detection |
| Static Analysis | clang-tidy, cppcheck | Code quality checks |
| Profiling | perf, flamegraph | Performance analysis |
# Initialize sandbox
/setup-sandbox {course-id}
# Compile and run with full warnings
/run-code source.cpp
# Run with memory sanitizers
/debug-code source.cpp sanitize
# Memory leak check
docker exec course-sandbox-{course-id} \
valgrind --leak-check=full --show-leak-kinds=all /tmp/prog
# Thread safety check
docker exec course-sandbox-{course-id} \
g++ -std=c++20 -fsanitize=thread -g -o /tmp/prog source.cpp && /tmp/prog
# Performance profiling
docker exec course-sandbox-{course-id} \
perf record /tmp/prog && perf report
Before publishing content:
Systems programming sandboxes need special security consideration:
docker run -d \
--name course-sandbox-{course-id} \
--cap-drop=ALL \
--security-opt=no-new-privileges \
--security-opt=seccomp=default \
--memory=2g \
--cpus=2 \
--network=none \
--read-only \
--tmpfs /tmp:size=512m \
course-sandbox-{course-id}:latest
Key restrictions:
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.