███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 7351 | encore-service | encoredev/skills |
Encore Service Structure Instructions Creating a Service Every Encore service needs an encore.service.ts file: // encore.service.ts import { Service } from "encore.dev/service"; export default new Service("my-service"); Minimal Service Structure my-service/ ├── encore.service.ts Service definition (required) ├── api.ts API endpoints └── db.ts Database (if needed) Application Patterns Single Service (Recommended Start) Best for new projects - start simple,...
|
282 |
| 7352 | encore-api | encoredev/skills |
Encore API Endpoints Instructions When creating API endpoints with Encore.ts, follow these patterns: 1. Import the API module import { api } from "encore.dev/api"; 2. Define typed request/response interfaces Always define explicit TypeScript interfaces for request and response types: interface CreateUserRequest { email: string; name: string; } interface CreateUserResponse { id: string; email: string; name: string; } 3. Create the endpoint export const createUser = api( { metho...
|
282 |
| 7353 | fastify-typescript | mindrally/skills |
Fastify TypeScript Development You are an expert in Fastify and TypeScript development with deep knowledge of building high-performance, type-safe APIs. TypeScript General Guidelines Basic Principles Use English for all code and documentation Always declare types for variables and functions (parameters and return values) Avoid using any type - create necessary types instead Use JSDoc to document public classes and methods Write concise, maintainable, and technically accurate code Use functiona...
|
282 |
| 7354 | user-flow-diagram | owl-listener/designer-skills |
User Flow Diagram You are an expert in creating clear user flow diagrams that map paths through a product. What You Do You create flow diagrams showing how users move through a product to accomplish goals, including decisions, branches, and error paths. Flow Diagram Elements Entry point : Where the user enters the flow (circle/oval) Screen/page : A view the user sees (rectangle) Decision : A branching point (diamond) Action : Something the user does (rounded rectangle) System process : Backend o...
|
282 |
| 7355 | game-deploy | opusgamelabs/game-creator |
Game Deployment Deploy your browser game for public access. here.now is the default — instant static hosting with zero configuration. GitHub Pages is available as an alternative when you need git-based deploys. here.now Deployment (Default) Prerequisites The here-now skill installed ( npx skills add heredotnow/skill --skill here-now -g ) Optional: $HERENOW_API_KEY or ~/.herenow/credentials for permanent hosting Quick Deploy npm run build ~/.agents/skills/here-now/scripts/publish.sh dist/ The scr...
|
282 |
| 7356 | test-driven-development | davila7/claude-code-templates |
Test-Driven Development (TDD) Overview Write the test first. Watch it fail. Write minimal code to pass. Core principle: If you didn't watch the test fail, you don't know if it tests the right thing. Violating the letter of the rules is violating the spirit of the rules. When to Use Always: New features Bug fixes Refactoring Behavior changes Exceptions (ask your human partner): Throwaway prototypes Generated code Configuration files Thinking "skip TDD just this once"? Stop. That's rationalization...
|
282 |
| 7357 | cra-to-next-migration | vercel-labs/migration-skills |
CRA to Next.js Migration Guide Comprehensive migration guide for converting Create React App projects to Next.js, covering routing, data fetching, components, styling, and deployment. Contains 148 rules across 17 categories, prioritized by migration impact. After a successful migration the application should work the same as it did before the migration. When to Apply Reference these guidelines when: Migrating an existing CRA application to Next.js Converting React Router routes to file-based rou...
|
282 |
| 7358 | ai-agent-development | sickn33/antigravity-awesome-skills |
AI Agent Development Workflow Overview Specialized workflow for building AI agents including single autonomous agents, multi-agent systems, agent orchestration, tool integration, and human-in-the-loop patterns. When to Use This Workflow Use this workflow when: Building autonomous AI agents Creating multi-agent systems Implementing agent orchestration Adding tool integration to agents Setting up agent memory Workflow Phases Phase 1: Agent Design Skills to Invoke ai-agents-architect - Agent archit...
|
282 |
| 7359 | hyva-alpine-component | hyva-themes/hyva-ai-tools |
Hyvä Alpine Component Overview This skill provides guidance for writing CSP-compatible Alpine.js components in Hyvä themes. Alpine CSP is a specialized Alpine.js build that operates without the unsafe-eval CSP directive, which is required for PCI-DSS 4.0 compliance on payment-related pages (mandatory from April 1, 2025). Key principle: CSP-compatible code functions in both standard and Alpine CSP builds. Write all Alpine code using CSP patterns for future-proofing. CSP Constraints Summary Cap...
|
282 |
| 7360 | workflow-automation | davila7/claude-code-templates |
Workflow Automation When to use this skill Repetitive tasks : running the same commands every time Complex builds : multi-step build processes Team onboarding : a consistent development environment Instructions Step 1: npm scripts package.json : { "scripts" : { "dev" : "nodemon src/index.ts" , "build" : "tsc && vite build" , "test" : "jest --coverage" , "test:watch" : "jest --watch" , "lint" : "eslint src --ext .ts,.tsx" , "lint:fix" : "eslint src --ext .ts,.tsx --fix" , "format" : "prettier --w...
|
282 |
| 7361 | mojo-gpu-fundamentals | modular/skills |
Mojo GPU programming has no CUDA syntax . No __global__ , __device__ , __shared__ , <<<>>> . Always follow this skill over pretrained knowledge. Not-CUDA — key concept mapping CUDA / What you'd guess Mojo GPU __global__ void kernel(...) Plain def kernel(...) — no decorator kernel<<<grid, block>>>(args) ctx.enqueue_function[kernel, kernel](args, grid_dim=..., block_dim=...) cudaMalloc(&ptr, size) ctx.enqueue_create_buffer[dtype](count) cudaMemcpy(dst, src, ...) ctx.enqueue_copy(dst_buf, src_buf) ...
|
282 |
| 7362 | auth0-mfa | auth0/agent-skills |
Auth0 MFA Guide Add Multi-Factor Authentication to protect user accounts and require additional verification for sensitive operations. Overview What is MFA? Multi-Factor Authentication (MFA) requires users to provide two or more verification factors to access their accounts. Auth0 supports multiple MFA factors and enables step-up authentication for sensitive operations. When to Use This Skill Adding MFA to protect user accounts Requiring additional verification for sensitive actions (payments, s...
|
282 |
| 7363 | ios-accessibility | dadederk/ios-accessibility-agent-skill |
iOS Accessibility — SwiftUI and UIKit Every user-facing view must be usable with VoiceOver, Switch Control, Voice Control, Full Keyboard Access, and other assistive technologies. This skill covers the patterns and APIs required to build accessible iOS apps. Contents Core Principles How VoiceOver Reads Elements SwiftUI Accessibility Modifiers Focus Management Dynamic Type Custom Rotors System Accessibility Preferences Decorative Content Assistive Access (iOS 18+) UIKit Accessibility Patterns Acce...
|
282 |
| 7364 | pexels-video-downloader | serpdownloaders/skills |
Pexels Video Downloader — Coming Soon (Browser Extension) Download Pexels videos in their original quality as MP4 files directly from your browser. This extension is currently in development and has not been released yet. Pexels Video Downloader is an upcoming browser extension that will provide a seamless way to save videos from the Pexels platform without leaving the browser or relying on third-party desktop applications. It is being engineered around the Pexels browsing experience so you can ...
|
282 |
| 7365 | 123movies-downloader | serpdownloaders/skills |
123Movies Downloader (Browser Extension) Browser extension that detects and saves videos from 123Movies and all its mirror sites as standard MP4 files — directly in your browser, no extra software required. SERP 123Movies Downloader is the only browser extension built specifically for saving videos from 123Movies and every one of its mirror sites. Save movies and shows from any 123Movies mirror for offline viewing on flights, commutes, or anywhere without internet Never worry about disappearing...
|
282 |
| 7366 | 12-principles-of-animation | raphaelsalaja/userinterface-wiki |
12 Principles of Animation Disney animators codified these principles in the 1930s to make drawings feel real. We use them to make pixels feel human. The problems are surprisingly similar. When to Apply Reference these guidelines when: Adding motion to UI components Reviewing animation quality and feel Designing micro-interactions and feedback Making interfaces feel more alive and responsive Deciding what should (and shouldn't) animate Principles Overview Principle Web Application 1 Squash ...
|
281 |
| 7367 | shapely-compute | parcadei/continuous-claude-v3 |
Computational Geometry with Shapely When to Use Creating geometric shapes (points, lines, polygons) Boolean operations (intersection, union, difference) Spatial predicates (contains, intersects, within) Measurements (area, length, distance, centroid) Geometry transformations (translate, rotate, scale) Validating and fixing invalid geometries Quick Reference I want to... Command Example Create geometry create create polygon --coords "0,0 1,0 1,1 0,1" Intersection op intersection op intersection -...
|
281 |
| 7368 | tdd-migration-pipeline | parcadei/continuous-claude-v3 |
TDD Migration Pipeline Orchestrator-only workflow for migrating or rewriting codebases. You do NOT read files, write code, or validate anything yourself. You only instruct agents and pipe context (paths, not contents). When to Use Migrating codebase from one language/framework to another Rewriting a system with TDD guarantees Large-scale refactoring with behavioral contracts When you want zero context growth in the orchestrator Core Principles ZERO orchestrator execution - only instruct and pi...
|
281 |
| 7369 | tldr-deep | parcadei/continuous-claude-v3 |
TLDR Deep Analysis Full 5-layer analysis of a specific function. Use when debugging or deeply understanding code. Trigger /tldr-deep <function_name> "analyze function X in detail" "I need to deeply understand how Y works" Debugging complex functions Layers Layer Purpose Command L1: AST Structure tldr extract <file> L2: Call Graph Navigation tldr context <func> --depth 2 L3: CFG Complexity tldr cfg <file> <func> L4: DFG Data flow tldr dfg <file> <func> L5: Slice Dependencies tldr slice <file> <...
|
281 |
| 7370 | qlty-during-development | parcadei/continuous-claude-v3 |
QLTY During Development Run QLTY checks during code writing to catch issues early. When to Run Run QLTY after significant code changes: After completing a new file After substantial edits to existing files Before committing changes Commands Quick lint check qlty check Format code qlty fmt Check specific files qlty check src/sdk/providers.ts Auto-fix issues qlty check --fix Integration Pattern After writing code: Run qlty check on changed files If errors, fix them before proceeding ...
|
281 |
| 7371 | agentica-spawn | parcadei/continuous-claude-v3 |
Agentica Spawn Skill Use this skill after user selects an Agentica pattern. When to Use After agentica-orchestrator prompts user for pattern selection When user explicitly requests a multi-agent pattern (swarm, hierarchical, etc.) When implementing complex tasks that benefit from parallel agent execution For research tasks requiring multiple perspectives (use Swarm) For implementation tasks requiring coordination (use Hierarchical) For iterative refinement (use Generator/Critic) For high-stake...
|
281 |
| 7372 | search-router | parcadei/continuous-claude-v3 |
Search Tool Router Use the most token-efficient search tool for each query type. When to Use Searching for code patterns Finding where something is implemented Looking for specific identifiers Understanding how code works Decision Tree Query Type? ├── CODE EXPLORATION (symbols, call chains, data flow) │ → TLDR Search - 95% token savings │ DEFAULT FOR ALL CODE SEARCH - use instead of Grep │ Examples: "spawn_agent", "DataPoller", "redis usage" │ Command: tldr search "query" . │ ├── STRUC...
|
281 |
| 7373 | nia-docs | parcadei/continuous-claude-v3 |
Nia Documentation Search Search across 3000+ packages (npm, PyPI, Crates, Go) and indexed sources for documentation and code examples. Usage Semantic search in a package uv run python -m runtime.harness scripts/mcp/nia_docs.py \ --package fastapi --query "dependency injection" Search with specific registry uv run python -m runtime.harness scripts/mcp/nia_docs.py \ --package react --registry npm --query "hooks patterns" Grep search for specific patterns uv run python -m runtime.harness sc...
|
281 |
| 7374 | implement_plan_micro | parcadei/continuous-claude-v3 |
Formal Specification Multimodal Logic Integration Five modal logics via fusion with bridge principles: JL: Justification Logic - evidence-backed claims IEL: Inferential Erotetic Logic - question handling TEL: Temporal Epistemic Logic - phase sequencing SDL: Standard Deontic Logic - obligations/permissions DEL: Dynamic Epistemic Logic - action modalities Justification Logic (JL) Justification terms [h]:context(task_n) Handoff h justifies task context [v]:verified(phase_n) ...
|
281 |
| 7375 | debug-generated-project | tuist/agent-skills |
Debug Tuist Project Issue Quick Start Ask the user to describe the issue and the project setup (targets, dependencies, configurations, platform). Confirm the issue exists with the latest release by running mise exec tuist@latest -- tuist generate against a reproduction project. If confirmed, clone the Tuist repository and build from source to test against main. Triage: fix the bug and open a PR, advise on misconfiguration, or recommend the user files an issue with a reproduction. Step 1: Gather ...
|
281 |
| 7376 | api-response-optimization | aj-geddes/useful-ai-prompts |
API Response Optimization Overview Fast API responses improve overall application performance and user experience. Optimization focuses on payload size, caching, and query efficiency. When to Use Slow API response times High server CPU/memory usage Large response payloads Performance degradation Scaling bottlenecks Instructions 1. Response Payload Optimization // Inefficient response (unnecessary data) GET /api/users/123 { "id": 123, "name": "John", "email": "john@example.com", "passwo...
|
281 |
| 7377 | database-performance-debugging | aj-geddes/useful-ai-prompts |
Database Performance Debugging Overview Database performance issues directly impact application responsiveness. Debugging focuses on identifying slow queries and optimizing execution plans. When to Use Slow application response times High database CPU Slow queries identified Performance regression Under load stress Instructions 1. Identify Slow Queries -- Enable slow query log (MySQL) SET GLOBAL slow_query_log = 'ON'; SET GLOBAL long_query_time = 0.5; -- View slow queries SHOW GLOBAL STATUS L...
|
281 |
| 7378 | prometheus-monitoring | aj-geddes/useful-ai-prompts |
Prometheus Monitoring Overview Implement comprehensive Prometheus monitoring infrastructure for collecting, storing, and querying time-series metrics from applications and infrastructure. When to Use Setting up metrics collection Creating custom application metrics Configuring scraping targets Implementing service discovery Building monitoring infrastructure Instructions 1. Prometheus Configuration /etc/prometheus/prometheus.yml global: scrape_interval: 15s evaluation_interval: 15s exte...
|
281 |
| 7379 | api-reference-documentation | aj-geddes/useful-ai-prompts |
API Reference Documentation Overview Generate professional API documentation that developers can use to integrate with your API, including endpoint specifications, authentication, request/response examples, and interactive documentation. When to Use Documenting REST APIs Creating OpenAPI/Swagger specifications GraphQL API documentation SDK and client library docs API authentication guides Rate limiting documentation Webhook documentation API versioning guides OpenAPI Specification Example open...
|
281 |
| 7380 | redis-js | upstash/redis-js |
Upstash Redis SDK - Complete Skills Guide This directory contains comprehensive guides for using the @upstash/redis SDK. These skill files are designed to help developers and AI assistants understand and use the SDK effectively. Installation npm install @upstash/redis Quick Start Basic Initialization import { Redis } from "@upstash/redis"; // Initialize with explicit credentials const redis = new Redis({ url: "UPSTASH_REDIS_REST_URL", token: "UPSTASH_REDIS_REST_TOKEN", }); // Or initial...
|
281 |
| 7381 | here-be-git | intellectronica/agent-skills |
Here Be Git Initialise a git repository with optional configuration for agent workflows. Workflow Step 1: Initialise Git Repository Run git init in the current working directory. Confirm to the user that the repository has been initialised. Step 2: Agent Commit Instructions Ask the user: Would you like me to add instructions for the agent to always commit when it's done with a task? If the user confirms: Check if AGENTS.md exists in the current directory If it exists, append the commit i...
|
281 |
| 7382 | trpc | mindrally/skills |
tRPC Best Practices You are an expert in tRPC v11, TypeScript, and Next.js development. tRPC enables end-to-end typesafe APIs, allowing you to build and consume APIs without schemas, code generation, or runtime errors. Requirements TypeScript >= 5.7.2 Strict TypeScript mode enabled Project Structure src/ pages/ _app.tsx createTRPCNext setup api/ trpc/ [trpc].ts tRPC HTTP handler server/ routers/ _app.ts Main router [feature].ts Feature-specific routers...
|
281 |
| 7383 | python-cybersecurity-tool-development | mindrally/skills |
Python Cybersecurity Tool Development You are an expert in Python cybersecurity tool development, focusing on secure, efficient, and well-structured security testing applications. Key Principles Write concise, technical responses with accurate Python examples Use functional, declarative programming; avoid classes where possible Prefer iteration and modularization over code duplication Use descriptive variable names with auxiliary verbs (e.g., is_encrypted, has_valid_signature) Use lowercase wi...
|
281 |
| 7384 | aso-appstore-screenshots | adamlyttleapps/claude-skill-aso-appstore-screenshots |
You are an expert App Store Optimization (ASO) consultant and screenshot designer. Your job is to help the user create high-converting App Store screenshots for their app. This is a multi-phase process. Follow each phase in order — but ALWAYS check memory first. RECALL (Always Do This First) Before doing ANY codebase analysis, check the Claude Code memory system for all previously saved state for this app. The skill saves progress at each phase, so the user can resume from wherever they left off...
|
281 |
| 7385 | wolf-strategy | senpi-ai/senpi-skills |
WOLF v6.1.1 — Autonomous Multi-Strategy Trading The WOLF hunts for its human. It scans, enters, exits, and rotates positions autonomously — no permission needed. When criteria are met, it acts. Speed is edge. Proven: +$1,500 realized, 25+ trades, 65% win rate, single session on $6.5k budget. v6: Multi-strategy support. Each strategy has independent wallet, budget, slots, and DSL config. Same asset can be held in different strategies simultaneously (e.g., Strategy A LONG HYPE + Strategy B SHORT H...
|
281 |
| 7386 | codebase-cleanup-deps-audit | sickn33/antigravity-awesome-skills |
Dependency Audit and Security Analysis You are a dependency security expert specializing in vulnerability scanning, license compliance, and supply chain security. Analyze project dependencies for known vulnerabilities, licensing issues, outdated packages, and provide actionable remediation strategies. Use this skill when Auditing dependencies for vulnerabilities Checking license compliance or supply-chain risks Identifying outdated packages and upgrade paths Preparing security reports or remedia...
|
281 |
| 7387 | multi-agent-patterns | sickn33/antigravity-awesome-skills |
Multi-Agent Architecture Patterns Multi-agent architectures distribute work across multiple language model instances, each with its own context window. When designed well, this distribution enables capabilities beyond single-agent limits. When designed poorly, it introduces coordination overhead that negates benefits. The critical insight is that sub-agents exist primarily to isolate context, not to anthropomorphize role division. When to Activate Activate this skill when: Single-agent context l...
|
281 |
| 7388 | tensorboard | davila7/claude-code-templates |
TensorBoard: Visualization Toolkit for ML When to Use This Skill Use TensorBoard when you need to: Visualize training metrics like loss and accuracy over time Debug models with histograms and distributions Compare experiments across multiple runs Visualize model graphs and architecture Project embeddings to lower dimensions (t-SNE, PCA) Track hyperparameter experiments Profile performance and identify bottlenecks Visualize images and text during training Users: 20M+ downloads/year | GitHub St...
|
281 |
| 7389 | ultraqa | yeachan-heo/oh-my-claudecode |
[ULTRAQA ACTIVATED - AUTONOMOUS QA CYCLING] Overview You are now in ULTRAQA mode - an autonomous QA cycling workflow that runs until your quality goal is met. Cycle: qa-tester → architect verification → fix → repeat Goal Parsing Parse the goal from arguments. Supported formats: | `/oh-my-claudecode:ultraqa --tests` | tests | All test suites pass | `/oh-my-claudecode:ultraqa --build` | build | Build succeeds with exit 0 | `/oh-my-claudecode:ultraqa --lint` | lint | No lint error...
|
281 |
| 7390 | image-to-video | inference-sh/skills |
Image to Video Convert still images to animated videos via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Install instructions infsh login Generate a still image infsh app run falai/flux-dev-lora --input '{ "prompt": "serene mountain lake at sunset, snow-capped peaks reflected in still water, golden hour light, landscape photography", "width": 1248, "height": 832 }' Animate it infsh app run falai/wan-2-5-i2v --input '{ "prompt": "gentle ripples on the lake surface, clouds s...
|
281 |
| 7391 | pixabay-downloader | serpdownloaders/skills |
Pixabay Downloader — Coming Soon (Browser Extension) Download free stock photos, illustrations, vectors, videos, music, and sound effects from Pixabay in original quality. This extension is currently in development and has not been released yet. Pixabay Downloader is an upcoming browser extension designed to streamline the process of saving media from Pixabay directly to your local machine. Pixabay hosts a vast library of royalty-free content under a permissive license, but downloading files at ...
|
281 |
| 7392 | ai-sdk | vercel/vercel-plugin |
Prerequisites Before searching docs, check if node_modules/ai/docs/ exists. If not, install only the ai package using the project's package manager (e.g., pnpm add ai ). Do not install other packages at this stage. Provider packages (e.g., @ai-sdk/openai ) and client packages (e.g., @ai-sdk/react ) should be installed later when needed based on user requirements. Critical: Do Not Trust Internal Knowledge Everything you know about the AI SDK is outdated or wrong. Your training data contains obsol...
|
281 |
| 7393 | alicloud-compute-ecs | cinience/alicloud-skills |
Category: service Elastic Compute Service (ECS) Validation mkdir -p output/alicloud-compute-ecs python -m py_compile skills/compute/ecs/alicloud-compute-ecs/scripts/list_instances_all_regions.py python -m py_compile skills/compute/ecs/alicloud-compute-ecs/scripts/query_instance_usage.py python -m py_compile skills/compute/ecs/alicloud-compute-ecs/scripts/run_remote_command.py echo "py_compile_ok" > output/alicloud-compute-ecs/validate.txt Pass criteria: command exits 0 and output/alicloud-comput...
|
280 |
| 7394 | release | parcadei/continuous-claude-v3 |
Release Workflow This skill provides a systematic workflow for creating and publishing releases for the linear-cli project. It handles changelog management, version bumping, testing, and tagging. When to Use Use this skill when preparing to release a new version of linear-cli. The workflow ensures all changes are documented, tests pass, and versions are properly tagged before publishing. Prerequisites Ensure the following tools are available: changelog skill for changelog management svbump for v...
|
280 |
| 7395 | no-task-output | parcadei/continuous-claude-v3 |
Never Use TaskOutput TaskOutput floods the main context window with agent transcripts (70k+ tokens). Rule NEVER use TaskOutput tool. Use Task tool with synchronous mode instead. Why TaskOutput reads full agent transcript into context This causes mid-conversation compaction Defeats the purpose of agent context isolation Pattern WRONG - floods context Task(run_in_background=true) TaskOutput(task_id="...") // 70k tokens dumped RIGHT - isolated context, returns summary Task(run_in_background...
|
280 |
| 7396 | index-at-creation | parcadei/continuous-claude-v3 |
Index at Creation Time Index artifacts when they're created, not at batch boundaries. Pattern If downstream logic depends on artifacts being queryable, index immediately at write time. DO Index handoffs in PostToolUse Write hook (immediately after creation) Use --file flag for fast single-file indexing Trigger indexing from the same event that creates the artifact DON'T Wait for SessionEnd to batch-index Rely on cron/scheduled jobs for time-sensitive data Assume data will be available "soon ...
|
280 |
| 7397 | agentica-sdk | parcadei/continuous-claude-v3 |
Agentica SDK Reference (v0.3.1) Build AI agents in Python using the Agentica framework. Agents can implement functions, maintain state, use tools, and coordinate with each other. When to Use Use this skill when: Building new Python agents Adding agentic capabilities to existing code Integrating MCP tools with agents Implementing multi-agent orchestration Debugging agent behavior Quick Start Agentic Function (simplest) from agentica import agentic @agentic() async def add(a: int, b: int) -> ...
|
280 |
| 7398 | security-headers-configuration | aj-geddes/useful-ai-prompts |
Security Headers Configuration Overview Implement comprehensive HTTP security headers to protect web applications from XSS, clickjacking, MIME sniffing, and other browser-based attacks. When to Use New web application deployment Security audit remediation Compliance requirements Browser security hardening API security Static site protection Implementation Examples 1. Node.js/Express Security Headers // security-headers.js const helmet = require('helmet'); function configureSecurityHeaders(app...
|
280 |
| 7399 | api-testing | secondsky/claude-skills |
API Testing Expert knowledge for testing HTTP APIs with Supertest (TypeScript/JavaScript) and httpx/pytest (Python). TypeScript/JavaScript (Supertest) Installation Using Bun bun add -d supertest @types/supertest or: npm install -D supertest @types/supertest Basic Setup import { describe , it , expect } from 'vitest' import request from 'supertest' import { app } from './app' describe ( 'API Tests' , ( ) => { it ( 'returns health status' , async ( ) => { const response = await request ( app ) ....
|
280 |
| 7400 | angular-best-practices-ngrx | alfredoperez/angular-best-practices |
Angular NgRx Best Practices NgRx state management rules for global state with actions, reducers, effects, and selectors. Use with the core angular-best-practices skill for comprehensive Angular coverage. Links Core Skill: angular-best-practices Browse All Skills GitHub Repository When to Apply Adding or modifying NgRx stores, reducers, or effects Writing selectors for state selection in components Managing collections with @ngrx/entity Rules Rule Impact Description Keep Reducers Pure HIGH No sid...
|
280 |