berksunduri

46 mods across 1 repository, 23 stars between them.

berksunduri/GOPost

Skill Claude CodeCodex

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 discussing package…

23 14d ago A 71 tokens

golang-safety

26

berksunduri/GOPost

Skill Claude CodeCodex

Defensive Golang coding to prevent panics, silent data corruption, and subtle runtime bugs. Use when encountering nil panics, append aliasing, map concurrent access, float comparison pitfalls, or zero-value design questions. Also use when reviewing code for nil-safety, numeric conversion overflow, resource lifecycle…

23 14d ago A 80 tokens

golang-samber-do

27

berksunduri/GOPost

Skill Claude CodeCodex

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 constructor…

23 14d ago A 74 tokens

golang-samber-hot

28

berksunduri/GOPost

Skill Claude CodeCodex

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 imports…

23 14d ago A 122 tokens

golang-samber-lo

29

berksunduri/GOPost

Skill Claude CodeCodex

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), in-place mutations…

23 14d ago A 169 tokens

golang-samber-mo

30

berksunduri/GOPost

Skill Claude CodeCodex

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 when considering…

23 14d ago A 85 tokens

golang-samber-oops

31

berksunduri/GOPost

Skill Claude CodeCodex

Structured error handling in Golang with samber/oops — error builders, stack traces, error codes, error context, error wrapping, error attributes, user-facing vs developer messages, panic recovery, and logger integration. Apply when using or adopting samber/oops, or when the codebase already imports…

23 14d ago A 74 tokens

golang-samber-ro

32

berksunduri/GOPost

Skill Claude CodeCodex

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), automatic backpressure…

23 14d ago A 156 tokens

golang-samber-slog

33

berksunduri/GOPost

Skill Claude CodeCodex

Structured logging extensions for Golang using samber/slog- packages — multi-handler pipelines (slog-multi), log sampling (slog-sampling), attribute formatting (slog-formatter), HTTP middleware (slog-fiber, slog-gin, slog-chi, slog-echo), and backend routing (slog-datadog, slog-sentry, slog-loki, slog-syslog…

23 14d ago A 123 tokens

golang-security

34

berksunduri/GOPost

Skill Claude CodeCodex

Security best practices and vulnerability prevention for Golang. Covers injection (SQL, command, XSS), cryptography, filesystem safety, network security, cookies, secrets management, memory safety, and logging. Apply when writing, reviewing, or auditing Go code for security, or when working on any risky code involving…

23 14d ago A 86 tokens

golang-spf13-cobra

35

berksunduri/GOPost

Skill Claude CodeCodex

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 customization, man-page…

23 14d ago A 180 tokens

golang-spf13-viper

36

berksunduri/GOPost

Skill Claude CodeCodex

Golang configuration library using spf13/viper — layered precedence (flag > env > file > KV > default), BindPFlag/BindPFlags, SetEnvPrefix + SetEnvKeyReplacer + AutomaticEnv, ReadInConfig + ConfigFileNotFoundError, Unmarshal + mapstructure struct tags, Sub for sub-trees, WatchConfig + OnConfigChange for hot reload…

23 14d ago A 174 tokens

golang-stay-updated

37

berksunduri/GOPost

Skill Claude CodeCodex

Provides resources to stay updated with Golang news, communities and people to follow. Use when seeking Go learning resources, discovering new libraries, finding community channels, or keeping up with Go language changes and releases.

23 14d ago A 48 tokens

berksunduri/GOPost

Skill Claude CodeCodex

Comprehensive guide to stretchr/testify for Golang testing. Covers assert, require, mock, and suite packages in depth. Use when writing tests with testify, creating mocks, setting up test suites, or choosing between assert and require. Covers testify assertions, mock expectations, argument matchers, call verification…

23 14d ago A 97 tokens

berksunduri/GOPost

Skill Claude CodeCodex

Golang struct and interface design patterns — composition, embedding, type assertions, type switches, interface segregation, dependency injection via interfaces, struct field tags, and pointer vs value receivers. Use this skill when designing Go types, defining or implementing interfaces, embedding structs or…

23 14d ago A 116 tokens

golang-swagger

40

berksunduri/GOPost

Skill Claude CodeCodex

Golang OpenAPI/Swagger documentation with swaggo/swag — annotation comments (@Summary, @Param, @Success, @Router, @Security), swag init code generation, framework integrations (gin, echo, fiber, chi, net/http), security definitions (Bearer/JWT, OAuth2, API key), and struct tags (swaggertype, enums, example…

23 14d ago A 146 tokens

golang-testing

41

berksunduri/GOPost

Skill Claude CodeCodex

Production-ready Golang tests — table-driven tests, testify suites and mocks, parallel tests, fuzzing, fixtures, goroutine leak detection with goleak, snapshot testing, code coverage, integration tests, idiomatic test naming. Use when writing or reviewing Go tests, choosing a testing approach, setting up Go test CI…

23 14d ago A 115 tokens

berksunduri/GOPost

Skill Claude CodeCodex

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 tracing, and production…

23 14d ago A 130 tokens

golang-uber-dig

43

berksunduri/GOPost

Skill Claude CodeCodex

Implements dependency injection in Golang using uber-go/dig — reflection-based container, Provide/Invoke, dig.In/dig.Out parameter and result objects, named values, value groups, optional dependencies, scopes, and Decorate. Apply when using or adopting uber-go/dig, when the codebase imports go.uber.org/dig, or when…

23 14d ago A 111 tokens

golang-uber-fx

44

berksunduri/GOPost

Skill Claude CodeCodex

Golang application framework using uber-go/fx — fx.New, fx.Provide, fx.Invoke, fx.Module, fx.Lifecycle hooks, fx.Annotate (name/group/As), fx.Decorate, fx.Supply, fx.Replace, fx.WithLogger, and signal-aware Run(). Apply when using or adopting uber-go/fx, when the codebase imports go.uber.org/fx, or when wiring…

23 14d ago A 122 tokens

release-gopost

45

berksunduri/GOPost

Skill Claude CodeCodex

Ship a GoPost GitHub release (notes, tag, push, CI assets) using the repo's established v1.x.0 pattern. Use when the user asks to release, cut a version, tag, publish release notes, or run scripts/release.sh.

23 14d ago A 59 tokens

GOPost AGENTS.md

46

berksunduri/GOPost

Instructions file CodexOpenCode

AGENTS.md instructions for berksunduri/GOPost, covering agents.md — postgo / gopost, what this is, layout (where to look), runtime topology and storage model (do not break).

23 14d ago A 1,695 tokens