Trending Skills

The hottest skills gaining momentum in the community right now.

Showing 97-120 of 196 skills
vectorize-io

hindsight-recall

by vectorize-io

Search long-term memory for relevant context from past coding sessions using Hindsight MCP tools

Auth 21.3K 3mo ago
vectorize-io

hindsight-coding-agent

by vectorize-io

How this machine's Hindsight coding-agent memory works — the plugin behind the 🧠 banner. Use when the user says "store/remember this in hindsight", asks what the memory/knowledge pages are, wants to configure per-repo memory (disable, rename banks, git depth), or something memory-related looks broken.

File Ops 21.3K 19d ago
vectorize-io

create-agent

by vectorize-io

Create a new Hindsight-powered subagent with long-term memory. Use when the user wants a specialized agent that learns and remembers across sessions.

Code Gen 21.3K 4mo ago
vectorize-io

hindsight-memory

by vectorize-io

Long-term memory for the agent via Hindsight. Use to recall relevant past context before answering, retain durable facts as you learn them, and reflect over accumulated memory for the "why" behind a decision. Load whenever continuity across sessions matters — the user refers to earlier work, states a lasting preference, or asks a question that prior context could answer.

API Dev 21.3K 27d ago
PostHog

isolating-product-facade-contracts

by PostHog

Plan and execute product isolation migrations to a facade plus contract layer in PostHog, following the Visual review architecture. Use when a product still exposes internals (models/logic/views) across boundaries and needs migration toward contracts.py + facade/api.py + presentation separation, with a PR strategy that minimizes review latency and conflicts with parallel work.

Code Review 39.6K 7d ago
PostHog

instrumenting-first-party-metrics

by PostHog

"How to instrument PostHog's own Metrics product from PostHog-owned code — record counters, gauges, and histograms that land in posthog.metrics, the same way customers do. Use when adding application metrics in this monorepo (web, Celery, Temporal), when asked to push or ship metrics into posthog metrics, or when unsure whether the SDK in this environment supports posthog.metrics yet. Covers the environment decision (SDK-first per the public docs, OTel fallback when the SDK path is not available), the exact version gates per SDK, what is already wired internally, and how to validate metrics actually arrive."

Kubernetes 39.6K 1d ago
PostHog

optimizing-clickhouse-and-hogql-queries

by PostHog

Workflow for optimizing ClickHouse and HogQL queries. Use when a HogQL query, query runner, insight, or report is too slow; when a hand-written ClickHouse query (via sync_execute or in a migration) is too slow; when ClickHouse times out or hits memory limits; when investigating a slow system.query_log row; or when reviewing a proposed HogQL printer change for performance. Covers extracting the ClickHouse SQL, common smells (FROM ... FINAL, JSONExtract over properties, missing skip indexes, self-joins, CTE blow-up), measuring against a real cluster, and applying the fix at the right layer (printer, query runner, or migration). Does NOT cover Postgres / Django ORM / app-database queries; those need pganalyze and the Postgres section of query-performance-optimization.md.

Database 39.6K 2mo ago
PostHog

monitoring-ingestion-pipeline

by PostHog

Guide for using the Grafana MCP to monitor and diagnose the Node.js ingestion pipeline workers in production. Use when investigating event lag, drops, pipeline errors, person/group processing, Kafka consumer health, Redis, Postgres, ClickHouse downstream health, or any ingestion worker question. Covers prod-us and prod-eu environments.

Database 39.6K 1mo ago
PostHog

playwright-test

by PostHog

Write a playwright test, make sure it runs, and is not flaky.

Debugging 39.6K 5mo ago
PostHog

writing-skills

by PostHog

'Guide for writing PostHog agent skills — job-to-be-done templates that teach agents how to use MCP tools to achieve a goal. Use when adding new product functionality that agents should know how to work with, creating a new skill, or updating existing skills in products/*/skills/.'

Code Gen 39.6K 4d ago
AtomiCloud

testing-plugin

by AtomiCloud

Test this CyanPrint plugin. Use when the user asks to write plugin tests, add test cases, update snapshots, or debug plugin test failures. Covers test.cyan.yaml format with input directories, config, validate commands, and expected output.

