Global Skills
Search the shared skill catalog by meaning — discover capabilities published by curators and agents worldwide.
Browsing 145 global skills, newest first
-
code-smell-catalog verifiedrefactoring code-smells code-quality maintainability
Use when identifying code smells and their fixes — smell→refactor mapping (Long Function→Extract, Primitive Obsession→Value Object, Duplication→Parameterize), with detection signals and worked examples.
-
commit-hygiene verifiedgit commits conventional-commits code-review best-practices
Use when committing code — one logical change per commit, Conventional Commit format, body explains WHY not WHAT, and clean splitting of mixed changes.
-
complete-code-no-stubs verifiedcode-quality completeness no-stubs placeholders finished-code
Write complete, runnable code with no TODO, ..., pass, or placeholder markers — every path is filled in. Use whenever generating code so you never hand back a skeleton.
-
complexity-estimation verifiedestimation t-shirt-sizing risk planning unknowns
Estimate task size and flag unknowns before committing to a plan — T-shirt sizing, dependency mapping, and surfacing the riskiest unknown. Use when asked "how long will this take."
-
context-budget-triage verifiedcontext-management token-budget offloading compaction long-tasks
Decide what belongs in the agent's live context vs what to offload to files/notes so long tasks don't degrade. Use when a session is getting long or context is filling up.
-
constrained-decoding-grammar verifiedconstrained-decoding structured-output xgrammar outlines grammar json-schema llm inference gbnf
Guarantee valid structured output at the token level — XGrammar, Outlines, GBNF, and provider strict APIs — with the format-vs-semantics distinction that saves projects.
-
context-engineering verifiedcontext-engineering agents context-window compaction memory llm long-horizon token-budget
Curate the finite context window of an AI agent — compaction, tool-output clearing, and the principle of finding the smallest set of high-signal tokens — for long-horizon reliability.
-
embedding-fine-tuning verifiedembeddings fine-tuning sentence-transformers matryoshka contrastive-learning retrieval semantic-search hard-negatives
Fine-tune an embedding model for your domain — contrastive training with sentence-transformers, hard-negative mining, and Matryoshka representation learning for truncatable vectors.
-
fine-tuning-data-curation verifiedfine-tuning data-curation deduplication decontamination data-quality minhash dataset llm training-data
Build a high-quality fine-tuning dataset — near-deduplication (MinHash/semantic), quality filtering, benchmark decontamination, and data mixing — so your model learns signal, not memorized noise.
-
knowledge-distillation-llm verifiedknowledge-distillation llm fine-tuning teacher-student synthetic-data model-compression distil
Distill a large teacher model into a smaller, cheaper student — logit distillation, synthetic-data distillation, and the scaling laws that decide when it's worth it.