Showing 30 of 2,118

Sorted by quality
golang-concurrency
Claude Codeby samber
97

Golang concurrency patterns. Use when writing or reviewing concurrent Go code involving goroutines, channels, select, locks, sync primitives, errgroup, singleflight, worker pools, or fan-out/fan-in pipelines. Also triggers when you detect goroutine leaks, race conditions, channel ownership issues, …

Coding / 软件开发
Safe-ish
Scanned
golang-database
Claude Codeby samber
97

Comprehensive guide for Go database access — parameterized queries, struct scanning, NULLable columns, transactions, isolation levels, SELECT FOR UPDATE, connection pool, batch processing, context propagation, and migration tooling. Use when writing, reviewing, or debugging Golang code that interac…

Coding / 软件开发
Safe-ish
Scanned
golang-observability
Claude Codeby samber
97

Golang everyday observability — the always-on signals in production. Covers structured logging with slog, Prometheus metrics, OpenTelemetry distributed tracing, continuous profiling with pprof/Pyroscope, server-side RUM event tracking, alerting, and Grafana dashboards. Apply when instrumenting Go s…

Coding / 软件开发
Safe-ish
Scanned
golang-cli
Claude Codeby samber
97

Golang CLI application development. Use when building, modifying, or reviewing a Go CLI tool — especially for command structure, flag handling, configuration layering, version embedding, exit codes, I/O patterns, signal handling, shell completion, argument validation, and CLI unit testing. Also tri…

Coding / 软件开发
Safe-ish
Scanned
chinese-git-workflow
Claude Codeby jnMetaCode
93

国内 Git 平台配置参考——Gitee、Coding.net、极狐 GitLab、CNB 的 SSH/HTTPS/凭据/CI 接入差异与镜像同步配置。仅在用户显式 /chinese-git-workflow 时调用,不要根据上下文自动触发。

Coding / 软件开发
Safe-ish
Scanned
golang-troubleshooting
Claude Codeby samber
93

Troubleshoot Golang programs systematically - find and fix the root cause. Use when encountering bugs, crashes, deadlocks, or unexpected behavior in Go code. Covers debugging methodology, common Go pitfalls, test-driven debugging, pprof setup and capture, Delve debugger, race detection, GODEBUG tra…

Coding / 软件开发
Safe-ish
Scanned
Advertisement
golang-lint
Claude Codeby samber
93

Linting best practices and golangci-lint configuration for Golang projects — running linters, configuring .golangci.yml, suppressing warnings with nolint directives, interpreting lint output, and selecting linters. Use when configuring golangci-lint, asking about lint warnings or nolint suppression…

Coding / 软件开发
Safe-ish
Scanned
pr-create
Claude Codeby posit-dev
93

Creates a pull request from current changes, monitors GitHub CI, and debugs any failures until CI passes. Activate when the user says "create pr", "make a pr", "open pull request", "submit pr", "pr for these changes", or wants to get their current work into a reviewable PR. Assumes the project uses…

Coding / 软件开发
Network
Scanned
portaljs-deploy
Claude Codeby datopian
93

Deploy a PortalJS portal to PortalJS Arc — Datopian-managed static hosting on Cloudflare. Builds a static export, uploads it, and returns a live SLUG.arc.portaljs.com URL. One command, one target. Use when a portal is ready to publish or redeploy to a live URL.

Coding / 软件开发
Safe-ish
Scanned
claude-api
Claude Codeby anthropics
93

Reference for the Claude API / Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration. TRIGGER — read BEFORE opening the target file; don't skip because it "looks like a one-liner" — whenever: the prompt names Claude/Anthropic in any f…

Coding / 软件开发
Safe-ish
Scanned
code-review
Claude Codeby open-gitagent
93

Reviews code diffs and files for security vulnerabilities (OWASP Top 10), error handling, complexity, naming conventions, and performance issues. Use when the user asks to review a PR, pull request, diff, merge request, or code changes.

Coding / 软件开发
Safe-ish
Scanned
terraform-skill
Claude Codeby antonbabenko
93

Use when writing, reviewing, or debugging Terraform/OpenTofu modules, tests, CI, scans, or state ops - diagnoses failure mode (identity churn, secrets, blast radius, CI drift, state corruption) with version-aware guards.

Coding / 软件开发
Safe-ish
Scanned
golang-dependency-injection
Claude Codeby samber
93

Comprehensive guide for dependency injection (DI) in Golang. Covers why DI matters (testability, loose coupling, separation of concerns, lifecycle management), manual constructor injection, and DI library comparison (google/wire, uber-go/dig, uber-go/fx, samber/do). Use this skill when designing se…

Coding / 软件开发
Safe-ish
Scanned
golang-samber-ro
Claude Codeby samber
93

Reactive streams and event-driven programming in Golang using samber/ro — ReactiveX implementation with 150+ type-safe operators, cold/hot observables, 5 subject types (Publish, Behavior, Replay, Async, Unicast), declarative pipelines via Pipe, 40+ plugins (HTTP, cron, fsnotify, JSON, logging), aut…

Coding / 软件开发
Safe-ish
Scanned
workthreads
Claude Codeby specstoryai
93

SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what sh…

Coding / 软件开发
Safe-ish
Scanned
golang-samber-do
Claude Codeby samber
93

