Browse Skills

44357 skills found

cpp-smart-pointers.md
47
1 export cpp-smart-pointers
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when managing memory safely in C++ with smart pointers including unique_ptr, shared_ptr, weak_ptr, and RAII patterns.
2026-01-21
storybook-configuration.md
47
1 export storybook-configuration
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when setting up or configuring Storybook for a project. Covers main configuration, addons, builders, and framework-specific setup.
2026-01-21
Nim C Interop.md
47
1 export Nim C Interop
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when nim-C interoperability including calling C from Nim, wrapping C libraries, importc/exportc pragmas, header generation, FFI patterns, and building high-performance systems code integrating Nim with existing C codebases.
2026-01-21
clippy-configuration.md
47
1 export clippy-configuration
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when configuring Clippy for Rust projects with TOML config, lint groups, attributes, and workspace setup.
2026-01-21
project-memory.md
47
1 export project-memory
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when setting up or organizing Claude Code project memory (CLAUDE.md, .claude/rules/) for better context awareness, consistent behavior, and project-specific instructions.
2026-01-21
go-error-handling.md
47
1 export go-error-handling
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when Go error handling with error wrapping, sentinel errors, and custom error types. Use when handling errors in Go applications.
2026-01-21
eslint-configuration.md
47
1 export eslint-configuration
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when eSLint configuration including config files, extends, plugins, and environment setup.
2026-01-21
Lua Tables Patterns.md
47
1 export Lua Tables Patterns
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when lua tables as the universal data structure including arrays, dictionaries, objects, metatables, object-oriented patterns, data structures, and advanced table manipulation for building flexible, efficient Lua applications.
2026-01-21
nestjs-dependency-injection.md
47
1 export nestjs-dependency-injection
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when nestJS dependency injection with providers, modules, and decorators. Use when building modular NestJS applications.
2026-01-21
blueprints-writing.md
47
1 export blueprints-writing
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when creating or updating technical blueprint documentation for new features, API changes, or architectural modifications. Always use search_blueprints first to avoid duplication, then write_blueprint with proper structure.
2026-01-21
architecture-design.md
47
1 export architecture-design
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when designing system architecture, making high-level technical decisions, or planning major system changes. Focuses on structure, patterns, and long-term strategy.
2026-01-21
gitlab-ci-pipeline-configuration.md
47
1 export gitlab-ci-pipeline-configuration
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when configuring GitLab CI/CD pipelines, defining stages, or setting up workflow rules. Covers pipeline structure, stage ordering, and execution flow.
2026-01-21
angular-rxjs-patterns.md
47
1 export angular-rxjs-patterns
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when handling async operations in Angular applications with observables, operators, and subjects.
2026-01-21
Objective-C Protocols and Categories.md
47
1 export Objective-C Protocols and Categories
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when objective-C protocols for defining interfaces and categories for extending classes, including formal protocols, optional methods, class extensions, and patterns for modular, reusable code design.
2026-01-21
Swift Concurrency.md
47
1 export Swift Concurrency
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when swift's modern concurrency model including async/await, actors, task groups, structured concurrency, and async sequences for building safe, performant concurrent code without data races or callback pyramids.
2026-01-21
claude-agent-sdk-tool-integration.md
47
1 export claude-agent-sdk-tool-integration
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when integrating tools, permissions, and MCP servers with Claude AI agents using the Agent SDK.
2026-01-21
sop-authoring.md
47
1 export sop-authoring
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when writing or creating new Standard Operating Procedures (SOPs) for AI agents. Covers effective SOP writing, clarity principles, and actionable instruction design.
2026-01-21
Gleam Type System.md
47
1 export Gleam Type System
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when gleam's type system including algebraic data types, custom types, pattern matching, generic types, type inference, opaque types, exhaustive checking, and functional error handling for building type-safe Erlang VM applications.
2026-01-21
markdownlint-custom-rules.md
47
1 export markdownlint-custom-rules
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Create custom linting rules for markdownlint including rule structure, parser integration, error reporting, and automatic fixing.
2026-01-21
effect-core-patterns.md
47
1 export effect-core-patterns
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when Effect core patterns including Effect<A, E, R> type, succeed, fail, sync, promise, and Effect.gen for composing effects. Use for basic Effect operations.
2026-01-21
workflow-reconciliation.md
47
1 export workflow-reconciliation
2 glittercowboy from "glittercowboy/plugin-freedom-system"
3 Reconcile workflow state files to ensure checkpoints are properly updated. Use when state files are out of sync, after subagent completion without handoff, when switching workflows, or when user runs /reconcile command.
2026-01-21
docker-compose-networking.md
47
1 export docker-compose-networking
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when configuring networks and service communication in Docker Compose including bridge networks, overlay networks, service discovery, and inter-service communication.
2026-01-21
python-type-system.md
47
1 export python-type-system
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when Python's type system including type hints, mypy, Protocol, TypedDict, and Generics. Use when working with Python type annotations.
2026-01-21
PHP Security Patterns.md
47
1 export PHP Security Patterns
2 TheBushidoCollective from "TheBushidoCollective/han"
3 Use when essential PHP security patterns including input validation, SQL injection prevention, XSS protection, CSRF tokens, password hashing, secure session management, and defense-in-depth strategies for building secure PHP applications.
2026-01-21