Skip to main content
GitHub repository

slipstream

slipstream contains 81 collected skills from sarmakska, with repository-level occupation coverage and site-owned skill detail pages.

skills collected
81
Stars
2
updated
2026-06-17
Forks
1
Occupation coverage
5 occupation categories · 100% classified
repository explorer

Skills in this repository

dispatching-parallel-agents
software-developers

Use when several pieces of work are genuinely independent and can run at once, to fan them out across parallel agents instead of doing them in sequence. Cuts wall-clock time and keeps each strand in its own clean context.

2026-06-17
executing-plans
software-developers

Use when a written plan exists and you are about to build it in the current session, to work it task by task with a checkpoint after each. Keeps execution honest against the plan instead of drifting into a freehand build.

2026-06-17
using-git-worktrees
software-developers

Use when work needs its own isolated checkout — parallel strands that would fight over files, or a risky change you want quarantined from the main tree. Gives each strand a real working directory on its own branch without re-cloning.

2026-06-17
using-slipstream
software-developers

Use whenever the user says "use slipstream", "use superpowers", or starts any task in a project that has slipstream. A hard, always-on discipline that forces scoped reads over whole-file reads to save tokens, recalls memory before acting, and records what is durable every turn so memory grows constantly.

2026-06-06
frontend-design-system
software-developers

Use when a site needs to look designed rather than defaulted, before building sections: establish a cohesive design system of type scale, spacing, colour, radius and shadow tokens so every component shares one premium visual language.

2026-06-06
frontend-hero-section
software-developers

Use when building the top of a landing page, to produce a high-impact hero with confident display type, a clear single call to action and balanced composition, the kind of opening a polished marketing site leads with.

2026-06-06
frontend-marketing-sections
software-developers

Use when filling out a landing page below the hero, to build the polished marketing sections a premium site is made of: a feature grid, a logo or social-proof strip, a testimonial and a closing call to action.

2026-06-06
frontend-motion
software-developers

Use when a site needs the smooth entrance and scroll-reveal animations that make a page feel alive and crafted, to add tasteful motion with a real animation library rather than ad-hoc transitions.

2026-06-06
finishing-a-branch
software-developers

Use when implementation is complete and verified and the work needs to land, to choose how to integrate it. Walks the close-out from a clean green suite to a recorded memory of what changed, then merge, pull request or cleanup as the situation calls for.

2026-06-06
receiving-code-review
software-developers

Use when acting on code-review feedback, especially when a comment seems unclear or wrong. Requires verifying each point technically before changing anything, so you fix real issues and push back on mistaken ones instead of agreeing performatively.

2026-06-06
requesting-code-review
software-developers

Use when a feature or fix is complete and verified, before merging, to get a focused review. Prepares a tight diff and the context a reviewer needs so the review finds real problems instead of drowning in noise.

2026-06-06
subagent-driven-development
software-developers

Use when executing a multi-step plan whose tasks are independent, to dispatch a fresh agent per task and review between tasks. Keeps each task in a clean context, parallelises independent work, and gates each result before the next begins.

2026-06-06
test-driven-development
software-developers

Use before writing or changing any feature or bugfix code, to drive the change with a failing test first. Red, green, refactor. The discipline that proves the code does what was asked and keeps it proven as the project grows.

2026-06-06
verification-before-completion
software-developers

Use before claiming any work is done, fixed, passing or shipped, and before committing or opening a pull request. Requires running the real checks and quoting the real output, so a success claim is backed by evidence rather than hope.

2026-06-06
writing-skills
software-developers

Use when creating or editing a slipstream skill, to produce one that loads cleanly and earns its place. Covers the frontmatter contract, the trigger-shaped description, the required body sections and the verification gate, so the skill validator passes and the skill is actually useful.

2026-06-06
brainstorm-spec
project-management-specialists

Use at the start of a non-trivial feature or change, before planning or coding, to refine a vague request into a short written spec through focused questions. Turns "build me X" into an agreed scope, so the plan and the code that follow do not chase a moving target.