Dependency injection in Golang using samber/do — service containers, lifecycle management, scopes, health checks, graceful shutdown, and module organization. Apply when using or adopting samber/do, when the codebase imports github.com/samber/do or github.com/samber/do/v2, or when refactoring manual…

Coding / 软件开发
Safe-ish
Scanned
golang-samber-mo
Claude Codeby samber
93

Monadic types for Golang using samber/mo — Option, Result, Either, Future, IO, Task, and State types for type-safe nullable values, error handling, and functional composition with pipeline sub-packages. Apply when using or adopting samber/mo, when the codebase imports `github.com/samber/mo`, or whe…

Coding / 软件开发
Safe-ish
Scanned
golang-project-layout
Claude Codeby samber
93

Provides a guide for setting up Golang project layouts and workspaces. Use when starting a new Go project, organizing an existing codebase, setting up a monorepo with multiple packages, creating CLI tools with multiple main packages, deciding between cmd/internal/pkg directory conventions, or discu…

Coding / 软件开发
Safe-ish
Scanned
finishing-a-development-branch
Claude Codeby jnMetaCode
93

当实现完成、所有测试通过、需要决定如何集成工作时使用——通过提供合并、PR 或清理等结构化选项来引导开发工作的收尾

Coding / 软件开发
Network
Scanned
ctf-web
Claude Codeby ljagiello
93

Provides web exploitation techniques for CTF challenges. Use when the target is primarily an HTTP application, API, browser client, template engine, identity flow, or smart-contract frontend/backend surface, including XSS, SQLi, SSTI, SSRF, XXE, JWT, auth bypass, file upload, request smuggling, OAu…

Coding / 软件开发
Safe-ish
Scanned
systematic-debugging
Claude Codeby jnMetaCode
93

遇到任何 bug、测试失败或异常行为时使用,在提出修复方案之前执行

Coding / 软件开发
Safe-ish
Scanned
golang-documentation
Claude Codeby samber
93

Comprehensive documentation guide for Golang projects, covering godoc comments, README, CONTRIBUTING, CHANGELOG, Go Playground, Example tests, API docs, and llms.txt. Use when writing or reviewing doc comments, documentation, adding code examples, setting up doc sites, or discussing documentation b…

Coding / 软件开发
Safe-ish
Scanned
portaljs-add-map
Claude Codeby datopian
93

Render a GeoJSON dataset on an interactive Leaflet map in the Views section of a dataset's showcase. Installs react-leaflet and a Map component, then renders the map for the chosen dataset. Use when a dataset's data is geographic and a map view is needed alongside the showcase's default metadata an…

Coding / 软件开发
Safe-ish
Scanned
chinese-code-review
Claude Codeby jnMetaCode
93

中文 review 沟通参考——话术模板、分级标注(必须修复/建议修改/仅供参考)、国内团队常见反模式应对。仅在用户显式 /chinese-code-review 时调用,不要根据上下文自动触发。

Coding / 软件开发
Safe-ish
Scanned
ctf-pwn
Claude Codeby ljagiello
93

Provides binary exploitation techniques for CTF challenges. Use when you already have a vulnerable native target or service and need to turn memory corruption or low-level primitives into code execution or privilege escalation, such as buffer overflows, format strings, heap bugs, ROP, ret2libc, she…

Coding / 软件开发
Safe-ish
Scanned
golang-spf13-cobra
Claude Codeby samber
93

Golang CLI command tree library using spf13/cobra — cobra.Command, RunE vs Run, PersistentPreRunE hook chain, Args validators (NoArgs, ExactArgs, MatchAll, custom), persistent vs local flags, command groups, ValidArgsFunction, RegisterFlagCompletionFunc, ShellCompDirective, usage/help template cust…

Coding / 软件开发
Safe-ish
Scanned
golang-modernize
Claude Codeby samber
93

Modernize Golang code to use recent language features, standard library improvements, and idiomatic patterns. Trigger proactively when writing or reviewing Go code and old-style patterns are detected, or when encountering a deprecation warning. Also use when the user explicitly asks for modernizati…

Coding / 软件开发
Safe-ish
Scanned
golang-samber-hot
Claude Codeby samber
93

In-memory caching in Golang using samber/hot — eviction algorithms (LRU, LFU, TinyLFU, W-TinyLFU, S3FIFO, ARC, TwoQueue, SIEVE, FIFO), TTL, cache loaders, sharding, stale-while-revalidate, missing key caching, and Prometheus metrics. Apply when using or adopting samber/hot, when the codebase import…

Coding / 软件开发
Safe-ish
Scanned
golang-samber-lo
Claude Codeby samber
93

Functional programming helpers for Golang using samber/lo — 500+ type-safe generic functions for slices, maps, channels, strings, math, tuples, and concurrency (Map, Filter, Reduce, GroupBy, Chunk, Flatten, Find, Uniq, etc.). Core immutable package (lo), concurrent variants (lo/parallel aka lop), i…

Coding / 软件开发
Safe-ish
Scanned
lore
Claude Codeby specstoryai
93

SpecStory Lore - mine your SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more) into a persistent corpus, surface your reproducible workflows with corroborated evidence, and interactively forge the chosen ones into skills installed across all your agent harnesses. U…

Coding / 软件开发
Safe-ish
Scanned