Skip to main content
Dépôt GitHub

skills

skills contient 38 skills collectées depuis officialunofficial, avec une couverture métier par dépôt et des pages de détail sur le site.

skills collectés
38
Stars
7
mis à jour
2026-07-07
Forks
0
Couverture métier
6 catégories métier · 100% classifié
explorateur de dépôts

Skills dans ce dépôt

dependency-update-loop
Développeurs de logiciels

Recurring maintenance pass over automated dependency-bump PRs (Dependabot, Renovate, or similar) — rebase, relock, verify, and report what's ready to merge. Meant to be handed to a time-based loop or schedule, not run once.

2026-07-07
deploy-verify-loop
Développeurs de logiciels

Post-deploy verification loop — poll a rollout until every instance is on the new version and healthy, then run one smoke check against a real user path. Meant to be handed to a time-based loop with a timeout, not polled by hand.

2026-07-07
designing-loops
Développeurs de logiciels

Reference for designing agent loops — cycles of work that repeat until a stop condition is met. Covers the four loop shapes, writing completion criteria, carrying state and isolating work across cycles, and what running unattended still leaves on you.

2026-07-07
stacked-pr-loop
Développeurs de logiciels

Recurring check-in on a stack of dependent PRs — rebase children onto updated parents, surface CI state, flag anything waiting on a human-only gate, and report only what changed since last time. Meant to be handed to a time-based loop, not run once.

2026-07-07
which-skill
Autres occupations informatiques

Pick the skill or flow that fits your situation. A router over the skills in this repo.

2026-07-07
code-review
Analystes en assurance qualité des logiciels et testeurs