2026-06-04
systematic-debugging
software-developers

Use when a bug, test failure, or unexpected behaviour appears, to find the root cause before changing code instead of guessing fixes. A four-phase process that stops the hallucinated-fix loop and the token waste of trying patches at random.

2026-06-04
think-before-coding
project-management-specialists

Use before writing or changing code on any non-trivial task, to surface hidden assumptions, keep the change minimal and surgical, and define how you will verify success. The discipline that stops over-engineering and wasted tokens before they happen.

2026-06-04
write-plan
project-management-specialists

Use after a spec is agreed and before coding a multi-step change, to break the work into small, independently verifiable tasks with exact files and a check per task. A plan an agent can execute without re-deciding scope, and that survives compaction.

2026-06-04
bad-name
software-developers

This skill has an invalid name, an invalid category, and no required sections.

2026-05-31
no-gate
software-developers

This shipping skill omits the required verification gate and must be rejected.

2026-05-31
fixture-good
software-quality-assurance-analysts-and-testers

A minimal but complete skill used to prove the loader accepts valid Claude Code SKILL.md input.

2026-05-31
analytics-events
software-developers

Use when you need product analytics: track the handful of events that actually matter, such as sign up and purchase.

2026-05-31
analytics-plausible
software-developers

Use when adding privacy-friendly site analytics: add a lightweight, cookieless analytics script that respects visitor privacy.

2026-05-31
analytics-web-vitals
software-developers

Use when you want to measure real-user performance (Core Web Vitals): measure and report Largest Contentful Paint, Interaction to Next Paint and Cumulative Layout Shift.

2026-05-31
auth-oauth
software-developers

Use when adding social or third-party sign in: add a third party OAuth provider such as GitHub or Google for social sign in.

2026-05-31
auth-password-reset
software-developers

Use when users need to reset a forgotten password: let users reset a forgotten password with a single use, time limited token sent by email.

2026-05-31
auth-rbac
software-developers

Use when routes or actions must be gated by user role: gate routes and actions behind roles so only authorised users can perform them.

2026-05-31
auth-session
software-developers

Use when issuing authenticated session cookies: issue HTTP only, secure, same site session cookies for authenticated requests.

2026-05-31
backend-error-handling
software-developers

Use when an API needs consistent error responses: catch unhandled errors centrally and return consistent JSON error envelopes.

2026-05-31
backend-hono-api
software-developers

Use when scaffolding an HTTP API that runs on Node and the edge: create a Hono based HTTP API that runs on both Node and edge runtimes.

2026-05-31
backend-openapi
software-developers

Use when consumers need an OpenAPI spec for the API: generate an OpenAPI specification from the API routes and serve it for consumers.

2026-05-31
backend-rate-limit
software-developers

Use when a public endpoint needs abuse protection: protect public endpoints with a token bucket rate limiter keyed by client identity.

2026-05-31
backend-zod-validation
software-developers

Use when API input must be validated and rejected if malformed: add schema validation middleware so every endpoint rejects malformed input with a 400.

2026-05-31
cloudflare-d1
software-developers

Use when the app needs a SQLite database on Cloudflare: create a Cloudflare D1 SQLite database and run an initial migration.

2026-05-31
cloudflare-kv
software-developers

Use when you need a low-latency edge cache or key-value store: create a Workers KV namespace and use it as a low latency cache.

2026-05-31
cloudflare-pages
software-developers

Use when deploying a static front end to Cloudflare Pages: publish a built static front end to Cloudflare Pages.

2026-05-31
cloudflare-r2
software-developers

Use when the app needs object storage on Cloudflare: create an R2 object storage bucket and bind it to a Worker.

2026-05-31
cloudflare-secrets
software-developers

Use when a Worker needs secret values kept out of source: store sensitive values as Worker secrets rather than committing them.

2026-05-31
cloudflare-worker
software-developers

Use when building an API or handler at the Cloudflare edge: create a Cloudflare Worker with Wrangler that serves an API at the edge.

2026-05-31
Showing top 40 of 81 collected skills in this repository.