golang-concurrencyGolang concurrency patterns. Use when writing or reviewing concurrent Go code involving goroutines, channels, select, locks, sync primitives, errgroup, singl...
Install via ClawdBot CLI:
clawdbot install samber/golang-concurrencyGrade Fair — based on market validation, documentation quality, package completeness, maintenance status, and authenticity signals.
Calls external URL not in known-safe list
https://github.com/samber/cc-skills-golangAudited Apr 18, 2026 · audit v1.0
Generated May 6, 2026
A real-time data processing system ingesting events from multiple producers. Uses fan-out/fan-in patterns with goroutines and channels to distribute work across workers, aggregate results, and handle backpressure. Ideal for ETL, log processing, or metrics aggregation.
An API gateway that fans out requests to multiple backend services and merges responses. Uses errgroup with context cancellation to fail fast on errors and limits concurrency with SetLimit. Mitigates the N+1 problem in distributed architectures.
A batch migration tool applying schema changes across sharded databases in parallel. Uses worker pools (via errgroup.SetLimit) to control concurrency and sync.WaitGroup for tracking completion. Ensures transactional integrity with mutexes around shared state.
A WebSocket-based chat server handling thousands of concurrent connections. Each connection runs its own goroutine with a read/write loop using channels for message broadcasting. Uses sync.Map for room membership and select with ctx.Done() for graceful shutdown.
Offer a managed platform that simplifies building and running concurrent Go applications. Provides pre-configured worker pools, pipeline orchestration, and leak detection as value-add services.
Provide automated concurrency audit tools for Go codebases. Free tier scans basic patterns; premium includes detailed reports, fixes, and CI integration.
Consulting services to migrate legacy synchronous Go codebases to concurrent architectures. Includes training, pattern implementation, and performance optimization.
💬 Integration Tip
Adopt incrementally: start by wrapping legacy synchronous calls in goroutines with errgroup, then gradually replace ad-hoc patterns with structured fan-out/fan-in pipelines.
Scored Jun 29, 2026
Control desktop applications on Windows — launch, close, focus, resize, move windows, simulate keyboard/mouse input, manage processes, control VSCode, read clipboard, and capture screen info. Use when the user wants to interact with any running program, switch windows, type text, press shortcuts, open files in VSCode, manage running processes, or get system display information.
Conduct rigorous, adversarial code reviews with zero tolerance for mediocrity. Use when users ask to "critically review" my code or a PR, "critique my code", "find issues in my code", or "what's wrong with this code". Identifies security holes, lazy patterns, edge case failures, and bad practices across Python, R, JavaScript/TypeScript, SQL, and front-end code. Scrutinizes error handling, type safety, performance, accessibility, and code quality. Provides structured feedback with severity tiers (Blocking, Required, Suggestions) and specific, actionable recommendations.
Coding style memory that adapts to your preferences, conventions, and patterns for consistent coding.
Pragmatic coding standards for writing clean, maintainable code — naming, functions, structure, anti-patterns, and pre-edit safety checks. Use when writing new code, refactoring existing code, reviewing code quality, or establishing coding standards.
Claude Code integration for OpenClaw. This skill provides interfaces to: - Query Claude Code documentation from https://code.claude.com/docs - Manage subagents and coding tasks - Execute AI-assisted coding workflows - Access best practices and common workflows Use this skill when users want to: - Get help with coding tasks - Query Claude Code documentation - Manage AI-assisted development workflows - Execute complex programming tasks
Plan, draft, version, and refine written content with enforced versioning and quality audits.