Review the changes since a fixed point (commit, branch, tag, or merge-base) along two axes — Standards (does the code follow this repo's documented coding standards?) and Spec (does the code match what the originating issue/PRD asked for?). Runs both reviews in parallel sub-agents and reports them side by side. Use when the user wants to review a branch, a PR, work-in-progress changes, or asks to "review since X".

2026-07-07
codebase-design
Développeurs de logiciels

Shared vocabulary and principles for designing deep modules. Use when the user wants to design or refine a module's interface, hunt for deepening opportunities, decide where a seam belongs, make code more testable or AI-navigable, or when another skill needs the deep-module vocabulary.

2026-07-07
diagnosing-bugs
Développeurs de logiciels

Diagnosis loop for hard bugs and performance regressions. Use when the user says "diagnose"/"debug this", or reports something broken/throwing/failing/slow.

2026-07-07
domain-modeling
Développeurs de logiciels

Actively build and refine a project's domain model as you design. Use when the user wants to nail down domain terminology or a ubiquitous language, capture an architectural decision as an ADR, or when another skill needs to keep the domain model current.

2026-07-07
grill-with-docs
Développeurs de logiciels

A relentless interview that sharpens a plan while writing the domain model down as you go — glossary terms and ADRs captured inline.

2026-07-07
implement
Développeurs de logiciels

Implement a piece of work based on a PRD or set of issues.

2026-07-07
improve-codebase-architecture
Développeurs de logiciels

Scan a codebase for deepening opportunities, present them as a visual HTML report, then grill through whichever one you pick.

2026-07-07
prototype
Développeurs de logiciels

Build a throwaway prototype to answer a design question. Use when the user wants to sanity-check whether a state model or logic feels right, or explore what a UI should look like.

2026-07-07
research
Analystes en études de marché et spécialistes en marketing

Investigate a question against high-trust primary sources and capture the findings as a Markdown file in the repo. Use when the user wants a topic researched, docs or API facts gathered, or reading legwork delegated to a background agent.

2026-07-07
resolving-merge-conflicts
Développeurs de logiciels

Use when you need to resolve an in-progress git merge/rebase conflict.

2026-07-07
setup-skills
Autres occupations informatiques

Configure this repo for the engineering skills — set up its issue tracker, triage label vocabulary, and domain doc layout. Run once before first use of the other engineering skills.

2026-07-07
tdd
Analystes en assurance qualité des logiciels et testeurs

Test-driven development. Use when the user wants to build features or fix bugs test-first, mentions "red-green-refactor", or wants integration tests.

2026-07-07
to-conformance
Analystes en assurance qualité des logiciels et testeurs

Distill a conformance suite out of a spec and the current conversation — every normative requirement turned into an implementation-independent test any conforming implementation must pass — and write it to an in-repo doc. Use when the user wants conformance tests, a spec compliance suite, test vectors for a format or protocol, to check an implementation against its spec, or to turn MUST/SHOULD requirements into tests.

2026-07-07
to-fuzz
Analystes en assurance qualité des logiciels et testeurs

Distill a fuzzing plan out of the current conversation and codebase — the targets worth fuzzing, each with its entry point, input model, and failure oracle — and write it to an in-repo doc. Use when the user wants to fuzz-test something, harden a parser or decoder against untrusted input, find crashes/panics/UB, turn invariants into fuzz targets, or plan a fuzzing campaign.

2026-07-07
to-invariants
Développeurs de logiciels

Distill the invariants — properties that must always hold — out of the current conversation and codebase, and write them to an in-repo doc. Use when the user wants to capture invariants, pin down what must always be true, harden a design, or turn a discussion/spec/PRD into checkable properties.

2026-07-07
to-issues
Spécialistes en gestion de projets

Break a plan, spec, or PRD into independently-grabbable issues on the project issue tracker using tracer-bullet vertical slices.

2026-07-07
to-prd
Spécialistes en gestion de projets

Turn the current conversation into a PRD and publish it to the project issue tracker — no interview, just synthesis of what you've already discussed.

2026-07-07
triage
Autres occupations informatiques

Move issues and external PRs through a state machine of triage roles — categorise, verify, grill if needed, and write agent-ready briefs.

2026-07-07
git-guardrails-claude-code
Développeurs de logiciels

Install a Claude Code hook that stops destructive git commands (push, reset --hard, clean, branch -D, and friends) before they run. Use when the user wants to guard against dangerous git operations, add git safety hooks, or block git push/reset inside Claude Code.

2026-07-07
migrate-to-shoehorn
Analystes en assurance qualité des logiciels et testeurs

Convert `as` type assertions in test files to @total-typescript/shoehorn helpers. Use when the user mentions shoehorn, wants to remove `as` from tests, or needs to pass partial data to a typed function under test.

2026-07-07
scaffold-exercises
Enseignants postsecondaires, autres

Scaffold an exercise directory tree — sections, problems, solutions, and explainers — that passes the course linter. Use when the user wants to scaffold exercises, stub out exercise folders, or spin up a new course section.

2026-07-07
setup-pre-commit
Développeurs de logiciels

Add a Husky pre-commit hook backed by lint-staged (Prettier), plus type checking and tests, to the current repo. Use when the user wants pre-commit hooks, wants to set up Husky or lint-staged, or wants Prettier, typecheck, and tests to run at commit time.

2026-07-07
mkit-attest
Développeurs de logiciels

Produce and verify mkit attestations — in-toto v1 Statements wrapped in DSSE envelopes, attached to a signed commit. Use when attaching provenance, review, or SBOM claims to a commit, verifying attestations against a trust-roots registry, setting up co-signers, or wiring attestation into CI. Assumes a `.mkit/` repo; for general mkit CLI use see the `mkit` skill.

2026-07-07
mkit-ci-preflight
Développeurs de logiciels

Verify an mkit PR is genuinely green across its real CI surface — the GitHub Actions gates AND the Google Cloud Build `mkit-*-pr` checks — before merging. Use when preparing to merge a PR into mkit's `main`, when a PR looks green but you want to confirm the expected workflows actually ran, when a rustdoc/docs or codegen change might slip past the GitHub rollup, or when reviving CI on a stale branch.

2026-07-07
mkit-release
Développeurs de logiciels

Cut a signed, attested mkit release by driving the real tag-triggered release machinery end to end. Use when tagging a new mkit version, publishing to crates.io / npm / GitHub Releases, verifying a published release, or rotating the release-attestation key.

2026-07-07
mkit
Développeurs de logiciels

Drive the `mkit` CLI — a content-addressed version control tool with BLAKE3 object IDs, Ed25519-signed commits, and native in-toto/DSSE attestation. Use when working in a `.mkit/` repository, making signed commits, managing signing keys, inspecting content-addressed objects, or syncing over mkit+ssh/https/s3/file transports. mkit mirrors git's CLI/UX, so git reflexes apply — this skill covers only the parts that are *not* git.

2026-07-07
new-mkit-spec
Développeurs de logiciels

Scaffold a new mkit SPEC document with the repo's real structure, then register it in the spec index and wire any parity follow-up. Use when adding a docs/specs/SPEC-*.md for a new wire format, on-disk format, or subsystem; when an in-scope command or behavior needs a normative spec; or when a format change requires a spec per the CONTRIBUTING review bar.

2026-07-07
grill-me
Spécialistes en gestion de projets

A relentless, one-decision-at-a-time interview that sharpens a plan or design.

2026-07-07
grilling
Spécialistes en gestion de projets

Interrogate the user's plan or design one decision at a time until you both share the same understanding. Use when the user wants to pressure-test an idea before building it, or reaches for any 'grill' trigger phrase.

2026-07-07
handoff
Développeurs de logiciels

Compact the current conversation into a handoff document for another agent to pick up.

2026-07-07
teach
Enseignants postsecondaires, autres

Teach the user a new skill or concept, within this workspace.

2026-07-07
technical-writing
Développeurs de logiciels

House style for technical writing — the voice, sentence craft, formatting, and user-facing-copy rules that make docs and product text clear, direct, and consistent. Use when writing or editing a README, docs, a spec, release notes, a changelog, help text, or any error/CLI/UI copy a person reads; when reviewing a diff that touches prose or messages; or when a project needs a writing standard. Reference-heavy mechanics live in REFERENCE.md.

2026-07-07
writing-great-skills
Autres occupations informatiques

Reference for writing and editing skills well — the vocabulary and principles that make a skill predictable.

2026-07-07