███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 12751 | evaluate-rag | hamelsmu/evals-skills |
Evaluate RAG Overview Do error analysis on end-to-end traces first. Determine whether failures come from retrieval, generation, or both. Build a retrieval evaluation dataset: queries paired with relevant document chunks. Measure retrieval quality with Recall@k (most important for first-pass retrieval). Evaluate generation separately: faithfulness (grounded in context?) and relevance (answers the query?). If retrieval is the bottleneck, optimize chunking via grid search before tuning generation. ...
|
215 |
| 12752 | competitor-price-tracker | onewave-ai/claude-skills |
Competitor Price Tracker Monitor competitor pricing pages and send alerts when prices change. Track discount patterns, promotional cycles, and pricing strategy shifts. Instructions You are an expert at competitive intelligence and pricing analysis. Monitor competitor pricing strategies, identify patterns, and provide actionable recommendations for pricing decisions. Output Format Competitor Price Tracker Output Generated: {timestamp} --- Results [Your formatted output here] --- Reco...
|
215 |
| 12753 | cron-mastery | sundial-org/awesome-openclaw-skills |
Cron Mastery Rule 1: Heartbeats drift. Cron is precise. This skill provides the definitive guide for managing time in OpenClaw. It solves the "I missed my reminder" problem by enforcing a strict separation between casual checks (heartbeat) and hard schedules (cron). The Core Principle System Behavior Best For Risk Heartbeat "I'll check in when I can" (e.g., every 30-60m) Email checks, casual news summaries, low-priority polling. Drift: A "remind me in 10m" task will fail if the heartbeat is 30m....
|
215 |
| 12754 | payment-integration | sickn33/antigravity-awesome-skills |
Use this skill when Working on payment integration tasks or workflows Needing guidance, best practices, or checklists for payment integration Do not use this skill when The task is unrelated to payment integration You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook...
|
215 |
| 12755 | multi-platform-apps-multi-platform | sickn33/antigravity-awesome-skills |
Multi-Platform Feature Development Workflow Build and deploy the same feature consistently across web, mobile, and desktop platforms using API-first architecture and parallel implementation strategies. [Extended thinking: This workflow orchestrates multiple specialized agents to ensure feature parity across platforms while maintaining platform-specific optimizations. The coordination strategy emphasizes shared contracts and parallel development with regular synchronization points. By establishin...
|
215 |
| 12756 | supabase-postgres-best-practices | sickn33/antigravity-awesome-skills |
Supabase Postgres Best Practices Comprehensive performance optimization guide for Postgres, maintained by Supabase. Contains rules across 8 categories, prioritized by impact to guide automated query optimization and schema design. When to Apply Reference these guidelines when: Writing SQL queries or designing schemas Implementing indexes or query optimization Reviewing database performance issues Configuring connection pooling or scaling Optimizing for Postgres-specific features Working with Row...
|
214 |
| 12757 | using-gh-cli | trailofbits/skills |
Using the GitHub CLI ( gh ) When to Use Browsing or reading code from a GitHub repository — clone it and use Read/Glob/Grep Viewing or creating pull requests, issues, releases, or gists Fetching repo metadata or any GitHub API data Interacting with GitHub Actions (runs, workflows) Any task involving GitHub that you might otherwise use curl , wget , or WebFetch for When NOT to Use Non-GitHub URLs (use WebFetch or curl for those) Public web content that happens to be hosted on GitHub Pages ( *.git...
|
214 |
| 12758 | langfuse-observability | langfuse/skills |
Langfuse Observability Instrument LLM applications with Langfuse tracing, following best practices and tailored to your use case. When to Use Setting up Langfuse in a new project Auditing existing Langfuse instrumentation Adding observability to LLM calls Workflow 1. Assess Current State Check the project: Is Langfuse SDK installed? What LLM frameworks are used? (OpenAI SDK, LangChain, LlamaIndex, Vercel AI SDK, etc.) Is there existing instrumentation? No integration yet: Set up Langfuse us...
|
214 |
| 12759 | job-application | skillcreatorai/ai-agent-skills |
Job Application Assistant Generate cover letters and job applications that sound like you, not a template. Your CV/Resume [Your name] [Your title/headline] EXPERIENCE - [Job 1] - [Job 2] SKILLS - [Skill 1] - [Skill 2] EDUCATION - [Degree, School, Year] [Add your full CV here] Cover Letter Examples You Like Example 1 [Paste a cover letter you're proud of] Example 2 (optional) [Another example if you have one] Your Voice & Preferences Tone Professional but not stiff Confident without brag...
|
214 |
| 12760 | axiom-ios-ui | charleswiltgen/axiom |
iOS UI Router You MUST use this skill for ANY iOS UI work including SwiftUI, UIKit, layout, navigation, animations, and design. When to Use Use this router when working with: SwiftUI views, state, bindings UIKit views and constraints Layout issues (Auto Layout, SwiftUI layout) Navigation (NavigationStack, deep linking) Animations and transitions Liquid Glass design (iOS 26+) Apple Human Interface Guidelines UI architecture and patterns Accessibility UI issues Conflict Resolution ios-ui vs i...
|
214 |
| 12761 | golang-concurrency-patterns | bobmatnyc/claude-mpm-skills |
Go Concurrency Patterns (Production) Overview Go concurrency scales when goroutine lifetimes are explicit, cancellation is propagated with context.Context, and shared state is protected (channels or locks). Apply these patterns to build reliable services and avoid common failure modes: goroutine leaks, deadlocks, and data races. Quick Start Default building blocks Use context to drive cancellation and deadlines. Use errgroup.WithContext for fan-out/fan-in with early abort. Bound concurrency ...
|
214 |
| 12762 | wordpress-advanced-architecture | bobmatnyc/claude-mpm-skills |
Advanced WordPress Architecture Master advanced WordPress development patterns including REST API endpoints, WP-CLI commands, performance optimization, and caching strategies for scalable WordPress applications. 1. REST API Development The WordPress REST API provides a powerful interface for creating custom endpoints with proper authentication, validation, and response formatting. Endpoint Registration with Namespacing add_action( 'rest_api_init', 'register_custom_rest_routes' ); function re...
|
214 |
| 12763 | obsidian | bitbonsai/mcp-obsidian |
Obsidian Obsidian vault = a normal folder on disk. Vault structure (typical) Notes: *.md (plain text Markdown; edit with any editor) Config: .obsidian/ (workspace + plugin settings; usually don’t touch from scripts) Canvases: *.canvas (JSON) Attachments: whatever folder you chose in Obsidian settings (images/PDFs/etc.) Find the active vault(s) Obsidian desktop tracks vaults here (source of truth): ~/Library/Application Support/obsidian/obsidian.json obsidian-cli resolves vaults from that file; v...
|
214 |
| 12764 | notion-template-business | davila7/claude-code-templates |
Notion Template Business Role: Template Business Architect You know templates are real businesses that can generate serious income. You've seen creators make six figures selling Notion templates. You understand it's not about the template - it's about the problem it solves. You build systems that turn templates into scalable digital products. Capabilities Notion template design Template pricing strategies Gumroad/Lemon Squeezy setup Template marketing Notion marketplace strategy Template supp...
|
214 |
| 12765 | ln-610-docs-auditor | 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 Auditor (L2 Coordinator) Coordinates 4 specialized audit workers to perform comprehensive documentation quality analysis. Purpose & Scope Coordinates 4 audit workers running in parallel: ln-611 (documentation structure) — 1 invocation ln-612 (semantic content) — N invocations (per target document) ln-613 (code...
|
214 |
| 12766 | red team tools and methodology | davila7/claude-code-templates |
Red Team Tools and Methodology Purpose Implement proven methodologies and tool workflows from top security researchers for effective reconnaissance, vulnerability discovery, and bug bounty hunting. Automate common tasks while maintaining thorough coverage of attack surfaces. Inputs/Prerequisites Target scope definition (domains, IP ranges, applications) Linux-based attack machine (Kali, Ubuntu) Bug bounty program rules and scope Tool dependencies installed (Go, Python, Ruby) API keys for various...
|
214 |
| 12767 | azure-functions | davila7/claude-code-templates |
Azure Functions Patterns Isolated Worker Model (.NET) Modern .NET execution model with process isolation Node.js v4 Programming Model Modern code-centric approach for TypeScript/JavaScript Python v2 Programming Model Decorator-based approach for Python functions Anti-Patterns ❌ Blocking Async Calls ❌ New HttpClient Per Request ❌ In-Process Model for New Projects ⚠️ Sharp Edges Issue Severity Solution Issue high Use async pattern with Durable Functions Issue high Use IHttpClientFactory (R...
|
214 |
| 12768 | workflow-orchestration-patterns | sickn33/antigravity-awesome-skills |
Workflow Orchestration Patterns Master workflow orchestration architecture with Temporal, covering fundamental design decisions, resilience patterns, and best practices for building reliable distributed systems. When to Use Workflow Orchestration Ideal Use Cases (Source: docs.temporal.io) Multi-step processes spanning machines/services/databases Distributed transactions requiring all-or-nothing semantics Long-running workflows (hours to years) with automatic state persistence Failure recovery th...
|
214 |
| 12769 | team-collaboration-standup-notes | sickn33/antigravity-awesome-skills |
Standup Notes Generator You are an expert team communication specialist focused on async-first standup practices, AI-assisted note generation from commit history, and effective remote team coordination patterns. Use this skill when Working on standup notes generator tasks or workflows Needing guidance, best practices, or checklists for standup notes generator Do not use this skill when The task is unrelated to standup notes generator You need a different domain or tool outside this scope Context...
|
214 |
| 12770 | memory-safety-patterns | sickn33/antigravity-awesome-skills |
Memory Safety Patterns Cross-language patterns for memory-safe programming including RAII, ownership, smart pointers, and resource management. When to Use This Skill Writing memory-safe systems code Managing resources (files, sockets, memory) Preventing use-after-free and leaks Implementing RAII patterns Choosing between languages for safety Debugging memory issues Core Concepts 1. Memory Bug Categories Bug Type Description Prevention Use-after-free Access freed memory Ownership, RAII Double-fre...
|
214 |
| 12771 | aggregating-crypto-news | jeremylongshore/claude-code-plugins-plus-skills |
Aggregating Crypto News Overview This skill aggregates cryptocurrency news from 50+ authoritative sources using RSS feeds. It provides real-time news scanning with filtering by coin, category, time window, and relevance scoring. Key Capabilities: Multi-source aggregation from top crypto news sites Coin-specific filtering (BTC, ETH, SOL, etc.) Category filtering (DeFi, NFT, regulatory, exchange, etc.) Relevance scoring with market-moving keyword detection Multiple output formats (table, JSON, ...
|
214 |
| 12772 | create-skill-from-repo | hairyf/skills |
Create Skills from Repo Workflow for quickly producing a skill set from any repository and applying it in the project. Use when the user supplies <repo-url> and <skills-name> and there is no existing skill source for that framework or project (i.e. not in meta.ts submodules or vendors). When to Use User provides a repository URL and a desired skills name. No entry exists in meta.ts submodules or vendors for that project. Goal is to bootstrap skills from docs/source in this repo (output under ski...
|
214 |
| 12773 | zustand-store-ts | sickn33/antigravity-awesome-skills |
Zustand Store Create Zustand stores following established patterns with proper TypeScript types and middleware. Quick Start Copy the template from assets/template.ts and replace placeholders: {{StoreName}} → PascalCase store name (e.g., Project ) {{description}} → Brief description for JSDoc Always Use subscribeWithSelector import { create } from 'zustand' ; import { subscribeWithSelector } from 'zustand/middleware' ; export const useMyStore = create < MyStore > ( ) ( subscribeWithSelector ( ( s...
|
214 |
| 12774 | symfony:api-platform-serialization | makfly/superpowers-symfony |
Api Platform Serialization (Symfony) Use when Designing or evolving API Platform contracts and operations. Aligning serialization, validation, and security behavior. Default workflow Define operation-level contract and payload boundaries. Implement resource/DTO/provider/processor changes with explicit mapping. Apply operation-specific validation and security constraints. Validate functional behavior across happy and negative paths. Guardrails Keep API contract explicit and version-aware. Avoid e...
|
214 |
| 12775 | skill development | davila7/claude-code-templates |
Skill Development for Claude Code Plugins This skill provides guidance for creating effective skills for Claude Code plugins. About Skills Skills are modular, self-contained packages that extend Claude's capabilities by providing specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific domains or tasks—they transform Claude from a general-purpose agent into a specialized agent equipped with procedural knowledge that no model can fully possess. What Skills Pr...
|
213 |
| 12776 | axiom-swiftui-animation-ref | charleswiltgen/axiom |
SwiftUI Animation Overview Comprehensive guide to SwiftUI's animation system, from foundational concepts to advanced techniques. This skill covers the Animatable protocol, the iOS 26 @Animatable macro, animation types, and the Transaction system. Core principle Animation in SwiftUI is mathematical interpolation over time, powered by the VectorArithmetic protocol. Understanding this foundation unlocks the full power of SwiftUI's declarative animation system. When to Use This Skill Implementing...
|
213 |
| 12777 | floor-plan | markdown-viewer/skills |
Floor Plan & Layout Generator Quick Start: Define room boundaries with walls → Add doors and windows → Place furniture from stencil library → Add dimensions and labels → Wrap in ```drawio fence. ⚠️ IMPORTANT: Always use ```drawio code fence. NEVER use ```xml — it will NOT render as a diagram. Critical Rules 🔗 This is a drawio-derived skill. All structure, layout, and edge routing rules inherit from drawio SKILL.md . Read the base rules first. Floor plan-specific additions: Check stencils/README....
|
213 |
| 12778 | semantic-release | terrylica/cc-skills |
Automate semantic versioning and release management using semantic-release v25+ (Node.js) following 2025 best practices. Works with all languages (JavaScript, TypeScript, Python, Rust, Go, C++, etc.) via the `@semantic-release/exec` plugin. Create shareable configurations for multi-repository setups, initialize individual projects with automated releases, and configure GitHub Actions workflows with OIDC trusted publishing. Important: This skill uses semantic-release (Node.js) exclusively, NOT p...
|
213 |
| 12779 | send-email | wangyendt/wayne-skills |
Send Email with Resend Overview Resend provides two endpoints for sending emails: Approach Endpoint Use Case Single POST /emails Individual transactional emails, emails with attachments, scheduled sends Batch POST /emails/batch Multiple distinct emails in one request (max 100), bulk notifications Choose batch when: Sending 2+ distinct emails at once Reducing API calls is important (by default, rate limit is 2 requests per second) No attachments or scheduling needed Choose single when: Send...
|
213 |
| 12780 | ecommerce-support | yangliu2060/smith--skills |
电商客服助手 AI 驱动的电商客服机器人,自动识别客户意图,处理订单查询、商品推荐、投诉工单等场景。 触发条件 当用户说以下内容时启动此技能: "客服回复" "处理客户问题" "订单查询" "ecommerce support" "帮我回复客户" "生成客服话术" 依赖的 MCP 服务 MCP 用途 必需 playwright 自动登录电商后台查询订单 可选 supabase 存储订单/工单数据 可选 memory 保持对话上下文 可选 工作流程 ┌─────────────────────┐ │ 客户消息输入 │ └──────────┬──────────┘ │ ▼ ┌─────────────────────┐ │ AI 意图识别 │ │ 分析客户需求 │ └──────────┬──────────┘ │ ┌─────┼─────┬──────────┐ │ │ │ │ ▼ ▼ ▼ ▼ ┌───────┐┌───────┐┌───────┐┌───────┐ │订...
|
213 |
| 12781 | matchms | davila7/claude-code-templates |
No SKILL.md available for this skill. View on GitHub
|
213 |
| 12782 | benchling-integration | davila7/claude-code-templates |
Benchling Integration Overview Benchling is a cloud platform for life sciences R&D. Access registry entities (DNA, proteins), inventory, electronic lab notebooks, and workflows programmatically via Python SDK and REST API. When to Use This Skill This skill should be used when: Working with Benchling's Python SDK or REST API Managing biological sequences (DNA, RNA, proteins) and registry entities Automating inventory operations (samples, containers, locations, transfers) Creating or querying elec...
|
213 |
| 12783 | geniml | davila7/claude-code-templates |
No SKILL.md available for this skill. View on GitHub
|
213 |
| 12784 | umap-learn | davila7/claude-code-templates |
UMAP-Learn Overview UMAP (Uniform Manifold Approximation and Projection) is a dimensionality reduction technique for visualization and general non-linear dimensionality reduction. Apply this skill for fast, scalable embeddings that preserve local and global structure, supervised learning, and clustering preprocessing. Quick Start Installation uv pip install umap-learn Basic Usage UMAP follows scikit-learn conventions and can be used as a drop-in replacement for t-SNE or PCA. Show more
|
213 |
| 12785 | risk-metrics-calculation | sickn33/antigravity-awesome-skills |
Risk Metrics Calculation Comprehensive risk measurement toolkit for portfolio management, including Value at Risk, Expected Shortfall, and drawdown analysis. When to Use This Skill Measuring portfolio risk Implementing risk limits Building risk dashboards Calculating risk-adjusted returns Setting position sizes Regulatory reporting Core Concepts 1. Risk Metric Categories Category Metrics Use Case Volatility Std Dev, Beta General risk Tail Risk VaR, CVaR Extreme losses Drawdown Max DD, Calmar C...
|
213 |
| 12786 | claude-speed-reader | sickn33/antigravity-awesome-skills |
Claude Speed Reader Overview -Speed read Claude's responses at 600+ WPM using RSVP with Spritz-style ORP highlighting When to Use This Skill Use this skill when you need to work with -speed read claude's responses at 600+ wpm using rsvp with spritz-style orp highlighting. Instructions This skill provides guidance and patterns for -speed read claude's responses at 600+ wpm using rsvp with spritz-style orp highlighting. For more information, see the source repository .
|
213 |
| 12787 | session-handoff | davila7/claude-code-templates |
Handoff Creates comprehensive handoff documents that enable fresh AI agents to seamlessly continue work with zero ambiguity. Solves the long-running agent context exhaustion problem. Mode Selection Determine which mode applies: Creating a handoff? User wants to save current state, pause work, or context is getting full. Follow: CREATE Workflow below Resuming from a handoff? User wants to continue previous work, load context, or mentions an existing handoff. Follow: RESUME Workflow below Proactiv...
|
213 |
| 12788 | binary-analysis-patterns | sickn33/antigravity-awesome-skills |
Binary Analysis Patterns Comprehensive patterns and techniques for analyzing compiled binaries, understanding assembly code, and reconstructing program logic. Disassembly Fundamentals x86-64 Instruction Patterns Function Prologue/Epilogue ; Standard prologue push rbp ; Save base pointer mov rbp, rsp ; Set up stack frame sub rsp, 0x20 ; Allocate local variables ; Leaf function (no calls) ; May skip frame pointer setup sub rsp, 0x18 ; Just allocate locals ; Standard e...
|
213 |
| 12789 | agents-md-generator | madteacher/mad-agents-skills |
AGENTS.md Generator (Root + Nested, Portable) Goal Maintain small, high-signal AGENTS.md files: Root AGENTS.md — purpose of repository, navigation, universal toolchain, canonical commands, links to docs and skills. Nested AGENTS.md — module/package purpose, local commands, module references. Use progressive disclosure : keep AGENTS.md concise; push details to docs or skills. Skill location (agent-specific) Do NOT assume .agents/ or any fixed directory exists. Skills may live: inside the reposito...
|
213 |
| 12790 | typescript | dalestudy/skills |
TypeScript Code Style Guide Types and Type Safety Avoid explicit type annotations when TypeScript can infer Avoid implicitly any ; explicitly type when necessary Use accurate types: prefer Record<PropertyKey, unknown> over object or any Prefer interface for object shapes (e.g., React props); use type for unions/intersections Prefer as const satisfies XyzInterface over plain as const Prefer @ts-expect-error over @ts-ignore over as any Avoid meaningless null/undefined parameters; design strict fun...
|
213 |
| 12791 | react-flow-implementation | existential-birds/beagle |
React Flow Implementation Quick Start import { ReactFlow, useNodesState, useEdgesState, addEdge } from '@xyflow/react'; import '@xyflow/react/dist/style.css'; const initialNodes = [ { id: '1', position: { x: 0, y: 0 }, data: { label: 'Node 1' } }, { id: '2', position: { x: 200, y: 100 }, data: { label: 'Node 2' } }, ]; const initialEdges = [{ id: 'e1-2', source: '1', target: '2' }]; export default function Flow() { const [nodes, setNodes, onNodesChange] = useNodesState(initialNodes); ...
|
213 |
| 12792 | symfony:rate-limiting | makfly/superpowers-symfony |
Rate Limiting (Symfony) Use when Implementing asynchronous workflows with Messenger/Scheduler/Cache. Stabilizing retries and failure transports. Default workflow Define async contract and delivery semantics. Implement idempotent handlers and routing strategy. Configure retries, failure transport, and observability. Validate success/failure replay scenarios. Guardrails Assume at-least-once delivery, not exactly-once. Keep handlers deterministic and side-effect aware. Surface poison-message handli...
|
213 |
| 12793 | openrouter | bobmatnyc/claude-mpm-skills |
OpenRouter - Unified AI API Gateway Overview OpenRouter provides a single API to access 200+ language models from OpenAI, Anthropic, Google, Meta, Mistral, and more. It offers intelligent routing, streaming, cost optimization, and standardized OpenAI-compatible interface. Key Features: Access 200+ models through one API OpenAI-compatible interface (drop-in replacement) Intelligent model routing and fallbacks Real-time streaming responses Cost tracking and optimization Model performance analyt...
|
212 |
| 12794 | celery | bobmatnyc/claude-mpm-skills |
Celery: Distributed Task Queue Summary Celery is a distributed task queue system for Python that enables asynchronous execution of background jobs across multiple workers. It supports scheduling, retries, task workflows, and integrates seamlessly with Django, Flask, and FastAPI. When to Use Background Processing: Offload long-running operations (email, file processing, reports) Scheduled Tasks: Cron-like periodic jobs (cleanup, backups, data sync) Distributed Computing: Process tasks across mu...
|
212 |
| 12795 | handoff | steveyegge/beads |
Write a handoff document summarising the current conversation so a fresh agent can continue the work. Save it to a path produced by mktemp -t handoff-XXXXXX.md (read the file before you write to it). Suggest the skills to be used, if any, by the next session. Do not duplicate content already captured in other artifacts (PRDs, plans, ADRs, issues, commits, diffs). Reference them by path or URL instead. If the user passed arguments, treat them as a description of what the next session will focus o...
|
212 |
| 12796 | intent-layer | crafter-station/skills |
Intent Layer Hierarchical AGENTS.md infrastructure so agents navigate codebases like senior engineers. Core Principle Only ONE root context file. CLAUDE.md and AGENTS.md should NOT coexist at project root. Child AGENTS.md in subdirectories are encouraged for complex subsystems. Workflow 1. Detect state scripts/detect_state.sh /path/to/project → Returns: none | partial | complete 2. Route none/partial → Initial setup (steps 3-5) complete → Maintenance (step 6) 3. Measure [ga...
|
212 |
| 12797 | vercel-react-best-practices | calcom/cal.com |
Vercel React Best Practices Comprehensive performance optimization guide for React and Next.js applications, maintained by Vercel. Contains 62 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Writing new React components or Next.js pages Implementing data fetching (client or server-side) Reviewing code for performance issues Refactoring existing React/Next.js code Optimizing bundle size or load tim...
|
212 |
| 12798 | mermaidjs-v11 | mrgoonie/claudekit-skills |
Mermaid.js v11 Overview Create text-based diagrams using Mermaid.js v11 declarative syntax. Convert code to SVG/PNG/PDF via CLI or render in browsers/markdown files. Quick Start Basic Diagram Structure: {diagram-type} {diagram-content} Common Diagram Types: flowchart - Process flows, decision trees sequenceDiagram - Actor interactions, API flows classDiagram - OOP structures, data models stateDiagram - State machines, workflows erDiagram - Database relationships gantt - Project timeline...
|
212 |
| 12799 | metabolic-cultures | jwynia/agent-skills |
Metabolic Cultures: Closed-Loop Society Skill You help writers develop distinct cultures for closed-loop life support systems in space. The framework explores how the physical reality of recycled air, water, and biomass creates novel social structures, beliefs, and conflicts that diverge from planetary norms. Core Principle: Matter as Identity In closed-loop systems, the distinction between self and community dissolves at the molecular level. Within months, individuals literally become their...
|
212 |
| 12800 | github-agile | jwynia/agent-skills |
GitHub Agile Diagnose GitHub-driven agile workflow problems. Help establish and maintain healthy workflows using GitHub Issues, Pull Requests, and feature branches, while preserving understanding in context networks. When to Use This Skill Use this skill when: Setting up a new project on GitHub Organizing a chaotic backlog Establishing branch and PR workflow Syncing GitHub state with context network Troubleshooting GitHub CLI issues Do NOT use this skill when: Working on code implementatio...
|
212 |