Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,459
总 Skills
36.0M
总安装量
2,444
贡献者
# Skill 仓库 描述 安装量
20001 make-automation davepoon/buildwithclaude
Make Automation via Rube MCP Automate Make (formerly Integromat) operations through Composio's Make toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/make Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Make connection via RUBE_MANAGE_CONNECTIONS with toolkit make Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpo...
38
20002 frontend-ui-integration julianromli/ai-skills
Skill: Frontend UI integration Purpose Implement or extend a user-facing workflow in our primary web application, integrating with existing backend APIs and following our design system, routing, and testing conventions. When to use this skill The feature is primarily a UI/UX change backed by one or more existing APIs. The backend contracts, auth model, and core business rules already exist. The change affects only the web frontend (no schema or service ownership changes). Inputs Feature descri...
38
20003 technical-presentations melodic-software/claude-code-plugins
Technical Presentations Skill Create compelling technical presentations that educate, persuade, and engage developer audiences. Keywords presentation, slides, talk, demo, speaking, pitch, architecture review, tech talk, brown bag, lightning talk, conference, meetup, powerpoint, keynote, google slides When to Use This Skill This skill provides guidance when developers need to: Structure a technical presentation or talk Create effective slides for developer audiences Plan and execute live de...
38
20004 tech-article-writer smallnest/langgraphgo
干货 = 高信息密度 + 零废话 + 可执行性 本 Skill 专注于创作技术干货文章,核心原则: - ✂️ 简练至上: 每个字都有存在价值,删除一切冗余 - 🎯 知识点全覆盖: 重要概念、原理、实践一个不漏 - 🔨 实用导向: 读者看完能立即应用,不是纸上谈兵 - 📊 结构化思维: 清晰的信息架构,快速定位所需内容 写作标准 1. 语言要求 简练标准: ``` ❌ 不好: "在现代软件开发的实践过程中,我们经常会遇到需要对代码进行优化的情况" ✅ 简练: "代码优化是常见需求" ❌ 不好: "这个功能非常强大,可以帮助我们极大地提升工作效率" ✅ 简练: "此功能可提升 50% 效率"(用数据说话) ❌ 不好: "接下来,让我们一起来看一看这个特性的具体使用方法" ✅ 简练: "使用方法:"(直接进入主题) ``` 禁用词清单: - ❌ "众所周知"、"大家都知道"、"显而易见" - ❌ "非常"、"十分"、"极其"(用具体数据替代) - ❌ "让我们"、"一起来"、"接下来"(直接讲重点) - ❌ "可能"、"也许"、"或许"(干货要确定) ...
38
20005 sci-journals-hybrid-search tiangong-ai/skills
SCI Journals Hybrid Search Prepare required inputs Provide data as JSON with query and optional topK , extK , filter , datefilter , getMeta . Set TIANGONG_AI_APIKEY and send x-api-key: <TIANGONG_AI_APIKEY> . Send request Endpoint: https://qyyqlnwqwgvzxnccnbgm.supabase.co/functions/v1/sci_search Headers: Content-Type: application/json x-region: us-east-1 x-api-key: <TIANGONG_AI_APIKEY> Use assets/example-request.json as a base payload. curl -sS --location --request POST "https://qyyqlnwqwgvzxnccn...
38
20006 career-strategy melodic-software/claude-code-plugins
Career Strategy Strategic career planning for software engineers, including internal vs external growth paths, goal setting, career maintenance practices, and long-term career trajectory planning. When to Use This Skill Deciding between pursuing internal promotion vs external opportunities Setting career goals and creating development plans Planning long-term career trajectory Assessing readiness for external job market Building and maintaining professional network Creating career maintenance ...
38
20007 telemetry-standards supabase/supabase
Telemetry Standards for Supabase Studio Standards for PostHog event tracking in apps/studio/ . Apply these when reviewing PRs that touch tracking or when implementing new tracking. Event Naming Format: [object]_[verb] in snake_case Approved verbs only: opened, clicked, submitted, created, removed, updated, retrieved, intended, evaluated, added, enabled, disabled, copied, exposed, failed, converted Flag these: Unapproved verbs (saved, viewed, seen, pressed, etc.) Wrong order: click_product_card →...
38
20008 conductor-setup shpigford/skills
Set up this Rails project for Conductor, the Mac app for parallel coding agents. What to Create 1. conductor.json (project root) Create conductor.json in the project root if it doesn't already exist: { "scripts" : { "setup" : "bin/conductor-setup" , "run" : "script/server" } } 2. bin/conductor-setup (executable) Create bin/conductor-setup if it doesn't already exist: !/bin/bash set -e Symlink .env from repo root (where secrets live, outside worktrees) [ -f " $CONDUCTOR_ROOT_PATH /.env" ] && ln ...
38
20009 review allenai2014/ai-investment-advisor
Review Playwright Tests Systematically review Playwright test files for anti-patterns, missed best practices, and coverage gaps. Input $ARGUMENTS can be: A file path: review that specific test file A directory: review all test files in the directory Empty: review all tests in the project's testDir Steps 1. Gather Context Read playwright.config.ts for project settings List all *.spec.ts / *.spec.js files in scope If reviewing a single file, also check related page objects and fixtures 2. Check Ea...
38
20010 ui-design-styling ryokun6/ryos
ryOS UI Design & Styling The 4 Themes Theme ID Key Traits System 7 system7 Black/white, square corners, Chicago font, dotted patterns macOS Aqua macosx Pinstripes, traffic lights, glossy buttons, Lucida Grande Windows XP xp Blue gradients, Luna style, soft shadows, Tahoma Windows 98 win98 Gray 3D bevels, classic blue title bars, MS Sans Serif Essential Utilities import { cn } from "@/lib/utils" ; import { useTheme } from "@/contexts/ThemeContext" ; const { osTheme } = useTheme ( ) ; // Theme-con...
38
20011 python-debugger majesticlabs-dev/majestic-marketplace
Python Debugger Debugging Process Understand the Error -> 2. Reproduce -> 3. Isolate -> 4. Identify Root Cause -> 5. Fix -> 6. Verify Step 1: Understand the Error Reading Tracebacks Traceback (most recent call last): <- Read bottom to top File "app.py", line 45, in main <- Entry point result = process_data(data) <- Call chain File "processor.py", line 23, in process_data return transform(item) <- Getting closer File "transformer.py", line 12, in transform ...
38
20012 package-development bagisto/agent-skills
Package Development in Bagisto Overview A package is a self-contained module that encapsulates specific features or functionality in Bagisto. This comprehensive skill covers all aspects of package development from structure to advanced features. When to Apply Activate this skill when: Creating new packages for Bagisto Setting up package directory structure Creating database migrations Building Eloquent models with contracts and proxies Implementing repositories for data access Creating routes fo...
38
20013 add-badges wyattowalsh/agents
Phase 1 — Detect Run the detection script via the Bash tool: uv run python skills/add-badges/scripts/detect.py <path> Parse the JSON output. The script detects: repo info, languages, package managers, frameworks, CI/CD, infrastructure, code quality, testing, docs, license, release, security, community, developer tooling, databases, monorepo signals, and existing badges. If the script fails (uv unavailable, Python missing, script error, invalid JSON), fall back to manual detection: Glob for manif...
38
20014 helloagents hellowind777/helloagents
HelloAGENTS 技能入口 本文件在用户显式调用技能时加载(/helloagents 或 $helloagents)。 核心规则在主配置中定义,本文件定义显式调用时的响应规则。 路径基准: SKILL_ROOT: skills/helloagents/ — 本文件及子模块中的相对路径(references/、scripts/、assets/)需添加此前缀。 显式调用响应规则 当用户通过 /helloagents 或 $helloagents 显式调用本技能时,输出以下欢迎信息: 💡【HelloAGENTS】- 技能已激活 智能工作流系统,提供结构化任务流程。 可用命令 | 命令 | 功能 | |------|------| | `~auto` | 全授权命令 | | `~plan` | 执行到方案设计 | | `~exec` | 执行方案包 | | `~init` | 初始化知识库 | | `~upgrade` | 升级知识库 | | `~clean` | 清理遗留方案包 | | `~commit` | Git 提交 | | `~test` | 运行测试 | |...
38
20015 subagent-creation supercent-io/skills-template
Claude Code Subagent Creation When to use this skill Defining specialized AI experts for specific tasks Creating reusable agent configurations for team workflows Implementing task delegation patterns Setting up automated code review, debugging, or analysis workflows Creating agents with custom prompts and tool permissions Instructions Step 1: Understanding Subagents Claude Code subagents are pre-configured AI experts that the main Claude delegates work to. Core benefits: Context isolation: Ea...
38
20016 pre-publish-post-assistant nicepkg/ai-workflow
This skill helps prepare blog posts for publication by providing intelligent suggestions for: - Categories - From existing site categories, with distribution awareness - Tags - From existing tags, avoiding tag pollution - SEO Metadata - Title, meta description, and focus keyphrase All suggestions include rationale explaining the reasoning. When to Use This Skill - User says "classify this post" or "suggest categories/tags" - User asks to "prepare this post for publishing" - User wants "...
38
20017 google-tts sanjay3290/ai-skills
Google Cloud Text-to-Speech Converts text and documents into audio using Google Cloud TTS API. Supports Neural2, WaveNet, Studio, and Standard voices across 40+ languages. Setup API key via GOOGLE_TTS_API_KEY env var or skills/google-tts/config.json with {"api_key": "..."} . Requires ffmpeg for multi-chunk documents. Optional: pip install PyPDF2 python-docx for PDF/DOCX. Commands List Voices python skills/google-tts/scripts/google_tts.py voices --language en-US --type Neural2 python skills/googl...
38
20018 ai-social-media-content inference-sh/agent-skills
AI Social Media Content Create social media content for all platforms via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Install instructions infsh login Generate a TikTok-style video infsh app run google/veo-3-1-fast --input '{ "prompt": "POV walking through a neon-lit Tokyo street at night, vertical format 9:16, cinematic" }' Platform Formats Platform Aspect Ratio Duration Resolution TikTok 9:16 vertical 15-60s 1080x1920 Instagram Reels 9:16 vertical 15-90s 1080x1920 Insta...
38
20019 mermaid-sequence-diagram-creator jeremylongshore/claude-code-plugins-plus-skills
Mermaid Sequence Diagram Creator Purpose This skill provides automated assistance for mermaid sequence diagram creator tasks within the Visual Content domain. When to Use This skill activates automatically when you: Mention "mermaid sequence diagram creator" in your request Ask about mermaid sequence diagram creator patterns or best practices Need help with visual content skills covering diagrams, charts, presentations, and visual documentation tools. Capabilities Provides step-by-step guidance ...
38
20020 scrollytelling doodledood/claude-code-plugins
Scrollytelling Skill Build scroll-driven narrative experiences that reveal content, trigger animations, and create immersive storytelling as users scroll. What is Scrollytelling? Definition : "A storytelling format in which visual and textual elements appear or change as the reader scrolls through an online article." When readers scroll, something other than conventional document movement happens. Origin : The New York Times' "Snow Fall: The Avalanche at Tunnel Creek" (2012), which won the 2013 ...
38
20021 algorithmic-art teachingai/full-stack-skills
Algorithmic philosophies are computational aesthetic movements that are then expressed through code. Output .md files (philosophy), .html files (interactive viewer), and .js files (generative algorithms). This happens in two steps: Algorithmic Philosophy Creation (.md file) Express by creating p5.js generative art (.html + .js files) First, undertake this task: ALGORITHMIC PHILOSOPHY CREATION To begin, create an ALGORITHMIC PHILOSOPHY (not static images or templates) that will be interpreted thr...
38
20022 pentest-exploit-validation jd-opensource/joysafeter
Pentest Exploit Validation Purpose Validate vulnerability findings through proof-driven exploitation using Shannon's 4-level evidence system. Consumes the exploitation queue from white-box code review, attempts structured exploitation with bypass exhaustion, collects mandatory evidence per vulnerability type, and classifies each finding as EXPLOITED, POTENTIAL, or FALSE_POSITIVE. Prerequisites Authorization Requirements Written authorization with explicit scope for active exploitation testing Ex...
38
20023 swift-executor erichowens/some_claude_skills
You are a swift executor who specializes in rapid, decisive action without getting deterred by obstacles. You maintain forward momentum, make quick decisions, and overcome blockers through pragmatic solutions. Activation Triggers Responds to: swift, execute, rapid, undeterred, blocker, just do it, get it done, move forward Your Mission Execute tasks with speed and determination. When others might pause to analyze or perfect, you move forward with "good enough" solutions that work. You are th...
38
20024 ai-multimodal bmad-labs/skills
AI Multimodal Processing Skill Process audio, images, videos, documents, and generate images using Google Gemini's multimodal API. Unified interface for all multimedia content understanding and generation. Core Capabilities Audio Processing Transcription with timestamps (up to 9.5 hours) Audio summarization and analysis Speech understanding and speaker identification Music and environmental sound analysis Text-to-speech generation with controllable voice Image Understanding Image captioning an...
38
20025 ai-content-pipeline inference-sh/agent-skills
AI Content Pipeline Build multi-step content creation pipelines via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login Simple pipeline: Generate image -> Animate to video infsh app run falai/flux-dev --input '{"prompt": "portrait of a woman smiling"}' > image.json infsh app run falai/wan-2-5 --input '{"image_url": "<url-from-previous>"}' Pipeline Patterns Pattern 1: Image -> Video -> Audio ...
38
20026 zig-docs 0xbigboss/claude-code
Standard library modules are self-documenting. Fetch source directly: ``` Module source with doc comments curl -sL "https://codeberg.org/ziglang/zig/raw/branch/master/lib/std/<module>.zig" Common modules: curl -sL "https://codeberg.org/ziglang/zig/raw/branch/master/lib/std/log.zig" curl -sL "https://codeberg.org/ziglang/zig/raw/branch/master/lib/std/mem.zig" curl -sL "https://codeberg.org/ziglang/zig/raw/branch/master/lib/std/fs.zig" curl -sL "https://codeberg.org/ziglang/zig/raw/branch/mast...
38
20027 slidev-latex yoanbernabeu/slidev-skills
This skill covers rendering mathematical formulas and scientific notation in Slidev using KaTeX, a fast LaTeX math rendering library. When to Use This Skill - Writing mathematical equations - Scientific presentations - Technical documentation - Academic content - Physics, chemistry, or engineering formulas Basic Syntax Inline Math Surround with single `$`: ``` The quadratic formula is $x = \frac{-b \pm \sqrt{b^2-4ac}}{2a}$ where $a \neq 0$. ``` Block Math Surround with double `$...
38
20028 tracking-pettracer-location tristanmanchester/agent-skills
Tracking PetTracer pet location Why this exists PetTracer exposes an (unofficial) web portal API used by their apps/website. This skill gives a reliable, low-drama workflow for: Current location (latest known point) Recent route/history (time-windowed points) Near-real-time updates (WebSocket push, optional) It is designed to minimise API load (be respectful) and to produce consistent, copy/paste-friendly outputs . Quick start Snapshot location (recommended default) Set credentials (prefer env v...
38
20029 audio-reactive bbeierle12/skill-mcp-claude
Audio Reactive Visuals Connecting audio analysis to visual parameters. Quick Start import * as Tone from 'tone'; const analyser = new Tone.Analyser('fft', 256); const player = new Tone.Player('/audio/music.mp3'); player.connect(analyser); player.toDestination(); function animate() { const fft = analyser.getValue(); const bass = (fft[2] + 100) / 100; // Normalize to 0-1 // Apply to visual element.style.transform = `scale(${1 + bass * 0.2})`; requestAnimationFrame(animate); } Core...
38
20030 design-foundation sanky369/vibe-building-skills
Design Foundation Overview A design foundation is the bedrock upon which all great products are built. It's not just a collection of colors and fonts—it's a system of decisions that enables your team to build consistently, quickly, and with intention. This skill helps you create or formalize your design foundation, whether you're starting from scratch or documenting what already exists. It covers design tokens, component structure, design principles documentation, and the governance model for ...
38
20031 typescript-code-review anyproto/anytype-ts
TypeScript Code Review Skill Perform thorough, professional code reviews for TypeScript code with focus on type safety, best practices, performance, security, and maintainability. Review Process When reviewing TypeScript code, follow this structured approach: 1. Initial Assessment Understand the code's purpose and context Identify the scope (single file, module, feature, or entire codebase) Note the TypeScript version and configuration (check tsconfig.json ) Review any relevant documentation or ...
38
20032 triage simota/agent-skills
You are triaging the user's Readwise Reader inbox. Follow this process carefully. Readwise Access Check if Readwise MCP tools are available (e.g. mcp__readwise__reader_list_documents ). If they are, use them throughout. If not, use the equivalent readwise CLI commands instead (e.g. readwise list , readwise read <id> , readwise move <id> <location> ). The instructions below reference MCP tool names — translate to CLI equivalents as needed. Setup Check for persona file. Read reader_persona.md in t...
38
20033 generate-flashcards panaversity/agentfactory
Generate Flashcards Generate two kinds of cards from lesson content — recall cards that lock in critical facts, and thinking cards that force genuine understanding. Half and half. That's it. Always plan first, use your tasks tool to organize the plan and track your progress. What Makes a Good Card Read this section first. Everything else is mechanics. Recall Cards (half the deck) Follow the minimum information principle (one question, one answer). Keep questions concise but explicit ( under 40 w...
38
20034 slidev-presenter-mode yoanbernabeu/slidev-skills
This skill covers using Slidev's presenter mode for professional presentations, including speaker notes, timers, slide overview, and remote control features. When to Use This Skill - Preparing for a live presentation - Adding speaker notes - Using dual-screen setup - Remote control from phone - Rehearsing with timer Accessing Presenter Mode Via Navigation Click the presenter icon in the navigation bar (bottom-left). Via URL Navigate directly to: ``` http://localhost:3030/presente...
38
20035 xlsx api/git
Requirements for Outputs All Excel files Professional Font Use a consistent, professional font (e.g., Arial, Times New Roman) for all deliverables unless otherwise instructed by the user Zero Formula Errors Every Excel model MUST be delivered with ZERO formula errors (REF!, DIV/0!, VALUE!, N/A, NAME?) Preserve Existing Templates (when updating templates) Study and EXACTLY match existing format, style, and conventions when modifying files Never impose standardized formatting on files with establi...
38
20036 00-bkci-global-architecture tencentblueking/bk-ci
BK-CI 全局架构指南 📚 Skill 导航索引 说明: 本文档是全局架构总览,按需深入阅读具体模块的 Skill。 🗂️ 按类别查找 (31 个 Skill) 1️⃣ 全局架构 (1) 00-bkci-global-architecture (本文档) - 系统全局架构、模块协作、执行流程 2️⃣ 通用技术实践 (3) common-technical-practices - 框架级实践:AOP、分布式锁、重试、监控、定时任务、审计日志 microservice-infrastructure - 微服务基础:条件配置、事件驱动、服务调用、国际化、日志 utility-components - 工具级组件:JWT、表达式解析、线程池、责任链 3️⃣ 后端开发 (3) backend-microservice-development - 后端微服务开发规范、Controller/Service/Dao 模式 api-interface-design - RESTful API 设计、接口规范 unit-testing - 单元测试编写规范 4️⃣ 前端开发 (1) frontend...
38
20037 playwright-testing zenobi-us/dotfiles
Playwright E2E Testing Skill Load with: base.md + [framework].md For end-to-end testing of web applications with Playwright - cross-browser, fast, reliable. Sources: Playwright Best Practices | Playwright Docs | Better Stack Guide Setup Installation New project npm init playwright@latest Existing project npm install -D @playwright/test npx playwright install Configuration // playwright.config.ts import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ te...
38
20038 managing-devops-pipeline tencentblueking/bk-ci
蓝盾流水线管理 通过 MCP 工具 devops-prod-pipeline 管理蓝盾流水线构建。 核心概念 projectId:项目英文名(如 myproject) pipelineId:流水线 ID,以 p- 开头(如 p-abc123) buildId:构建 ID,以 b- 开头(如 b-xyz789) 重要规则 启动构建前必须获得用户确认:在调用 v4_user_build_start 之前,必须向用户展示完整的构建入参并获得明确确认。未经用户确认,禁止执行构建操作。 常用工作流 1. 启动构建 步骤 1:获取启动参数 → devops-prod-pipeline:v4_user_build_startInfo 步骤 2:向用户展示构建参数,等待用户确认 ⚠️ 必须执行 步骤 3:用户确认后启动构建 → devops-prod-pipeline:v4_user_build_start 步骤 4:查看状态 → devops-prod-pipeline:v4_user_build_status 步骤 2 确认模板: 即将启动构建,请确认以下参数: - 项目:{proj...
38
20039 monorepo-ci-optimizer patricio0312rev/skills
Monorepo CI Optimizer Run only affected builds and tests in monorepos for faster CI. Affected Detection Strategy Using Turborepo .github/workflows/ci.yml name: CI on: pull_request: push: branches: [main] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: fetch-depth: 0 Need full history for affected detection - uses: actions/setup-node@v4 with: node-version: "20" cache: "pnpm" - ru...
38
20040 nativewind hairyf/skills
Skill is based on NativeWind v5 (Tailwind CSS v4), generated at 2026-02-26. NativeWind compiles Tailwind CSS for React Native: className on components, StyleSheet.create on native and reuse of the Tailwind stylesheet on web. It supports media/container queries, pseudo-classes (hover, focus, active), platform variants (ios:, android:, native:, web:), dark mode, and custom theme/utilities via CSS-first config. Core References Topic Description Reference Setup CSS file, Metro withNativewind, PostCS...
38
20041 duckdb-sql robdmc/claude_skills
DuckDB SQL Query Assistant CRITICAL: Use Existing Assets - DO NOT RUN DUCKDB CLI STOP. Your FIRST action must be to check if duckdb_sql_assets/ exists. Even if the user provides direct file paths (e.g., @file.ddb or /path/to/file.ddb), you MUST check for existing assets first. Do NOT access the database files directly. Your first tool call must be: Glob or Read on duckdb_sql_assets/ - NOT a Bash command. If duckdb_sql_assets/ exists with these files: tables_inventory.json schema_*.sql files...
38
20042 project-map-builder yunshu0909/yunshu_skillshub
项目目录地图构建器 为指定目录范围生成或增量更新高信噪比的目录说明文档。 核心规则 必须让用户指定要扫描的文件夹范围,禁止默认全仓库扫描。 若范围过大,提醒上下文风险并让用户确认或缩小范围。 输出语言必须与用户当前语言一致。 文档文件名固定:PROJECT_MAP.md。 若输出位置已存在 PROJECT_MAP.md,进入更新模式(仅增量更新)。 若不存在,进入主动引导模式(先确认范围再新建)。 输出位置规则 单目录:将 PROJECT_MAP.md 写在该目录根。 多目录: 先询问:生成一个合并文档,还是每个目录各生成一个。 合并:写到项目根目录。 分开:各目录根各写一份 PROJECT_MAP.md。 最少需要询问用户的问题 要扫描哪些文件夹? 如果是多个文件夹:合并成一个文档,还是分别生成多个? 若范围大或不明确:是否确认范围? 工作流 A) 主动引导模式(不存在 PROJECT_MAP.md) 确认扫描范围与输出策略。 快速列出指定目录的文件清单。 识别入口与关键文件(如 manifest、主入口、服务线程、UI、配置、存储、测试、文档)。 只打开“关键文件”用于解释职责与关...
38
20043 docker-deployment aaaaqwq/claude-code-skills
Docker Deployment Skill Master containerizing and deploying Node.js applications with Docker for consistent, portable deployments. Quick Start Dockerize Node.js app in 3 steps: Create Dockerfile - Define container image Build Image - docker build -t myapp . Run Container - docker run -p 3000:3000 myapp Core Concepts Basic Dockerfile FROM node:18-alpine WORKDIR /app COPY package*.json ./ RUN npm ci --only=production COPY . . EXPOSE 3000 CMD ["node", "src/index.js"] Multi-Stage Build (Op...
38
20044 marketing-skills dirnbauer/webconsulting-skills
Marketing Skills Division 42 production-ready marketing skills organized into 7 specialist pods with a context foundation and orchestration layer. Quick Start Claude Code /read marketing-skill/marketing-ops/SKILL.md The router will direct you to the right specialist skill. Codex CLI codex --full-auto "Read marketing-skill/marketing-ops/SKILL.md, then help me write a blog post about [topic]" OpenClaw Skills are auto-discovered from the repository. Ask your agent for marketing help — it routes via...
38
20045 tensorflow-neural-networks thebushidocollective/han
TensorFlow Neural Networks Build and train neural networks using TensorFlow's high-level Keras API and low-level custom implementations. This skill covers everything from simple sequential models to complex custom architectures with multiple outputs, custom layers, and advanced training techniques. Sequential Models with Keras The Sequential API provides the simplest way to build neural networks by stacking layers linearly. Basic Image Classification import tensorflow as tf from tensorflow i...
38
20046 openai-agents ovachiever/droid-tings
OpenAI Agents SDK Build AI applications with text agents, voice agents (realtime), multi-agent workflows, tools, guardrails, and human-in-the-loop patterns. Quick Start npm install @openai/agents zod@4 v0.4.0+ requires Zod 4 (breaking change) npm install @openai/agents-realtime Voice agents export OPENAI_API_KEY="your-key" Breaking Change (v0.4.0): Zod 3 no longer supported. Upgrade to zod@4. Runtimes: Node.js 22+, Deno, Bun, Cloudflare Workers (experimental) Core Concepts Agents: LLM...
38
20047 code-complexity-audit nkootstra/skills
Code Complexity Audit Deep software design analysis based on "A Philosophy of Software Design" by John Ousterhout. Produces a Design Health Report with severity-classified findings and git attribution. References Read this file first. Then load references as needed — do not read all at once . Reference Read when... references/analysis-framework.md Performing the analysis — contains scoring rubrics, dimension checklists, red flags, and language-specific guidance references/git-attribution.md Attr...
38
20048 superplane-cli superplanehq/skills
SuperPlane CLI Operate a SuperPlane instance through the superplane CLI. Quick Reference Task Command Connect to org superplane connect <URL> <TOKEN> Who am I superplane whoami List/switch contexts superplane contexts List canvases superplane canvases list Create canvas superplane canvases create <name> then mode-aware update ( --draft when versioning is enabled) Create canvas from YAML superplane canvases create --file canvas.yaml then mode-aware update ( --draft when versioning is enabled) Exp...
38
20049 busirocket-rust busirocket/agents-skills
Strict, reusable standards for Rust codebases (libraries, CLIs, or backend services). When to Use Use this skill when: - Writing or refactoring Rust code - Structuring modules (services, utils, models) - Separating SQL queries or LLM prompts from Rust code - Enforcing one-thing-per-file discipline Non-Negotiables (MUST) - One public symbol per file (function / type / trait). - No inline SQL strings in `.rs` files; use dedicated SQL files with `include_str!()` (e.g. `sql/<area>/Xxx.sql...
38
20050 pytest manutej/luxor-claude-marketplace
pytest - Professional Python Testing Overview pytest is the industry-standard Python testing framework, offering powerful features like fixtures, parametrization, markers, plugins, and seamless integration with FastAPI, Django, and Flask. It provides a simple, scalable approach to testing from unit tests to complex integration scenarios. Key Features: Fixture system for dependency injection Parametrization for data-driven tests Rich assertion introspection (no need for self.assertEqual) Plugi...
38