ASYNKRON developer tools for Claude Code
npx claudepluginhub asynkron/asynkron-skillsASYNKRON developer tools — profiler, test runner, code duplication detector, line counter, Roslynator, strict .NET standards, pre-PR checklist, test bomb and layered test methodologies
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
Developer tool skills for AI coding agents. Works with Claude Code, Codex, Cursor, and Copilot.
/clocCount lines of code using cloc. Analyze codebase size, language breakdown, and compare code between git refs. Supports 200+ languages and multiple output formats (JSON, YAML, CSV, Markdown).
/quickdupDetect code duplication using QuickDup. A fast structural clone detector that processes ~100k lines in 500ms. Surfaces duplication candidates for AI-assisted review.
Includes refactoring guidance for 4 types of duplication:
/systematic-debugTwo complementary debugging techniques for when the root cause of a bug is unclear.
Test bombs create one small test per hypothesis (H1, H2, H3...). Run them all together — the pass/fail pattern reveals the failing area. Start broad, then add targeted hypotheses based on results.
Layered tests test each stage of a processing pipeline independently (L1, L2, L3...). If L3 fails but L1 and L2 pass, the bug is in stage 3. Works for compilers, HTTP pipelines, ETL, build systems, and any multi-stage architecture.
Use test bombs first to narrow the component, then layered tests to pinpoint the exact stage. Templates for C#, TypeScript, Python, and Go.
/paletteGenerate color palettes with Tailwind-scale shades using Asynkron.Palette. A zero-dependency CLI that takes hex colors, a color wheel strategy, and a count, and outputs a complete palette with 11 perceptually uniform shades per color (OKLCH color space). Runs via npx @asynkron/palette (no install required).
Pass one or more base colors (or none for a random palette), pick a strategy (triadic, analogous, complementary, split-complementary, tetradic, evenly-spaced), and set a count. All colors are automatically normalized to matching lightness and chroma so the palette looks cohesive. Mood presets (--vibrant, --pastel) override the target energy level. Use --raw to keep exact input colors.
Colors are named semantically (primary, secondary, tertiary, accent, neutral) with Tailwind shade numbers (50–950). ANSI color output in terminals. Accepts hex with or without # prefix.
/profileProfile .NET applications using Asynkron.Profiler. A CLI profiler that outputs structured text — no GUI needed. Runs via dnx (no install required).
Five profiling modes: CPU, memory allocations, lock contention, exceptions, and heap snapshots. Can also capture JIT-to-native compilation events to verify inlining.
Includes a full profiling methodology (symptom-to-mode table, reading hot function tables, allocation call graphs, iterative fix-and-measure workflow) and JIT-aware optimization patterns:
AggressiveInlining on the common case, NoInlining on the rare caseVolatile.Read + CompareExchange without Lazy<T> overhead/testrunnerAlternative .NET test runner using Asynkron.TestRunner. Wraps dotnet test with added resilience for unstable test suites. Runs via dnx (no install required).
Handles tests that hang, crash the process, cause OOM, or stack overflow — scenarios where dotnet test simply dies or never returns. Automatically detects hung tests, isolates the culprit by splitting the test tree, and tracks pass/fail history across runs for regression detection.
This is not a replacement for dotnet test. Only use it when standard tooling fails.
/roslynatorC# static analysis using Roslynator. Auto-fix diagnostics, format code, find unused declarations, count lines of code, and check spelling — all from the command line.
Covers the fix, analyze, format, find-unused, spellcheck, lloc, and loc commands with key flags and .editorconfig configuration.
/dotnet-strict