javascript-pro
JavaScript Pro
Guidelines for modern JavaScript and async programming patterns.
Core Principles
- Async/await over promise chains - Cleaner, more readable code
- Functional patterns - Map, filter, reduce over imperative loops
- Error boundaries - Handle errors at appropriate levels
- Module-first - ES modules with clean exports
- Defensive coding - Nullish coalescing and optional chaining
Modern Syntax (ES2020+)
Nullish Coalescing and Optional Chaining
// Nullish coalescing (??) - only null/undefined
const port = config.port ?? 3000;
More from arosenkranz/claude-code-config
homelab-helper
Expert guidance for homelab infrastructure, self-hosting, and Raspberry Pi optimization. Use when recommending self-hosted services, configuring Docker services, setting up reverse proxies, integrating Home Assistant, or troubleshooting homelab networking.
17continuous-learning-v2
Instinct-based learning system that observes sessions via hooks, creates atomic instincts with confidence scoring, and evolves them into skills/commands/agents.
6session-log
Document conversation accomplishments in Obsidian vault with frontmatter, code changes, learning notes, and next steps.
6evolve
Cluster related instincts into skills, commands, or agents
6reclaude
Refactor CLAUDE.md files to follow progressive disclosure principles. Use when a CLAUDE.md file is too long or needs organizational improvement.
5find-skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
5