███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 14401 | museum-documentation | autumnsgrove/groveengine |
Museum Documentation Documentation as hospitality. Code as curated collection. The art of transforming technical systems into welcoming guided tours. Museum documentation positions the writer as a guide walking alongside readers through "why" questions before diving into implementation specifics. This is Grove's elegant documentation style—meant for Wanderers of any experience level who want to understand the technologies, patterns, and decisions that make Grove what it is. When to Activate Crea...
|
61 |
| 14402 | dojo-client | dojoengine/book |
Dojo Client Integration Connect your game client or frontend to your deployed Dojo world across multiple platforms. When to Use This Skill "Set up JavaScript SDK for my Dojo game" "Integrate Dojo with Unity" "Generate TypeScript bindings" "Connect React app to my world" What This Skill Does Handles client integration for: JavaScript/TypeScript SDK (primary) Unity, Unreal, Godot, Bevy (game engines) Typed binding generation Query/subscription patterns Supported Platforms Platform Language Package...
|
61 |
| 14403 | route-handlers | davepoon/buildwithclaude |
Next.js Route Handlers Overview Route Handlers allow you to create API endpoints using the Web Request and Response APIs. They're defined in route.ts files within the app directory. Basic Structure File Convention Route handlers use route.ts (or route.js): app/ ├── api/ │ ├── users/ │ │ └── route.ts /api/users │ └── posts/ │ ├── route.ts /api/posts │ └── [id]/ │ └── route.ts /api/posts/:id HTTP Methods Export functions named after HTTP methods: ...
|
61 |
| 14404 | six-thinking-hats | proffesor-for-testing/agentic-qe |
<default_to_action> When analyzing testing decisions: - DEFINE focus clearly (specific testing question) - APPLY each hat sequentially (5 min each) - DOCUMENT insights per hat - SYNTHESIZE into action plan Quick Hat Rotation (30 min): ``` 🤍 WHITE (5 min) - Facts only: metrics, data, coverage ❤️ RED (3 min) - Gut feelings (no justification needed) 🖤 BLACK (7 min) - Risks, gaps, what could go wrong 💛 YELLOW (5 min) - Strengths, opportunities, what works 💚 GREEN (7 min) - Creative ideas, alte...
|
61 |
| 14405 | taro documentation | whinc/my-claude-plugins |
Taro is a comprehensive multi-platform development framework that enables building applications for multiple platforms from a single codebase. Platforms include WeChat Mini Programs, Alipay Mini Programs, Baidu Smart Programs, ByteDance Mini Apps, QQ Mini Programs, H5 (web), React Native, and Harmony OS. Key characteristics: - React-like syntax and component model - Write once, run on multiple platforms - Extensive API coverage for platform-specific features - Rich component library - Stro...
|
61 |
| 14406 | umbraco-openapi-client | umbraco/umbraco-cms-backoffice-skills |
Umbraco OpenAPI Client Setup CRITICAL: Why This Matters NEVER use raw fetch() calls for Umbraco backoffice API communication. Raw fetch calls will result in 401 Unauthorized errors because they don't include the bearer token authentication that Umbraco requires. ALWAYS use a generated OpenAPI client configured with Umbraco's auth context. This ensures: Proper bearer token authentication Type-safe API calls Automatic token refresh handling When to Use This Use this pattern whenever you: Create cu...
|
61 |
| 14407 | alex-hormozi-pitch | microck/ordinary-claude-skills |
Alex Hormozi Pitch Skill When to Activate This Skill Create compelling offer or pitch Design irresistible value proposition Structure pricing and guarantees Build "too good not to take" offer Apply Hormozi frameworks Optimize existing offer Create Grand Slam Offer What This Skill Does Guides you through Alex Hormozi's systematic approach to creating offers so compelling that prospects feel stupid saying no, using proven frameworks from "$100M Offers". How to Execute Execute the /create-hormoz...
|
61 |
| 14408 | ai-rag | vasilyu1983/ai-agents-public |
RAG & Search Engineering — Complete Reference Build production-grade retrieval systems with hybrid search, grounded generation, and measurable quality. This skill covers: RAG: Chunking, contextual retrieval, grounding, adaptive/self-correcting systems Search: BM25, vector search, hybrid fusion, ranking pipelines Evaluation: recall@k, nDCG, MRR, groundedness metrics Modern Best Practices (Jan 2026): Separate retrieval quality from answer quality; evaluate both (RAG: https://arxiv.org/abs/200...
|
61 |
| 14409 | felo-cli | doggy8088/felo-cli |
Use this skill for Felo Open Platform chat workflows in this repository. Prefer project tools in this order: CLI: npx -y @willh/felo-cli --json "<query>" (always use --json when retrieving content so the full structured output is preserved). SDK: createFeloClient() / feloChat() from src/felo-client.ts when programmatic integration is needed. Direct API call only when validating protocol-level behavior. For direct HTTP reference, use POST https://openapi.felo.ai/v2/chat with: Environment variable...
|
61 |
| 14410 | umbraco-health-check | umbraco/umbraco-cms-backoffice-skills |
Umbraco Health Check What is it? Health Checks in Umbraco allow you to create custom system diagnostics that appear in the Health Check dashboard. They verify that your Umbraco installation and related services are functioning correctly. Health checks can report status, display warnings, and provide actionable recommendations for resolving issues. Documentation Always fetch the latest docs before implementing: Main docs : https://docs.umbraco.com/umbraco-cms/extending/health-check Foundation : h...
|
61 |
| 14411 | code-style | automattic/wordpress-activitypub |
ActivityPub PHP Conventions Plugin-specific conventions and architectural patterns for the ActivityPub plugin. Quick Reference File Naming class-{name}.php Regular classes. trait-{name}.php Traits. interface-{name}.php Interfaces. Namespace Pattern namespace Activitypub; namespace Activitypub\Transformer; namespace Activitypub\Collection; namespace Activitypub\Handler; namespace Activitypub\Activity; namespace Activitypub\Rest; Text Domain Always use 'activitypub' for...
|
61 |
| 14412 | python-venv-manager | jorgealves/agent_skills |
Python Virtual Env Manager Purpose and Intent Setup and validate Python virtual environments (venv, virtualenv, conda). Use to ensure isolated dependencies and correct Python versions for projects. When to Use Project Setup : When initializing a new Python project. Continuous Integration : As part of automated build and test pipelines. Legacy Refactoring : When updating older Python codebases to modern standards. When NOT to Use Non-Python Projects : This tool is specialized for the Python ecosy...
|
61 |
| 14413 | midjourney-replicate-flux | rawveg/skillsforge-marketplace |
Midjourney-Style Prompt Generator for FLUX 1.1 Pro Generate professional, Midjourney-quality image prompts optimized for the black-forest-labs/flux-1.1-pro model on Replicate. Purpose Transform basic user image requests into rich, detailed prompts that produce Midjourney-quality results using the FLUX 1.1 Pro model. This skill provides: Midjourney aesthetic principles and visual characteristics FLUX 1.1 Pro model optimization techniques Prompt structure templates and patterns Before/after tr...
|
61 |
| 14414 | auditing-pre-release-security | onekeyhq/app-monorepo |
Pre-Release Security Audit (Between Any Two Git Refs) This skill compares any two git refs (tag/branch/commit SHA) and audits: Source-code diffs for security regressions Dependency changes (direct + transitive) and lockfile determinism Newly introduced package behaviors inside node_modules CI/CD workflow risks in .github/workflows and build configs (Expo/EAS) The output is a Chinese Markdown report, with a unique title and filename containing the refs to avoid overwrites. 0) Mandatory: confi...
|
61 |
| 14415 | godot-economy-system | thedivergentai/gd-agentic-skills |
Economy System Expert guidance for designing balanced game economies with currency, shops, and loot. NEVER Do NEVER use int for currency — Use int for small amounts, but float or custom BigInt for large economies. Integer overflow destroys economies (max 2.1B). NEVER forget buy/sell price spread — Selling for same price as buying creates infinite money loop. Sell price should be 30-50% of buy price. NEVER skip currency sinks — Without sinks (repairs, taxes, consumables), economy inflates. Player...
|
61 |
| 14416 | growth-marketing | dengineproblem/agents-monorepo |
Growth Marketing Expert Expertise in growth experimentation, funnel optimization, and data-driven marketing. Core Competencies Growth Experimentation Hypothesis development A/B and multivariate testing Statistical significance Experiment prioritization (ICE/PIE) Learning documentation Funnel Optimization Conversion rate optimization (CRO) Landing page optimization Sign-up flow optimization Activation improvement Retention mechanics Analytics & Data Funnel analytics Cohort analysis Attribution mo...
|
61 |
| 14417 | character-design | omer-metin/skills-for-antigravity |
Character Design Identity You are a character designer who has created heroes, villains, and entire casts for games ranging from AAA titles to beloved indie hits. You've studied the masters—the Nintendo character design philosophy, Pixar's approach to appeal, Disney's principles of personality through design, and the distinctive styles that made characters like Mario, Sonic, Link, and Hollow Knight's protagonist instantly recognizable worldwide. You understand that great character design isn't...
|
61 |
| 14418 | kalshi-docs | ammario/kalshi-docs |
Kalshi API Documentation Complete API reference for Kalshi's prediction markets platform. Use this skill when: Building trading bots or integrations with Kalshi Working with market data, orders, or portfolio APIs Implementing WebSocket connections for real-time data Understanding authentication and rate limits Documentation Structure api-reference/ - Complete REST API endpoints organized by category: api-keys/ - API key management communications/ - RFQs and quotes events/ - Event data and series...
|
61 |
| 14419 | groove-utilities-prime | andreadellacorte/groove |
groove-utilities-prime Outcome The agent receives full groove workflow context in the conversation — config, key commands, conventions, and constraints. Run at the start of every session before doing any work. Acceptance Criteria Agent is shown current config values from .groove/index.md Agent is shown all key commands, conventions, and constraints If a newer version of groove is available, agent is notified Output format Output the following to the conversation (do not write to any file): Groo...
|
61 |
| 14420 | nansen-perp | nansen-ai/nansen-cli |
Perps (Hyperliquid) No --chain flag needed — Hyperliquid only. Screener Top perp markets by volume nansen research perp screener --sort volume:desc --limit 20 By open interest nansen research perp screener --sort open_interest:desc --limit 10 Leaderboard Top perp traders by PnL nansen research perp leaderboard --days 7 --limit 20 Flags Flag Purpose --sort Sort field:direction (e.g. volume:desc ) --limit Number of results --days Lookback period (default 30) --fields Select specific fields --ta...
|
61 |
| 14421 | .net cli | exceptionless/exceptionless |
.NET CLI Prerequisites .NET SDK 10.0 NuGet feeds defined in NuGet.Config Common Commands Restore Packages dotnet restore Build Solution dotnet build Run Tests All tests dotnet test By test name dotnet test --filter "FullyQualifiedName~CanCreateOrganization" By class name dotnet test --filter "ClassName~OrganizationTests" By category/trait dotnet test --filter "Category=Integration" Run Project Run the AppHost (recommended for full stack) dotnet run --project src/Exceptionless.AppHost Run s...
|
61 |
| 14422 | pw-embedded-c-style | plugins-world/pw-skills |
嵌入式 C 代码风格助手, 基于《手把手教你学51单片机》302 个 .c 文件和 66 个 .h 文件的代码风格分析。 默认命名风格: 蛇形命名 (snake_case) 使用场景 适用情况 - 创建新的嵌入式 C 项目 (51 单片机、STM32 等) - 优化现有嵌入式代码的命名和结构 - 生成硬件驱动模块 (定时器、串口、LCD、按键等) - 规范化项目文件组织和代码风格 - 学习嵌入式 C 编程的最佳实践 不适用情况 - 非嵌入式的通用 C/C++ 项目 - 需要 RTOS 或复杂架构的项目 - 纯算法实现 (无硬件交互) 使用方式 默认命名风格: 蛇形命名 (snake_case) 如需使用驼峰命名,请在指令中明确说明 "使用驼峰命名"。 创建项目 ``` 基础示例 (默认蛇形命名) /pw-embedded-c-style 创建一个 LED 闪烁的项目 带外设的项目 /pw-embedded-c-style 创建一个带 LCD1602 显示和按键输入的项目 指定芯片 /pw-embedded-c-style 为 STM...
|
61 |
| 14423 | ln-614-docs-fact-checker | levnikolaevich/claude-code-skills |
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. Documentation Fact-Checker (L3 Worker) Specialized worker that extracts verifiable claims from documentation and validates each against the actual codebase. Purpose & Scope Worker in ln-610 coordinator pipeline - invoked by ln-610-docs-auditor Extract all verifiable claims from ALL .md files in project Verify each claim aga...
|
61 |
| 14424 | iofficeai/aionui |
PDF Processing Guide Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. Quick Start from pypdf import PdfReader , PdfWriter Read a PDF reader = PdfReader ( "document.pdf" ) print ( f"Pages: { len ( reader . pages ) } " ) Extract text text = "" for page in reader . pages : t...
|
61 | |
| 14425 | qodo-pr-resolver | qodo-ai/qodo-skills |
Qodo PR Resolver Fetch Qodo review issues for your current branch's PR/MR, fix them interactively or in batch, and reply to each inline comment with the decision. Supports GitHub, GitLab, Bitbucket, and Azure DevOps. Prerequisites Required Tools: Git - For branch operations Git Provider CLI - One of: gh (GitHub), glab (GitLab), bb (Bitbucket), or az (Azure DevOps) Installation and authentication details: See providers.md for provider-specific setup instructions. Required Context: Must be in a gi...
|
61 |
| 14426 | newebpay | paid-tw/skills |
藍新金流整合指南 你的任務是幫助用戶設定藍新金流(NewebPay)環境並引導至適當的串接功能。 用戶需求分析 用戶輸入: $ARGUMENTS 根據用戶需求,判斷下一步: 若包含「串接」「checkout」「建立交易」「MPG」→ 引導使用 /newebpay-checkout 若包含「查詢」「query」「訂單狀態」→ 引導使用 /newebpay-query 若包含「退款」「refund」「取消」→ 引導使用 /newebpay-refund 若無特定指定 → 提供以下環境設定引導 環境設定檢查 詢問用戶以下問題: 專案框架:你使用什麼框架? PHP (Laravel / 原生 PHP / 其他) Node.js (Express / NestJS / 原生 / 其他) Python (Django / Flask / FastAPI / 其他) 其他 環境狀態:是否已有藍新金流商店帳號? 是,已有測試環境帳號 是,已有正式環境帳號 否,需要申請 環境變數設定 引導用戶建立環境變數: NEWEBPAY_MERCHANT_ID=MS12345678 NEWE...
|
61 |
| 14427 | interaction-design | secondsky/claude-skills |
Interaction Design Create engaging, intuitive interactions through motion, feedback, and thoughtful state transitions that enhance usability and delight users. When to Use This Skill Adding microinteractions to enhance user feedback Implementing smooth page and component transitions Designing loading states and skeleton screens Creating gesture-based interactions Building notification and toast systems Implementing drag-and-drop interfaces Adding scroll-triggered animations Designing hover and f...
|
61 |
| 14428 | capacitor-offline-first | cap-go/capacitor-skills |
Offline-First Capacitor Apps Build apps that work seamlessly with or without internet connectivity. When to Use This Skill User needs offline support User asks about data sync User wants caching User needs local database User has connectivity issues Offline-First Architecture ┌─────────────────────────────────────────┐ │ UI Layer │ ├─────────────────────────────────────────┤ │ Service Layer │ │ ┌─────────────┐ ┌─────────────────┐ │ │...
|
61 |
| 14429 | monitor-etf-holdings-drawdown-risk | fatfingererr/macro-skills |
<essential_principles> 背離事件定義: - 價格上漲:`price_return >= min_price_return_pct`(如 +15%) - 庫存下滑:`inventory_change <= -min_inventory_drawdown_pct`(如 -10%) - 同時發生:在相同視窗期(如 180 天)內同時滿足 當價格與庫存同向時(同漲同跌)為正常;逆向時(價漲庫跌)才需要警覺。 不能直接把「庫存下降」解讀為「實物被搶」,需要交叉驗證: | 實物緊張 | COMEX/LBMA 下降、backwardation、lease rates 上升、零售溢價擴大 | 其他庫存穩定、contango、溢價平穩 | 資金流/贖回 | ETF 流出但交易所庫存穩定、期貨結構不緊 | 多重庫存同步下降 輸出兩種解釋,讓用戶判斷哪個更符合當前數據。 本 skill 優先使用: - ETF 官網庫存:Selenium 模擬人類瀏覽器行為抓取(避免 API 限制) - Yahoo Finance:`yfinance` 套件取得現貨/...
|
61 |
| 14430 | gathering-ui | autumnsgrove/groveengine |
Gathering UI 🌲🦎🦌 The drum echoes through the glade. The Chameleon shifts its colors, painting the forest with glass and light. The Deer senses what others cannot see, ensuring every path is clear. Together they create spaces that welcome all wanderers—beautiful to behold, accessible to all. When to Summon Designing new pages or interfaces Implementing complete UI features Ensuring visual design meets accessibility standards Creating Grove-themed experiences When beauty and inclusion must coexist...
|
61 |
| 14431 | root-cause-tracing | secondsky/claude-skills |
Root Cause Tracing Overview Bugs often manifest deep in the call stack (git init in wrong directory, file created in wrong location, database opened with wrong path). Your instinct is to fix where the error appears, but that's treating a symptom. Core principle: Trace backward through the call chain until you find the original trigger, then fix at the source. When to Use Use when: Error happens deep in execution (not at entry point) Stack trace shows long call chain Unclear where invalid data or...
|
61 |
| 14432 | mise-configuration | terrylica/cc-skills |
Use mise `[env]` as centralized configuration with backward-compatible defaults. Core Principle Define all configurable values in `.mise.toml` `[env]` section. Scripts read via environment variables with fallback defaults. Same code path works WITH or WITHOUT mise installed. Key insight: mise auto-loads `[env]` values when shell has `mise activate` configured. Scripts using `os.environ.get("VAR", "default")` pattern work identically whether mise is present or not. Quick Reference Languag...
|
61 |
| 14433 | axiom-transferable-ref | charleswiltgen/axiom |
Transferable & Content Sharing Reference Comprehensive guide to the CoreTransferable framework and SwiftUI sharing surfaces: drag and drop, copy/paste, and ShareLink. When to Use This Skill Implementing drag and drop ( .draggable , .dropDestination ) Adding copy/paste support ( .copyable , .pasteDestination , PasteButton ) Sharing content via ShareLink Making custom types transferable Declaring custom UTTypes for app-specific formats Bridging Transferable types with UIKit's NSItemProvider Choosi...
|
61 |
| 14434 | conversion-copywriting | guia-matthieu/clawfu-skills |
Conversion Copywriting - Data-Driven Copy That Converts Write copy that gets a "yes" using Joanna Wiebe's research-first, Voice of Customer methodology When to Use This Skill Writing landing pages, emails, or sales pages that need measurable conversion results Starting a new copy project and need a systematic process to follow Struggling with what to write and staring at a blank page Wanting to prove ROI to clients with data-backed decisions Improving existing copy through validation and testing...
|
61 |
| 14435 | cpp-expert | personamanagmentlayer/pcl |
C++ Expert Expert guidance for modern C++ development including C++20/23 features, STL, templates, memory management, and high-performance programming. Core Concepts Modern C++ Features (C++20/23) Concepts and constraints Ranges and views Coroutines Modules Three-way comparison (spaceship operator) std::format std::span Designated initializers consteval and constinit Memory Management RAII (Resource Acquisition Is Initialization) Smart pointers (unique_ptr, shared_ptr, weak_ptr) Move semantics...
|
61 |
| 14436 | notebooklm | sanjay3290/ai-skills |
NotebookLM Research Assistant Skill Interact with Google NotebookLM to query documentation with Gemini's source-grounded answers. Each question opens a fresh browser session, retrieves the answer exclusively from your uploaded documents, and closes. When to Use This Skill Trigger when user: Mentions NotebookLM explicitly Shares NotebookLM URL ( https://notebooklm.google.com/notebook/... ) Asks to query their notebooks/documentation Wants to add documentation to NotebookLM library Uses phrases li...
|
61 |
| 14437 | tiptap-dev | xiaolai/vmark |
Tiptap Development Expert Expert guidance for building rich text editors with Tiptap - a headless, framework-agnostic editor built on ProseMirror. See also: tiptap-editor skill — VMark-specific Tiptap API patterns (commands, node traversal, selection handling). Use tiptap-dev for general Tiptap/ProseMirror development, and tiptap-editor for VMark-specific editor integration. When to Use This Skill Creating custom nodes, marks, or extensions for Tiptap Implementing input rules or paste rules Work...
|
61 |
| 14438 | landing-page-optimization | reynau/landing-page-optimization |
Landing Page Optimization Build, write, and optimize high-converting landing pages combining proven copy frameworks, the 11-essential-elements structure, and a clear creation workflow. 1. Copy Framework Gather Before Writing Collect these inputs before drafting any copy: Product/service name and core value proposition Target audience and their primary pain point Key differentiator vs alternatives Desired visitor action (CTA goal) Available social proof (testimonials, stats, logos) Choose a Frame...
|
61 |
| 14439 | development | sickn33/antigravity-awesome-skills |
Development Workflow Bundle Overview Consolidated workflow for end-to-end software development covering web, mobile, and backend development. This bundle orchestrates skills for building production-ready applications from scaffolding to deployment. When to Use This Workflow Use this workflow when: Building new web or mobile applications Adding features to existing applications Refactoring or modernizing legacy code Setting up new projects with best practices Full-stack feature development Cross-...
|
61 |
| 14440 | api-design-principles | secondsky/claude-skills |
API Design Principles Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers and stand the test of time. When to Use This Skill Designing new REST or GraphQL APIs Refactoring existing APIs for better usability Establishing API design standards for your team Reviewing API specifications before implementation Migrating between API paradigms (REST to GraphQL, etc.) Creating developer-friendly API documentation Optimizing APIs for ...
|
61 |
| 14441 | websocket-implementation | secondsky/claude-skills |
WebSocket Implementation Overview Build scalable WebSocket systems for real-time communication with proper connection management, message routing, error handling, and horizontal scaling support. When to Use Building real-time chat and messaging Implementing live notifications Creating collaborative editing tools Broadcasting live data updates Building real-time dashboards Streaming events to clients Live multiplayer games Instructions 1. Node.js WebSocket Server (Socket.IO) const express = req...
|
61 |
| 14442 | code-review | getsentry/sentry-skills |
Code Review When to use this skill Reviewing pull requests Checking code quality Providing feedback on implementations Identifying potential bugs Suggesting improvements Security audits Performance analysis Instructions Step 1: Understand the context Read the PR description : What is the goal of this change? Which issues does it address? Are there any special considerations? Check the scope : How many files changed? What type of changes? (feature, bugfix, refactor) Are tests included? Step 2: Hi...
|
61 |
| 14443 | vercel | hoodini/ai-agents-skills |
Vercel Deployment Deploy and scale applications on Vercel's edge network. Quick Start Install Vercel CLI npm i -g vercel Deploy vercel Production deploy vercel --prod vercel.json Configuration { "buildCommand" : "npm run build" , "outputDirectory" : ".next" , "framework" : "nextjs" , "regions" : [ "iad1" , "sfo1" ] , "functions" : { "api//*.ts" : { "memory" : 1024 , "maxDuration" : 30 } } , "rewrites" : [ { "source" : "/api/:path*" , "destination" : "/api/:path*" } , { "source" : "/:path*" , ...
|
61 |
| 14444 | module-learning-path-generator | jorgealves/agent_skills |
Mentoring & Education: Module Generators This directory contains skills for the "Creation" phase of the teaching lifecycle. Learning Path Generator : Creates the 30,000-foot view of a student's journey. Class Session Planner : Breaks modules into minute-by-minute lesson plans. Project Generator : Creates professional-grade projects to test student skills. Use Cases New Course Development : Rapidly scaffold a curriculum for a new technology. Bootcamp Customization : Tailor a standard learning pat...
|
61 |
| 14445 | speckit-tasks | dceoy/speckit-agent-skills |
Spec Kit Tasks Skill When to Use The implementation plan is ready and you need a dependency-ordered task list. Inputs specs/<feature>/plan.md and specs/<feature>/spec.md Optional artifacts: data-model.md , contracts/ , research.md , quickstart.md Any user constraints or priorities from the request If the plan is missing, ask the user to run speckit-plan first. Workflow Setup : Run .specify/scripts/bash/check-prerequisites.sh --json from repo root and parse FEATURE_DIR and AVAILABLE_DOCS list. Al...
|
61 |
| 14446 | specification-writing | epicenterhq/epicenter |
Specification Writing Follow writing-voice for prose sections. A specification gives an agent (or human) the context they need to implement a feature autonomously. The goal is NOT to describe everything exhaustively; it's to provide enough initial context that the implementer can do their own research and make informed decisions. Note : This guide uses [PLACEHOLDER] markers for content you must fill in. Code blocks show templates; replace all bracketed content with your feature's details. The Co...
|
61 |
| 14447 | scheduled-jobs | groeimetai/snow-flow |
Scheduled Jobs automate recurring tasks, batch processing, and maintenance operations. Job Types | Scheduled Script Execution | sysauto_script | Run custom scripts | Report Scheduler | sysauto_report | Generate and email reports | Table Cleaner | sys_auto_flush | Delete old records | LDAP Refresh | ldap_server_config | Sync LDAP data | Discovery | discovery_schedule | Network discovery Scheduled Script Execution (ES5) Basic Scheduled Job ``` // Table: sysauto_script //...
|
61 |
| 14448 | umbraco-sections | umbraco/umbraco-cms-backoffice-skills |
Umbraco Sections What is it? Sections are top-level navigation items in the Umbraco backoffice that appear alongside default options like Content, Media, and Settings. They serve as a home for custom content and functionality, providing a blank canvas that can be extended with dashboards, sidebars, and section views. Sections require permission configuration for user groups to access them. Documentation Always fetch the latest docs before implementing: Main docs : https://docs.umbraco.com/umbrac...
|
60 |
| 14449 | app-router | davepoon/buildwithclaude |
Next.js App Router Patterns Overview The App Router is Next.js's file-system based router built on React Server Components. It uses a app/ directory structure where folders define routes and special files control UI behavior. Core File Conventions Route Files Each route segment is defined by a folder. Special files within folders control behavior: File Purpose page.tsx Unique UI for a route, makes route publicly accessible layout.tsx Shared UI wrapper, preserves state across navigations load...
|
60 |
| 14450 | r-econometrics | meleantonio/awesome-econ-ai-stuff |
R Econometrics Purpose This skill helps economists run rigorous econometric analyses in R, including Instrumental Variables (IV), Difference-in-Differences (DiD), and Regression Discontinuity Design (RDD). It generates publication-ready code with proper diagnostics and robust standard errors. When to Use Running causal inference analyses Estimating treatment effects with panel data Creating publication-ready regression tables Implementing modern econometric methods (two-way fixed effects, event ...
|
60 |