All Skills

1150 skills found

Skills List

shopify-functions

shopify-functions

449code-generation

Shopify Functions allow developers to customize the backend logic that powers parts of Shopify. Available APIs: Discount, Cart and Checkout Validation, Cart Transform, Pickup Point Delivery Option Generator, Delivery Customization, Fulfillment Constraints, Local Pickup Delivery Option Generator, Order Routing Location Rule, Payment Customization

shopify avatarshopify
獲取
shopify-admin

shopify-admin

448research-knowledge

Write or explain **Admin GraphQL** queries and mutations for apps and integrations that extend the Shopify admin. Use when the user wants to **understand, design, or generate** the operation itself—even before deciding how to run it. Do **not** choose `admin` first for **app or extension config validation** —use **`use-shopify-cli`**. Do **not** choose `admin` first to **execute** Admin GraphQL **now via Shopify CLI** or for CLI setup/troubleshooting on store workflows—use **`use-shopify-cli`** (store auth/execute, handle/SKU/location lookups, inventory changes).

shopify avatarshopify
獲取
analyze-project

analyze-project

443code-generation

Rigor Analyze / Rigor Audit read-only skill for deep learning research repositories. Use when the user wants to read and understand a repository, inspect model structure and training or inference entrypoints, review configs and insertion points, or flag suspicious implementation patterns without modifying code or running heavy jobs. Do not use for active command execution, broad refactoring, speculative code adaptation, or automatic bug fixing.

lllllllama avatarlllllllama
獲取
explore-code

explore-code

443code-generation

Rigor Improve implementation leaf skill for auditable candidate implementation in deep learning research repositories. Use when the researcher explicitly authorizes exploratory work on an isolated branch or worktree to transplant modules, adapt a backbone, add LoRA or adapter layers, replace a head, or stitch together meaningful low-risk migration ideas with rollback-aware records in `explore_outputs/`. Do not use for end-to-end exploration orchestration on top of `current_research`, trusted baseline reproduction, conservative debugging, environment setup, verified contribution claims, or default repository analysis.

lllllllama avatarlllllllama
獲取
ai-research-reproduction

ai-research-reproduction

443research-knowledge

Rigor Reproduce compatible skill slug for README-first deep learning repository reproduction. Use when the user wants an end-to-end, minimal-trustworthy flow that reads the repository first, selects the smallest documented inference or evaluation target, coordinates intake, setup, trusted execution, optional trusted training, optional repository analysis, and optional paper-gap resolution, enforces conservative patch rules, records evidence assumptions deviations and human decision points, and writes the standardized `repro_outputs/` bundle. Do not use for paper summary, generic environment setup, isolated repo scanning, standalone command execution, silent protocol changes, score chasing, or broad research assistance outside repository-grounded reproduction.

lllllllama avatarlllllllama
獲取
paper-context-resolver

paper-context-resolver

443research-knowledge

Rigor Paper Context helper for README-first deep learning repo reproduction. Use only when the README and repository files leave a narrow reproduction-critical gap and the task is to resolve a specific paper detail such as dataset split, preprocessing, evaluation protocol, checkpoint mapping, or runtime assumption from primary paper sources while recording conflicts. Do not use for general paper summary, repo scanning, environment setup, command execution, title-only paper lookup, or replacing README guidance by default.

lllllllama avatarlllllllama
獲取
remembering-conversations

remembering-conversations

435agent-workflows

You MUST invoke this skill before saying "I don't know," guessing, or treating any topic as new, no matter how trivial the question seems. It supplements other memory systems, which only hold partial records. Searching past conversations is the only way to recover what was actually said.

obra avatarobra
獲取
mintlify

mintlify

422research-knowledge

Comprehensive reference for building Mintlify documentation sites. Use when creating pages, configuring docs.json, adding components, setting up navigation, or working with API references. Routes to detailed reference files for all components and configuration options.

mintlify avatarmintlify
獲取
paper-context-resolver

paper-context-resolver

413research-knowledge

Rigor Paper Context helper for README-first deep learning repo reproduction. Use only when the README and repository files leave a narrow reproduction-critical gap and the task is to resolve a specific paper detail such as dataset split, preprocessing, evaluation protocol, checkpoint mapping, or runtime assumption from primary paper sources while recording conflicts. Do not use for general paper summary, repo scanning, environment setup, command execution, title-only paper lookup, or replacing README guidance by default.

