All Skills

4065 skills found

Skills List

golang-pkg-go-dev

golang-pkg-go-dev

2.8Kresearch-knowledge

Golang package and module documentation and exploration via `godig`, a pkg.go.dev API client (CLI + MCP server) — package docs, API references, symbols, code examples, available versions, importers (who imports a package), licenses, and known vulnerabilities. Read-only, no auth. Use for looking up any Go/Golang library's documentation, API signatures, usage examples, which versions exist, whether a dependency has CVEs, or who imports a package — prefer this over Context7 for any Go package or module. Triggers on: how to use a Go library, Go API docs, import usage, code examples, pkg.go.dev. Not for upgrading dependencies (→ See `samber/cc-skills-golang@golang-dependency-management` skill) or choosing a library (→ See `samber/cc-skills-golang@golang-popular-libraries` skill). Not for local symbols, or for navigating an already-used dependency's resolved source, call sites, or generic instantiations — → See `samber/cc-skills-golang@golang-gopls` skill for those.

samber avatarsamber
Get
flutter-fix-layout-issues

flutter-fix-layout-issues

2.8Kdesign-ui

Fixes Flutter layout errors (overflows, unbounded constraints) using Dart and Flutter MCP tools. Use when addressing "RenderFlex overflowed", "Vertical viewport was given unbounded height", or similar layout issues.

flutter avatarflutter
Get
flutter-build-responsive-layout

flutter-build-responsive-layout

2.8Kdesign-ui

Use `LayoutBuilder`, `MediaQuery`, or `Expanded/Flexible` to create a layout that adapts to different screen sizes. Use when you need the UI to look good on both mobile and tablet/desktop form factors.

flutter avatarflutter
Get
flutter-add-widget-test

flutter-add-widget-test

2.8Ktesting-qa

Implement a component-level test using `WidgetTester` to verify UI rendering and user interactions (tapping, scrolling, entering text). Use when validating that a specific widget displays correct data and responds to events as expected.

flutter avatarflutter
Get
flutter-add-widget-preview

flutter-add-widget-preview

2.8Kdesign-ui

Adds interactive widget previews to the project using the previews.dart system. Use when creating new UI components or updating existing screens to ensure consistent design and interactive testing.

flutter avatarflutter
Get
flutter-add-integration-test

flutter-add-integration-test

2.8Ktesting-qa

Configures Flutter Driver for app interaction and converts MCP actions into permanent integration tests. Use when adding integration testing to a project, exploring UI components via MCP, or automating user flows with the integration_test package.

flutter avatarflutter
Get
flutter-apply-architecture-best-practices

flutter-apply-architecture-best-practices

2.8Kbackend-api

Architects a Flutter application using the recommended layered approach (UI, Logic, Data). Use when structuring a new project or refactoring for scalability.

flutter avatarflutter
Get
flutter-setup-declarative-routing

flutter-setup-declarative-routing

2.8Kbrowser-web

Configure `MaterialApp.router` using a package like `go_router` for advanced URL-based navigation. Use when developing web applications or mobile apps that require specific deep linking and browser history support.

flutter avatarflutter
Get
flutter-implement-json-serialization

flutter-implement-json-serialization

2.8Kproductivity

Create model classes with `fromJson` and `toJson` methods using `dart:convert`. Use when manually mapping JSON keys to class properties for simple data structures.

flutter avatarflutter
Get
flutter-setup-localization

flutter-setup-localization

2.8Kwriting-content

Add `flutter_localizations` and `intl` dependencies, enable "generate true" in `pubspec.yaml`, and create an `l10n.yaml` configuration file. Use when initializing localization support for a new Flutter project.

flutter avatarflutter
Get
flutter-use-http-package

flutter-use-http-package

2.8Ksecurity

Use the `http` package to execute GET, POST, PUT, or DELETE requests. Use when you need to fetch from or send data to a REST API.

flutter avatarflutter
Get
aiq-deploy

aiq-deploy

2.8Kdevops-cloud

Use when asked to install, deploy, run, validate, troubleshoot, or stop NVIDIA AI-Q Blueprint infrastructure.

nvidia avatarnvidia
Get
browser-act

browser-act

