tanq16/claudex
34 agent markdown files indexed from tanq16/claudex. Install any of them pinned to an exact hash with mdr add tanq16/claudex/<name>.
agents-md skill
tanq16/claudex · internal/embedded/default-skills/agents-md/SKILL.md · Writes and edits the rules in an instruction file, whether that is `AGENTS.md`, the `CLAUDE.md` symlinked to it, or a…
git:20260910.774b1b6 · audit A · 4 stars
session-summary skill
tanq16/claudex · internal/embedded/default-skills/session-summary/SKILL.md · User-invoked session handoff. `/session-summary pause` writes a structured resume file capturing what the session was…
git:20260825.98d7cfe · audit A · 4 stars
skill-creator skill
tanq16/claudex · internal/embedded/default-skills/skill-creator/SKILL.md · User-invoked skill author. Writes or edits a skill (the frontmatter, the body, and any reference files) in the Agent…
git:20260910.6167cdf · audit A · 4 stars
write-document skill
tanq16/claudex · internal/embedded/default-skills/write-document/SKILL.md · Settles what a standalone document should be before it is written: whether a file is the right output at all, who…
git:20260819.70031cb · audit A · 4 stars
chrome-extension skill
tanq16/claudex · internal/embedded/presets/private/skills/chrome-extension/SKILL.md · Chrome extension structure, Manifest V3, the popup, content scripts, service workers, and storage. Use when creating an…
git:20260823.82d58cc · audit B · 4 stars
develop skill
tanq16/claudex · internal/embedded/presets/private/skills/develop/SKILL.md · The entry point for any coding work in a project that has these skills installed - implementing a feature, changing or…
git:20260911.4b91989 · audit A · 4 stars
dockerize skill
tanq16/claudex · internal/embedded/presets/private/skills/dockerize/SKILL.md · Containerizing any project - multi-stage builds, choosing a base image, packaging the runtime, clearing package-manager…
git:20260827.716177c · audit A · 4 stars
github-release-workflow skill
tanq16/claudex · internal/embedded/presets/private/skills/github-release-workflow/SKILL.md · The GitHub Actions release workflow and the semver commit-marker convention. Use when creating or changing…
git:20260827.716177c · audit A · 4 stars
go-cli-commands skill
tanq16/claudex · internal/embedded/presets/private/skills/go-cli-commands/SKILL.md · The surface a Go CLI command exposes - the baseline every tool starts at, the two purchases on top of it, flag…
git:20260911.fb4fb25 · audit A · 4 stars
go-cli-output skill
tanq16/claudex · internal/embedded/presets/private/skills/go-cli-output/SKILL.md · The utils printer for Go CLI tools - the two output tiers behind --debug, the Print* API, table rendering, terminal…
git:20260911.4b91989 · audit A · 4 stars
go-cli-progress skill
tanq16/claudex · internal/embedded/presets/private/skills/go-cli-progress/SKILL.md · The progress surface for Go CLI tools - the two-line live block, the in-place meter carrying rate and ETA, how it…
git:20260913.7385f82 · audit A · 4 stars
go-cli-prompts skill
tanq16/claudex · internal/embedded/presets/private/skills/go-cli-prompts/SKILL.md · Interactive input for Go CLI tools - when a prompt is the right channel at all, how a value resolves from a flag then…
git:20260826.6314f56 · audit A · 4 stars
go-cli-structure skill
tanq16/claudex · internal/embedded/presets/private/skills/go-cli-structure/SKILL.md · The shape of a Go CLI's command tree - main.go, the root command for each project type, Execute and the exit path, a…
git:20260911.fb4fb25 · audit A · 4 stars
go-concurrency skill
tanq16/claudex · internal/embedded/presets/private/skills/go-concurrency/SKILL.md · Goroutine patterns for Go - WaitGroup, errgroup, bounded concurrency, fan-out/fan-in, and context cancellation. Use…
git:20260825.865fc73 · audit A · 4 stars
go-embedded-frontend skill
tanq16/claudex · internal/embedded/presets/private/skills/go-embedded-frontend/SKILL.md · A single-page frontend embedded into a Go binary from internal/server/static/ - HTML boilerplate, Tailwind v4 browser…
git:20260914.ee0f2d6 · audit B · 4 stars
go-http-server skill
tanq16/claudex · internal/embedded/presets/private/skills/go-http-server/SKILL.md · The canonical net/http server for Go web services, with an embedded static frontend. Use when creating…
git:20260908.8740e31 · audit A · 4 stars
go-idioms skill
tanq16/claudex · internal/embedded/presets/private/skills/go-idioms/SKILL.md · Modern Go 1.27+ idioms and dependency selection, applied to every Go file written or reviewed. Use when writing or…
git:20260827.716177c · audit A · 4 stars
go-makefile skill
tanq16/claudex · internal/embedded/presets/private/skills/go-makefile/SKILL.md · The Makefile for a Go project - pinned asset downloads, build targets with ldflags version injection, docker targets…
git:20260827.2da6b8d · audit A · 4 stars
go-oauth-cli skill
tanq16/claudex · internal/embedded/presets/private/skills/go-oauth-cli/SKILL.md · OAuth2 login for a Go CLI client, with three explicit modes and cached token refresh. Use when a CLI tool authenticates…
git:20260827.9b51f07 · audit A · 4 stars
go-package-architecture skill
tanq16/claudex · internal/embedded/presets/private/skills/go-package-architecture/SKILL.md · How internal/ packages are organized in a Go project and how errors travel across their boundaries. Use when creating a…
git:20260911.fb4fb25 · audit A · 4 stars
go-project-layout skill
tanq16/claudex · internal/embedded/presets/private/skills/go-project-layout/SKILL.md · The canonical Go project taxonomy, directory layout, logging discipline, the config directory, and config loading. Use…
git:20260825.865fc73 · audit A · 4 stars
node-auth skill
tanq16/claudex · internal/embedded/presets/private/skills/node-auth/SKILL.md · Password and session-cookie authentication for a Node Web Only server, built entirely on node:crypto. Use when adding a…
git:20260818.236909b · audit A · 4 stars
node-config-state skill
tanq16/claudex · internal/embedded/presets/private/skills/node-config-state/SKILL.md · Config layering and durable state for a Node Web Only server - defaults deep-merged with config.json, the ephemeral…
git:20260818.236909b · audit A · 4 stars
node-frontend skill
tanq16/claudex · internal/embedded/presets/private/skills/node-frontend/SKILL.md · The vanilla-JS single-page frontend served from public/ by a Node Web Only backend - HTML structure, the Tailwind…
git:20260913.b7da539 · audit B · 4 stars
node-http-ws-server skill
tanq16/claudex · internal/embedded/presets/private/skills/node-http-ws-server/SKILL.md · The node:http plus ws server for a Node Web Only project - src/ module layout, routing, static serving from public/…
git:20260827.470b6dd · audit A · 4 stars
node-idioms skill
tanq16/claudex · internal/embedded/presets/private/skills/node-idioms/SKILL.md · Modern Node 24+ idioms and dependency selection - pure ESM, node: builtins, top-level await, structuredClone…
git:20260819.70031cb · audit A · 4 stars
node-makefile skill
tanq16/claudex · internal/embedded/presets/private/skills/node-makefile/SKILL.md · The Makefile for a Node Web Only project - vendoring pinned frontend assets into public/, compiling a native addon from…
git:20260827.2da6b8d · audit A · 4 stars
node-project-layout skill
tanq16/claudex · internal/embedded/presets/private/skills/node-project-layout/SKILL.md · The Node Web Only project shape - directory layout, package.json, the thin bin/ launcher, and console logging. Use when…
git:20260827.b6ee08f · audit A · 4 stars
node-release-artifacts skill
tanq16/claudex · internal/embedded/presets/private/skills/node-release-artifacts/SKILL.md · Choosing and building the release artifact for a Node Web Only project - a single self-contained binary or a…
git:20260827.b6ee08f · audit B · 4 stars
project-readme skill
tanq16/claudex · internal/embedded/presets/private/skills/project-readme/SKILL.md · README structure for every project type: the frozen header block, the opener, and the rules that decide which sections…
git:20260819.70031cb · audit A · 4 stars
review-code skill
tanq16/claudex · internal/embedded/presets/private/skills/review-code/SKILL.md · A thorough multi-agent audit of an existing codebase against the development skills, with one sub-agent per domain. Use…
git:20260911.4b91989 · audit A · 4 stars
web-markdown-rendering skill
tanq16/claudex · internal/embedded/presets/private/skills/web-markdown-rendering/SKILL.md · Rendering Markdown to styled HTML in a browser page with Marked, Highlight.js, and the Catppuccin palette. Use when a…
git:20260827.2da6b8d · audit B · 4 stars
web-mermaid-diagrams skill
tanq16/claudex · internal/embedded/presets/private/skills/web-mermaid-diagrams/SKILL.md · Catppuccin Mocha themed Mermaid diagrams in a browser page. Use when a frontend renders flowcharts, sequence diagrams…
git:20260827.2da6b8d · audit B · 4 stars
write-unit-tests skill
tanq16/claudex · internal/embedded/presets/private/skills/write-unit-tests/SKILL.md · Writes unit tests, and only when the user has asked for them. Invoked as /write-unit-tests <scope>, or when the user…
git:20260825.8fcc190 · audit A · 4 stars
Source
github.com/tanq16/claudex · 4 stars · license none · pushed 2026-09-15