yzfly

52 mods across 15 repositories, 10k stars between them.

douyin-video

01

yzfly/douyin-mcp-server

Skill Claude CodeCodex

A tool for downloading videos from Douyin, a Chinese short-video platform, and extracting spoken words as text. It can save downloads and transcripts in folders named after each video.

1.3k 2mo ago A 96 tokens original Apache-2.0 archived

awesome-design-html

02

yzfly/awesome-design-html

Skill Claude CodeCodex

118 single-page HTML design references: a 中国传统色 Chinese Traditional Colors swatch page (742 named hues, hue-grouped, click-to-copy HEX/RGB, under assets/web/design.zhongguo-colors.html) + 96 marketing webpages (Stripe, Linear, Notion, Apple, Vercel, Figma, Airbnb, Cursor, Claude, BrowserOS, Bun, Spotify, Tesla…

143 2mo ago A 405 tokens

mind-clone

03

yzfly/Mind-Cloning-Engineering

Skill Claude CodeCodex

Activate a Cognitive Digital Twin. Can simulate a custom subject (via core/ directory) OR load pre-installed celebrity/expert personas (from personas/ directory).

59 8mo ago A 35 tokens original Apache-2.0

arxiv-paper-mcp

04

yzfly/Arxiv-Paper-MCP

MCP server Claude CodeCodexCursor +2

A local search and reading service for papers on arXiv, a public website where researchers share scientific papers. It can find papers and parse their contents.

24 1y ago A tokens not measured original MIT

cto

05

yzfly/skills

Skill Claude CodeCodex

Startup / AI-startup CTO who is also a top-tier individual contributor. Two modes: (1) greenfield — turn fuzzy business intent into a buildable design (brief.md, arch.md, specs/) through conversation; (2) brownfield — work hands-on inside an existing codebase: investigate, recommend, refactor, write features, debug…

12 9d ago A 174 tokens

golang-benchmark

06

yzfly/skills

Skill Claude CodeCodex

Golang benchmarking, profiling, and performance measurement. Use when writing, running, or comparing Go benchmarks, profiling hot paths with pprof, interpreting CPU/memory/trace profiles, analyzing results with benchstat, setting up CI benchmark regression detection, or investigating production performance with…

12 9d ago A 94 tokens

golang-cli

07

yzfly/skills

Skill Claude CodeCodex

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 triggers when code uses…

12 9d ago A 75 tokens

golang-code-style

08

yzfly/skills

Skill Claude CodeCodex

Golang code style, formatting and conventions. Use when writing Go code, reviewing style, configuring linters, writing comments, or establishing project standards.

12 9d ago A 35 tokens

golang-concurrency

09

yzfly/skills

Skill Claude CodeCodex

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, or need to choose…

12 9d ago A 74 tokens

golang-context

10

yzfly/skills

Skill Claude CodeCodex

Idiomatic context.Context usage in Golang — creation, propagation, cancellation, timeouts, deadlines, context values, and cross-service tracing. Apply when working with context.Context in any Go code.

12 9d ago A 43 tokens

yzfly/skills

Skill Claude CodeCodex

Provides CI/CD pipeline configuration using GitHub Actions for Golang projects. Covers testing, linting, SAST, security scanning, code coverage, Dependabot, Renovate, GoReleaser, code review automation, and release pipelines. Use this whenever setting up CI for a Go project, configuring workflows, adding linters or…

12 9d ago A 111 tokens

yzfly/skills

Skill Claude CodeCodex

Golang data structures — slices (internals, capacity growth, preallocation, slices package), maps (internals, hash buckets, maps package), arrays, container/list/heap/ring, strings.Builder vs bytes.Buffer, generic collections, pointers (unsafe.Pointer, weak.Pointer), and copy semantics. Use when choosing or optimizing…

12 9d ago A 96 tokens

golang-database

13

yzfly/skills

Skill Claude CodeCodex

Comprehensive guide for Go database access. Covers parameterized queries, struct scanning, NULLable column handling, error patterns, transactions, isolation levels, SELECT FOR UPDATE, connection pool, batch processing, context propagation, and migration tooling. Use this skill whenever writing, reviewing, or debugging…

12 9d ago A 116 tokens

yzfly/skills

Skill Claude CodeCodex

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 service architecture…

12 9d ago A 110 tokens

yzfly/skills

Skill Claude CodeCodex

Provides dependency management strategies for Golang projects including go.mod management, installing/upgrading packages, semantic versioning, Minimal Version Selection, vulnerability scanning, outdated dependency tracking, dependency size analysis, automated updates with Dependabot/Renovate, conflict resolution, and…

12 9d ago A 98 tokens

yzfly/skills

Skill Claude CodeCodex

Idiomatic Golang design patterns — functional options, constructors, error flow and cascading, resource management and lifecycle, graceful shutdown, resilience, architecture, dependency injection, data handling, streaming, and more. Apply when explicitly choosing between architectural patterns, implementing functional…

12 9d ago A 83 tokens

yzfly/skills

Skill Claude CodeCodex

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 best practices.…

12 9d ago A 77 tokens

yzfly/skills

Skill Claude CodeCodex

Idiomatic Golang error handling — creation, wrapping with %w, errors.Is/As, errors.Join, custom error types, sentinel errors, panic/recover, the single handling rule, structured logging with slog, HTTP request logging middleware, and samber/oops for production errors. Built to make logs usable at scale with log…

12 9d ago A 94 tokens

golang-google-wire

19

yzfly/skills

Skill Claude CodeCodex

Compile-time dependency injection in Golang using google/wire — wire.NewSet, wire.Build, wire.Bind (interface→concrete), wire.Struct, wire.Value, wire.InterfaceValue, wire.FieldsOf, cleanup functions, //go:build wireinject injector files, and generated wiregen.go. Apply when using or adopting google/wire, when the…

12 9d ago A 124 tokens

golang-graphql

20

yzfly/skills

Skill Claude CodeCodex

Implements GraphQL APIs in Golang using gqlgen or graphql-go. Apply when building GraphQL servers, designing schemas, writing resolvers, handling subscriptions, or integrating GraphQL with existing Go HTTP services. Also apply when the codebase imports github.com/99designs/gqlgen or github.com/graph-gophers/graphql-go.

12 9d ago A 77 tokens

golang-grpc

21

yzfly/skills

Skill Claude CodeCodex

Provides gRPC usage guidelines, protobuf organization, and production-ready patterns for Golang microservices. Use when implementing, reviewing, or debugging gRPC servers/clients, writing proto files, setting up interceptors, handling gRPC errors with status codes, configuring TLS/mTLS, testing with bufconn, or…

12 9d ago A 72 tokens

golang-lint

22

yzfly/skills

Skill Claude CodeCodex

Provides linting best practices and golangci-lint configuration for Go projects. Covers running linters, configuring .golangci.yml, suppressing warnings with nolint directives, interpreting lint output, and managing linter settings. Use this skill whenever the user runs linters, configures golangci-lint, asks about…

12 9d ago A 122 tokens

golang-modernize

23

yzfly/skills

Skill Claude CodeCodex

Continuously modernize Golang code to use the latest language features, standard library improvements, and idiomatic patterns. Use this skill whenever writing, reviewing, or refactoring Go code to ensure it leverages modern Go idioms. Also use when the user asks about Go upgrades, migration, modernization…

12 9d ago A 116 tokens

golang-naming

24

yzfly/skills

Skill Claude CodeCodex

Go (Golang) naming conventions — covers packages, constructors, structs, interfaces, constants, enums, errors, booleans, receivers, getters/setters, functional options, acronyms, test functions, and subtest names. Use this skill when writing new Go code, reviewing or refactoring, choosing between naming alternatives…

12 9d ago A 161 tokens