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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,953
总 Skills
177.8M
总安装量
2,760
贡献者
# Skill 仓库 描述 安装量
22201 data-policies groeimetai/snow-flow
Data Policies & Dictionary for ServiceNow Data Policies enforce data integrity rules. Dictionary controls schema and field behavior. Architecture Dictionary (sys_dictionary) ├── Field Definition │ ├── Type, Length, Default │ └── Dependent Field └── Dictionary Overrides (sys_dictionary_override) Data Policy (sys_data_policy2) └── Data Policy Rules (sys_data_policy_rule) └── Condition-based field behaviors Key Tables Table Purpose sys_dictionary Field definition...
52
22202 free-tool-arsenal majesticlabs-dev/majestic-marketplace
Free Tool Arsenal Builder Audience: Bootstrapped founders and side-project builders who need a complete tech stack without spending money. Goal: Research and compile genuinely free tools (not trials) for each business function. Include free tier limits, open-source alternatives, and workarounds for common limitations. Conversation Starter Use AskUserQuestion to gather initial context. Begin by asking: "I'll help you build a complete business tech stack using 100% free tools. Please provide: Busi...
52
22203 publish-zsxq-article sugarforever/01coder-agent-skills
Publish Zsxq Article Publish Markdown content to Zsxq (知识星球) article editor in Markdown mode, saving as draft for user review before publishing. Prerequisites Browser automation MCP (either one): Chrome DevTools MCP ( mcp__chrome-devtools__* ) Playwright MCP ( mcp__playwright__* ) User logged into Zsxq (知识星球) Browser MCP Tool Mapping This skill works with both Chrome DevTools MCP and Playwright MCP. Use whichever is available: Action Chrome DevTools MCP Playwright MCP Navigate navigate_page brow...
52
22204 storage-taskwarrior zenobi-us/dotfiles
Agent Purpose: Manage Taskwarrior tasks using the current project's git repository remote URL as a project ID. Project ID Generation: Automatically slugified from git remote URL - Example: `git@github.com:zenobi-us/dotfiles.git` → `zenobi-us-dotfiles` - Stored in Taskwarrior `project` attribute for easy filtering Core Capabilities 1. Automatic Project ID Resolution The agent automatically: - Detects the git repository remote URL: `git config --get remote.origin.url` - Extracts owner an...
52
22205 dead-code-detector terrylica/cc-skills
Dead Code Detector Find and remove unused code across Python, TypeScript, and Rust codebases. Tools by Language Language Tool Detects Python vulture v2.14+ Unused imports, functions, classes, variables TypeScript knip v5.0+ Unused exports, dependencies, files Rust cargo clippy + rustc lints Unused functions, imports, dead_code warnings Why these tools? vulture : AST-based, confidence scoring (60-100%), whitelist support knip : Successor to ts-prune (maintenance mode), monorepo-aware, auto-fix ca...
52
22206 container-development laurigates/claude-plugins
Expert knowledge for containerization and orchestration with focus on security-first, lean container images and 12-factor app methodology. Security Philosophy (Non-Negotiable) Non-Root is MANDATORY: ALL production containers MUST run as non-root users. This is not optional. Minimal Base Images: Use Alpine (~5MB) for Node.js/Go/Rust. Use slim (~50MB) for Python (musl compatibility issues with Alpine). Multi-Stage Builds Required: Separate build and runtime environments. Build tools should NO...
52
22207 clarify:vague team-attention/workshop-upstage
Vague: Requirement Clarification Transform vague or ambiguous requirements into precise, actionable specifications through hypothesis-driven questioning. ALWAYS use the AskUserQuestion tool — never ask clarifying questions in plain text. When to Use Ambiguous feature requests ("add a login feature") Incomplete bug reports ("the export is broken") Underspecified tasks ("make the app faster") For strategy/planning blind spot analysis, use the unknown skill. For content-vs-form reframing, use the m...
52
22208 typography advisor eddiebe147/claude-settings
Typography Advisor A typography expert that creates beautiful, readable type systems for any medium. This skill combines typographic principles, font pairing expertise, and accessibility best practices to design cohesive typography that enhances content and brand identity. From selecting the perfect font combination to building a complete type scale with hierarchies, this skill ensures your text is both aesthetically pleasing and functionally excellent across all devices and use cases. Core Work...
52
22209 product-strategist ncklrs/startup-os-skills
Product Strategist Strategic toolkit for Head of Product to drive vision, alignment, and organizational excellence. Core Capabilities Capability Description Tool OKR Cascade Generate aligned OKRs from company to team level okr_cascade_generator.py Alignment Scoring Measure vertical and horizontal alignment Built into generator Strategy Templates 5 pre-built strategy types Growth, Retention, Revenue, Innovation, Operational Team Configuration Customize for your org structure --teams flag Quick St...
52
22210 phoenix-playwright-tests arize-ai/phoenix
Phoenix Playwright Test Writing Write end-to-end tests for Phoenix using Playwright. Tests live in app/tests/ and follow established patterns. Timeout Policy Do not pass timeout args in test code under app/tests . Tune timing centrally in app/playwright.config.ts (global timeout , expect.timeout , use.navigationTimeout , and webServer.timeout ). Quick Start import { expect , test } from "@playwright/test" ; import { randomUUID } from "crypto" ; test . describe ( "Feature Name" , ( ) => { test . ...
52
22211 openclaw-workspace win4r/openclaw-workspace
OpenClaw Workspace Skill Overview OpenClaw workspace files form the agent's "soul and memory" — they are injected into the system prompt on every turn (or on relevant turns), giving the agent its identity, behavioral rules, environmental knowledge, and long-term memory. Managing these files well is critical: bloat wastes tokens, redundancy creates confusion, and stale content leads to bad decisions. Token budget: 20,000 chars per file, ~150,000 chars total across all bootstrap files. File Invent...
52
22212 azure-ai-projects-ts sickn33/antigravity-awesome-skills
Azure AI Projects SDK for TypeScript High-level SDK for Azure AI Foundry projects with agents, connections, deployments, and evaluations. Installation npm install @azure/ai-projects @azure/identity For tracing: npm install @azure/monitor-opentelemetry @opentelemetry/api Environment Variables AZURE_AI_PROJECT_ENDPOINT = https:// < resource > .services.ai.azure.com/api/projects/ < project > MODEL_DEPLOYMENT_NAME = gpt-4o Authentication import { AIProjectClient } from "@azure/ai-projects" ; import ...
52
22213 ln-822-nuget-upgrader 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. ln-822-nuget-upgrader Type: L3 Worker Category: 8XX Optimization Parent: ln-820-dependency-optimization-coordinator Upgrades .NET NuGet packages with automatic breaking change detection and migration. Overview Aspect Details Input Solution/project path Output Updated .csproj files, migration report Supports .NET 6, 7, 8, 9,...
52
22214 flowchart-generator dkyazzentwatwa/chatgpt-skills
Create professional flowcharts from structured process definitions. Supports standard flowchart symbols (start/end, process, decision, I/O), swimlanes for multi-actor processes, and multiple export formats. Quick Start ``` from scripts.flowchart_gen import FlowchartGenerator Using Python DSL flow = FlowchartGenerator() flow.start("Start") flow.process("Step 1", id="s1") flow.decision("Check?", id="d1") flow.process("Yes Path", id="yes") flow.process("No Path", id="no") flow.end("End") flow...
52
22215 enter-services pollinations/pollinations
Requirements Before using this skill, ensure you have: SSH keys : Configured via GitHub secrets (see workflow) sops : brew install sops (for decrypting secrets) Wrangler : npm install -g wrangler Node.js : brew install node Must run from the pollinations repo root. Architecture Overview Environment Gateway (Cloudflare Worker) Text/Image Services (EC2) Production enter.pollinations.ai 3.80.56.235 (ports 16384/16385) Staging staging.enter.pollinations.ai 44.222.254.250 (ports 16384/16385) SSH Conf...
52
22216 ml-failfast-validation terrylica/cc-skills
ML Fail-Fast Validation POC validation patterns to catch issues before committing to long-running ML experiments. When to Use This Skill Use this skill when: Starting a new ML experiment that will run for hours Validating model architecture before full training Checking gradient flow and data pipeline integrity Implementing POC validation checklists Debugging prediction collapse or gradient explosion issues 1. Why Fail-Fast? Without Fail-Fast With Fail-Fast Discover crash 4 hours in Catch in 30 ...
52
22217 positron-intake-rotation posit-dev/positron
Positron Intake Rotation Overview This skill provides comprehensive guidance for handling issue intake rotation for the Positron IDE repository. Intake rotation is a weekly assignment (Monday-Friday) where team members review and respond to new issues, discussion posts, and support tickets to ensure timely responses and actionable issue tracking. The goal is to respond to new items within approximately one business day and ensure all issues have the details required to be actionable. 🚨 CRITICAL:...
52
22218 artifact-lifecycle oimiragieo/agent-studio
Artifact Lifecycle Skill Convenience wrapper for the unified artifact lifecycle workflow. Overview This skill provides a simplified interface to the comprehensive artifact lifecycle management workflow at .claude/workflows/core/skill-lifecycle.md . When to Use Use this skill when you need to: Create a new artifact (skill, agent, hook, workflow, template, schema) Update an existing artifact Deprecate an artifact with migration guidance Check if an artifact already exists Quick Start // Invoke thi...
52
22219 prowler-compliance prowler-cloud/prowler
When to Use Use this skill when: Creating a new compliance framework for any provider Adding requirements to existing frameworks Mapping checks to compliance controls Understanding compliance framework structures and attributes Compliance Framework Location Frameworks are JSON files located in: prowler/compliance/{provider}/{framework_name}_{provider}.json Supported Providers: aws - Amazon Web Services azure - Microsoft Azure gcp - Google Cloud Platform kubernetes - Kubernetes github - GitH...
52
22220 session-management secondsky/claude-skills
Session Management Overview Implement comprehensive session management systems with secure token handling, session persistence, token refresh mechanisms, proper logout procedures, and CSRF protection across different backend frameworks. When to Use Implementing user authentication systems Managing session state and user context Handling JWT token refresh cycles Implementing logout functionality Protecting against CSRF attacks Managing session expiration and cleanup Instructions 1. JWT Token Ge...
52
22221 translation assistant eddiebe147/claude-settings
Translation Assistant The Translation Assistant skill guides you through implementing multilingual translation systems that bridge language barriers accurately and culturally appropriately. From simple phrase translation to full document localization, this skill covers the spectrum of translation needs. Modern translation has been transformed by neural machine translation and large language models, but effective translation still requires understanding context, domain, and cultural nuances. This...
52
22222 eachlabs-video-edit eachlabs/skills
EachLabs Video Edit Edit, transform, and enhance existing videos using 25+ AI models via the EachLabs Predictions API. Authentication Header: X-API-Key: <your-api-key> Set the EACHLABS_API_KEY environment variable. Get your key at eachlabs.ai . Model Selection Guide Video Extension Model Slug Best For Veo 3.1 Extend veo3-1-extend-video Best quality extension Veo 3.1 Fast Extend veo3-1-fast-extend-video Fast extension PixVerse v5 Extend pixverse-v5-extend PixVerse extension PixVerse v4.5 Extend p...
52
22223 skill-creator zhayujie/chatgpt-on-wechat
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
52
22224 daily planner eddiebe147/claude-settings
Daily Planner The Daily Planner skill helps you create structured, realistic daily plans that align with your priorities and energy levels. Rather than overwhelming you with endless tasks, this skill guides you through a thoughtful planning process that considers your goals, constraints, and natural rhythms. This skill uses proven productivity frameworks like time blocking, prioritization matrices, and energy management to help you design days that are both productive and sustainable. It prompts...
52
22225 12-factor-app pproenca/dot-skills
Community Cloud-Native Applications Best Practices Comprehensive methodology for building modern software-as-a-service applications that are portable, scalable, and maintainable. Contains 51 rules across 12 categories, covering the entire application lifecycle from codebase management to production operations. When to Apply Reference these guidelines when: Designing new backend services or APIs Containerizing applications for Kubernetes or Docker Setting up CI/CD pipelines Managing configuration...
52
22226 workflow-plan catlog22/claude-code-workflow
Workflow Plan Unified planning skill combining 4-phase planning workflow, plan quality verification, and interactive replanning. Produces IMPL_PLAN.md, task JSONs, verification reports, and manages plan lifecycle through session-level artifact updates. Architecture Overview ┌──────────────────────────────────────────────────────────────────┐ │ Workflow Plan Orchestrator (SKILL.md) │ │ → Route by mode: plan | verify | replan │ │ → Pure coordin...
52
22227 paywall-upgrade-cro kimny1143/claude-code-template
Paywall and Upgrade Screen CRO You are an expert in in-app paywalls and upgrade flows. Your goal is to convert free users to paid, or upgrade users to higher tiers, at moments when they've experienced enough value to justify the commitment. Initial Assessment Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already ...
52
22228 godot-physics-3d thedivergentai/gd-agentic-skills
3D Physics (Jolt/Native) Expert guidance for high-performance 3D physics and ragdolls. NEVER Do NEVER scale RigidBody3D — Scale collision shapes, NEVER the body itself. Non-uniform scaling breaks physics engines logic. NEVER use move_and_slide inside _process — Always use _physics_process . Frame-rate dependency kills simulation stability. NEVER simulate ragdolls 24/7 — Only enable physical bones on death or impact. Animate static meshes otherwise to save CPU. NEVER ignore Jolt — Godot Jolt plug...
52
22229 azure-ai-projects-py sickn33/antigravity-awesome-skills
Azure AI Projects Python SDK (Foundry SDK) Build AI applications on Microsoft Foundry using the azure-ai-projects SDK. Installation pip install azure-ai-projects azure-identity Environment Variables AZURE_AI_PROJECT_ENDPOINT = "https://<resource>.services.ai.azure.com/api/projects/<project>" AZURE_AI_MODEL_DEPLOYMENT_NAME = "gpt-4o-mini" Authentication import os from azure . identity import DefaultAzureCredential from azure . ai . projects import AIProjectClient credential = DefaultAzureCredenti...
52
22230 knip-deadcode pproenca/dot-skills
Community Knip Dead Code Detection Best Practices Comprehensive guide for detecting and removing dead code in JavaScript and TypeScript projects using Knip. Contains 43 rules across 8 categories, prioritized by impact to guide configuration, CI integration, and cleanup workflows. When to Apply Reference these guidelines when: Configuring Knip for a new project or monorepo Investigating false positives or false negatives Setting up CI pipelines to prevent dead code regressions Using auto-fix to c...
52
22231 negentropy-lens bencium/bencium-claude-code-design-skill
Negentropy Lens A thinking framework for evaluating decisions, systems, and architectures through two fundamental system states: entropy (decay, disorder, complexity debt) and negentropy (growth, compounding value, increasing order). For the conceptual origins of this framework, see references/origin-essay.md . Core Principle Every system exists in one of two states. Every decision either accelerates entropy or drives negentropy. There is no neutral. Inaction is entropic. The goal is not to elim...
52
22232 agentforce-2025 josiahsiegel/claude-plugin-marketplace
🚨 CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes (\) in file paths, NOT forward slashes (/). Examples: ❌ WRONG: D:/repos/project/file.tsx ✅ CORRECT: D:\repos\project\file.tsx This applies to: Edit tool file_path parameter Write tool file_path parameter All file operations on Windows systems Documentation Guidelines NEVER create new documentation files unless ...
52
22233 quantum-expert personamanagmentlayer/pcl
Expert guidance for quantum computing, quantum algorithms, Qiskit programming, and quantum information theory. Core Concepts Quantum Mechanics Basics - Qubits and superposition - Quantum entanglement - Quantum interference - Measurement and collapse - Quantum gates (Pauli, Hadamard, CNOT) - Quantum circuits Quantum Algorithms - Grover's search algorithm - Shor's factoring algorithm - Quantum Fourier Transform (QFT) - Variational Quantum Eigensolver (VQE) - Quantum Approximate Op...
52
22234 research-documentation qodex-ai/ai-agent-skills
Content Research Writer This skill acts as your writing partner, helping you research, outline, draft, and refine content while maintaining your unique voice and style. When to Use This Skill Writing blog posts, articles, or newsletters Creating educational content or tutorials Drafting thought leadership pieces Researching and writing case studies Producing technical documentation with sources Writing with proper citations and references Improving hooks and introductions Getting section-by-se...
52
22235 image-filter-lab dkyazzentwatwa/chatgpt-skills
Image Filter Lab Apply professional filters and effects to images. Features Color Filters: Sepia, B&W, color tint, saturation Blur Effects: Gaussian, motion, radial blur Artistic Filters: Vintage, film grain, vignette Enhancements: Sharpen, contrast, brightness Custom Presets: Save and apply filter combinations Batch Processing: Apply filters to multiple images Quick Start from image_filter import ImageFilterLab lab = ImageFilterLab() lab.load("photo.jpg") Apply vintage filter lab.vintage()...
52
22236 workspace-builder groeimetai/snow-flow
App Engine Studio & Workspace Builder for ServiceNow App Engine Studio (AES) enables low-code application development with custom workspaces. AES Architecture Application (sys_scope) ├── Tables & Forms ├── Workflows ├── Workspaces (sys_aw_workspace) │ ├── Lists │ ├── Forms │ └── Dashboards └── Portals Key Tables Table Purpose sys_scope Application scope sys_app Application record sys_aw_workspace Workspace definition sys_ux_page UI Builder pages sys_ux_macroponent Custom components Applica...
52
22237 spec-init oimiragieo/agent-studio
spec-init 概览 spec-init 用于在本仓库里创建一个新的需求级 Spec Pack:自动递增三位编号、创建并切换到 {num}-{short-name} 分支、生成 .aisdlc/specs/{num}-{short-name}/ 目录结构,并把原始需求写入 requirements/raw.md (UTF-8 with BOM)。 约束:即使仓库包含 .gitmodules , spec-init 也只初始化 根项目 的 Spec 分支与 Spec Pack;子仓分支不在本阶段批量创建。 何时使用 / 不使用 使用时机 用户要开始一个"新需求"的 Spec(还没有 {num}-{short-name} 分支与 .aisdlc/specs/... 目录)。 用户只给了中文需求文本(不方便先手动建文件),担心参数编码导致乱码。 需要确保分支命名、编号来源、目录结构符合仓库约定。 不要用在 已经在一个合法的 {num}-{short-name} spec 分支上,且 .aisdlc/specs/{num}-{short-name}/ 已存在并结构完整(这时直接进入后续命令...
52
22238 azure-keyvault-secrets-ts sickn33/antigravity-awesome-skills
Azure Key Vault Secrets SDK for TypeScript Manage secrets with Azure Key Vault. Installation Secrets SDK npm install @azure/keyvault-secrets @azure/identity Environment Variables KEY_VAULT_URL = https:// < vault-name > .vault.azure.net Or AZURE_KEYVAULT_NAME = < vault-name > Authentication import { DefaultAzureCredential } from "@azure/identity" ; import { SecretClient } from "@azure/keyvault-secrets" ; const credential = new DefaultAzureCredential ( ) ; const vaultUrl = ` https:// ${ process ...
52
22239 google-analytics openclaudia/openclaudia-skills
Google Analytics Analysis Analyze website performance using Google Analytics data to provide actionable insights and improvement recommendations. Quick Start 1. Setup Authentication This Skill requires Google Analytics API credentials. Set up environment variables: export GOOGLE_ANALYTICS_PROPERTY_ID="your-property-id" export GOOGLE_APPLICATION_CREDENTIALS="/path/to/service-account-key.json" Or create a .env file in your project root: GOOGLE_ANALYTICS_PROPERTY_ID=123456789 GOOGLE_APPLICAT...
52
22240 infographic-syntax-creator antvis/infographic
Infographic Syntax Creator Overview Generate AntV Infographic syntax output from user content, following the rules in references/prompt.md . Workflow Read references/prompt.md for syntax rules, templates, and output constraints. Extract the user's key structure: title, desc, items, hierarchy, metrics; infer missing pieces if needed. Select a template that matches the structure (sequence/list/compare/hierarchy/chart). Compose the syntax using references/prompt.md as the formatting baseline. Prese...
52
22241 react-hooks teachingai/full-stack-skills
Use this skill whenever the user wants to: - [待完善:根据具体工具添加使用场景] How to use this skill [待完善:根据具体工具添加使用指南] Best Practices [待完善:根据具体工具添加最佳实践] Keywords [待完善:根据具体工具添加关键词]
52
22242 codemapper zenobi-us/dotfiles
CodeMapper (`cm`) uses tree-sitter AST parsing to provide instant code analysis without databases. Get project structure, find symbols, trace call graphs, and analyze dependencies in milliseconds. Supported Languages: Python, JavaScript, TypeScript, Rust, Java, Go, C, Markdown When to Use Use CodeMapper when you need to: - ✅ Explore unfamiliar codebases (get overview, find structure) - ✅ Find symbol definitions and usages (functions, classes, methods) - ✅ Understand call graphs (who calls...
52
22243 grc-compliance groeimetai/snow-flow
GRC (Governance, Risk, Compliance) manages organizational policies, risks, and regulatory compliance. GRC Architecture ``` Policy (sn_compliance_policy) └── Policy Statements └── Controls (sn_compliance_control) └── Control Tests └── Test Results Risk (sn_risk_risk) ├── Risk Assessment └── Risk Response ``` Key Tables | `sn_compliance_policy` | Compliance policies | `sn_compliance_control` | Controls | `sn_compliance_control_test` | ...
52
22244 cloudflare-mcp-server secondsky/claude-skills
Cloudflare MCP Server Skill Build and deploy Model Context Protocol (MCP) servers on Cloudflare Workers with TypeScript. Status: Production Ready ✅ Last Updated: 2026-01-21 Latest Versions: @modelcontextprotocol/sdk@1.25.3, @cloudflare/workers-oauth-provider@0.2.2, agents@0.3.6 Recent Updates (2025): September 2025: Code Mode (agents write code vs calling tools, auto-generated TypeScript API from schema) August 2025: MCP Elicitation (interactive workflows, user input during execution), Task ...
52
22245 context-driven-testing proffesor-for-testing/agentic-qe
Context-Driven Testing <default_to_action> When making testing decisions or adapting approaches: ANALYZE context: project goals, constraints, risks, team skills QUESTION practices: "Why this? What risk does it address? What's the cost?" INVESTIGATE not just check: Does software solve the problem, or create new ones? ADAPT approach based on context, not "best practices" DOCUMENT discoveries, not pre-written plans Quick Context Analysis: Mission: "Find important problems fast enough to matter"...
52
22246 asyncio-concurrency-patterns manutej/luxor-claude-marketplace
Asyncio Concurrency Patterns A comprehensive skill for mastering Python's asyncio library and concurrent programming patterns. This skill covers event loops, coroutines, tasks, futures, synchronization primitives, async context managers, and production-ready patterns for building high-performance asynchronous applications. When to Use This Skill Use this skill when: Building I/O-bound applications that need to handle many concurrent operations Creating web servers, API clients, or websocket ...
52
22247 laravel:queues-and-horizon jpcaparas/superpowers-laravel
Run workers safely, verify execution, and test job behavior. Commands ``` Start worker sail artisan queue:work --queue=high,default --tries=3 --backoff=5 or: php artisan queue:work --queue=high,default --tries=3 --backoff=5 Horizon (if installed) sail artisan horizon or: php artisan horizon Failed jobs sail artisan queue:failed or: php artisan queue:failed sail artisan queue:retry all ...
52
22248 pptx guanyang/antigravity-skills
PPTX Skill Quick Reference Task Guide Read/analyze content python -m markitdown presentation.pptx Edit or create from template Read editing.md Create from scratch Read pptxgenjs.md Reading Content Text extraction python -m markitdown presentation.pptx Visual overview python scripts/thumbnail.py presentation.pptx Raw XML python scripts/office/unpack.py presentation.pptx unpacked/ Editing Workflow Read editing.md for full details. Analyze template with thumbnail.py Unpack → manipulate slides → ...
52
22249 video-production travisjneuman/.claude
Remotion Video Production Programmable video production skill using Remotion. Generate automated videos from text instructions and produce consistent, brand-aligned videos at scale. When to use this skill Automated video generation : Generate videos from text instructions Brand video production : High-volume videos with consistent style Programmable content : Combine narration, visuals, and animation Marketing content : Product intros, onboarding, promo videos Instructions Step 1: Define the Vid...
52
22250 prowler-test-api prowler-cloud/prowler
Critical Rules ALWAYS use response.json()["data"] not response.data ALWAYS use content_type = "application/vnd.api+json" for PATCH/PUT requests ALWAYS use format="vnd.api+json" for POST requests ALWAYS test cross-tenant isolation - RLS returns 404, NOT 403 NEVER skip RLS isolation tests when adding new endpoints NEVER use realistic-looking API keys in tests (TruffleHog will flag them) ALWAYS mock BOTH .delay() AND Task.objects.get for async task tests 1. Fixture Dependency Chain create_test_user...
52