lllllllama avatarlllllllama
獲取
env-and-assets-bootstrap

env-and-assets-bootstrap

413research-knowledge

Rigor Setup skill for README-first deep learning repo reproduction. Use when the task is specifically to prepare a conservative conda-first environment, checkpoint and dataset path assumptions, cache location hints, and setup notes before any run on a README-documented repository. Do not use for repo scanning, full orchestration, paper interpretation, final run reporting, or generic environment setup that is not tied to a specific reproduction target.

lllllllama avatarlllllllama
獲取
minimal-run-and-audit

minimal-run-and-audit

413research-knowledge

Rigor Run skill for README-first deep learning repo reproduction. Use when the task is specifically to capture or normalize evidence from the selected smoke test or documented inference or evaluation command and write standardized `repro_outputs/` files, including patch notes when repository files changed. Do not use for training execution, initial repo intake, generic environment setup, paper lookup, target selection, hidden scientific-meaning changes, or end-to-end orchestration by itself.

lllllllama avatarlllllllama
獲取
repo-intake-and-plan

repo-intake-and-plan

413research-knowledge

Rigor Intake helper for README-first deep learning repo reproduction. Use when the task is specifically to scan a repository, read the README and common project files, extract documented commands, classify inference, evaluation, and training candidates, and return the smallest trustworthy reproduction plan to the main orchestrator. Do not use for environment setup, asset download, command execution, final reporting, paper lookup, or end-to-end orchestration.

lllllllama avatarlllllllama
獲取
tavily-best-practices

tavily-best-practices

398research-knowledge

Build production-ready Tavily integrations with best practices baked in. Reference documentation for developers using coding assistants (Claude Code, Cursor, etc.) to implement web search, content extraction, crawling, and research in agentic workflows, RAG systems, or autonomous agents.

tavily-ai avatartavily-ai
獲取
dart-add-unit-test

dart-add-unit-test

392testing-qa

Write and organize unit tests for functions, methods, and classes using `package:test`. Use when creating new logic or fixing bugs to ensure code remains correct and regression-free.

dart-lang avatardart-lang
獲取
dart-run-static-analysis

dart-run-static-analysis

392backend-api

Execute `dart analyze` to identify warnings and errors, and use `dart fix --apply` to automatically resolve mechanical lint issues. Use during development to ensure code quality and before committing changes.

dart-lang avatardart-lang
獲取
dart-fix-runtime-errors

dart-fix-runtime-errors

392productivity

Uses get_runtime_errors and lsp to fetch an active stack trace, locate the failing line, apply a fix, and verify resolution via hot_reload.

dart-lang avatardart-lang
獲取
dart-resolve-package-conflicts

dart-resolve-package-conflicts

392productivity

Workflow for fixing package version conflicts. Use this when `pub get` fails due to incompatible package versions.

dart-lang avatardart-lang
獲取
dart-use-pattern-matching

dart-use-pattern-matching

392writing-content

Use switch expressions and pattern matching where appropriate

dart-lang avatardart-lang
獲取
dart-collect-coverage

dart-collect-coverage

392testing-qa

Collect coverage using the coverage packge and create an LCOV report

dart-lang avatardart-lang
獲取
dart-generate-test-mocks

dart-generate-test-mocks

392testing-qa

Define and generate mock objects for external dependencies using `package:mockito` and `build_runner`. Use when unit testing classes that depend on complex external services like APIs or databases.

dart-lang avatardart-lang
獲取
dart-migrate-to-checks-package

dart-migrate-to-checks-package

392writing-content

Replace the usage of `expect` and similar functions from `package:matcher` to `package:checks` equivalents.

dart-lang avatardart-lang
獲取
dart-build-cli-app

dart-build-cli-app

392testing-qa

Entrypoint structure, exit codes, cross-platform scripts. Use when building command line utilities, scripts, or applications.

dart-lang avatardart-lang
獲取
swift-testing-pro

swift-testing-pro

390testing-qa

Writes, reviews, and improves Swift Testing code using modern APIs and best practices. Use when reading, writing, or reviewing projects that use Swift Testing.

twostraws avatartwostraws
獲取
text-to-speech

text-to-speech

380backend-api

Convert text to speech using ElevenLabs voice AI. Use when generating audio from text, creating voiceovers, building voice apps, or synthesizing speech in 70+ languages.

elevenlabs avatarelevenlabs
獲取
Want a category view? Try /category/writing-content.