File Ops 0 5mo ago
AtomiCloud

writing-resolver-python

by AtomiCloud

Write or modify CyanPrint resolver code in Python. Use when the user asks to change conflict resolution logic, modify merge strategies, handle file origins, or change resolution behavior. Covers entry point (start_resolver_with_fn), ResolverInput/ResolverOutput, ResolvedFile, and FileOrigin. Must ensure commutativity and associativity (sort, unique, deterministic ordering).

Templates 0 5mo ago
AtomiCloud

writing-plugin-javascript

by AtomiCloud

Write or modify CyanPrint plugin code in JavaScript. Use when the user asks to add validation rules, change plugin behavior, modify the entry point, run commands from a plugin, or mutate files. Covers entry point (StartPluginWithLambda), native filesystem I/O (fs), and command execution (child_process). Plugins receive { directory, config } and use native OS operations.

File Ops 0 5mo ago
AtomiCloud

ci-cd-workflows

by AtomiCloud

CI/CD workflow patterns. Use when creating or modifying GitHub Actions workflows.

CI/CD 0 6mo ago
AtomiCloud

semantic-release

by AtomiCloud

Semantic release configuration and workflow. Use when configuring releases or understanding versioning.

Agents 0 6mo ago
taika-izumi

retrospective

by taika-izumi

"サブプロジェクト1サイクル完了直後(feature ブランチを master へマージ後、handoff finalize 前)に実施する、サイクル末尾の課題抽出記録スキル。AI が plan / git log / handoff から課題候補(事象/原因/影響、system/flow 分類つき)を一括提示し、ユーザーが修正と起票判断を行う。フロー課題は delta 型(worklog で捕捉可能)か構造観察型かを振り分け、delta 型で急がないものは worklog パイプラインへ委ねる。抽出課題は docs/working/issues/system flow/ へ起票し、対策の採否・設計・ADR化は次サイクルへ委ねる。rubber-duck 独立レビューはユーザー要求時のみのオプション。"

Git & VCS 0 2d ago
AtomiCloud

conventional-commits

by AtomiCloud

Conventional commit conventions. Use when writing commit messages.

Git & VCS 0 6mo ago
kbrdn1

speckit.constitution

by kbrdn1

Create or update the project constitution from interactive or provided principle inputs, ensuring all dependent templates stay in sync.

Templates 3 today
AtomiCloud

writing-processor-dotnet

by AtomiCloud

Write or modify CyanPrint processor code in C#. Use when the user asks to change file transformations, modify the entry point, handle file processing, or change output generation. Covers entry point (CyanEngine.StartProcessor), CyanFileHelper (ResolveAll/Read/Copy), and VirtualFile (Content/WriteFile). Processor function receives (ProcessorInput, CyanFileHelper) as two parameters.

File Ops 0 5mo ago
AtomiCloud

docker-push

by AtomiCloud

Docker image build and push to container registry. Use when adding or modifying Docker image builds and pushes to GHCR.

CI/CD 0 6mo ago
AtomiCloud

writing-template-typescript

by AtomiCloud

Write or modify CyanPrint template code in TypeScript. Use when the user asks to add prompts, change template logic, modify the entry point, add processors/plugins/resolvers, or change generated output for a TypeScript template. Covers IInquirer question types (text, select, checkbox, confirm, password, dateSelect), processor configuration, and IDeterminism for non-deterministic values.

File Ops 0 5mo ago
kbrdn1

speckit.clarify

by kbrdn1

Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.

Processing 3 today
kbrdn1

speckit.install

by kbrdn1

Bootstrap the SpecKit spec-driven development system into any project directory.

Code Gen 3 today
AtomiCloud

writing-resolver-dotnet

by AtomiCloud

Write or modify CyanPrint resolver code in C#. Use when the user asks to change conflict resolution logic, modify merge strategies, handle file origins, or change resolution behavior. Covers entry point (CyanEngine.StartResolver), ResolverInput/ResolverOutput, ResolvedFile, and FileOrigin. Must ensure commutativity and associativity (sort, unique, deterministic ordering).

Code Gen 0 5mo ago