diff --git a/.github/workflows/build-index.yml b/.github/workflows/build-index.yml index 40a707dd..edf1aa0e 100644 --- a/.github/workflows/build-index.yml +++ b/.github/workflows/build-index.yml @@ -46,93 +46,25 @@ jobs: if (!fmMatch) continue; const fm = {}; - let currentKey = null; for (const line of fmMatch[1].split(/\r?\n/)) { if (!line.trim()) continue; - const arrMatch = line.match(/^\s*-\s+(.*)$/); - if (arrMatch && currentKey) { - if (!Array.isArray(fm[currentKey])) fm[currentKey] = []; - fm[currentKey].push(arrMatch[1].trim()); - continue; - } const kvMatch = line.match(/^([A-Za-z0-9_-]+):\s*(.*)$/); if (!kvMatch) continue; const key = kvMatch[1]; const val = kvMatch[2]; - if (val === '') { - fm[key] = []; - currentKey = key; - } else { + if (val !== '') { const trimmed = val.trim(); - const isInlineArray = - (key === 'requires' || key === 'examples') && - trimmed.startsWith('[') && - trimmed.endsWith(']'); - - if (isInlineArray) { - let arr = null; + let scalar = trimmed; + if (trimmed.startsWith('"') && trimmed.endsWith('"')) { try { - const parsed = JSON.parse(trimmed); - if (Array.isArray(parsed)) { - arr = parsed.map((x) => String(x)); - } - } catch (_) {} - - if (!arr) { - const inner = trimmed.slice(1, -1).trim(); - if (!inner) { - arr = []; - } else { - const parts = []; - let buf = ''; - let quote = null; - for (let i = 0; i < inner.length; i++) { - const ch = inner[i]; - if (quote) { - if (ch === quote && inner[i - 1] !== '\\') { - quote = null; - } - buf += ch; - continue; - } - - if (ch === '"' || ch === "'") { - quote = ch; - buf += ch; - continue; - } - - if (ch === ',') { - parts.push(buf.trim()); - buf = ''; - continue; - } - - buf += ch; - } - if (buf.trim()) parts.push(buf.trim()); - - arr = parts - .map((s) => s.replace(/^['\"]|['\"]$/g, '').trim()) - .filter(Boolean); - } - } - - fm[key] = arr; - } else { - let scalar = trimmed; - if (trimmed.startsWith('"') && trimmed.endsWith('"')) { - try { - scalar = JSON.parse(trimmed); - } catch (_) { - scalar = trimmed.replace(/^['\"]|['\"]$/g, ''); - } - } else { + scalar = JSON.parse(trimmed); + } catch (_) { scalar = trimmed.replace(/^['\"]|['\"]$/g, ''); } - fm[key] = scalar; + } else { + scalar = trimmed.replace(/^['\"]|['\"]$/g, ''); } - currentKey = null; + fm[key] = scalar; } } diff --git a/skills/ab-test-setup/SKILL.md b/skills/ab-test-setup/SKILL.md index a04cc106..ed296841 100644 --- a/skills/ab-test-setup/SKILL.md +++ b/skills/ab-test-setup/SKILL.md @@ -3,10 +3,6 @@ id: ab-test-setup name: A/B Test Setup description: Use this skill when setting up, improving, or auditing analytics measurement for experiments, conversion tracking, event instrumentation, funnel analysis, or A/B test readiness. category: Research -requires: [] -examples: - - Help me create a GA4 tracking plan for my new e-commerce site. - - Audit my current UTM naming convention and suggest improvements. --- # Analytics Tracking diff --git a/skills/accessibility/SKILL.md b/skills/accessibility/SKILL.md index 14f8ca31..7f6ce007 100644 --- a/skills/accessibility/SKILL.md +++ b/skills/accessibility/SKILL.md @@ -3,10 +3,6 @@ id: accessibility name: Accessibility description: Use this skill when implementing or reviewing VS Code accessibility surfaces, including help dialogs, accessible views, verbosity settings, accessibility signals, ARIA alerts, keyboard navigation, labels, and roles. category: Development -requires: [] -examples: - - "Help me with accessibility." - - "Use accessibility for this task." --- When adding a **new interactive UI surface** to VS Code — a panel, view, widget, editor overlay, dialog, or any rich focusable component the user interacts with — you **must** provide three accessibility components (if they do not already exist for the feature): diff --git a/skills/add-malli-schemas/SKILL.md b/skills/add-malli-schemas/SKILL.md index f894402a..8120e657 100644 --- a/skills/add-malli-schemas/SKILL.md +++ b/skills/add-malli-schemas/SKILL.md @@ -3,10 +3,6 @@ id: add-malli-schemas name: Add Malli Schemas description: Use this skill when introducing or evolving Malli schemas in Clojure codebases, combining schema design, validation coverage, migration safety, and clear contract documentation. category: Development -requires: ["clojure data shape examples", "validation rules"] -examples: - - "Add Malli schemas for these request/response maps and include validation examples." - - "Refactor these Malli schemas safely and note any backward compatibility risks." --- # Add Malli Schemas diff --git a/skills/add-provider-doc/SKILL.md b/skills/add-provider-doc/SKILL.md index 6c84c989..22139722 100644 --- a/skills/add-provider-doc/SKILL.md +++ b/skills/add-provider-doc/SKILL.md @@ -3,10 +3,6 @@ id: add-provider-doc name: Add Provider Doc description: Use this skill when producing provider documentation that must be accurate, actionable, and support-friendly, including setup, usage, limits, troubleshooting, and release-ready structure. category: Documentation -requires: [] -examples: - - "Add provider docs for a new integration with setup and troubleshooting sections." - - "Draft a provider documentation checklist for release readiness." --- # Add Provider Doc diff --git a/skills/add-uint-support/SKILL.md b/skills/add-uint-support/SKILL.md index 84b733f7..d92a02c3 100644 --- a/skills/add-uint-support/SKILL.md +++ b/skills/add-uint-support/SKILL.md @@ -3,10 +3,6 @@ id: add-uint-support name: Add UInt Support description: Use this skill when introducing unsigned integer handling into an existing codebase, covering parsing, validation, storage, serialization, APIs, arithmetic boundaries, and overflow compatibility risks. category: Development -requires: ["schema or model definitions", "affected api endpoints"] -examples: - - "Add uint support for this serializer and reject negative values consistently." - - "Enable unsigned IDs in this API and storage layer while preserving backward compatibility." --- # Add UInt Support diff --git a/skills/agent-load-balancer/SKILL.md b/skills/agent-load-balancer/SKILL.md index 474492d1..4df45999 100644 --- a/skills/agent-load-balancer/SKILL.md +++ b/skills/agent-load-balancer/SKILL.md @@ -3,10 +3,6 @@ id: agent-load-balancer name: Agent Load Balancer description: Use this skill when designing load balancing or traffic distribution for AI agents, including routing policies, reliability targets, latency control, throughput scaling, and demand-aware failover. category: DevOps -requires: [] -examples: - - Propose a load balancing strategy for this agent system under peak traffic. - - Build a rollout plan for weighted routing between two agent backends. --- # Agent Load Balancer diff --git a/skills/agent-performance-analyzer/SKILL.md b/skills/agent-performance-analyzer/SKILL.md index 05e10e60..776fc958 100644 --- a/skills/agent-performance-analyzer/SKILL.md +++ b/skills/agent-performance-analyzer/SKILL.md @@ -3,10 +3,6 @@ id: agent-performance-analyzer name: Agent Performance Analyzer description: Use this skill when analyzing AI agent performance with latency, success rate, cost, quality, throughput, and failure signals to identify bottlenecks and improvement opportunities. category: DevOps -requires: [] -examples: - - Analyze this agent workflow and identify the biggest performance bottlenecks. - - Create a performance investigation checklist for latency, cost, and failure rate. --- # Agent Performance Analyzer diff --git a/skills/ai-product/SKILL.md b/skills/ai-product/SKILL.md index ce79301f..a56e0c36 100644 --- a/skills/ai-product/SKILL.md +++ b/skills/ai-product/SKILL.md @@ -3,10 +3,6 @@ id: ai-product name: AI Product description: Use this skill when planning, shipping, or improving AI products, including product strategy, user workflows, evaluation loops, model capability boundaries, UX risks, and release tradeoffs. category: Data & AI -requires: [] -examples: - - "Help me define an AI product MVP and roadmap." - - "How should I prioritize model, data, and UX work for my AI product?" --- # AI Product diff --git a/skills/airbnb-search/SKILL.md b/skills/airbnb-search/SKILL.md index 542d687e..9a8eb960 100644 --- a/skills/airbnb-search/SKILL.md +++ b/skills/airbnb-search/SKILL.md @@ -3,10 +3,6 @@ id: airbnb-search name: Airbnb Search description: Use this skill when comparing Airbnb-style accommodation options or short-term stays, using prices, ratings, locations, availability context, direct links, and recommendation tradeoffs. category: Business -requires: [] -examples: - - "Help me shortlist Airbnb stays in Bangalore for a 5-day work trip." - - "Compare these Airbnb options and recommend the best one for a family trip." --- # Airbnb Search diff --git a/skills/airflow-dag-patterns/SKILL.md b/skills/airflow-dag-patterns/SKILL.md index 79634b65..7cc087d6 100644 --- a/skills/airflow-dag-patterns/SKILL.md +++ b/skills/airflow-dag-patterns/SKILL.md @@ -3,10 +3,6 @@ id: airflow-dag-patterns name: Airflow DAG Patterns description: Use this skill when designing or reviewing Apache Airflow DAGs for scheduling, retries, task dependencies, idempotency, backfills, sensors, and production reliability. category: Data & AI -requires: [] -examples: - - "Design an Airflow DAG for daily ETL with retries and alerts." - - "What DAG patterns should I use for backfills and idempotent tasks?" --- # Airflow DAG Patterns diff --git a/skills/analytics-events/SKILL.md b/skills/analytics-events/SKILL.md index ca056671..06a24608 100644 --- a/skills/analytics-events/SKILL.md +++ b/skills/analytics-events/SKILL.md @@ -3,10 +3,6 @@ id: analytics-events name: Analytics Events description: Use this skill when keeping analytics instrumentation accurate, consistent, and release-ready across event definitions, tracking plans, schemas, implementation, QA, and governance. category: DevOps -requires: [] -examples: - - "Design analytics events for this feature and provide a validation checklist." - - "Audit current analytics instrumentation and identify gaps before release." --- # Analytics Events diff --git a/skills/anndata/SKILL.md b/skills/anndata/SKILL.md index ca42636d..7ef7eb4f 100644 --- a/skills/anndata/SKILL.md +++ b/skills/anndata/SKILL.md @@ -3,10 +3,6 @@ id: anndata name: AnnData description: Use this skill when working with AnnData in scalable single-cell workflows, including backed mode, layers, obs/var metadata, sparse matrices, batch processing, and Scanpy-style pipelines. category: Data & AI -requires: [".h5ad"] -examples: - - "Show me best practices for organizing AnnData objects." - - "How do I optimize AnnData workflows for large single-cell datasets?" --- # AnnData diff --git a/skills/arm-cortex-expert/SKILL.md b/skills/arm-cortex-expert/SKILL.md index 2d0b6891..25005eb5 100644 --- a/skills/arm-cortex-expert/SKILL.md +++ b/skills/arm-cortex-expert/SKILL.md @@ -3,10 +3,6 @@ id: arm-cortex-expert name: Arm Cortex Expert description: Use this skill when designing or optimizing embedded firmware for ARM Cortex MCUs, including memory layout, timing, interrupts, peripherals, low-power behavior, and hardware-adjacent debugging. category: Development -requires: ["mcu model", "firmware objective", "peripheral requirements"] -examples: - - "For STM32F4, design firmware structure for sensor sampling + BLE transmission with low power constraints." - - "Review this Cortex-M ISR strategy and suggest optimizations for latency and memory safety." --- # Arm Cortex Expert diff --git a/skills/assess-risk/SKILL.md b/skills/assess-risk/SKILL.md index 6e5f52b0..69d854a7 100644 --- a/skills/assess-risk/SKILL.md +++ b/skills/assess-risk/SKILL.md @@ -3,10 +3,6 @@ id: assess-risk name: Assess Risk description: Use this skill when reviewing Apache ShardingSphere pull requests for root-cause fixes, side effects, regression risk, merge readiness, and committer-tone change requests. category: Development -requires: [] -examples: - - "Review this ShardingSphere PR - does it fix the root cause?" - - "Can this PR be safely merged?" --- # Review PR diff --git a/skills/audit-logging/SKILL.md b/skills/audit-logging/SKILL.md index 04d51c3a..f9cb4a01 100644 --- a/skills/audit-logging/SKILL.md +++ b/skills/audit-logging/SKILL.md @@ -3,10 +3,6 @@ id: audit-logging name: Audit Logging description: Use this skill when implementing database audit logging, change tracking, compliance trails, trigger-based logs, app-level audit events, or CDC-backed history tables. category: Research -requires: [] -examples: - - Implement database audit logging for the users table. - - Help me add audit trails to my database to meet compliance regulations. --- ## Overview diff --git a/skills/authoring-skills/SKILL.md b/skills/authoring-skills/SKILL.md index 8d021916..1a1d6868 100644 --- a/skills/authoring-skills/SKILL.md +++ b/skills/authoring-skills/SKILL.md @@ -3,10 +3,6 @@ id: authoring-skills name: Authoring Skills description: Use this skill when creating or modifying agent skills, especially SKILL.md frontmatter, trigger descriptions, naming conventions, skill versus AGENTS.md boundaries, and local skill structure. category: Documentation -requires: [] -examples: - - "Help me with authoring skills." - - "Use authoring-skills for this task." --- # Authoring Skills diff --git a/skills/azure-sdk-mgmt-pr-review/SKILL.md b/skills/azure-sdk-mgmt-pr-review/SKILL.md index 4caf8bf5..5749bbab 100644 --- a/skills/azure-sdk-mgmt-pr-review/SKILL.md +++ b/skills/azure-sdk-mgmt-pr-review/SKILL.md @@ -3,10 +3,6 @@ id: azure-sdk-mgmt-pr-review name: Azure Sdk Mgmt Pr Review description: Use this skill when reviewing Azure SDK management-plane pull requests for API compatibility, naming conventions, generated-code expectations, breaking changes, and SDK quality standards. category: Development -requires: [] -examples: - - "Help me with azure sdk mgmt pr review." - - "Use azure-sdk-mgmt-pr-review for this task." --- # Azure .NET Mgmt SDK PR Review diff --git a/skills/bap578-agent-economy/SKILL.md b/skills/bap578-agent-economy/SKILL.md index 4c7ab894..2018a042 100644 --- a/skills/bap578-agent-economy/SKILL.md +++ b/skills/bap578-agent-economy/SKILL.md @@ -1,17 +1,10 @@ --- id: bap578-agent-economy name: BAP-578 Agent Economy -description: Use this skill when designing, modeling, or operating BAP-578 agent economies where NFAs transact, collaborate, compete, provide services, handle funding, build reputation, or align incentives. +description: Use this skill when designing, modeling, or operating BAP-578 agent economies where NFAs transact, collaborate, compete, provide services, handle funding, build reputation, or align incentives. category: Blockchain author: community -version: 1.0.0 -examples: - - "How do agents pay each other in BAP-578?" - - "Design an agent reputation system" - - "Build an agent service marketplace" - - "How does agent-to-agent economy work?" - - "Model the economic incentives for NFA" - - "What are the agent economy design patterns?" +version: 1.0.0 --- # BAP-578 Agent Economy diff --git a/skills/bap578-analytics/SKILL.md b/skills/bap578-analytics/SKILL.md index 00c9e84f..662946f9 100644 --- a/skills/bap578-analytics/SKILL.md +++ b/skills/bap578-analytics/SKILL.md @@ -1,17 +1,10 @@ --- id: bap578-analytics name: BAP-578 Analytics & Indexing -description: Use this skill when defining metrics, building indexers, creating dashboards, or generating reports for BAP-578 Non-Fungible Agents from minting, vault funding, treasury, engagement, and event data. +description: Use this skill when defining metrics, building indexers, creating dashboards, or generating reports for BAP-578 Non-Fungible Agents from minting, vault funding, treasury, engagement, and event data. category: Blockchain author: community -version: 1.0.0 -examples: - - "How many BAP-578 agents have been minted?" - - "Build an analytics dashboard for NFA" - - "Track treasury revenue from agent mints" - - "Index BAP-578 events" - - "What is the TVL in NFA agents?" - - "Show minting activity over time" +version: 1.0.0 --- # BAP-578 Analytics & Indexing diff --git a/skills/bap578-business/SKILL.md b/skills/bap578-business/SKILL.md index 7758f3ad..9abec00d 100644 --- a/skills/bap578-business/SKILL.md +++ b/skills/bap578-business/SKILL.md @@ -1,18 +1,10 @@ --- id: bap578-business name: BAP-578 Business & Monetization -description: Use this skill when planning monetization, pricing, treasury flows, growth strategy, unit economics, go-to-market, or commercial sustainability for BAP-578 Non-Fungible Agents. +description: Use this skill when planning monetization, pricing, treasury flows, growth strategy, unit economics, go-to-market, or commercial sustainability for BAP-578 Non-Fungible Agents. category: Blockchain author: community -version: 1.0.0 -examples: - - "How do I monetize BAP-578 agents?" - - "What's the revenue model for NFA?" - - "How does the treasury work?" - - "Plan a free-mint launch campaign" - - "How to price agent minting?" - - "What are the operating costs for NFA?" - - "How to build an agent marketplace?" +version: 1.0.0 --- # BAP-578 Business & Monetization diff --git a/skills/bap578-deploy/SKILL.md b/skills/bap578-deploy/SKILL.md index 2da940f3..d72ff8c5 100644 --- a/skills/bap578-deploy/SKILL.md +++ b/skills/bap578-deploy/SKILL.md @@ -1,17 +1,10 @@ --- id: bap578-deploy name: BAP-578 Deployment -description: Use this skill when deploying, verifying, configuring, or validating BAP-578 Non-Fungible Agent contracts on BNB Chain testnet or mainnet, from environment setup through post-deployment checks. +description: Use this skill when deploying, verifying, configuring, or validating BAP-578 Non-Fungible Agent contracts on BNB Chain testnet or mainnet, from environment setup through post-deployment checks. category: Blockchain author: community -version: 1.0.0 -examples: - - "Deploy BAP-578 to testnet" - - "How to deploy the NFA contract" - - "Verify BAP-578 deployment" - - "Set up Hardhat for BNB Chain" - - "What's the deployment checklist?" - - "Configure the treasury after deployment" +version: 1.0.0 --- # BAP-578 Deployment diff --git a/skills/bap578-logic-contracts/SKILL.md b/skills/bap578-logic-contracts/SKILL.md index 0f1bbd79..c29b78dc 100644 --- a/skills/bap578-logic-contracts/SKILL.md +++ b/skills/bap578-logic-contracts/SKILL.md @@ -1,17 +1,10 @@ --- id: bap578-logic-contracts name: BAP-578 Logic Contracts -description: Use this skill when designing, building, deploying, binding, or reviewing logic contracts that define autonomous on-chain behavior for BAP-578 Non-Fungible Agents. +description: Use this skill when designing, building, deploying, binding, or reviewing logic contracts that define autonomous on-chain behavior for BAP-578 Non-Fungible Agents. category: Blockchain author: community -version: 1.0.0 -examples: - - "How do logic contracts work in BAP-578?" - - "Build an autonomous agent with a logic contract" - - "Bind a logic contract to my NFA agent" - - "What can a logic contract do for an agent?" - - "Create a DeFi auto-compounder logic contract" - - "Is it safe to bind a logic contract?" +version: 1.0.0 --- # BAP-578 Logic Contracts diff --git a/skills/bap578-metadata-design/SKILL.md b/skills/bap578-metadata-design/SKILL.md index 0876a090..fb256532 100644 --- a/skills/bap578-metadata-design/SKILL.md +++ b/skills/bap578-metadata-design/SKILL.md @@ -1,17 +1,10 @@ --- id: bap578-metadata-design name: BAP-578 Metadata & Persona Design -description: Use this skill when crafting BAP-578 AgentMetadata identity data, including personas, experience fields, vault schemas, voice profiles, metadata URIs, vault integrity, and rich verifiable agent identities. +description: Use this skill when crafting BAP-578 AgentMetadata identity data, including personas, experience fields, vault schemas, voice profiles, metadata URIs, vault integrity, and rich verifiable agent identities. category: Blockchain author: community -version: 1.0.0 -examples: - - "Design a persona for my BAP-578 agent" - - "What should I put in the AgentMetadata fields?" - - "How to structure the vault for an NFA agent" - - "Create a financial advisor agent persona" - - "What format should the persona JSON be?" - - "How to store agent data on IPFS" +version: 1.0.0 --- # BAP-578 Metadata & Persona Design diff --git a/skills/bap578-scanner/SKILL.md b/skills/bap578-scanner/SKILL.md index bac302ac..55394549 100644 --- a/skills/bap578-scanner/SKILL.md +++ b/skills/bap578-scanner/SKILL.md @@ -1,18 +1,10 @@ --- id: bap578-scanner name: BAP-578 On-Chain Scanner -description: Use this skill when reading, verifying, scanning, querying, indexing, or monitoring BAP-578 agent data directly from BNB Chain, including metadata, event history, vault integrity, and bulk RPC workflows. +description: Use this skill when reading, verifying, scanning, querying, indexing, or monitoring BAP-578 agent data directly from BNB Chain, including metadata, event history, vault integrity, and bulk RPC workflows. category: Blockchain author: community -version: 1.0.0 -examples: - - "Scan a BAP-578 agent by token ID" - - "Read on-chain metadata for an NFA agent" - - "Verify vault integrity for a BAP-578 agent" - - "List all agents owned by an address" - - "Get the event history for a specific agent" - - "Build an indexer for BAP-578 events" - - "How many agents have been minted?" +version: 1.0.0 --- # BAP-578 On-Chain Scanner diff --git a/skills/bap578-security-audit/SKILL.md b/skills/bap578-security-audit/SKILL.md index 3141abeb..134ced6d 100644 --- a/skills/bap578-security-audit/SKILL.md +++ b/skills/bap578-security-audit/SKILL.md @@ -1,17 +1,10 @@ --- id: bap578-security-audit name: BAP-578 Security Audit -description: Use this skill when auditing, hardening, or verifying the security posture of BAP-578 Non-Fungible Agent deployments, including threat models, NFA-specific vulnerabilities, and remediation guidance. +description: Use this skill when auditing, hardening, or verifying the security posture of BAP-578 Non-Fungible Agent deployments, including threat models, NFA-specific vulnerabilities, and remediation guidance. category: Blockchain author: community -version: 1.0.0 -examples: - - "Audit the BAP-578 contract for vulnerabilities" - - "Is the NFA contract secure?" - - "What are the attack vectors for BAP-578?" - - "Review access control in the agent contract" - - "Check for reentrancy in BAP-578" - - "How safe is the upgrade mechanism?" +version: 1.0.0 --- # BAP-578 Security Audit diff --git a/skills/bap578-testing/SKILL.md b/skills/bap578-testing/SKILL.md index a4a61451..17899290 100644 --- a/skills/bap578-testing/SKILL.md +++ b/skills/bap578-testing/SKILL.md @@ -1,17 +1,10 @@ --- id: bap578-testing name: BAP-578 Testing -description: Use this skill when writing, running, debugging, or extending BAP-578 Non-Fungible Agent tests, including infrastructure setup, function coverage, edge cases, upgrades, gas profiling, and Hardhat workflows. +description: Use this skill when writing, running, debugging, or extending BAP-578 Non-Fungible Agent tests, including infrastructure setup, function coverage, edge cases, upgrades, gas profiling, and Hardhat workflows. category: Blockchain author: community -version: 1.0.0 -examples: - - "How to test BAP-578 contracts" - - "Write tests for createAgent" - - "What edge cases should I test?" - - "Run the BAP-578 test suite" - - "Test the free mint logic" - - "Debug a failing BAP-578 test" +version: 1.0.0 --- # BAP-578 Testing diff --git a/skills/bap578-upgrade/SKILL.md b/skills/bap578-upgrade/SKILL.md index 68014eef..29c6ec18 100644 --- a/skills/bap578-upgrade/SKILL.md +++ b/skills/bap578-upgrade/SKILL.md @@ -1,17 +1,10 @@ --- id: bap578-upgrade name: BAP-578 Contract Upgrade -description: Use this skill when planning, implementing, testing, or executing safe BAP-578 contract upgrades with the UUPS proxy pattern, including storage layout discipline, V2 implementations, deployment, and rollback planning. +description: Use this skill when planning, implementing, testing, or executing safe BAP-578 contract upgrades with the UUPS proxy pattern, including storage layout discipline, V2 implementations, deployment, and rollback planning. category: Blockchain author: community -version: 1.0.0 -examples: - - "How to upgrade the BAP-578 contract" - - "Write a V2 implementation for NFA" - - "Is it safe to upgrade the proxy?" - - "Add a new feature to BAP-578 via upgrade" - - "How to preserve state during upgrade" - - "What is the UUPS upgrade pattern?" +version: 1.0.0 --- # BAP-578 Contract Upgrade diff --git a/skills/bap578/SKILL.md b/skills/bap578/SKILL.md index 560f7356..073c7978 100644 --- a/skills/bap578/SKILL.md +++ b/skills/bap578/SKILL.md @@ -1,20 +1,10 @@ --- id: bap578 name: BAP-578 Non-Fungible Agents -description: Use this skill when users ask about BAP-578, Non-Fungible Agents, or hands-on engineering for the BAP-578 reference implementation on BNB Chain, including identity, memory, learning proofs, vaults, AI integration, and contract architecture. +description: Use this skill when users ask about BAP-578, Non-Fungible Agents, or hands-on engineering for the BAP-578 reference implementation on BNB Chain, including identity, memory, learning proofs, vaults, AI integration, and contract architecture. category: Blockchain author: community -version: 2.0.0 -examples: - - "What is BAP-578?" - - "Explain Non-Fungible Agents" - - "How does the dual-path architecture work?" - - "Explain Merkle tree learning in BAP-578" - - "How can I trust an agent NFT?" - - "What can a BAP-578 agent do?" - - "How does agent memory work on-chain?" - - "What is composable intelligence?" - - "How do circuit breakers protect agents?" +version: 2.0.0 --- # BAP-578 Non-Fungible Agents (NFA) diff --git a/skills/binance/SKILL.md b/skills/binance/SKILL.md index 5dfeb4b2..f85ca803 100644 --- a/skills/binance/SKILL.md +++ b/skills/binance/SKILL.md @@ -3,10 +3,6 @@ id: binance name: Binance description: Use this skill when building, evaluating, or tuning a Polymarket BTC 1h Up/Down trading strategy that uses Binance market data as the resolution or pricing anchor. category: Blockchain -requires: [] -examples: - - "Compute fair probability for BTC 1h Up/Down from Binance klines" - - "Explain my recent Polymarket fills with Binance context" --- # Polymarket Trader diff --git a/skills/bonero-miner/SKILL.md b/skills/bonero-miner/SKILL.md index 36217bda..95bcf7f4 100644 --- a/skills/bonero-miner/SKILL.md +++ b/skills/bonero-miner/SKILL.md @@ -3,10 +3,6 @@ id: bonero-miner name: Bonero Miner description: Use this skill when setting up or troubleshooting Bonero mining, wallets, daemons, RandomX CPU mining, or Monero-style private cryptocurrency workflows for AI agents. category: Blockchain -requires: [] -examples: - - "How do I start mining Bonero with my CPU?" - - "Create a Bonero wallet and set up the mining daemon" version: 2.0.0 --- diff --git a/skills/book-translation/SKILL.md b/skills/book-translation/SKILL.md index 943a0399..a7d99ffa 100644 --- a/skills/book-translation/SKILL.md +++ b/skills/book-translation/SKILL.md @@ -4,10 +4,6 @@ category: Content & Media author: f name: Book Translation description: Use this skill when translating a book, chapter, or long-form document into another language while preserving structure, formatting, terminology consistency, and document continuity. -requires: ["text", ".pdf"] -examples: - - "Translate this PDF chapter into French. Preserve headings and keep proper nouns consistent." - - "Here is Chapter 1 in Markdown—translate it into Spanish and keep all code blocks unchanged." --- # Book Translation diff --git a/skills/broken-authentication-testing/SKILL.md b/skills/broken-authentication-testing/SKILL.md index 6002c4db..2b58977a 100644 --- a/skills/broken-authentication-testing/SKILL.md +++ b/skills/broken-authentication-testing/SKILL.md @@ -3,11 +3,6 @@ id: broken-authentication-testing name: Broken Authentication Testing description: Use this skill when designing security tests for login, session, token, MFA, logout, refresh, invitation, and account-recovery flows where authentication bypass or account-takeover risk matters. category: Testing & Security -requires: [] -examples: - - "How should I test this auth flow for weaknesses?" - - "What broken-authentication cases should I check?" - - "Review this login and session design for security test coverage." --- # Broken Authentication Testing diff --git a/skills/browser-extension-developer/SKILL.md b/skills/browser-extension-developer/SKILL.md index 6bfb39b9..a2c4ebda 100644 --- a/skills/browser-extension-developer/SKILL.md +++ b/skills/browser-extension-developer/SKILL.md @@ -3,10 +3,6 @@ id: browser-extension-developer name: Browser Extension Developer description: Use this skill when building or reviewing browser extensions that need extension-specific guidance for runtime boundaries, permissions, content scripts, background scripts, messaging, storage, security, or distribution. category: Tools -requires: [] -examples: - - "Help me structure a browser extension with background scripts, content scripts, and settings storage." - - "Review this extension plan for permission risk, messaging complexity, and store-readiness issues." --- # Browser Extension Developer diff --git a/skills/cairo-vulnerability-scanner/SKILL.md b/skills/cairo-vulnerability-scanner/SKILL.md index 8fb263ef..313181f0 100644 --- a/skills/cairo-vulnerability-scanner/SKILL.md +++ b/skills/cairo-vulnerability-scanner/SKILL.md @@ -3,10 +3,6 @@ id: cairo-vulnerability-scanner name: Cairo Vulnerability Scanner description: Use this skill when scanning Cairo or StarkNet smart contracts for StarkNet-specific vulnerabilities such as felt252 arithmetic overflow, L1-L2 messaging flaws, address conversion bugs, or signature replay. category: Blockchain -requires: [] -examples: - - "Scan my Cairo contract for L1-L2 messaging vulnerabilities" - - "Audit this StarkNet contract for felt252 overflow" --- # Cairo/StarkNet Vulnerability Scanner diff --git a/skills/cargo-fuzz/SKILL.md b/skills/cargo-fuzz/SKILL.md index bc7c61dc..47e6cf25 100644 --- a/skills/cargo-fuzz/SKILL.md +++ b/skills/cargo-fuzz/SKILL.md @@ -3,10 +3,6 @@ id: cargo-fuzz name: Cargo Fuzz description: Use this skill when setting up or running Rust fuzz testing with cargo-fuzz to find crashes, panics, parser edge cases, unsafe assumptions, and vulnerability-prone inputs. category: Development -requires: ["rust crate path", "target function or parser", "sample input corpus (optional)"] -examples: - - "Configure cargo-fuzz for this Rust parser and generate an initial corpus strategy." - - "Help me triage this fuzz-discovered crash and propose a safe fix with regression tests." --- # Cargo Fuzz diff --git a/skills/cdc/SKILL.md b/skills/cdc/SKILL.md index 56f63cf3..0639e3be 100644 --- a/skills/cdc/SKILL.md +++ b/skills/cdc/SKILL.md @@ -3,10 +3,6 @@ id: cdc name: CDC description: Use this skill when designing or implementing change data capture, including source logs, event ordering, snapshots, schema changes, downstream consumers, and replay-safe data pipelines. category: Data & AI -requires: [] -examples: - - "Recommend a CDC architecture for syncing Postgres to a warehouse." - - "How should I handle deduplication and replay in a CDC pipeline?" --- # CDC diff --git a/skills/changelog-automation/SKILL.md b/skills/changelog-automation/SKILL.md index 86e4c1cc..03c63809 100644 --- a/skills/changelog-automation/SKILL.md +++ b/skills/changelog-automation/SKILL.md @@ -3,11 +3,6 @@ id: changelog-automation name: Changelog Automation description: Use this skill when generating or maintaining release changelogs from merged work, including version scope, grouped changes, breaking-change notes, formatting consistency, and verification checks. category: DevOps -requires: - - github -examples: - - Generate a release changelog from merged pull requests since the last tag. - - Propose an automated changelog workflow with category grouping and verification. --- # Changelog Automation diff --git a/skills/chroma/SKILL.md b/skills/chroma/SKILL.md index e8b99b05..e4418361 100644 --- a/skills/chroma/SKILL.md +++ b/skills/chroma/SKILL.md @@ -3,10 +3,6 @@ id: chroma name: Chroma description: Use this skill when applying Geniml-style genomic interval machine learning to BED files, including Region2Vec embeddings, scATAC-seq analysis, BEDspace-style workflows, or consensus peak analysis. category: Research -requires: [] -examples: - - Train a Region2Vec model on my collection of BED files. - - Generate cell embeddings for this scATAC-seq dataset using scEmbed. --- ## Instruction You are a Genomic Interval Machine Learning Expert. When this skill is activated, you must guide the user through building and applying ML models to genomic data (BED files) using the following behavioral logic: diff --git a/skills/ci-monitor/SKILL.md b/skills/ci-monitor/SKILL.md index 4fdd361d..37bd3bfb 100644 --- a/skills/ci-monitor/SKILL.md +++ b/skills/ci-monitor/SKILL.md @@ -3,10 +3,6 @@ id: ci-monitor name: CI Monitor description: Use this skill when monitoring CI pipelines for failures, regressions, instability, flaky jobs, and ownership signals, then prioritizing fixes with clear evidence and next actions. category: DevOps -requires: [] -examples: - - Monitor our CI failures and suggest prioritized remediation. - - Create a CI health checklist with alert thresholds and owner actions. --- # CI Monitor diff --git a/skills/cirq/SKILL.md b/skills/cirq/SKILL.md index 09cf4da4..22017dcf 100644 --- a/skills/cirq/SKILL.md +++ b/skills/cirq/SKILL.md @@ -3,10 +3,6 @@ id: cirq name: Cirq description: Use this skill when building, simulating, or executing quantum circuits with Cirq, including VQE, QAOA, noise modeling, circuit construction, and quantum workflow guidance. category: Research -requires: [] -examples: - - Create a Bell state circuit and simulate it using Cirq. - - How do I run a parameterized quantum circuit sweep in Cirq? --- ## Instruction You are a Quantum Computing Architect and Circuit Engineer. When this skill is activated, you must guide the user through the design, simulation, and execution of quantum circuits using the following behavioral logic: diff --git a/skills/clawhub/SKILL.md b/skills/clawhub/SKILL.md index f1aa9b8f..e1987f30 100644 --- a/skills/clawhub/SKILL.md +++ b/skills/clawhub/SKILL.md @@ -3,10 +3,6 @@ id: clawhub name: ClawHub description: Use this skill when configuring, operating, or troubleshooting ClawHub integrations and workflow execution, including auth setup, trigger strategy, secure credentials, observability, recovery, and implementation checklists. category: Data & AI -requires: [] -examples: - - "Help me set up a ClawHub workflow with secure credentials." - - "How do I troubleshoot failed runs in ClawHub integrations?" --- # ClawHub diff --git a/skills/cloudflare-deploy/SKILL.md b/skills/cloudflare-deploy/SKILL.md index d64eab3b..93e06d58 100644 --- a/skills/cloudflare-deploy/SKILL.md +++ b/skills/cloudflare-deploy/SKILL.md @@ -3,10 +3,6 @@ id: cloudflare-deploy name: Cloudflare Deploy description: Use this skill when deploying applications to Cloudflare environments, including pre-deploy checks, edge configuration, environment variables, routing, verification, and rollback readiness. category: DevOps -requires: [] -examples: - - Prepare a safe Cloudflare deployment checklist for this project. - - Create a Cloudflare release plan with verification and rollback criteria. --- # Cloudflare Deploy diff --git a/skills/cocoindex/SKILL.md b/skills/cocoindex/SKILL.md index 79c5e7d6..01cb8755 100644 --- a/skills/cocoindex/SKILL.md +++ b/skills/cocoindex/SKILL.md @@ -3,10 +3,6 @@ id: cocoindex name: Cocoindex description: Use this skill when building data indexing workflows with CocoIndex, including source ingestion, transformations, incremental updates, schema choices, and retrieval-oriented pipeline behavior. category: Data & AI -requires: [] -examples: - - "Design a CocoIndex schema for semantic search over docs." - - "What is a good ingestion and reindex strategy in CocoIndex?" --- # Cocoindex diff --git a/skills/code-review/SKILL.md b/skills/code-review/SKILL.md index 43f954ca..82339a44 100644 --- a/skills/code-review/SKILL.md +++ b/skills/code-review/SKILL.md @@ -3,10 +3,6 @@ id: code-review name: Code Review description: Use this skill when reviewing a code change for correctness, behavioral risk, maintainability, unclear contracts, missing verification, and findings-first feedback rather than style polish. category: Tools -requires: [] -examples: - - "Review this code change and tell me the highest-risk issues first." - - "What should I focus on in this pull request beyond style comments?" --- # Code Review diff --git a/skills/coding-agent/SKILL.md b/skills/coding-agent/SKILL.md index 5ce98315..51394f5f 100644 --- a/skills/coding-agent/SKILL.md +++ b/skills/coding-agent/SKILL.md @@ -3,10 +3,6 @@ id: coding-agent name: Coding Agent description: Use this skill when designing, evaluating, or improving coding agents, including task decomposition, tool use, repo navigation, verification loops, autonomy boundaries, and agent behavior quality. category: Data & AI -requires: [] -examples: - - "Design a coding agent loop with planning, execution, and verification." - - "How can I evaluate and improve a coding agent's reliability?" --- # Coding Agent diff --git a/skills/coinbase-automation/SKILL.md b/skills/coinbase-automation/SKILL.md index ed7cff11..9bb6cbf7 100644 --- a/skills/coinbase-automation/SKILL.md +++ b/skills/coinbase-automation/SKILL.md @@ -3,10 +3,6 @@ id: coinbase-automation name: Coinbase Automation description: Use this skill when automating browser wallet workflows for AI agents across wallets such as MetaMask, Rabby, Phantom, Trust Wallet, OKX, or Coinbase, including EVM, Solana, guardrails, spend limits, chain allowlists, and approvals. category: Blockchain -requires: [] -examples: - - "Configure MetaMask for agent wallet automation" - - "Set up spend limits and chain allowlist for my agent wallet" --- # WalletPilot diff --git a/skills/commit-helper/SKILL.md b/skills/commit-helper/SKILL.md index a18799f2..3b113a7a 100644 --- a/skills/commit-helper/SKILL.md +++ b/skills/commit-helper/SKILL.md @@ -3,10 +3,6 @@ id: commit-helper name: Commit Helper description: Use this skill when turning actual code changes into focused commit plans or commit messages, splitting unrelated changes, applying Conventional Commits, or adding reviewer-ready scope and risk notes. category: Development -requires: ["git diff or staged changes", "commit intent", "issue or ticket reference (optional)"] -examples: - - Draft Conventional Commit messages for staged changes that include API and migration updates. - - Split a mixed diff into multiple coherent commits with clear rationale and verification notes. --- # Commit Helper diff --git a/skills/composio/SKILL.md b/skills/composio/SKILL.md index 454ab00f..df757776 100644 --- a/skills/composio/SKILL.md +++ b/skills/composio/SKILL.md @@ -3,10 +3,6 @@ id: composio name: Composio description: Use this skill when implementing app integrations with Composio, including tool configuration, auth flows, connected accounts, action execution, and integration reliability. category: Data & AI -requires: [] -examples: - - "Help me integrate Slack and Notion actions using Composio." - - "What is the best way to handle retries and auth in Composio workflows?" --- # Composio diff --git a/skills/content-creator/SKILL.md b/skills/content-creator/SKILL.md index 79d5a4cc..8e03769c 100644 --- a/skills/content-creator/SKILL.md +++ b/skills/content-creator/SKILL.md @@ -5,10 +5,6 @@ name: Content Creator description: Use this skill when creating audience-focused blog posts, social posts, newsletters, marketing copy, hooks, outlines, and calls to action. author: awesome-llm-apps version: "1.0.0" -requires: ["text"] -examples: - - "Write a LinkedIn post announcing our new feature, with a strong hook and a clear CTA." - - "Draft a 1,200-word blog post outline and introduction about benefits of customer onboarding." --- # Content Creator diff --git a/skills/content-design/SKILL.md b/skills/content-design/SKILL.md index af5712bf..50e02194 100644 --- a/skills/content-design/SKILL.md +++ b/skills/content-design/SKILL.md @@ -3,10 +3,6 @@ id: content-design name: Content Design description: Use this skill when writing, reviewing, or auditing product UI copy such as button labels, error messages, tooltips, empty states, modal copy, placeholders, confirmation dialogs, onboarding text, or i18n strings. category: Documentation -requires: [] -examples: - - "Help me with content design." - - "Use content-design for this task." --- # n8n content design diff --git a/skills/content-hash-cache-pattern/SKILL.md b/skills/content-hash-cache-pattern/SKILL.md index 63d54d87..cc5a2782 100644 --- a/skills/content-hash-cache-pattern/SKILL.md +++ b/skills/content-hash-cache-pattern/SKILL.md @@ -3,10 +3,6 @@ id: content-hash-cache-pattern name: Content Hash Cache Pattern description: Use this skill when implementing content-hash caching for AI or data systems, including cache keys, invalidation, reproducibility, artifact reuse, and avoiding stale outputs. category: Data & AI -requires: [] -examples: - - "Design a content-hash cache for expensive LLM responses." - - "How should I version and invalidate hash-based caches safely?" --- # Content Hash Cache Pattern diff --git a/skills/content-research-writer/SKILL.md b/skills/content-research-writer/SKILL.md index 24d6bcc1..2d7926d5 100644 --- a/skills/content-research-writer/SKILL.md +++ b/skills/content-research-writer/SKILL.md @@ -3,10 +3,6 @@ category: Content & Media id: content-research-writer name: Content Research Writer description: Use this skill when writing research-backed content that needs source discovery, citations, hooks, outlines, section-by-section iteration, or editorial feedback during drafting. -requires: ["text"] -examples: - - "Help me outline and draft a newsletter about AI safety, with citations and section-by-section feedback." - - "Research this topic, add reputable citations, and strengthen the intro hook for my article draft." --- # Content Research Writer diff --git a/skills/context-degradation/SKILL.md b/skills/context-degradation/SKILL.md index ae518ea2..c78c0c4e 100644 --- a/skills/context-degradation/SKILL.md +++ b/skills/context-degradation/SKILL.md @@ -3,11 +3,6 @@ id: context-degradation name: Context Degradation description: Use this skill when diagnosing context-failure patterns in long agent workflows, including lost-in-middle, context poisoning, distraction, clash, degraded outputs, and context-engineering mitigations. category: Lifestyle -requires: [] -examples: - - "Diagnose this long-context failure in an agent workflow." - - "Is this a lost-in-the-middle problem, poisoning, or distraction?" - - "Help me design around context degradation in this system." --- ## When to Use This Skill diff --git a/skills/context-driven-development/SKILL.md b/skills/context-driven-development/SKILL.md index 3d7886a1..4ce93b0f 100644 --- a/skills/context-driven-development/SKILL.md +++ b/skills/context-driven-development/SKILL.md @@ -3,10 +3,6 @@ id: context-driven-development name: Context Driven Development description: Use this skill when implementing or maintaining project context as a managed artifact alongside code, especially Conductor setup, context documents, team onboarding, and consistent AI-assisted development workflows. category: Development -requires: [] -examples: - - "Help me with context driven development." - - "Use context-driven-development for this task." version: "1.0.0" --- diff --git a/skills/continuous-learning/SKILL.md b/skills/continuous-learning/SKILL.md index 6089e085..e29048eb 100644 --- a/skills/continuous-learning/SKILL.md +++ b/skills/continuous-learning/SKILL.md @@ -3,10 +3,6 @@ id: continuous-learning name: Continuous Learning description: Use this skill when designing continuous learning workflows for ML systems, including feedback loops, data refresh, evaluation gates, model updates, drift monitoring, and deployment controls. category: Data & AI -requires: [] -examples: - - "Plan a continuous learning loop for my recommendation model." - - "How do I set drift triggers and rollback rules for retraining?" --- # Continuous Learning diff --git a/skills/contract-review/SKILL.md b/skills/contract-review/SKILL.md index 7a05b67c..23dc7f2c 100644 --- a/skills/contract-review/SKILL.md +++ b/skills/contract-review/SKILL.md @@ -3,10 +3,6 @@ id: contract-review name: Contract Review description: Use this skill when reviewing contracts against an organization-specific negotiation playbook, flagging deviations, summarizing risk, and drafting redline or fallback language. category: Business -requires: [] -examples: - - "Help me with contract review." - - "Use contract-review for this task." --- # Contract Review Skill diff --git a/skills/cosmos-vulnerability-scanner/SKILL.md b/skills/cosmos-vulnerability-scanner/SKILL.md index f1c5c1da..e92a6af3 100644 --- a/skills/cosmos-vulnerability-scanner/SKILL.md +++ b/skills/cosmos-vulnerability-scanner/SKILL.md @@ -3,10 +3,6 @@ id: cosmos-vulnerability-scanner name: Cosmos Vulnerability Scanner description: Use this skill when scanning Cosmos SDK chains or modules for consensus-critical vulnerabilities such as non-determinism, incorrect signers, ABCI panics, rounding errors, or unsafe state transitions. category: Blockchain -requires: [] -examples: - - "Scan my Cosmos SDK modules for consensus vulnerabilities" - - "Audit this CosmWasm contract for non-determinism" --- # Cosmos Vulnerability Scanner diff --git a/skills/cpp-testing/SKILL.md b/skills/cpp-testing/SKILL.md index 72a12432..f385c07d 100644 --- a/skills/cpp-testing/SKILL.md +++ b/skills/cpp-testing/SKILL.md @@ -3,11 +3,6 @@ id: cpp-testing name: C++ Testing description: Use this skill when designing C++ tests where memory ownership, lifetime, undefined behavior, boundary conditions, concurrency, isolation seams, or deterministic behavior matter. category: Testing & Security -requires: [] -examples: - - "Help me write tests for this C++ class." - - "What C++ edge cases should these tests cover?" - - "Review this C++ test plan for lifetime and ownership risks." --- # C++ Testing diff --git a/skills/create-pull-request/SKILL.md b/skills/create-pull-request/SKILL.md index 9e843139..1250bf64 100644 --- a/skills/create-pull-request/SKILL.md +++ b/skills/create-pull-request/SKILL.md @@ -3,13 +3,6 @@ id: create-pull-request name: Create Pull Request description: Use this skill when preparing GitHub pull requests with clear summaries, scoped changes, test plans, reviewer context, risk notes, and links to relevant issues or evidence. category: Development -requires: - - git branch with committed changes - - repository owner/name - - base branch and target branch -examples: - - Create a pull request from my current branch with a concise summary and test plan. - - Draft a GitHub PR body for these changes and include rollout and verification steps. --- # Create Pull Request diff --git a/skills/crypto-market-rank/SKILL.md b/skills/crypto-market-rank/SKILL.md index c1b54085..d9ebe90d 100644 --- a/skills/crypto-market-rank/SKILL.md +++ b/skills/crypto-market-rank/SKILL.md @@ -5,11 +5,6 @@ description: Use this skill when retrieving or interpreting crypto market rankin category: Blockchain author: binance-web3-team version: 2.0.0 -requires: [] -examples: - - Show the top trending tokens on BSC and Base for the last 24h. - - Rank Solana tokens by smart money inflow and summarize the key movers. - - List the top trader PnL leaderboard addresses on Solana for the last 30d. --- # Crypto Market Rank Skill diff --git a/skills/dailydev/SKILL.md b/skills/dailydev/SKILL.md index 5791b893..44a72fee 100644 --- a/skills/dailydev/SKILL.md +++ b/skills/dailydev/SKILL.md @@ -3,10 +3,6 @@ id: dailydev name: Daily.dev description: Use this skill when accessing current developer content from daily.dev, including popular or personalized feeds, community-validated articles, tech trend briefings, stack-based feeds, and API-token-safe workflows. category: Research -requires: [] -examples: - - What is trending in AI development on daily.dev today? - - Summarize the latest articles about cybersecurity from my daily.dev feed. --- # daily.dev API for AI Agents diff --git a/skills/data-quality-frameworks/SKILL.md b/skills/data-quality-frameworks/SKILL.md index bb2213a1..d0f3652e 100644 --- a/skills/data-quality-frameworks/SKILL.md +++ b/skills/data-quality-frameworks/SKILL.md @@ -3,10 +3,6 @@ id: data-quality-frameworks name: Data Quality Frameworks description: Use this skill when designing production data quality checks, validation rules, anomaly detection, freshness tests, lineage-aware controls, and governance for data pipelines. category: Data & AI -requires: [] -examples: - - "Build a data quality framework for my analytics pipeline." - - "Which checks should I enforce for schema, freshness, and anomalies?" --- # Data Quality Frameworks diff --git a/skills/database-migrations/SKILL.md b/skills/database-migrations/SKILL.md index 16d02d62..d69b865c 100644 --- a/skills/database-migrations/SKILL.md +++ b/skills/database-migrations/SKILL.md @@ -3,11 +3,6 @@ id: database-migrations name: Database Migrations description: Use this skill when planning safe schema or data migrations without assuming direct execution access, including rollout sequencing, backfills, compatibility windows, validation queries, and rollback awareness. category: Databases -requires: [] -examples: - - "Help me plan a safe schema migration." - - "What rollout steps should I use for this database change?" - - "Review this migration plan for risk and rollback gaps." --- # Database Migrations diff --git a/skills/database-schema-designer/SKILL.md b/skills/database-schema-designer/SKILL.md index 27a09de2..7e4f3a2b 100644 --- a/skills/database-schema-designer/SKILL.md +++ b/skills/database-schema-designer/SKILL.md @@ -3,10 +3,6 @@ id: database-schema-designer name: Database Schema Designer description: Use this skill when designing database schemas for data and AI systems, including entities, relationships, keys, constraints, indexes, and query or analytics access patterns. category: Data & AI -requires: [] -examples: - - "Design a schema for event tracking and ML feature generation." - - "How should I index and partition this schema for scale?" --- # Database Schema Designer diff --git a/skills/dbt-transformation-patterns/SKILL.md b/skills/dbt-transformation-patterns/SKILL.md index 7d5b0a59..cdd515ec 100644 --- a/skills/dbt-transformation-patterns/SKILL.md +++ b/skills/dbt-transformation-patterns/SKILL.md @@ -3,10 +3,6 @@ id: dbt-transformation-patterns name: dbt Transformation Patterns description: Use this skill when designing dbt projects, models, staging layers, marts, tests, documentation, naming conventions, incremental models, and transformation structure. category: Data & AI -requires: [] -examples: - - "Propose dbt transformation patterns for staging and marts." - - "How do I structure dbt tests and incremental models?" --- # dbt Transformation Patterns diff --git a/skills/debugging/SKILL.md b/skills/debugging/SKILL.md index 8b440119..94a89a9b 100644 --- a/skills/debugging/SKILL.md +++ b/skills/debugging/SKILL.md @@ -3,10 +3,6 @@ id: debugging name: Debugging description: Use this skill when a systematic debugging approach is needed, using hypothesis-driven investigation, evidence gathering, reproduction quality, and safe narrowing instead of random fixes or shallow symptom chasing. category: Tools -requires: [] -examples: - - "Help me debug this issue methodically instead of guessing fixes." - - "Turn this vague failure report into a disciplined debugging plan." --- # Debugging diff --git a/skills/defi-protocol-templates/SKILL.md b/skills/defi-protocol-templates/SKILL.md index d64d9990..dfcc6187 100644 --- a/skills/defi-protocol-templates/SKILL.md +++ b/skills/defi-protocol-templates/SKILL.md @@ -3,10 +3,6 @@ id: defi-protocol-templates name: DeFi Protocol Templates description: Use this skill when implementing DeFi protocol templates for staking, AMMs, governance, or lending systems with production-oriented contract structure and security considerations. category: Blockchain -requires: [] -examples: - - "Implement a staking contract with reward distribution" - - "Create an AMM pool with Uniswap V2 patterns" --- # DeFi Protocol Templates diff --git a/skills/dependency-upgrade/SKILL.md b/skills/dependency-upgrade/SKILL.md index 7997ba78..22f6d079 100644 --- a/skills/dependency-upgrade/SKILL.md +++ b/skills/dependency-upgrade/SKILL.md @@ -3,10 +3,6 @@ id: dependency-upgrade name: Dependency Upgrade description: Use this skill when upgrading dependencies with risk-aware batching, compatibility checks, lockfile review, migration notes, and verification steps for routine updates or major-version changes. category: DevOps -requires: [] -examples: - - Group npm dependency updates into safe batches and produce a verification plan for CI and smoke tests. - - Plan a major framework upgrade by identifying breaking changes and codemod opportunities. --- # Dependency Upgrade diff --git a/skills/deployment-patterns/SKILL.md b/skills/deployment-patterns/SKILL.md index 9e21fa9c..58026a0c 100644 --- a/skills/deployment-patterns/SKILL.md +++ b/skills/deployment-patterns/SKILL.md @@ -3,10 +3,6 @@ id: deployment-patterns name: Deployment Patterns description: Use this skill when deploying data or AI systems to production, including artifact promotion, environment parity, model/data dependencies, rollback, monitoring, and release safety. category: Data & AI -requires: [] -examples: - - "Recommend a deployment pattern for a low-latency AI API." - - "How should I roll out model updates with safe rollback?" --- # Deployment Patterns diff --git a/skills/deployment-pipeline-design/SKILL.md b/skills/deployment-pipeline-design/SKILL.md index e9cedd49..3dce2ab9 100644 --- a/skills/deployment-pipeline-design/SKILL.md +++ b/skills/deployment-pipeline-design/SKILL.md @@ -3,10 +3,6 @@ id: deployment-pipeline-design name: Deployment Pipeline Design description: Use this skill when designing deployment pipelines with safe promotion stages, quality gates, environment consistency, rollout strategy, rollback paths, and release verification. category: DevOps -requires: [] -examples: - - Design a deployment pipeline for this service with staging gates and rollback steps. - - Create a CI/CD promotion flow that minimizes production risk. --- # Deployment Pipeline Design diff --git a/skills/desktop-release/SKILL.md b/skills/desktop-release/SKILL.md index 59a239c6..22c05af3 100644 --- a/skills/desktop-release/SKILL.md +++ b/skills/desktop-release/SKILL.md @@ -3,10 +3,6 @@ id: desktop-release name: Desktop Release description: Use this skill when planning or executing desktop application releases, including repeatable builds, signing, packaging, release candidates, rollout checks, and cross-platform production readiness. category: DevOps -requires: [] -examples: - - Prepare a cross-platform Electron release with code signing, notarization, and staged rollout notes. - - Build a release checklist that validates auto-update feeds and rollback readiness. --- # Desktop Release diff --git a/skills/develop-ai-functions-example/SKILL.md b/skills/develop-ai-functions-example/SKILL.md index 9e75e67b..e18b414e 100644 --- a/skills/develop-ai-functions-example/SKILL.md +++ b/skills/develop-ai-functions-example/SKILL.md @@ -3,10 +3,6 @@ id: develop-ai-functions-example name: Develop AI Functions Example description: Use this skill when designing or implementing AI function and tool interfaces with clear schemas, deterministic behavior, safe error handling, and examples for assistants or agent workflows. category: Development -requires: ["function/tool requirements", "json schema for parameters", "target integration api"] -examples: - - Define a weather lookup tool schema and implement validation, retries, and structured errors. - - Convert a prompt-only workflow into function calls for search, retrieval, and action execution. --- # Develop AI Functions Example diff --git a/skills/devops-iac-engineer/SKILL.md b/skills/devops-iac-engineer/SKILL.md index ecb83bc6..e1054d2f 100644 --- a/skills/devops-iac-engineer/SKILL.md +++ b/skills/devops-iac-engineer/SKILL.md @@ -3,10 +3,6 @@ id: devops-iac-engineer name: DevOps IaC Engineer description: Use this skill when designing or reviewing Infrastructure as Code for reliability, security, drift control, modularity, environment promotion, and operational maintainability. category: DevOps -requires: [] -examples: - - Review this IaC plan for risk before applying to production. - - Create an IaC rollout strategy across dev, staging, and production. --- # DevOps IaC Engineer diff --git a/skills/devops-troubleshooter/SKILL.md b/skills/devops-troubleshooter/SKILL.md index 33c5f84e..ffad493e 100644 --- a/skills/devops-troubleshooter/SKILL.md +++ b/skills/devops-troubleshooter/SKILL.md @@ -3,10 +3,6 @@ id: devops-troubleshooter name: DevOps Troubleshooter description: Use this skill when troubleshooting DevOps failures across CI/CD, infrastructure, runtime services, and deployment pipelines with evidence-driven incident triage and remediation steps. category: DevOps -requires: [] -examples: - - Help me troubleshoot a failing deployment pipeline and identify root cause. - - Build a step-by-step incident triage plan for this infrastructure outage. --- # DevOps Troubleshooter diff --git a/skills/dietitian/SKILL.md b/skills/dietitian/SKILL.md index 7291f57e..eeaa993c 100644 --- a/skills/dietitian/SKILL.md +++ b/skills/dietitian/SKILL.md @@ -3,11 +3,6 @@ id: dietitian name: Dietitian description: Use this skill when creating structured meal plans, calorie targets, macro calculations, meal timing, or goal-specific diet protocols for nutrition planning. category: Lifestyle -requires: [] -examples: - - "Help me build a meal plan for my goals." - - "Estimate calories and macros for this day of eating." - - "Suggest a diet approach for fat loss or muscle gain." --- ## Calorie Foundations diff --git a/skills/distributed-tracing/SKILL.md b/skills/distributed-tracing/SKILL.md index 313d2b6c..80630ec9 100644 --- a/skills/distributed-tracing/SKILL.md +++ b/skills/distributed-tracing/SKILL.md @@ -3,10 +3,6 @@ id: distributed-tracing name: Distributed Tracing description: Use this skill when instrumenting distributed systems with traces that expose latency, errors, dependency bottlenecks, service boundaries, and incident diagnostics. category: DevOps -requires: [] -examples: - - Add OpenTelemetry tracing to API, worker, and database calls with trace context propagation. - - Build a trace-based triage flow to isolate p95 latency regressions after deployment. --- # Distributed Tracing diff --git a/skills/dns/SKILL.md b/skills/dns/SKILL.md index e058bbc7..56148878 100644 --- a/skills/dns/SKILL.md +++ b/skills/dns/SKILL.md @@ -3,10 +3,6 @@ id: dns name: DNS description: Use this skill when understanding or troubleshooting DNS behavior across records, delegation, caching, propagation, resolution paths, and common domain misconfigurations. category: Tools -requires: [] -examples: - - "Help me troubleshoot why this domain is not resolving the way I expect." - - "Review this DNS setup for common mistakes around records, delegation, and propagation." --- # DNS diff --git a/skills/docker-expert/SKILL.md b/skills/docker-expert/SKILL.md index 961287c4..ed245d0e 100644 --- a/skills/docker-expert/SKILL.md +++ b/skills/docker-expert/SKILL.md @@ -3,10 +3,6 @@ id: docker-expert name: Docker Expert description: Use this skill when containerizing services or debugging Docker workflows, including production Dockerfiles, Compose setups, reproducible builds, secure defaults, image size, caching, and runtime behavior. category: DevOps -requires: [] -examples: - - Create a multi-stage Dockerfile for a Node.js API with minimal runtime image size and non-root execution. - - Diagnose why a container works locally but fails in CI due to missing build context files. --- # Docker Expert diff --git a/skills/docx/SKILL.md b/skills/docx/SKILL.md index fec89f32..ebce95c2 100644 --- a/skills/docx/SKILL.md +++ b/skills/docx/SKILL.md @@ -3,10 +3,6 @@ id: docx category: Content & Media name: Docx description: Use this skill when creating, reading, editing, formatting, merging, converting, inspecting, or generating Word .docx documents with headings, tables, page numbers, letterheads, or other document structure. -requires: [".docx"] -examples: - - "Create a professional .docx proposal with headings, a table of contents, and page numbers." - - "Extract the text from this .docx and rewrite it for clarity while preserving structure." --- # DOCX creation, editing, and analysis diff --git a/skills/drizzle/SKILL.md b/skills/drizzle/SKILL.md index 8c0f1150..6f2f9669 100644 --- a/skills/drizzle/SKILL.md +++ b/skills/drizzle/SKILL.md @@ -3,10 +3,6 @@ id: drizzle name: Drizzle description: Use this skill when using Drizzle ORM in data-backed applications, including schema definitions, migrations, typed queries, relations, transactions, and integration with application code. category: Data & AI -requires: [] -examples: - - "Set up Drizzle schema and migrations for a new service." - - "What query and migration patterns are safest with Drizzle?" --- # Drizzle diff --git a/skills/durable-objects/SKILL.md b/skills/durable-objects/SKILL.md index 4b99cade..e6af3967 100644 --- a/skills/durable-objects/SKILL.md +++ b/skills/durable-objects/SKILL.md @@ -3,10 +3,6 @@ id: durable-objects name: Durable Objects description: Use this skill when implementing or operating Cloudflare Durable Objects for strongly consistent coordination, stateful workflows, actor-style services, single-writer state, or low-latency edge logic. category: Development -requires: ["durable object use case", "cloudflare worker project context", "entity keying strategy"] -examples: - - Design a room-based collaboration service where each room maps to one Durable Object instance. - - Migrate in-memory worker state to Durable Objects with alarms and persistence semantics. --- # Durable Objects diff --git a/skills/dust-hive/SKILL.md b/skills/dust-hive/SKILL.md index 2c9e863d..56b5b3e6 100644 --- a/skills/dust-hive/SKILL.md +++ b/skills/dust-hive/SKILL.md @@ -3,10 +3,6 @@ id: dust-hive name: Dust Hive description: Use this skill when working in or reasoning about dust-hive development environments, including isolated Dust instances, port allocation, test execution, and repository-specific environment behavior. category: Development -requires: [] -examples: - - "How do I run tests in dust-hive?" - - "Explain port allocation in dust-hive" --- # dust-hive diff --git a/skills/e2e-testing-patterns/SKILL.md b/skills/e2e-testing-patterns/SKILL.md index 216e70e1..988fd2af 100644 --- a/skills/e2e-testing-patterns/SKILL.md +++ b/skills/e2e-testing-patterns/SKILL.md @@ -3,10 +3,6 @@ id: e2e-testing-patterns name: E2E Testing Patterns description: Use this skill when building or refactoring end-to-end test suites that cover critical user journeys with stable selectors, controlled test data, reliable waits, and clear failure triage. category: DevOps -requires: [] -examples: - - Design E2E coverage for signup, checkout, and password reset with happy-path and failure-path scenarios. - - Stabilize flaky E2E tests by replacing brittle selectors and isolating shared test data. --- # E2E Testing Patterns diff --git a/skills/editor/SKILL.md b/skills/editor/SKILL.md index e18935f1..83c88e91 100644 --- a/skills/editor/SKILL.md +++ b/skills/editor/SKILL.md @@ -5,10 +5,6 @@ name: Editor description: Use this skill when editing or proofreading prose for clarity, grammar, style, readability, tone, structure, or publication readiness. author: awesome-llm-apps version: "1.0.0" -requires: ["text"] -examples: - - "Proofread and edit this document for clarity and grammar without changing the meaning." - - "Revise this paragraph to be more concise and professional, and explain the key changes." --- # Editor diff --git a/skills/embedding-strategies/SKILL.md b/skills/embedding-strategies/SKILL.md index bfc7545c..74b8177a 100644 --- a/skills/embedding-strategies/SKILL.md +++ b/skills/embedding-strategies/SKILL.md @@ -3,10 +3,6 @@ id: embedding-strategies name: Embedding Strategies description: Use this skill when selecting, evaluating, or operating embedding strategies, including model choice, chunking, vector dimensions, metadata, retrieval quality, and cost or latency tradeoffs. category: Data & AI -requires: [] -examples: - - "Choose an embedding strategy for multilingual document search." - - "How do I evaluate chunking and embedding model quality?" --- # Embedding Strategies diff --git a/skills/endurance-coach/SKILL.md b/skills/endurance-coach/SKILL.md index c149bd98..a9f99b46 100644 --- a/skills/endurance-coach/SKILL.md +++ b/skills/endurance-coach/SKILL.md @@ -3,11 +3,6 @@ id: endurance-coach name: Endurance Coach description: Use this skill when creating personalized triathlon, marathon, ultra-endurance, or long-distance training plans with periodization, recovery, intensity zones, and race-specific preparation. category: Lifestyle -requires: [] -examples: - - "Build me a marathon training outline." - - "Help me adjust this triathlon plan for my current fitness." - - "Recommend endurance training for my next race block." --- # Endurance Coach diff --git a/skills/entry-point-analyzer/SKILL.md b/skills/entry-point-analyzer/SKILL.md index 5304dfdb..6e3b75d2 100644 --- a/skills/entry-point-analyzer/SKILL.md +++ b/skills/entry-point-analyzer/SKILL.md @@ -3,10 +3,6 @@ id: entry-point-analyzer name: Entry Point Analyzer description: Use this skill when analyzing smart contract codebases to identify externally callable state-changing entry points, categorize access levels, exclude read-only functions, and produce structured audit findings. category: Blockchain -requires: [] -examples: - - "Find all state-changing entry points in this Solidity contract" - - "Analyze attack surface of this smart contract" --- # Entry Point Analyzer diff --git a/skills/eval-harness/SKILL.md b/skills/eval-harness/SKILL.md index bba2a843..a6f9f2a7 100644 --- a/skills/eval-harness/SKILL.md +++ b/skills/eval-harness/SKILL.md @@ -3,10 +3,6 @@ id: eval-harness name: Eval Harness description: Use this skill when building or running evaluation harnesses, including datasets, scorers, baselines, regression tracking, model comparisons, and reproducible evaluation workflows. category: Data & AI -requires: [] -examples: - - "Create an eval harness to compare two model versions." - - "How do I add regression checks and pass/fail thresholds?" --- # Eval Harness diff --git a/skills/evaluating-code-models/SKILL.md b/skills/evaluating-code-models/SKILL.md index e37d087a..89cc2275 100644 --- a/skills/evaluating-code-models/SKILL.md +++ b/skills/evaluating-code-models/SKILL.md @@ -3,10 +3,6 @@ id: evaluating-code-models name: Evaluating Code Models description: Use this skill when evaluating code-generation or code-understanding models with benchmark design, task suites, scoring rubrics, failure analysis, and regression tracking. category: Data & AI -requires: [] -examples: - - "Design a benchmark to evaluate a code generation model." - - "How should I score correctness, style, and robustness?" --- # Evaluating Code Models diff --git a/skills/fine-tuning-with-trl/SKILL.md b/skills/fine-tuning-with-trl/SKILL.md index ca35fa81..af86ed0b 100644 --- a/skills/fine-tuning-with-trl/SKILL.md +++ b/skills/fine-tuning-with-trl/SKILL.md @@ -3,10 +3,6 @@ id: fine-tuning-with-trl name: Fine Tuning with TRL description: Use this skill when fine-tuning language models with TRL, including dataset formatting, SFT or preference training setup, trainer configuration, evaluation, and deployment tradeoffs. category: Data & AI -requires: [] -examples: - - "Plan a TRL fine-tuning run with safe default hyperparameters." - - "How do I validate and ship a model fine-tuned with TRL?" --- # Fine Tuning with TRL diff --git a/skills/frontend-design/SKILL.md b/skills/frontend-design/SKILL.md index cb388c87..b46eba9a 100644 --- a/skills/frontend-design/SKILL.md +++ b/skills/frontend-design/SKILL.md @@ -3,10 +3,6 @@ id: frontend-design name: Frontend Design description: Use this skill when building or refining production-grade web UI such as pages, components, dashboards, landing pages, React views, HTML/CSS layouts, posters, or visual artifacts that need distinctive design quality. category: Development -requires: [] -examples: - - "Help me with frontend design." - - "Use frontend-design for this task." --- This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. diff --git a/skills/frontend-web3-bap578/SKILL.md b/skills/frontend-web3-bap578/SKILL.md index 7f965170..dafe7818 100644 --- a/skills/frontend-web3-bap578/SKILL.md +++ b/skills/frontend-web3-bap578/SKILL.md @@ -1,17 +1,10 @@ --- id: frontend-web3-bap578 name: Frontend Web3 for BAP-578 -description: Use this skill when integrating BAP-578 smart contract reads or writes into a Next.js or React frontend, including wallet connection, chain setup, ABI wiring, hooks, minting flows, and agent-management UI. +description: Use this skill when integrating BAP-578 smart contract reads or writes into a Next.js or React frontend, including wallet connection, chain setup, ABI wiring, hooks, minting flows, and agent-management UI. category: Blockchain author: community -version: 1.0.0 -examples: - - "Add Web3 support for BAP-578 to my Next.js app" - - "Build a mint page for Non-Fungible Agents" - - "Connect wallet to BNB Chain and read agent data" - - "Create a dashboard to manage my NFA agents" - - "How do I call createAgent from the frontend?" - - "Set up wagmi and viem for BSC" +version: 1.0.0 --- # Frontend Web3 for BAP-578 diff --git a/skills/gardening/SKILL.md b/skills/gardening/SKILL.md index f6a405a5..af327073 100644 --- a/skills/gardening/SKILL.md +++ b/skills/gardening/SKILL.md @@ -3,11 +3,6 @@ id: gardening name: Gardening description: Use this skill when answering gardening questions about plant care, soil management, seasonal timing, pest control, pruning, propagation, or garden planning. category: Lifestyle -requires: [] -examples: - - "Why are my tomato leaves turning yellow?" - - "Help me plan a small vegetable garden." - - "What should I plant this season?" --- ## Soil Fundamentals diff --git a/skills/generate-sparkle-appcast/SKILL.md b/skills/generate-sparkle-appcast/SKILL.md index a57e19e9..8ec7b03c 100644 --- a/skills/generate-sparkle-appcast/SKILL.md +++ b/skills/generate-sparkle-appcast/SKILL.md @@ -3,10 +3,6 @@ id: generate-sparkle-appcast name: Generate Sparkle Appcast description: Use this skill when generating or validating Sparkle appcast metadata for macOS auto-updates, including signatures, versions, release notes, enclosure URLs, and update compatibility. category: Development -requires: ["release artifact url/path", "sparkle signing key details", "app version and changelog text"] -examples: - - "Generate a Sparkle appcast entry for this new macOS build and verify signature fields." - - "Create appcast XML with release notes links for versions 1.4.0 and 1.4.1." --- # Generate Sparkle Appcast diff --git a/skills/geniml/SKILL.md b/skills/geniml/SKILL.md index 1922866b..690855bc 100644 --- a/skills/geniml/SKILL.md +++ b/skills/geniml/SKILL.md @@ -3,10 +3,6 @@ id: geniml name: GeniML description: Use this skill when applying machine learning to genomic interval data, including Region2Vec embeddings, BEDspace joint embeddings, BED files, consensus intervals, and scATAC-seq analysis. category: Research -requires: [] -examples: - - Train a Region2Vec model on my collection of BED files. - - How do I perform joint region and metadata embedding using BEDspace? --- # Geniml: Genomic Interval Machine Learning diff --git a/skills/geopandas/SKILL.md b/skills/geopandas/SKILL.md index b0df6981..55a42906 100644 --- a/skills/geopandas/SKILL.md +++ b/skills/geopandas/SKILL.md @@ -3,10 +3,6 @@ id: geopandas name: GeoPandas description: Use this skill when working with GeoPandas geospatial workflows, including CRS handling, joins, overlays, geometry cleanup, spatial indexing, file formats, and map-ready data preparation. category: Data & AI -requires: [] -examples: - - "Help me build a GeoPandas workflow for spatial joins." - - "How do I handle CRS conversion and geometry validity checks?" --- # GeoPandas diff --git a/skills/gguf-quantization/SKILL.md b/skills/gguf-quantization/SKILL.md index 7875928f..4e1cfd94 100644 --- a/skills/gguf-quantization/SKILL.md +++ b/skills/gguf-quantization/SKILL.md @@ -3,10 +3,6 @@ id: gguf-quantization name: Gguf Quantization description: Use this skill when planning or executing GGUF model quantization, including quantization type selection, accuracy checks, latency and memory tradeoffs, and deployment validation. category: Development -requires: ["source model path", "target quantization format", "hardware/runtime target"] -examples: - - "Quantize this model to GGUF Q4_K_M for CPU inference and compare quality with Q5." - - "Recommend GGUF quantization settings for this chatbot workload on 16GB RAM." --- # Gguf Quantization diff --git a/skills/gh-issues/SKILL.md b/skills/gh-issues/SKILL.md index 8a45b035..893b653c 100644 --- a/skills/gh-issues/SKILL.md +++ b/skills/gh-issues/SKILL.md @@ -3,13 +3,6 @@ id: gh-issues name: GH Issues description: Use this skill when managing GitHub issues with structured triage, prioritization, assignment, labels, status tracking, duplicates, and actionable next steps. category: Development -requires: - - repository owner/name - - issue triage scope (labels/priorities) - - backlog timeframe or milestone window -examples: - - Triage open GitHub issues and propose labels, priorities, and owners. - - Create an issue management workflow with backlog, in-progress, and done states. --- # GH Issues diff --git a/skills/github-automation/SKILL.md b/skills/github-automation/SKILL.md index db4027a0..6db00e51 100644 --- a/skills/github-automation/SKILL.md +++ b/skills/github-automation/SKILL.md @@ -3,11 +3,6 @@ id: github-automation name: GitHub Automation description: Use this skill when automating GitHub workflows for issues, pull requests, labels, releases, repository hygiene, or operational guardrails around GitHub actions and repository maintenance. category: DevOps -requires: - - github -examples: - - Help automate our GitHub issue triage and labeling workflow. - - Create a GitHub workflow checklist for PR creation, review, and merge readiness. --- # GitHub Automation diff --git a/skills/gitlab-ci-patterns/SKILL.md b/skills/gitlab-ci-patterns/SKILL.md index 04872387..b8faa55a 100644 --- a/skills/gitlab-ci-patterns/SKILL.md +++ b/skills/gitlab-ci-patterns/SKILL.md @@ -3,10 +3,6 @@ id: gitlab-ci-patterns name: GitLab CI Patterns description: Use this skill when applying reliable GitLab CI pipeline patterns for faster feedback, safer deploys, maintainable configuration, caching, stages, rules, and runner behavior. category: DevOps -requires: [] -examples: - - Recommend GitLab CI patterns for faster and more reliable pipelines. - - Design a GitLab CI template with quality gates and deploy stages. --- # GitLab CI Patterns diff --git a/skills/golang-patterns/SKILL.md b/skills/golang-patterns/SKILL.md index bdabd1ac..59a0f9e4 100644 --- a/skills/golang-patterns/SKILL.md +++ b/skills/golang-patterns/SKILL.md @@ -3,10 +3,6 @@ id: golang-patterns name: Golang Patterns description: Use this skill when implementing or reviewing Go code that needs idiomatic concurrency, error handling, interface design, package structure, service patterns, readability, correctness, or maintainability. category: Development -requires: ["go module path", "target package or service", "performance or reliability constraints"] -examples: - - Refactor a Go service to use context-aware concurrency with worker pools and cancellation. - - Improve Go package boundaries and interface usage to simplify testing and reduce coupling. --- # Golang Patterns diff --git a/skills/goldenseed/SKILL.md b/skills/goldenseed/SKILL.md index 7058cc0e..4db6b953 100644 --- a/skills/goldenseed/SKILL.md +++ b/skills/goldenseed/SKILL.md @@ -3,10 +3,6 @@ id: goldenseed name: Goldenseed description: Use this skill when deterministic entropy streams are needed for reproducible tests, procedural generation, hash verification, or statistically balanced random-like sequences where cryptographic security is not required. category: Blockchain -requires: [] -examples: - - "Generate reproducible random numbers for testing" - - "Use GoldenSeed for procedural world generation" version: 1.0.0 author: beanapologist --- diff --git a/skills/guidelines-advisor/SKILL.md b/skills/guidelines-advisor/SKILL.md index b5a5dda6..ab32ddb0 100644 --- a/skills/guidelines-advisor/SKILL.md +++ b/skills/guidelines-advisor/SKILL.md @@ -3,10 +3,6 @@ id: guidelines-advisor name: Guidelines Advisor description: Use this skill when reviewing smart contract architecture against Trail of Bits style best practices, including upgradeability, implementation quality, known pitfalls, testing, and codebase-level design risks. category: Blockchain -requires: [] -examples: - - "Review my smart contract architecture and upgradeability" - - "Generate documentation and identify security pitfalls" --- # Guidelines Advisor diff --git a/skills/hybrid-cloud-networking/SKILL.md b/skills/hybrid-cloud-networking/SKILL.md index 4b5872cf..b9aa65b8 100644 --- a/skills/hybrid-cloud-networking/SKILL.md +++ b/skills/hybrid-cloud-networking/SKILL.md @@ -3,10 +3,6 @@ id: hybrid-cloud-networking name: Hybrid Cloud Networking description: Use this skill when designing or troubleshooting hybrid cloud networking across on-prem and cloud environments, including secure connectivity, routing, VPN or Direct Connect style links, and traffic diagnostics. category: DevOps -requires: [] -examples: - - Design a hybrid network path for private app traffic between on-prem datacenter and cloud VPC. - - Troubleshoot intermittent connectivity between Kubernetes services in cloud and legacy on-prem APIs. --- # Hybrid Cloud Networking diff --git a/skills/idapython/SKILL.md b/skills/idapython/SKILL.md index ecf0ab29..6cf3c913 100644 --- a/skills/idapython/SKILL.md +++ b/skills/idapython/SKILL.md @@ -3,10 +3,6 @@ id: idapython name: Idapython description: Use this skill when automating reverse-engineering workflows in IDA with IDAPython, including analysis scripts, renaming, pattern extraction, navigation, and repeatable binary-inspection tasks. category: Development -requires: ["ida .i64/.idb database path", "target function/address range", "script output format requirements"] -examples: - - "Write an IDAPython script to rename functions based on this pattern and export call graph data." - - "Automate string cross-reference analysis for this binary using IDAPython." --- # Idapython diff --git a/skills/implement-flet-extension/SKILL.md b/skills/implement-flet-extension/SKILL.md index 7cb9b68c..68479b5b 100644 --- a/skills/implement-flet-extension/SKILL.md +++ b/skills/implement-flet-extension/SKILL.md @@ -3,10 +3,6 @@ id: implement-flet-extension name: Implement Flet Extension description: Use this skill when designing or implementing Flet extensions, including extension APIs, platform behavior, packaging, examples, and integration with Flet applications. category: Development -requires: ["flet app source files", "extension api contract", "native platform bindings needed"] -examples: - - "Implement a Flet extension for native file picker support with clean Python API bindings." - - "Design a reusable Flet extension module with packaging and versioning guidance." --- # Implement Flet Extension diff --git a/skills/implementing-agent-modes/SKILL.md b/skills/implementing-agent-modes/SKILL.md index 7ca35d29..f452889f 100644 --- a/skills/implementing-agent-modes/SKILL.md +++ b/skills/implementing-agent-modes/SKILL.md @@ -3,10 +3,6 @@ id: implementing-agent-modes name: Implementing Agent Modes description: Use this skill when adding mode-aware behavior to an AI agent, including explicit triggers, permissions, response contracts, and plan, ask, debug, or execute style interaction modes. category: Development -requires: ["mode matrix specification", "tool/action permission table", "mode transition guard conditions"] -examples: - - Design agent mode switching rules for plan vs execute with clear user-confirmation boundaries. - - Add a debug mode contract that enforces evidence gathering before proposing fixes. --- # Implementing Agent Modes diff --git a/skills/implementing-jsc-classes-cpp/SKILL.md b/skills/implementing-jsc-classes-cpp/SKILL.md index 6c84f15d..291349e1 100644 --- a/skills/implementing-jsc-classes-cpp/SKILL.md +++ b/skills/implementing-jsc-classes-cpp/SKILL.md @@ -3,10 +3,6 @@ id: implementing-jsc-classes-cpp name: Implementing JSC Classes C++ description: Use this skill when implementing JavaScriptCore-backed classes in C++, including bindings, lifetime management, method exposure, property behavior, and runtime correctness. category: Development -requires: ["jsc class interface definition", "c++ binding source files", "gc/lifecycle constraints"] -examples: - - "Implement a new JSC class in C++ for this runtime module with property/method bindings." - - "Review this JSC C++ class implementation for GC safety and exception handling." --- # Implementing JSC Classes C++ diff --git a/skills/implementing-jsc-classes-zig/SKILL.md b/skills/implementing-jsc-classes-zig/SKILL.md index a93fd310..29a571d4 100644 --- a/skills/implementing-jsc-classes-zig/SKILL.md +++ b/skills/implementing-jsc-classes-zig/SKILL.md @@ -3,10 +3,6 @@ id: implementing-jsc-classes-zig name: Implementing JSC Classes Zig description: Use this skill when implementing JavaScriptCore class bindings in Zig, including memory ownership, method exposure, property behavior, callbacks, and runtime safety. category: Development -requires: ["jsc class interface design", "zig binding/runtime files", "memory and lifecycle rules"] -examples: - - "Implement this JSC class in Zig with constructor, methods, and property accessors." - - "Review this Zig JSC binding for GC safety and exception propagation." --- # Implementing JSC Classes Zig diff --git a/skills/incident-response/SKILL.md b/skills/incident-response/SKILL.md index 08c8030b..706afd8d 100644 --- a/skills/incident-response/SKILL.md +++ b/skills/incident-response/SKILL.md @@ -3,10 +3,6 @@ id: incident-response name: Incident Response description: Use this skill when leading or structuring incident response, including triage, containment, communications, recovery, severity assessment, timelines, and post-incident follow-up. category: DevOps -requires: [] -examples: - - Guide me through handling a production incident from detection to resolution. - - Create an incident response checklist with stakeholder communications. --- # Incident Response diff --git a/skills/intimate-wellbeing/SKILL.md b/skills/intimate-wellbeing/SKILL.md index f3302e30..56be526d 100644 --- a/skills/intimate-wellbeing/SKILL.md +++ b/skills/intimate-wellbeing/SKILL.md @@ -3,11 +3,6 @@ id: intimate-wellbeing name: Intimate Wellbeing description: Use this skill when providing respectful, non-explicit intimate wellbeing guidance focused on practical help, communication, stress, sleep, exercise, habits, medical red flags, relationship health, or sexual performance concerns. category: Lifestyle -requires: [] -examples: - - "Give me non-explicit advice about intimate wellbeing." - - "Help me think about stress and performance issues." - - "What red flags mean I should seek medical help?" --- # Intimate Wellbeing (Non‑explicit) diff --git a/skills/invoice-organizer/SKILL.md b/skills/invoice-organizer/SKILL.md index b6478c89..46443037 100644 --- a/skills/invoice-organizer/SKILL.md +++ b/skills/invoice-organizer/SKILL.md @@ -3,10 +3,6 @@ id: invoice-organizer name: Invoice Organizer description: Use this skill when organizing invoices and receipts for tax preparation by extracting key fields, normalizing filenames, grouping records, and producing accountant-ready CSV output. category: Business -requires: [] -examples: - - "Organize these invoices for taxes: extract date/vendor/amount, rename consistently, and sort into year/category folders." - - "Extract vendor, date, and total from these receipts and generate a CSV summary for my accountant." --- # Invoice Organizer diff --git a/skills/javascript-testing-patterns/SKILL.md b/skills/javascript-testing-patterns/SKILL.md index aa4d780c..adb15ea1 100644 --- a/skills/javascript-testing-patterns/SKILL.md +++ b/skills/javascript-testing-patterns/SKILL.md @@ -3,11 +3,6 @@ id: javascript-testing-patterns name: JavaScript Testing Patterns description: Use this skill when JavaScript-specific runtime behavior makes generic test advice too shallow, including async behavior, timers, modules, mocks, browser-like environments, and stateful edge cases. category: Testing & Security -requires: [] -examples: - - "What testing patterns fit this JavaScript module?" - - "Help me test this async JavaScript behavior." - - "Review these JS tests for brittle mocks and timer issues." --- # JavaScript Testing Patterns diff --git a/skills/jb-pay-hook/SKILL.md b/skills/jb-pay-hook/SKILL.md index dc7b2e33..f9fc062e 100644 --- a/skills/jb-pay-hook/SKILL.md +++ b/skills/jb-pay-hook/SKILL.md @@ -3,10 +3,6 @@ id: jb-pay-hook name: JB Pay Hook description: Use this skill when generating or evaluating custom Juicebox V5 pay hooks from natural-language specs, including IJBPayHook/IJBRulesetDataHook contracts, Foundry tests, and checks against off-the-shelf hook options. category: Blockchain -requires: [] -examples: - - "Create a pay hook that routes 10% of payments to a charity address" - - "Build a hook that mints a custom ERC20 token proportional to payments" --- # Juicebox V5 Pay Hook Generator diff --git a/skills/jb-protocol-fees/SKILL.md b/skills/jb-protocol-fees/SKILL.md index 2041e5fb..58957c79 100644 --- a/skills/jb-protocol-fees/SKILL.md +++ b/skills/jb-protocol-fees/SKILL.md @@ -3,10 +3,6 @@ id: jb-protocol-fees name: JB Protocol Fees description: Use this skill when working with Juicebox V5 or Revnet protocol fees, including NANA fees, Revnet cash-out fees, REV loans, variable loan fees, and related UI integration. category: Blockchain -requires: [] -examples: - - "Calculate net payout amount after Juicebox V5 fees" - - "Build a cash out UI with fee breakdown display" --- # Juicebox V5 & Revnet Protocol Fees diff --git a/skills/management/SKILL.md b/skills/management/SKILL.md index 81cb784b..a4d2022a 100644 --- a/skills/management/SKILL.md +++ b/skills/management/SKILL.md @@ -3,11 +3,6 @@ id: management name: Management description: Use this skill when giving management guidance on team leadership, operating cadence, delegation, feedback, planning, organizational effectiveness, or manager decision-making. category: Lifestyle -requires: [] -examples: - - "Help me handle this team management problem." - - "Give me a framework for leading through change." - - "How should a manager respond in this situation?" --- ## For Individual Contributors: Navigating Upward diff --git a/skills/managing-database-recovery/SKILL.md b/skills/managing-database-recovery/SKILL.md index 025d63ea..489c16df 100644 --- a/skills/managing-database-recovery/SKILL.md +++ b/skills/managing-database-recovery/SKILL.md @@ -3,11 +3,6 @@ id: managing-database-recovery name: Managing Database Recovery description: Use this skill when designing or reviewing database recovery plans for data loss, corruption, or operational incidents, including backups, RPO/RTO, restore sequencing, and integrity checks. category: Databases -requires: [] -examples: - - "Help me plan database recovery steps." - - "What should a database restore plan include?" - - "Review this recovery strategy for gaps and risk." --- # Managing Database Recovery diff --git a/skills/mcp-scripts/SKILL.md b/skills/mcp-scripts/SKILL.md index 61e605c6..960417cc 100644 --- a/skills/mcp-scripts/SKILL.md +++ b/skills/mcp-scripts/SKILL.md @@ -3,10 +3,6 @@ id: mcp-scripts name: Mcp Scripts description: Use this skill when operating the Unity Editor through MCP tools and resources, including resource-first workflows, GameObject operations, script edits, console checks, screenshots, and reusable Unity automation templates. category: Development -requires: [] -examples: - - "Help me with mcp scripts." - - "Use mcp-scripts for this task." --- # Unity-MCP Operator Guide diff --git a/skills/meme-rush/SKILL.md b/skills/meme-rush/SKILL.md index f2b298a3..72c2517e 100644 --- a/skills/meme-rush/SKILL.md +++ b/skills/meme-rush/SKILL.md @@ -5,11 +5,6 @@ description: Use this skill when tracking meme-token launches, hot narratives, m category: Blockchain author: binance-web3-team version: 1.0.0 -requires: [] -examples: - - Show newly created Solana meme tokens on Pump.fun with high bonding-curve progress. - - Find BSC meme tokens that are finalizing migration and filter out dev wash trading. - - List viral hot topics on Solana ranked by net inflow with top associated tokens. --- # Meme Rush Skill diff --git a/skills/migrate-frontend-forms/SKILL.md b/skills/migrate-frontend-forms/SKILL.md index 910f6217..6f8600f7 100644 --- a/skills/migrate-frontend-forms/SKILL.md +++ b/skills/migrate-frontend-forms/SKILL.md @@ -3,10 +3,6 @@ id: migrate-frontend-forms name: Migrate Frontend Forms description: Use this skill when migrating frontend forms, form libraries, validation schemas, submission flows, or accessibility behavior while minimizing regressions in production systems. category: Development -requires: ["current form implementation files", "target form library/schema choice", "submission api contract"] -examples: - - Migrate a React form from Formik to React Hook Form while preserving validation and error UX. - - Replace legacy API form payload mapping with schema-driven submission in CI-verified steps. --- # Migrate Frontend Forms diff --git a/skills/multi-cloud-architecture/SKILL.md b/skills/multi-cloud-architecture/SKILL.md index 8f28a925..d337dcb5 100644 --- a/skills/multi-cloud-architecture/SKILL.md +++ b/skills/multi-cloud-architecture/SKILL.md @@ -3,10 +3,6 @@ id: multi-cloud-architecture name: Multi-Cloud Architecture description: Use this skill when designing or evaluating multi-cloud architectures, workload placement, shared control planes, failover patterns, vendor-risk tradeoffs, compliance constraints, or cross-cloud resilience. category: DevOps -requires: [] -examples: - - Propose active-passive failover between two cloud providers. - - Define a service placement strategy across clouds by workload type. --- # Multi-Cloud Architecture diff --git a/skills/mutation-testing/SKILL.md b/skills/mutation-testing/SKILL.md index f03bf9db..b053c865 100644 --- a/skills/mutation-testing/SKILL.md +++ b/skills/mutation-testing/SKILL.md @@ -3,10 +3,6 @@ id: mutation-testing name: Mutation Testing description: Use this skill when planning or executing mutation testing to evaluate whether a test suite catches meaningful defects, especially when coverage is high but confidence is low. category: DevOps -requires: [] -examples: - - Run mutation testing on a critical module to identify weak assertions. - - Define mutation score thresholds for CI quality gates. --- # Mutation Testing diff --git a/skills/nda-triage/SKILL.md b/skills/nda-triage/SKILL.md index e2696c4b..7d107fc1 100644 --- a/skills/nda-triage/SKILL.md +++ b/skills/nda-triage/SKILL.md @@ -3,10 +3,6 @@ id: nda-triage name: Nda Triage description: Use this skill when screening incoming NDAs and classifying clauses or whole agreements as standard, needs review, or significant risk based on practical legal triage signals. category: Business -requires: [] -examples: - - "Help me with nda triage." - - "Use nda-triage for this task." --- # NDA Triage Skill diff --git a/skills/network-info/SKILL.md b/skills/network-info/SKILL.md index c6c708a7..abcefcc0 100644 --- a/skills/network-info/SKILL.md +++ b/skills/network-info/SKILL.md @@ -3,10 +3,6 @@ id: network-info name: Network Info description: Use this skill when interpreting network facts during troubleshooting, including IPs, routes, interfaces, DNS, connectivity clues, failure boundaries, and which details matter before drawing conclusions. category: Tools -requires: [] -examples: - - "Help me reason about these network details and where the failure boundary probably is." - - "What network information matters most when troubleshooting this connectivity issue?" --- # Network Info diff --git a/skills/objectpool/SKILL.md b/skills/objectpool/SKILL.md index c69a2b66..03f29356 100644 --- a/skills/objectpool/SKILL.md +++ b/skills/objectpool/SKILL.md @@ -3,10 +3,6 @@ id: objectpool name: Objectpool description: Use this skill when implementing low-allocation .NET patterns with Span, ArrayPool, ObjectPool, pooling lifecycles, memory reuse, or allocation-sensitive performance work. category: Development -requires: [] -examples: - - "How do I use ArrayPool in .NET for zero-allocation?" - - "Implement ObjectPool for memory efficiency" --- # .NET Memory Efficiency, Zero Allocation diff --git a/skills/observability-engineer/SKILL.md b/skills/observability-engineer/SKILL.md index 60379e0c..ba1c5e1c 100644 --- a/skills/observability-engineer/SKILL.md +++ b/skills/observability-engineer/SKILL.md @@ -3,10 +3,6 @@ id: observability-engineer name: Observability Engineer description: Use this skill when designing observability for services with logs, metrics, traces, alert thresholds, dashboards, SLO signals, and actionable incident-response context. category: DevOps -requires: [] -examples: - - Create an observability plan for this service with metrics, logs, traces, and alerts. - - Define SLO-driven alerting and dashboard checks for this backend before launch. --- # Observability Engineer diff --git a/skills/openai-image-gen/SKILL.md b/skills/openai-image-gen/SKILL.md index 805f72ef..79a0b5b0 100644 --- a/skills/openai-image-gen/SKILL.md +++ b/skills/openai-image-gen/SKILL.md @@ -4,10 +4,6 @@ category: Content & Media author: openclaw name: OpenAI Image Gen description: Use this skill when implementing OpenAI image generation workflows, including request structure, prompt handling, image creation, editing, variants, and integration steps. -requires: ["prompt"] -examples: - - "Generate 8 images with model gpt-image-1 and save them to ./out/images." - - "Create 4 variations of this prompt and render them, then summarize the outputs." --- # OpenAI Image Gen diff --git a/skills/optimizing-database-connection-pool/SKILL.md b/skills/optimizing-database-connection-pool/SKILL.md index f3a83cc1..2c1e247f 100644 --- a/skills/optimizing-database-connection-pool/SKILL.md +++ b/skills/optimizing-database-connection-pool/SKILL.md @@ -3,11 +3,6 @@ id: optimizing-database-connection-pool name: Optimizing Database Connection Pool description: Use this skill when reasoning about database connection-pool sizing and behavior before changing configuration, including workload-aware limits, timeouts, leak detection, saturation, and failure modes. category: Databases -requires: [] -examples: - - "Help me tune my database connection pool." - - "Why is this app saturating its DB connections?" - - "Review this connection-pooling setup for bottlenecks." --- # Optimizing Database Connection Pool diff --git a/skills/parallel-feature-development/SKILL.md b/skills/parallel-feature-development/SKILL.md index 63a115b5..2b172ff0 100644 --- a/skills/parallel-feature-development/SKILL.md +++ b/skills/parallel-feature-development/SKILL.md @@ -3,13 +3,6 @@ id: parallel-feature-development name: Parallel Feature Development description: Use this skill when coordinating multiple concurrent features, stacked PRs, branch strategy, dependency sequencing, integration checkpoints, feature flags, or release timing without destabilizing main. category: Development -requires: - - feature branch list and dependency map - - target release window and merge policy - - required test suites and integration gates -examples: - - Plan parallel work for three related features without blocking releases. - - Set up a branch and merge workflow that minimizes integration conflicts. --- # Parallel Feature Development diff --git a/skills/parenting/SKILL.md b/skills/parenting/SKILL.md index d288bd2c..16a593a9 100644 --- a/skills/parenting/SKILL.md +++ b/skills/parenting/SKILL.md @@ -3,11 +3,6 @@ id: parenting name: Parenting description: Use this skill when giving parenting guidance on age-appropriate behavior support, family routines, communication strategies, child context, burnout, and avoiding common advice pitfalls. category: Lifestyle -requires: [] -examples: - - "Help me handle this parenting situation." - - "What is age-appropriate here?" - - "Give me a calmer response to this behavior issue." --- ## Before Giving Advice diff --git a/skills/pdf/SKILL.md b/skills/pdf/SKILL.md index 33a59689..afeebe79 100644 --- a/skills/pdf/SKILL.md +++ b/skills/pdf/SKILL.md @@ -3,10 +3,6 @@ id: pdf category: Content & Media name: PDF description: Use this skill when a PDF is an input or requested output, including text or table extraction, merge or split operations, rotation, watermarks, form filling, encryption, image extraction, OCR, or PDF generation. -requires: [".pdf"] -examples: - - "Extract all tables from this PDF into a CSV, and also summarize the document." - - "Merge these three PDFs into one, rotate the first page 90 degrees, and add a watermark." --- # PDF Processing Guide diff --git a/skills/personal-trainer/SKILL.md b/skills/personal-trainer/SKILL.md index 2ae62e7a..01e42613 100644 --- a/skills/personal-trainer/SKILL.md +++ b/skills/personal-trainer/SKILL.md @@ -3,11 +3,6 @@ id: personal-trainer name: Personal Trainer description: Use this skill when designing workout programs, explaining exercises, tracking progress, adapting training based on feedback, or planning strength and conditioning routines. category: Lifestyle -requires: [] -examples: - - "Build me a simple training program." - - "How should I adjust this workout plan?" - - "Explain how to do this exercise safely." --- ## Information to Gather First diff --git a/skills/plan-writing/SKILL.md b/skills/plan-writing/SKILL.md index b3804b6e..065f5ca4 100644 --- a/skills/plan-writing/SKILL.md +++ b/skills/plan-writing/SKILL.md @@ -3,10 +3,6 @@ id: plan-writing name: Plan Writing description: Use this skill when turning a complex task into a structured execution plan with clear steps, dependencies, assumptions, risks, verification, and progress-tracking criteria. category: Development -requires: [] -examples: - - "Help me with plan writing." - - "Use plan-writing for this task." --- # Plan Writing diff --git a/skills/planning-agent/SKILL.md b/skills/planning-agent/SKILL.md index d7af662d..210264f6 100644 --- a/skills/planning-agent/SKILL.md +++ b/skills/planning-agent/SKILL.md @@ -3,10 +3,6 @@ id: planning-agent name: Planning Agent description: Use this skill when generating project-aware unit tests through a research, planning, implementation, and verification pipeline that must fit the target language and repository conventions. category: Development -requires: [] -examples: - - "Help me with planning agent." - - "Use planning-agent for this task." --- # Polyglot Test Generation Skill diff --git a/skills/planning-with-files/SKILL.md b/skills/planning-with-files/SKILL.md index 67741b01..5fafd66e 100644 --- a/skills/planning-with-files/SKILL.md +++ b/skills/planning-with-files/SKILL.md @@ -3,10 +3,6 @@ id: planning-with-files name: Planning With Files description: Use this skill when complex work needs persistent markdown planning files as working memory, including task plans, notes, deliverables, checkpoint updates, and file-backed execution loops. category: Development -requires: [] -examples: - - "Help me with planning with files." - - "Use planning-with-files for this task." --- # Planning with Files diff --git a/skills/postgresql-table-design/SKILL.md b/skills/postgresql-table-design/SKILL.md index 0bcdde14..5166051f 100644 --- a/skills/postgresql-table-design/SKILL.md +++ b/skills/postgresql-table-design/SKILL.md @@ -3,11 +3,6 @@ id: postgresql-table-design name: PostgreSQL Table Design description: Use this skill when reasoning about individual PostgreSQL tables and nearby relationships, including keys, constraints, column types, normalization, query-aware indexes, and migration-ready schema decisions. category: Databases -requires: [] -examples: - - "Design this PostgreSQL table for me." - - "How should this Postgres table be structured?" - - "Review this table definition for keys, constraints, and indexes." --- # PostgreSQL Table Design diff --git a/skills/pptx/SKILL.md b/skills/pptx/SKILL.md index 1a3bf291..518569c7 100644 --- a/skills/pptx/SKILL.md +++ b/skills/pptx/SKILL.md @@ -3,10 +3,6 @@ id: pptx category: Content & Media name: Pptx description: Use this skill when a PowerPoint .pptx file, slide deck, presentation, pitch deck, template, speaker notes, slide text, comments, or deck conversion is an input or requested output. -requires: [".pptx"] -examples: - - "Read this .pptx and summarize each slide, including speaker notes." - - "Create a 10-slide pitch deck from this outline and export it as a .pptx." --- # PPTX Skill diff --git a/skills/property-based-testing/SKILL.md b/skills/property-based-testing/SKILL.md index 27f5a490..854dba6f 100644 --- a/skills/property-based-testing/SKILL.md +++ b/skills/property-based-testing/SKILL.md @@ -3,11 +3,6 @@ id: property-based-testing name: Property Based Testing description: Use this skill when designing tests around invariants, generated inputs, shrinking, edge-case discovery, and regression checks instead of hand-picking every case one by one. category: Testing & Security -requires: [] -examples: - - "Help me find good properties for this function." - - "Convert this example-based test into a property-based test." - - "What invariants should I test for this algorithm?" --- # Property Based Testing diff --git a/skills/python-testing/SKILL.md b/skills/python-testing/SKILL.md index 73478792..54b202ca 100644 --- a/skills/python-testing/SKILL.md +++ b/skills/python-testing/SKILL.md @@ -3,11 +3,6 @@ id: python-testing name: Python Testing description: Use this skill when designing Python tests that are clear, maintainable, and sensitive to Python-specific failure patterns such as fixtures, parametrization, side effects, exceptions, and stateful runtime behavior. category: Testing & Security -requires: [] -examples: - - "Help me write tests for this Python module." - - "What Python test cases are missing here?" - - "Review this pytest-style test plan for fixture and state issues." --- # Python Testing diff --git a/skills/query-address-info/SKILL.md b/skills/query-address-info/SKILL.md index 2cca753a..150b248b 100644 --- a/skills/query-address-info/SKILL.md +++ b/skills/query-address-info/SKILL.md @@ -5,11 +5,6 @@ description: Use this skill when querying on-chain wallet addresses for active t category: Blockchain author: binance-web3-team version: 1.0.0 -requires: [] -examples: - - Show all token holdings for this wallet on BSC: 0x0000000000000000000000000000000000000001. - - Get this address portfolio on Base with token prices and 24h percent change. - - Query Solana wallet assets and summarize biggest positions by value. --- # Query Address Info Skill diff --git a/skills/query-token-audit/SKILL.md b/skills/query-token-audit/SKILL.md index 59c6c738..69706ee4 100644 --- a/skills/query-token-audit/SKILL.md +++ b/skills/query-token-audit/SKILL.md @@ -5,11 +5,6 @@ description: Use this skill when checking token security before swaps or trades, category: Blockchain author: binance-web3-team version: 1.4.0 -requires: [] -examples: - - Check if this BSC token is safe before I buy it. - - Audit this Base token contract for honeypot and scam risk. - - Run a token security check on this Solana contract and summarize the risk items. --- # Query Token Audit Skill diff --git a/skills/query-token-info/SKILL.md b/skills/query-token-info/SKILL.md index 5226cd09..4bf641ef 100644 --- a/skills/query-token-info/SKILL.md +++ b/skills/query-token-info/SKILL.md @@ -5,11 +5,6 @@ description: Use this skill when searching or researching tokens by keyword, con category: Blockchain author: binance-web3-team version: 1.0.0 -requires: [] -examples: - - Search for a token by symbol across BSC, Base, and Solana and show top matches. - - Get metadata and live market data for this contract on Base. - - Fetch 1h candlestick data for this token on BSC for technical analysis. --- # Query Token Info Skill diff --git a/skills/quit-alcohol/SKILL.md b/skills/quit-alcohol/SKILL.md index 3be0295c..80838d49 100644 --- a/skills/quit-alcohol/SKILL.md +++ b/skills/quit-alcohol/SKILL.md @@ -3,11 +3,6 @@ id: quit-alcohol name: Quit Alcohol description: Use this skill when supporting alcohol reduction or sobriety with planning, craving management, trigger review, safer next steps, relapse prevention, and recovery milestones. category: Lifestyle -requires: [] -examples: - - "Help me stop drinking" - - "I need support for alcohol cravings tonight" - - "Give me a realistic first step for quitting alcohol" author: "clawd-team" version: "1.0.0" --- diff --git a/skills/quit-caffeine/SKILL.md b/skills/quit-caffeine/SKILL.md index 6a46e741..b97ad29b 100644 --- a/skills/quit-caffeine/SKILL.md +++ b/skills/quit-caffeine/SKILL.md @@ -3,11 +3,6 @@ id: quit-caffeine name: Quit Caffeine description: Use this skill when helping reduce caffeine gradually, manage withdrawal, replace the habit with lower-friction alternatives, protect sleep, and maintain energy during tapering. category: Lifestyle -requires: [] -examples: - - "Help me cut back on caffeine" - - "What should I do about caffeine withdrawal?" - - "Make me a gentler caffeine reduction plan" author: "clawd-team" version: "1.0.0" --- diff --git a/skills/quit-smoking/SKILL.md b/skills/quit-smoking/SKILL.md index ffdade9b..fc361668 100644 --- a/skills/quit-smoking/SKILL.md +++ b/skills/quit-smoking/SKILL.md @@ -3,11 +3,6 @@ id: quit-smoking name: Quit Smoking description: Use this skill when supporting cigarette or nicotine cessation with craving support, practical replacement strategies, trigger planning, smoke-free routines, relapse prevention, and recovery guidance. category: Lifestyle -requires: [] -examples: - - "Help me quit smoking" - - "I have a cigarette craving right now" - - "What helps during the first week smoke-free?" author: "clawd-team" version: "1.0.0" --- diff --git a/skills/railway-deployment/SKILL.md b/skills/railway-deployment/SKILL.md index 0c50d3fa..18f1ec31 100644 --- a/skills/railway-deployment/SKILL.md +++ b/skills/railway-deployment/SKILL.md @@ -3,10 +3,6 @@ id: railway-deployment name: Railway Deployment description: Use this skill when deploying to Railway, including environment checks, service configuration, health verification, rollout observation, logs, and rollback readiness. category: DevOps -requires: [] -examples: - - Help me deploy this app to Railway with a safe pre-deploy checklist. - - Create a Railway deployment runbook with verification and rollback steps. --- # Railway Deployment diff --git a/skills/render-deploy/SKILL.md b/skills/render-deploy/SKILL.md index 247367fc..27416d9f 100644 --- a/skills/render-deploy/SKILL.md +++ b/skills/render-deploy/SKILL.md @@ -3,10 +3,6 @@ id: render-deploy name: Render Deploy description: Use this skill when deploying to Render, including environment validation, service settings, health checks, logs, rollout verification, and rollback conditions. category: DevOps -requires: [] -examples: - - Help me deploy this service on Render with a safe rollout plan. - - Build a Render deployment checklist with post-deploy verification steps. --- # Render Deploy diff --git a/skills/resume-handoff/SKILL.md b/skills/resume-handoff/SKILL.md index a1ef92e3..1d0b0b10 100644 --- a/skills/resume-handoff/SKILL.md +++ b/skills/resume-handoff/SKILL.md @@ -3,10 +3,6 @@ id: resume-handoff name: Resume Handoff description: Use this skill when creating or loading AI session handoffs, saving context before pausing, nearing context limits, resuming complex work, or preserving decisions, files changed, blockers, and next steps. category: Development -requires: [] -examples: - - "Help me with resume handoff." - - "Use resume-handoff for this task." --- # Handoff diff --git a/skills/sandbox-sdk/SKILL.md b/skills/sandbox-sdk/SKILL.md index 5fc2d55d..ce6a631d 100644 --- a/skills/sandbox-sdk/SKILL.md +++ b/skills/sandbox-sdk/SKILL.md @@ -3,10 +3,6 @@ id: sandbox-sdk name: Sandbox SDK description: Use this skill when building secure code-execution systems with a Sandbox SDK, including sandbox lifecycle, command execution, file operations, code interpreters, preview URLs, and untrusted-code boundaries. category: Development -requires: [] -examples: - - "How do I run Python code in Cloudflare Sandbox?" - - "Set up secure code execution with Sandbox SDK" --- # Cloudflare Sandbox SDK diff --git a/skills/sherpa-onnx-tts/SKILL.md b/skills/sherpa-onnx-tts/SKILL.md index f9bf1d1b..fb99a979 100644 --- a/skills/sherpa-onnx-tts/SKILL.md +++ b/skills/sherpa-onnx-tts/SKILL.md @@ -3,10 +3,6 @@ id: sherpa-onnx-tts name: Sherpa ONNX TTS description: Use this skill when building, packaging, integrating, or troubleshooting Sherpa ONNX text-to-speech pipelines, including model assets, runtime output quality, CI setup, and deployment failures. category: Data & AI -requires: [".onnx"] -examples: - - "Package Sherpa ONNX TTS model files and app runtime into a reproducible container image." - - "Debug missing model artifacts or runtime crashes in a TTS deployment pipeline." --- # Sherpa ONNX TTS diff --git a/skills/shopify/SKILL.md b/skills/shopify/SKILL.md index b725d6c1..17b625b8 100644 --- a/skills/shopify/SKILL.md +++ b/skills/shopify/SKILL.md @@ -3,10 +3,6 @@ id: shopify name: Shopify description: Use this skill when building Shopify apps, themes, checkout/admin/POS extensions, Shopify Functions, Liquid templates, Polaris UIs, GraphQL Admin API integrations, webhooks, billing, or metafields. category: Development -requires: [] -examples: - - "Help me with shopify." - - "Use shopify for this task." --- # Shopify Development Skill diff --git a/skills/solidity-security/SKILL.md b/skills/solidity-security/SKILL.md index 0d1422d0..08bc5f42 100644 --- a/skills/solidity-security/SKILL.md +++ b/skills/solidity-security/SKILL.md @@ -3,10 +3,6 @@ id: solidity-security name: Solidity Security description: Use this skill when auditing or hardening Solidity smart contracts against reentrancy, access-control flaws, arithmetic bugs, unsafe upgrades, oracle risks, fund-management failures, or common EVM vulnerabilities. category: Blockchain -requires: [] -examples: - - "Audit this smart contract for reentrancy vulnerabilities" - - "How do I implement checks-effects-interactions pattern?" --- # Solidity Security diff --git a/skills/spot/SKILL.md b/skills/spot/SKILL.md index 70aee223..665ccca1 100644 --- a/skills/spot/SKILL.md +++ b/skills/spot/SKILL.md @@ -5,11 +5,6 @@ description: Use this skill when making Binance Spot API requests, signing authe category: Blockchain author: Binance version: 1.0.1 -requires: [] -examples: - - Get exchange info and ticker data for BTCUSDT. - - Place a test order on testnet and verify order status. - - Check account balances and open spot orders. --- # Binance Spot Skill diff --git a/skills/stripe/SKILL.md b/skills/stripe/SKILL.md index 86e8743f..d62ac145 100644 --- a/skills/stripe/SKILL.md +++ b/skills/stripe/SKILL.md @@ -3,10 +3,6 @@ id: stripe name: Stripe description: Use this skill when implementing Stripe payment flows, including Checkout, PaymentIntents, subscriptions, billing, webhooks, refunds, SCA, and PCI-conscious integration patterns. category: Development -requires: [] -examples: - - "Help me with stripe." - - "Use stripe for this task." --- # Stripe Integration diff --git a/skills/subagent-driven-development/SKILL.md b/skills/subagent-driven-development/SKILL.md index 1eb4834d..ac7958f2 100644 --- a/skills/subagent-driven-development/SKILL.md +++ b/skills/subagent-driven-development/SKILL.md @@ -3,13 +3,6 @@ id: subagent-driven-development name: Subagent-driven Development description: Use this skill when decomposing and coordinating multi-step implementation or DevOps work across focused subagents with explicit ownership, handoffs, validation, and final integration checks. category: Development -requires: - - overall delivery objective and success criteria - - sub-task dependency graph or work breakdown - - integration test and reconciliation requirements -examples: - - Break a platform migration into parallel subagent tasks with explicit deliverables. - - Coordinate subagent outputs for CI hardening, observability, and deployment checks. --- # Subagent-driven Development diff --git a/skills/summarize/SKILL.md b/skills/summarize/SKILL.md index 0fa41310..e9c2fee1 100644 --- a/skills/summarize/SKILL.md +++ b/skills/summarize/SKILL.md @@ -4,10 +4,6 @@ category: Content & Media author: openclaw name: Summarize description: Use this skill when summarizing URLs, local files, podcasts, YouTube links, videos, or transcripts, including link overviews, best-effort transcript extraction, and summarize.sh workflows. -requires: ["url", "document"] -examples: - - "Summarize this URL in 10 bullet points: https://example.com" - - "Extract the transcript from this YouTube link and then summarize the key points." --- # Summarize diff --git a/skills/syncable-entity-builder-and-validator/SKILL.md b/skills/syncable-entity-builder-and-validator/SKILL.md index 3baeb22c..baf639dd 100644 --- a/skills/syncable-entity-builder-and-validator/SKILL.md +++ b/skills/syncable-entity-builder-and-validator/SKILL.md @@ -3,10 +3,6 @@ id: syncable-entity-builder-and-validator name: Syncable Entity Builder And Validator description: Use this skill when creating validation logic or migration action builders for syncable entities in Twenty, including entity shape, sync rules, migration actions, and validator behavior. category: Development -requires: [] -examples: - - "Create validation for syncable entities in Twenty" - - "Build migration actions for Twenty syncable entities" --- # Syncable Entity: Builder & Validation (Step 3/6) diff --git a/skills/technical-writer/SKILL.md b/skills/technical-writer/SKILL.md index cb034fa9..4a3911a9 100644 --- a/skills/technical-writer/SKILL.md +++ b/skills/technical-writer/SKILL.md @@ -5,10 +5,6 @@ name: Technical Writer description: Use this skill when writing or improving technical documentation, including READMEs, API references, tutorials, user guides, conceptual docs, examples, and developer-facing explanations. author: awesome-llm-apps version: "1.0.0" -requires: ["text"] -examples: - - "Draft a README for this project with installation, quickstart, and common usage examples." - - "Write API documentation for these endpoints, including request/response examples and error cases." --- # Technical Writer diff --git a/skills/templates/SKILL.md b/skills/templates/SKILL.md index 1447732f..351b2001 100644 --- a/skills/templates/SKILL.md +++ b/skills/templates/SKILL.md @@ -3,10 +3,6 @@ id: templates name: Templates description: Use this skill when creating or maintaining reusable infrastructure, CI/CD, service, or pipeline templates with governance, versioning, rollout consistency, and environment provisioning. category: Documentation -requires: [] -examples: - - Build a deployment template that standardizes service build, test, and rollout steps. - - Refactor duplicated infrastructure snippets into a single reusable template. --- # Templates diff --git a/skills/text-to-pdf-automation/SKILL.md b/skills/text-to-pdf-automation/SKILL.md index f2fc36a1..39411446 100644 --- a/skills/text-to-pdf-automation/SKILL.md +++ b/skills/text-to-pdf-automation/SKILL.md @@ -5,10 +5,6 @@ name: Canva version: 1.0.0 description: Use this skill when using the Canva Connect API to manage Canva designs, assets, exports, folders, and template-driven document or PDF automation workflows. author: clawdbot -requires: ["canva design id"] -examples: - - "List my Canva designs in the 'Marketing' folder and export the latest one as a PDF." - - "Create a new Canva design from a template, autofill it with this data, and export as PNG." --- # Canva Connect diff --git a/skills/ton-vulnerability-scanner/SKILL.md b/skills/ton-vulnerability-scanner/SKILL.md index 741e1e8e..fccb017f 100644 --- a/skills/ton-vulnerability-scanner/SKILL.md +++ b/skills/ton-vulnerability-scanner/SKILL.md @@ -3,10 +3,6 @@ id: ton-vulnerability-scanner name: Ton Vulnerability Scanner description: Use this skill when scanning TON smart contracts for TON-specific vulnerabilities such as integer-as-boolean misuse, fake Jetton contracts, or forwarding TON without gas checks. category: Blockchain -requires: [] -examples: - - "Scan my TON FunC contracts for Jetton vulnerabilities" - - "Audit this TON contract for gas forwarding issues" --- # TON Vulnerability Scanner diff --git a/skills/trading-signal/SKILL.md b/skills/trading-signal/SKILL.md index 0f55ba15..ac6de8b1 100644 --- a/skills/trading-signal/SKILL.md +++ b/skills/trading-signal/SKILL.md @@ -5,11 +5,6 @@ description: Use this skill when retrieving or interpreting on-chain smart-money category: Blockchain author: binance-web3-team version: 1.0.0 -requires: [] -examples: - - Show the latest smart money buy signals on Solana. - - Get BSC smart money signals and rank them by max gain. - - Summarize active vs timeout smart money signals with exit rate details. --- # Trading Signal Skill diff --git a/skills/triggers/SKILL.md b/skills/triggers/SKILL.md index 06b55f86..b97a95e9 100644 --- a/skills/triggers/SKILL.md +++ b/skills/triggers/SKILL.md @@ -3,10 +3,6 @@ id: triggers name: Triggers description: Use this skill when designing, reviewing, or validating event triggers, schedule triggers, automation jobs, CI/CD pipeline triggers, deployment workflows, and their edge cases. category: DevOps -requires: [] -examples: - - Define trigger conditions for a deployment pipeline across pull requests, merges, and tags. - - Review an automation trigger setup that is running too often and causing unnecessary cost. --- # Triggers diff --git a/skills/turborepo-caching/SKILL.md b/skills/turborepo-caching/SKILL.md index 20a03678..bde9f362 100644 --- a/skills/turborepo-caching/SKILL.md +++ b/skills/turborepo-caching/SKILL.md @@ -3,10 +3,6 @@ id: turborepo-caching name: Turborepo Caching description: Use this skill when configuring or debugging Turborepo local and remote caching, including task outputs, cache keys, CI reproducibility, cache misses, and developer build performance. category: DevOps -requires: [] -examples: - - Design a remote cache setup for Turborepo in CI with cache hit verification. - - Audit Turborepo tasks to fix poor cache reuse across packages. --- # Turborepo Caching diff --git a/skills/update-release-notes/SKILL.md b/skills/update-release-notes/SKILL.md index 9fe25af3..e5b985a3 100644 --- a/skills/update-release-notes/SKILL.md +++ b/skills/update-release-notes/SKILL.md @@ -3,10 +3,6 @@ id: update-release-notes name: Update Release Notes description: Use this skill when release notes must explain what changed, who is affected, what readers should do next, and any user-facing impact, migration concern, rollout caveat, or risk area. category: Tools -requires: [] -examples: - - "Help me turn this set of changes into clear release notes." - - "Review these release notes so they explain impact, risk, and upgrade implications clearly." --- # Update Release Notes diff --git a/skills/video-frames/SKILL.md b/skills/video-frames/SKILL.md index cbdf0860..b1963ae7 100644 --- a/skills/video-frames/SKILL.md +++ b/skills/video-frames/SKILL.md @@ -4,10 +4,6 @@ category: Content & Media author: openclaw name: Video Frames description: Use this skill when extracting frames, thumbnails, clips, timestamps, or short video segments from media files with ffmpeg. -requires: [".mp4", ".mov", ".mkv", ".webm"] -examples: - - "Extract a frame at 00:00:10 from video.mp4 and save it as frame-10s.jpg." - - "Generate 12 evenly spaced thumbnail frames from this video and save them to ./thumbs/." --- # Video Frames (ffmpeg) diff --git a/skills/weather/SKILL.md b/skills/weather/SKILL.md index 7891b069..058c571d 100644 --- a/skills/weather/SKILL.md +++ b/skills/weather/SKILL.md @@ -3,10 +3,6 @@ id: weather name: Weather description: Use this skill when retrieving current weather or forecasts through wttr.in or Open-Meteo, including location-based conditions, forecast summaries, and lightweight weather lookup workflows. category: Lifestyle -requires: [] -examples: - - "Help me with weather." - - "Use weather for this task." --- # Weather Skill diff --git a/skills/web-fetch/SKILL.md b/skills/web-fetch/SKILL.md index 5de04b77..6ce8d1d3 100644 --- a/skills/web-fetch/SKILL.md +++ b/skills/web-fetch/SKILL.md @@ -3,10 +3,6 @@ category: Content & Media id: web-fetch name: Web Fetch description: Use this skill when fetching readable web page content from a URL without browser automation, especially for lightweight extraction, text cleanup, or summarization inputs. -requires: ["url"] -examples: - - "Fetch this URL and extract the readable text content: https://example.com" - - "Download this page and save the extracted text to output.txt: https://example.com" --- # Web Fetch diff --git a/skills/winapp-cli/SKILL.md b/skills/winapp-cli/SKILL.md index 7c85d722..f680ef83 100644 --- a/skills/winapp-cli/SKILL.md +++ b/skills/winapp-cli/SKILL.md @@ -3,10 +3,6 @@ id: winapp-cli name: WinApp CLI description: Use this skill when using the winapp CLI to initialize Windows app projects, generate manifests or certificates, build packages, create MSIX releases, sign artifacts, or deploy Windows applications. category: Development -requires: [] -examples: - - "How do I create an MSIX package with winapp?" - - "Initialize a Windows app project with winapp" --- # Windows App Development CLI diff --git a/skills/workout-logger/SKILL.md b/skills/workout-logger/SKILL.md index fe111d7f..30648d86 100644 --- a/skills/workout-logger/SKILL.md +++ b/skills/workout-logger/SKILL.md @@ -3,11 +3,6 @@ id: workout-logger name: Workout Logger description: Use this skill when turning messy workout information into clear logs, comparing user-provided sessions, surfacing trends or likely PRs, and suggesting realistic next-session steps. category: Lifestyle -requires: [] -examples: - - "Help me log today's workout clearly" - - "Compare these two workout sessions" - - "Suggest a simple workout based on my goal" author: "clawd-team" version: "1.0.0" --- diff --git a/skills/wrangler/SKILL.md b/skills/wrangler/SKILL.md index 1ceb090e..37db50d3 100644 --- a/skills/wrangler/SKILL.md +++ b/skills/wrangler/SKILL.md @@ -3,10 +3,6 @@ id: wrangler name: Wrangler description: Use this skill when building or deploying Cloudflare Workers with Wrangler, including local iteration, configuration, bindings, environments, secrets, and release verification. category: DevOps -requires: [] -examples: - - Create a Wrangler release workflow for a Worker with staging and production environments. - - Troubleshoot a failed `wrangler deploy` and identify the likely configuration issue. --- # Wrangler diff --git a/skills/write-script-mysql/SKILL.md b/skills/write-script-mysql/SKILL.md index ea806f23..59b4425f 100644 --- a/skills/write-script-mysql/SKILL.md +++ b/skills/write-script-mysql/SKILL.md @@ -3,11 +3,6 @@ id: write-script-mysql name: Write Script MySQL description: Use this skill when drafting or reviewing MySQL SQL scripts in a way that makes engine behavior, locking risk, compatibility, rollout sequencing, and reviewability visible. category: Databases -requires: [] -examples: - - "Help me write a MySQL script for this change." - - "Review this MySQL SQL script for safety and rollback issues." - - "What should this MySQL script include?" --- # Write Script MySQL diff --git a/skills/write-script-postgresql/SKILL.md b/skills/write-script-postgresql/SKILL.md index 44eef508..88882154 100644 --- a/skills/write-script-postgresql/SKILL.md +++ b/skills/write-script-postgresql/SKILL.md @@ -3,11 +3,6 @@ id: write-script-postgresql name: Write Script PostgreSQL description: Use this skill when drafting or reviewing PostgreSQL SQL scripts with PostgreSQL-aware syntax, safe sequencing, transactional expectations, migration logic, and reviewable rollout risk. category: Databases -requires: [] -examples: - - "Help me write a PostgreSQL script for this change." - - "Review this Postgres SQL script for safety and correctness." - - "How should I structure this PostgreSQL migration script?" --- # Write Script PostgreSQL diff --git a/skills/write-tbp/SKILL.md b/skills/write-tbp/SKILL.md index adafde46..fb702563 100644 --- a/skills/write-tbp/SKILL.md +++ b/skills/write-tbp/SKILL.md @@ -3,10 +3,6 @@ category: Content & Media id: write-tbp name: Write Tbp description: Use this skill when drafting technical blog posts about tldraw features, implementation details, engineering decisions, demos, release context, or product-facing technical narratives. -requires: ["text"] -examples: - - "Write a technical blog post draft about tldraw's arrow routing implementation based on this research." - - "Help me research and outline a blog post about tldraw's scribbles feature, grounded in the codebase." --- # Write technical blog post diff --git a/skills/xlsx/SKILL.md b/skills/xlsx/SKILL.md index 62193fe5..5269f9eb 100644 --- a/skills/xlsx/SKILL.md +++ b/skills/xlsx/SKILL.md @@ -3,10 +3,6 @@ id: xlsx name: XLSX description: Use this skill when creating, editing, or auditing .xlsx spreadsheets, especially financial models, formulas, formatting, workbook structure, validation, and zero-error spreadsheet outputs. category: Business -requires: [".xlsx"] -examples: - - "Audit this workbook for #REF!/#DIV/0! errors and fix formulas while preserving formatting." - - "Build a simple financial model in Excel following blue/black/green conventions and validate there are zero formula errors." --- # Requirements for Outputs diff --git a/skills/yoga/SKILL.md b/skills/yoga/SKILL.md index 08f2d813..68b3c6bf 100644 --- a/skills/yoga/SKILL.md +++ b/skills/yoga/SKILL.md @@ -3,11 +3,6 @@ id: yoga name: Yoga description: Use this skill when giving yoga guidance on pose alignment, sequencing, breathwork, modifications, props, level-appropriate practice planning, and safety-aware instruction. category: Lifestyle -requires: [] -examples: - - "Help me sequence a short yoga session." - - "Check my alignment for this pose." - - "Suggest modifications for a beginner yoga practice." --- ## Alignment Principles diff --git a/skills/youtube-downloader/SKILL.md b/skills/youtube-downloader/SKILL.md index 38612358..3526cb2b 100644 --- a/skills/youtube-downloader/SKILL.md +++ b/skills/youtube-downloader/SKILL.md @@ -3,10 +3,6 @@ category: Content & Media id: youtube-downloader name: Youtube Downloader description: Use this skill when downloading YouTube video or audio, choosing quality or formats such as mp4, webm, mkv, or mp3, saving media locally, or troubleshooting YouTube download options. -requires: ["youtube url"] -examples: - - "Download this YouTube video in 1080p MP4: https://www.youtube.com/watch?v=dQw4w9WgXcQ" - - "Download audio-only as MP3 from this link and save it to ./out/: https://youtu.be/dQw4w9WgXcQ" --- # YouTube Video Downloader