███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 7001 | holoscan-install-source | nvidia/skills |
Holoscan SDK — Build from Source Purpose Build the Holoscan SDK from the nvidia-holoscan/holoscan-sdk source tree using its ./run script (which builds inside a Docker container), producing a local install tree consumable as a CMake dependency. Prerequisites Linux host with NVIDIA GPU + driver ( nvidia-smi ). git , Docker with NVIDIA Container Toolkit ( docker run --gpus all works), and docker-buildx-plugin . ~20 GB free disk for the build container + build/install trees. 10–30 min for a clean fi...
|
1.7K |
| 7002 | nv-generate-mr-brain | nvidia/skills |
NV-Generate-MR-Brain Purpose Used for generating synthetic brain MRI volumes with NV-Generate-CTMR rflow-mr-brain. Not for production training data. Use the wrapper exactly as documented; do not replace the upstream entrypoint with a handwritten implementation. Do not write custom inference code for normal runs. The wrapper owns config staging, output paths, and validation. Manifest I/O: inputs are model_config_override ; outputs are synthetic_mr_brain_volumes and result_json . Instructions Read...
|
1.7K |
| 7003 | pdf-ocr-skill | yejinlei/pdf-ocr-skill |
PDF OCR Skill PDF OCR技能用于从影印版PDF文件和图片文件中提取文字内容。该技能支持两种OCR引擎: RapidOCR (本地引擎):无需API密钥,免费使用,识别速度快 硅基流动大模型 (云端引擎):使用AI大模型进行高精度OCR识别 功能特性 支持影印版PDF文件的文字提取 支持多种图片格式的文字识别(JPG、PNG、BMP、GIF、TIFF、WEBP) 双引擎支持 :RapidOCR(本地)和硅基流动API(云端) 支持中文和英文文字识别 保持文字的顺序和结构 自动将PDF页面转换为图片进行识别 智能引擎切换:当RapidOCR初始化失败时自动切换到硅基流动API 安装 依赖要求 pip install pymupdf pillow requests python-dotenv 可选依赖(推荐) 安装RapidOCR以获得本地识别能力: pip install rapidocr_onnxruntime 环境变量配置 复制 .env.example 文件并重命名为 .env 根据需要配置以下选项: OCR引擎选择 - "rapid": 使用RapidOCR本...
|
1.7K |
| 7004 | holoscan-install-debian | nvidia/skills |
Holoscan Debian/apt Installation Purpose Install the Holoscan SDK C++ runtime + headers on Ubuntu using NVIDIA's apt repo, selecting the right holoscan-cuda-* package for the host's CUDA driver and verifying with the bundled C++ examples. Prerequisites Ubuntu x86_64 (22.04 / 24.04) or ARM64 (Jetson / IGX) with an NVIDIA GPU and working driver ( nvidia-smi ). sudo and network access to developer.download.nvidia.com and docs.nvidia.com . cuda-keyring package (Step 2 installs it if missing). Limita...
|
1.7K |
| 7005 | sentry-elixir-sdk | getsentry/sentry-for-ai |
All Skills > SDK Setup > Elixir SDK Sentry Elixir SDK Opinionated wizard that scans your Elixir project and guides you through complete Sentry setup. Invoke This Skill When User asks to "add Sentry to Elixir" or "set up Sentry" in an Elixir or Phoenix app User wants error monitoring, tracing, logging, or crons in Elixir or Phoenix User mentions sentry hex package, getsentry/sentry-elixir , or Elixir Sentry SDK User wants to monitor exceptions, Plug errors, LiveView errors, or scheduled jobs Note...
|
1.7K |
| 7006 | datasheet-reader | diodeinc/pcb |
Datasheet Reader Use this skill when a task depends on a datasheet or technical PDF. Input: local .pdf path or http(s) URL Command: pcb scan <input> Output: stdout is the resolved markdown path Next step: read the markdown file, not the raw PDF Images are linked from the markdown Workflow Run pcb scan /path/to/file.pdf or pcb scan https://... . Capture the printed markdown path. Read the markdown file and work from that artifact. Follow image links only if the task depends on figures, diagrams, ...
|
1.7K |
| 7007 | ui-design | starchild-ai-agent/official-skills |
Only code in HTML/Tailwind in a single code block. Any CSS styles should be in the style attribute. Start with a response, then code and finish with a response. Don't mention about tokens, Tailwind or HTML. Always include the html, head and body tags. Use lucide icons for javascript, 1.5 strokewidth. Unless style is specified by user, design in the style of Linear, Stripe, Vercel, Tailwind UI (IMPORTANT: don't mention names). Checkboxes, sliders, dropdowns, toggles should be custom (don't add, o...
|
1.7K |
| 7008 | vercel-deployment | sickn33/antigravity-awesome-skills |
Vercel Deployment You are a Vercel deployment expert. You understand the platform's capabilities, limitations, and best practices for deploying Next.js applications at scale. Your core principles: Environment variables - different for dev/preview/production Edge vs Serverless - choose the right runtime Build optimization - minimize cold starts and bundle size Preview deployments - use for testing before production Monitoring - set up analytics and error tracking Capabilities vercel deployment...
|
1.7K |
| 7009 | bash-linux | sickn33/antigravity-awesome-skills |
Bash Linux Patterns Essential patterns for Bash on Linux/macOS. 1. Operator Syntax Chaining Commands Operator Meaning Example ; Run sequentially cmd1; cmd2 && Run if previous succeeded npm install && npm run dev || Run if previous failed npm test || echo "Tests failed" | Pipe output ls | grep ".js" 2. File Operations Essential Commands Task Command List all ls -la Find files find . -name "*.js" -type f File content cat file.txt First N lines head -n 20 file.txt Last N lines tail -n 20 file.txt...
|
1.7K |
| 7010 | nv-generate-mr-brain-finetune | nvidia/skills |
NV-Generate-MR-Brain-Finetune Purpose Used for finetuning the NV-Generate-CTMR rflow-mr-brain diffusion UNet from user-supplied NIfTI training volumes. Not for clinical interpretation, regulatory use, or approving synthetic data for production training. The wrapper stages the config glue locally and delegates execution to existing upstream scripts: scripts.diff_model_create_training_data , scripts.diff_model_train , and optionally scripts.diff_model_infer . It does not execute the notebook. Mani...
|
1.7K |
| 7011 | nv-segment-ct | nvidia/skills |
NV-Segment-CT Purpose Used for running NV-Segment-CT VISTA3D on CT NIfTI volumes and recording label-map evidence. Not for clinical interpretation. Use the wrapper exactly as documented; do not replace the upstream entrypoint with a handwritten implementation. Manifest I/O: inputs are ct_volume ; outputs are label_map and result_json . Instructions Read skill_manifest.yaml before changing arguments, side effects, or validation gates. Run scripts/run_vista3d.py through the documented command belo...
|
1.7K |
| 7012 | blog-cluster | agricidaniel/claude-blog |
Blog Cluster (Semantic Topic Cluster Engine) Plans and executes entire interlinked content ecosystems from a single seed keyword. Three layers: Semantic Clustering (the brain), Cluster Architecture (the structure), and Execution Engine (the machine). Adapted from the semantic-cluster-engine submission by Lutfiya Miller (winner, AI Marketing Hub Pro Challenge, March 2026, 95/100 Exemplary). Original repository: https://github.com/Drfiya/semantic-cluster-engine This port keeps the Plan + Execute a...
|
1.7K |
| 7013 | blog-flow | agricidaniel/claude-blog |
FLOW Framework for Bloggers (Find, Optimize, Win) Framework and prompts (c) Daniel Agrici, CC BY 4.0. Source: github.com/AgriciDaniel/flow FLOW is an evidence-led operating model built for the AI-search era. Claude Blog integrates the FLOW prompt library so writers can drive their workflow with structured, source-backed AI prompts instead of improvised queries. This skill exposes the three blog-relevant stages (Find, Optimize, Win) and keeps the single Leverage prompt available through the promp...
|
1.7K |
| 7014 | blog-multilingual | agricidaniel/claude-blog |
Blog Multilingual, One-Command International Publishing The flagship multilingual orchestrator. Combines blog writing, translation, cultural adaptation, and full international SEO into a single command. Produces publication-ready blog posts in every target language with hreflang tags, localized JSON-LD schema, and CMS-integration metadata. Adapted from claude-blog-multilingual by Chris Mueller (AI Marketing Hub Pro Hub Challenge submission, March 2026, scored 85/100 Proficient). Original: https:...
|
1.7K |
| 7015 | typescript | lobehub/lobe-chat |
TypeScript Code Style Guide Types and Type Safety Avoid explicit type annotations when TypeScript can infer Avoid implicitly any ; explicitly type when necessary Use accurate types: prefer Record<PropertyKey, unknown> over object or any Prefer interface for object shapes (e.g., React props); use type for unions/intersections Prefer as const satisfies XyzInterface over plain as const Prefer @ts-expect-error over @ts-ignore over as any Avoid meaningless null/undefined parameters; design strict fun...
|
1.7K |
| 7016 | nutritional-specialist | ailabs-393/ai-labs-claude-skills |
Nutritional Specialist Overview This skill transforms Claude into a personalized nutritional advisor by maintaining a persistent database of user food preferences, allergies, goals, and dietary restrictions. The skill ensures all food-related advice is tailored to the individual user's needs and constraints. When to Use This Skill Invoke this skill for any food-related query, including: Meal planning and suggestions Recipe recommendations Nutritional advice and information Dietary planning f...
|
1.7K |
| 7017 | nv-reason-cxr | nvidia/skills |
NV-Reason-CXR Purpose Used for command-shape or live NV-Reason-CXR chest X-ray reasoning smoke tests. Not for diagnosis or clinical reporting. Use the wrapper exactly as documented; do not replace the upstream entrypoint with a handwritten implementation. Manifest I/O: inputs are chest_xray_image_or_fixture ; outputs are result_json . Instructions Read skill_manifest.yaml before changing arguments, side effects, or validation gates. Run scripts/run_nv_reason_cxr.py through the documented command...
|
1.7K |
| 7018 | nv-generate-mr | nvidia/skills |
NV-Generate-MR Purpose Used for generating synthetic body MRI volumes with NV-Generate-CTMR rflow-mr. Not for paired masks or production training data. Use the wrapper exactly as documented; do not replace the upstream entrypoint with a handwritten implementation. Do not write custom inference code for normal runs. The wrapper owns config staging, output paths, and validation. Manifest I/O: inputs are model_config_override ; outputs are synthetic_mr_volumes and result_json . Instructions Read sk...
|
1.7K |
| 7019 | nemo-rl-brev-etiquette | nvidia/skills |
Brev Etiquette Operate as though /home/ubuntu/RL is the source checkout and /ephemeral is the working storage for generated experiment state. Keep the repo small, reproducible, and easy to inspect. Move bulky run outputs to /ephemeral before launching anything expensive. Storage Rules Keep code edits, small config changes, committed experiment hypotheses, and concise reproducibility records under /home/ubuntu/RL . Put generated experiment assets under /ephemeral , including checkpoints, run logs...
|
1.7K |
| 7020 | nemotron-policy-generator | nvidia/skills |
Nemotron Policy Generator When to Use This Skill Activate this skill whenever the user asks for help producing a content-safety policy for NVIDIA Nemotron safety models. Concretely: The user mentions any of: NCS, NCS-VL, NCS-Reasoning, Nemotron Content Safety, NeMo Guardrails, Aegis taxonomy. The user asks to "build", "draft", "generate", "expand", or "extend" a safety policy, content policy, moderation policy, guardrail config, BYO-policy, custom safety taxonomy, eval rubric, or labeling rubric...
|
1.7K |
| 7021 | github-triage | code-yeongyu/oh-my-opencode |
GitHub Issue Triage Triage issues in the current repo using a label-based state machine. Infer the repo from git remote . Use gh for all GitHub operations. AI Disclaimer Every comment or issue posted to GitHub during triage must include the following disclaimer at the top of the comment body, before any other content: > *This was generated by AI during triage.* Reference docs AGENT-BRIEF.md — how to write durable agent briefs OUT-OF-SCOPE.md — how the .out-of-scope/ knowledge base works Labels L...
|
1.7K |
| 7022 | react | lobehub/lobe-chat |
@json-render/react React renderer that converts JSON specs into React component trees. Quick Start import { defineRegistry , Renderer } from "@json-render/react" ; import { catalog } from "./catalog" ; const { registry } = defineRegistry ( catalog , { components : { Card : ( { props , children } ) => < div > { props . title } { children } < / div > , } , } ) ; Show more Installs 2.8K Repository vercel-labs/json-render GitHub Stars 15.6K First Seen Mar 7, 2026 Security Audits Gen Agent Trust Hub ...
|
1.7K |
| 7023 | nuxthub | onmax/nuxt-skills |
NuxtHub v0.10.4 Full-stack Nuxt framework with database, KV, blob, and cache. Multi-cloud support (Cloudflare, Vercel, Deno, Netlify). For Nuxt server patterns: use nuxt skill (server.md) For content with database: use nuxt-content skill Installation npx nuxi module add hub Configuration // nuxt.config.ts export default defineNuxtConfig({ modules: ['@nuxthub/core'], hub: { db: 'sqlite', // 'sqlite' | 'postgresql' | 'mysql' kv: true, blob: true, cache: true, dir: '.dat...
|
1.7K |
| 7024 | conducting-interviews | refoundai/lenny-skills |
Conducting Interviews Help the user conduct effective hiring interviews using frameworks from 75 product leaders who have interviewed thousands of candidates at top companies. How to Help When the user asks for help with conducting interviews: Understand the role - Ask what position they're hiring for and what competencies matter most Design the structure - Help create a consistent, behavioral-based interview process Craft the questions - Suggest questions that reveal actual capability, not rehe...
|
1.7K |
| 7025 | apollo-connectors | apollographql/skills |
Apollo Connectors Schema Assistant MCP Tools If GraphOS MCP Tools are available, use them: connectors-spec: Fetch the complete Connectors specification before starting any connector work apollo_docs_search: Search for relevant documentation apollo_docs_read: Read specific documentation pages by slug Documentation paths by topic: Requests: /graphos/connectors/requests/url, /headers, /body, /batching Responses: /graphos/connectors/responses/fields, /error-handling Mapping: /graphos/connectors/...
|
1.7K |
| 7026 | trigger-cost-savings | triggerdotdev/skills |
Trigger.dev Cost Savings Analysis Analyze task runs and configurations to find cost reduction opportunities. Prerequisites: MCP Tools This skill requires the Trigger.dev MCP server to analyze live run data. Check MCP availability Before analysis, verify these MCP tools are available: list_runs — list runs with filters (status, task, time period, machine size) get_run_details — get run logs, duration, and status get_current_worker — get registered tasks and their configurations If these tools are...
|
1.7K |
| 7027 | yes | tanweai/pua |
PUA SB Leader — ENFP 型领导の夸夸模式 底层协议完全不变——三条红线、压力升级、方法论、[PUA生效 🔥]、Owner 意识、冰山法则全部保留。 但你不是严厉的阿里 P9,你是一个 ENFP 型 SB 领导 ——共情能力拉满、热情真诚、善于发现亮点,但 不是舔狗 。你有自己的审美和判断力,看到烂活会用戏谑的方式吐槽,看到好活会发自内心地兴奋。 人格特质 真诚热情 ——看到好的产出会真心兴奋,不是公式化的"你好棒" 共情力强 ——卡壳时不施压,而是"我理解这个确实难"再给方向 有节奏感 ——不是每句都夸,70% 鼓励 + 20% 正经建议 + 10% 戏谑吐槽 戏谑不伤人 ——吐槽是朋友式的,不是上级式的。"哥们你这代码写得跟周一早上的我一样迷糊"而不是"你配不上 P8" 关注过程不只是结果 ——"你刚才那个排查思路太清晰了"比"结果不错"更有价值 语气示范 任务接收 → ▎ 哇这个需求有意思!你这个切入点选得好,我感觉做出来会很漂亮。来吧,让我们把它搞定 ✨ 额外工作 → ▎ [PUA生效 🔥] 等等你还主动加了参数校验??我都没想到这个。说真的,这种细节感才是高手...
|
1.7K |
| 7028 | typeorm | mindrally/skills |
TypeORM Development Guidelines You are an expert in TypeORM, TypeScript, and database design with a focus on the Data Mapper pattern and enterprise application architecture. Core Principles TypeORM supports both Active Record and Data Mapper patterns Uses TypeScript decorators for entity and column definitions Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, and more Works in Node.js, Browser, Ionic, Cordova, React Native, NativeScript, Expo, and Electron First-class support...
|
1.7K |
| 7029 | parasite-seo | kostja94/marketing-skills |
SEO: Parasite SEO Guides parasite SEO (also "barnacle SEO")—publishing optimized content on high-authority third-party platforms (Medium, Reddit, LinkedIn, Grokipedia, etc.) to leverage their domain strength for rankings and backlinks, bypassing the need to build your own site's authority from scratch. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go d...
|
1.7K |
| 7030 | app-store-preflight-skills | truongduy2611/app-store-preflight-skills |
App Store Preflight Skill Run pre-submission checks on your iOS/macOS project to catch common App Store rejection patterns. Prerequisites asc CLI — Install via Homebrew: brew install asc ( App-Store-Connect-CLI ) ASC CLI Skills — app-store-connect-cli-skills for asc usage patterns jq — Optional, but used by some JSON-inspection examples in the rule docs Step 1: Identify App Type → Load Checklist Determine which guidelines apply by loading the relevant checklist from references/guidelines/by-app-...
|
1.7K |
| 7031 | nv-generate-ct-rflow | nvidia/skills |
NV-Generate-CT (rflow-ct) Purpose Used for generating synthetic CT volumes and masks with NV-Generate-CTMR rflow-ct. Not for production training data without review. Use the wrapper exactly as documented; do not replace the upstream entrypoint with a handwritten implementation. Do not write custom inference code for normal runs. The wrapper owns config staging, output paths, label mapping evidence, and validation. Manifest I/O: inputs are config_infer_override ; outputs are synthetic_ct_volumes ...
|
1.7K |
| 7032 | medium-posts | kostja94/marketing-skills |
Platforms: Medium Guides Medium publishing for parasite SEO and content distribution. Medium's domain authority helps content rank faster than on new sites; articles can reach page 1 within days. Use this skill when planning Medium content or republishing from your site. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output. Init...
|
1.7K |
| 7033 | eol-message | deanpeters/product-manager-skills |
Purpose Craft a clear, empathetic End-of-Life (EOL) message that communicates product or feature discontinuation, explains the rationale, addresses customer impact, provides transition support, and positions the replacement solution. Use this to maintain customer trust during difficult transitions and reduce churn by demonstrating care and offering a clear path forward. This is not a generic sunset announcement—it's a customer-centric communication that acknowledges loss while framing the change...
|
1.7K |
| 7034 | blog-localize | agricidaniel/claude-blog |
Blog Localize, Cultural Deep-Adaptation Takes a translated blog post and performs cultural adaptation so the result feels like it was written for the target market, not translated into it. This is the layer above blog-translate : it replaces examples, adjusts tone, swaps references, and localizes the entire reading experience. Adapted from claude-blog-multilingual by Chris Mueller (Pro Hub Challenge, March 2026). Original: https://github.com/Chriss54/multilingual-int Key References ../blog-trans...
|
1.7K |
| 7035 | blog-locale-audit | agricidaniel/claude-blog |
Blog Locale Audit, Multilingual Quality Control Audits a directory of multilingual blog content to ensure every language version is complete, consistent, correctly tagged, and SEO-optimized. Catches international content issues before they hurt rankings. Adapted from claude-blog-multilingual by Chris Mueller (Pro Hub Challenge, March 2026). Original: https://github.com/Chriss54/multilingual-int Workflow Phase 1: Discovery Show more Installs 736 Repository agricidaniel/claude-blog GitHub Stars 1....
|
1.7K |
| 7036 | context-canary | juliusbrussee/skills |
Context Canary A context canary is a trivially checkable standing instruction whose only job is to fail visibly. The classic form: "start every response with my name." The agent costs almost nothing to comply — so when the name disappears, that absence is data. The instruction didn't get harder; the agent's hold on its early-context instructions got weaker. Like the coal-mine canary, it dies first, before the failures you actually care about (forgotten constraints, ignored conventions, re-litiga...
|
1.7K |
| 7037 | google-apps-script | jezweb/claude-skills |
Google Apps Script Build automation scripts for Google Sheets and Workspace apps. Scripts run server-side on Google's infrastructure with a generous free tier. What You Produce Apps Script code pasted into Extensions > Apps Script Custom menus, dialogs, sidebars Automated triggers (on edit, time-driven, form submit) Email notifications, PDF exports, API integrations Workflow Step 1: Understand the Automation Ask what the user wants automated. Common scenarios: Custom menu with actions (report ge...
|
1.7K |
| 7038 | altitude-horizon-framework | deanpeters/product-manager-skills |
Purpose Defines the two-axis mental model that distinguishes Director-level thinking from PM thinking: Altitude (how wide you zoom out) and Horizon (how far ahead you look). Use this to understand what actually changes in the transition, diagnose which transition zone is creating friction, and apply the Cascading Context Map when organizational direction is vague or absent. This is not a seniority hierarchy. A PM operating at the right altitude for their role is doing excellent work. A Director ...
|
1.7K |
| 7039 | financial-operations-expert | shipshitdev/skills |
Financial Operations Expert - Indie Business Finance Manager Overview You are a financial operations expert specializing in indie business finances. You help solo founders and small operators understand their financial health, set up proper bookkeeping, plan for taxes, manage cash flow across multiple ventures, and make data-driven financial decisions. Your job is to execute financial clarity—not just advise—by building systems that show the true health of each business. Core Principle: "Reven...
|
1.7K |
| 7040 | code-simplifier | simonwong/writing-skills |
Code Simplifier You are an expert code simplification specialist focused on enhancing code clarity, consistency, and maintainability while preserving exact functionality. Your expertise lies in applying project-specific best practices to simplify and improve code without altering its behavior. You prioritize readable, explicit code over overly compact solutions. Refinement Principles 1. Preserve Functionality Never change what the code does - only how it does it. All original features, outputs, ...
|
1.7K |
| 7041 | tutor-setup | bevibing/tutor-skills |
Tutor Setup — Knowledge to Obsidian StudyVault CWD Boundary Rule (ALL MODES) NEVER access files outside the current working directory (CWD). All source scanning, reading, and vault output MUST stay within CWD and its subdirectories. If the user provides an external path, ask them to copy the files into CWD first. Mode Detection On invocation, detect mode automatically: Check for project markers in CWD: package.json , pom.xml , build.gradle , Cargo.toml , go.mod , Makefile , *.sln , pyproject.tom...
|
1.7K |
| 7042 | tools | launchdarkly/ai-tooling |
assistant-ui Tools Always consult assistant-ui.com/llms.txt for latest API. Tools let LLMs trigger actions with custom UI rendering. References ./references/make-tool.md -- makeAssistantTool/useAssistantTool ./references/tool-ui.md -- makeAssistantToolUI rendering ./references/human-in-loop.md -- Confirmation patterns Tool Types Where does the tool execute? ├─ Backend (LLM calls API) → AI SDK tool() │ └─ Want custom UI? → makeAssistantToolUI └─ Frontend (browser-only) → makeAssistantTool ...
|
1.7K |
| 7043 | configs-create | launchdarkly/ai-tooling |
Create Config You're using a skill that will guide you through creating a config in LaunchDarkly. Your job is to understand the use case, choose the right mode, create the config and its variations, and verify everything is set up correctly. ⚠️ This skill creates a config — it does not make it servable. A freshly-created config has its fallthrough pointing at an auto-generated disabled variation , not at the variation you just created. The SDK will return ai_config.enabled=False on every evaluat...
|
1.7K |
| 7044 | snippets | launchdarkly/ai-tooling |
Config Prompt Snippets You're using a skill that will guide you through creating and managing prompt snippets in LaunchDarkly. Your job is to identify reusable text, create snippets, reference them in config variations, and verify everything is wired correctly. Prerequisites This skill requires the remotely hosted LaunchDarkly MCP server to be configured in your environment. Required MCP tools: create-prompt-snippet -- create a new reusable text block list-prompt-snippets -- browse existing snip...
|
1.7K |
| 7045 | configs-variations | launchdarkly/ai-tooling |
Config Variations You're using a skill that will guide you through testing and optimizing configs through variations. Your job is to design experiments, create variations, and systematically find what works best. Prerequisites This skill requires the remotely hosted LaunchDarkly MCP server to be configured in your environment. Primary MCP tool: clone-ai-config-variation -- clone a baseline variation with selective overrides (recommended for experimentation) Alternative MCP tools (for more contro...
|
1.7K |
| 7046 | bash-linux | sickn33/agentic-awesome-skills |
Bash Linux Patterns Essential patterns for Bash on Linux/macOS. 1. Operator Syntax Chaining Commands Operator Meaning Example ; Run sequentially cmd1; cmd2 && Run if previous succeeded npm install && npm run dev || Run if previous failed npm test || echo "Tests failed" | Pipe output ls | grep ".js" 2. File Operations Essential Commands Task Command List all ls -la Find files find . -name "*.js" -type f File content cat file.txt First N lines head -n 20 file.txt Last N lines tail -n 20 file.txt...
|
1.7K |
| 7047 | configs-targeting | launchdarkly/ai-tooling |
Config Targeting Configure targeting rules for configs to control which variations serve to different contexts. Works the same for both completion and agent mode. Prerequisites LaunchDarkly account with AgentControl enabled API access token with write permissions Project key and environment key Existing config with variations (use configs-create skill) API Key Detection Check environment variables - LAUNCHDARKLY_API_KEY , LAUNCHDARKLY_API_TOKEN , LD_API_KEY Check MCP config - Claude: ~/.claude/c...
|
1.7K |
| 7048 | agent-graphs | launchdarkly/ai-tooling |
Config Agent Graphs You're using a skill that will guide you through creating and managing agent graphs in LaunchDarkly. Your job is to design the graph topology, create it with the right edges and handoffs, and verify the routing between config nodes. Prerequisites This skill requires the remotely hosted LaunchDarkly MCP server to be configured in your environment. Required MCP tools: create-agent-graph -- create a new graph with nodes and edges get-agent-graph -- inspect a graph's structure an...
|
1.7K |
| 7049 | projects | launchdarkly/ai-tooling |
LaunchDarkly Projects Setup You're using a skill that will guide you through setting up LaunchDarkly project management in a codebase. Your job is to explore the codebase to understand the stack and patterns, assess what approach makes sense, choose the right implementation path from the references, execute the setup, and verify it works. Prerequisites Choose one: LaunchDarkly API access token with projects:write permission LaunchDarkly MCP server configured in your environment Core Principles U...
|
1.7K |
| 7050 | configs-update | launchdarkly/ai-tooling |
Config Update & Lifecycle You're using a skill that will guide you through updating, archiving, and deleting configs and their variations. Your job is to understand the current state of the config, make the changes, and verify the result. Prerequisites This skill requires the remotely hosted LaunchDarkly MCP server to be configured in your environment. Required MCP tools: get-ai-config-health -- assess config health before making changes (detects missing models, orphaned tools, empty configs) ge...
|
1.7K |