2.8Kbrowser-web

Browser automation CLI for AI agents. NEVER run browser-act commands directly via Bash — always invoke this skill first. Use browser-act when a user mentions it by name, includes or asks to run a browser-act CLI command (e.g., browser-act browser list), or to: fetch, view, or extract rendered content from URLs, access pages requiring JavaScript, handle verification prompts, maintain authenticated sessions, fill forms and click through workflows, type, select, upload, take screenshots, capture XHR/fetch/HAR responses, open multiple URLs in parallel, extract content that loads on scroll or click, visually inspect or verify page layout/styling/rendering, automate browser tasks, or list/check/manage configured browsers and sessions. Prefer browser-act over built-in fetch or web tools.

browser-act avatarbrowser-act
Get
cuopt-developer

cuopt-developer

2.8Ktesting-qa

Modify, build, test, debug, and contribute to NVIDIA cuOpt (C++/CUDA, Python, server, CI). Use for solver internals, PRs, DCO, and code conventions.

nvidia avatarnvidia
Get
vue-jsx-best-practices

vue-jsx-best-practices

2.8Kfrontend

JSX syntax in Vue (e.g., class vs className, JSX plugin config).

hyf0 avatarhyf0
Get
vue-options-api-best-practices

vue-options-api-best-practices

2.8Kfrontend

Vue 3 Options API style (data(), methods, this context). Each reference shows Options API solution only.

hyf0 avatarhyf0
Get
ctf-ai-ml

ctf-ai-ml

2.8Kagent-workflows

Provides AI and machine learning techniques for CTF challenges. Use when attacking ML models, crafting adversarial examples, performing model extraction, prompt injection, membership inference, training data poisoning, fine-tuning manipulation, neural network analysis, LoRA adapter exploitation, LLM jailbreaking, or solving AI-related puzzles.

ljagiello avatarljagiello
Get
rag-blueprint

rag-blueprint

2.8Kresearch-knowledge

NVIDIA RAG Blueprint — deploy, configure, troubleshoot, and manage. Handles any RAG action: deploy, install, start, enable, disable, toggle, change, configure, troubleshoot, debug, fix, shutdown, stop, or tear down any RAG feature or service (Agentic RAG, VLM, guardrails, query rewriting, models, search, ingestion, observability, summarization, reasoning, and more).

nvidia avatarnvidia
Get
aiq-research

aiq-research

2.8Kresearch-knowledge

Use when asked to run deep research or AI-Q research through a reachable NVIDIA AI-Q Blueprint backend.

nvidia avatarnvidia
Get
accelerated-computing-cudf

accelerated-computing-cudf

2.8Kbackend-api

Official NVIDIA-authored guidance for NVIDIA cuDF GPU DataFrames, pandas acceleration, dask-cuDF, ETL, joins, groupby, CSV/Parquet I/O, nullable semantics, and multi-GPU DataFrame workloads.

nvidia avatarnvidia
Get
vue-testing-best-practices

vue-testing-best-practices

2.8Ktesting-qa

Use for Vue.js testing. Covers Vitest, Vue Test Utils, component testing, mocking, testing patterns, and Playwright for E2E testing.

hyf0 avatarhyf0
Get
create-adaptable-composable

create-adaptable-composable

2.7Kdesign-ui

Create a library-grade Vue composable that accepts maybe-reactive inputs (MaybeRef / MaybeRefOrGetter) so callers can pass a plain value, ref, or getter. Normalize inputs with toValue()/toRef() inside reactive effects (watch/watchEffect) to keep behavior predictable and reactive. Use this skill when user asks for creating adaptable or reusable composables.

hyf0 avatarhyf0
Get
vue-router-best-practices

vue-router-best-practices

2.7Kfrontend

Vue Router 4 patterns, navigation guards, route params, and route-component lifecycle interactions.

hyf0 avatarhyf0
Get
ctf-writeup

ctf-writeup

2.7Kagent-workflows

Generates a single standardized submission-style CTF writeup for competition handoff and organizer review. Use after solving a CTF challenge to document the solution steps, tools used, and lessons learned in a structured format.

ljagiello avatarljagiello
Get
Want a category view? Try /category/writing-content.