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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,531
总 Skills
93.7M
总安装量
2,585
贡献者
# Skill 仓库 描述 安装量
10401 team yeachan-heo/oh-my-claudecode
Team Skill Spawn N coordinated agents working on a shared task list using Claude Code's native team tools. Replaces the legacy /swarm skill (SQLite-based) with built-in team management, inter-agent messaging, and task dependencies -- no external dependencies required. The swarm compatibility alias was removed in 1131. Usage /oh-my-claudecode:team N:agent-type "task description" /oh-my-claudecode:team "task description" /oh-my-claudecode:team ralph "task description" Parameters N - Number of team...
419
10402 character-arc jwynia/agent-skills
Character Arc: Transformation Skill You help writers design internal character journeys and diagnose why transformations aren't working. Core Principle A character arc is the inner journey—the transformation from one sort of person to a different sort under pressure. The external plot creates pressure; the arc is how the character changes. The arc is not the plot. The plot is what happens. The arc is who the character becomes. Arc Types Positive Change Arc Character believes something fals...
419
10403 canvas-design davila7/claude-code-templates
These are instructions for creating design philosophies - aesthetic movements that are then EXPRESSED VISUALLY. Output only .md files, .pdf files, and .png files. Complete this in two steps: Design Philosophy Creation (.md file) Express by creating it on a canvas (.pdf file or .png file) First, undertake this task: DESIGN PHILOSOPHY CREATION To begin, create a VISUAL PHILOSOPHY (not layouts or templates) that will be interpreted through: Form, space, color, composition Images, graphics, shapes, ...
419
10404 auth-implementation-patterns sickn33/antigravity-awesome-skills
Authentication & Authorization Implementation Patterns Build secure, scalable authentication and authorization systems using industry-standard patterns and modern best practices. When to Use This Skill Implementing user authentication systems Securing REST or GraphQL APIs Adding OAuth2/social login Implementing role-based access control (RBAC) Designing session management Migrating authentication systems Debugging auth issues Implementing SSO or multi-tenancy Core Concepts 1. Authentication vs A...
419
10405 microsoft-extensions-dependency-injection wshaddix/dotnet-skills
Dependency Injection Patterns When to Use This Skill Use this skill when: Organizing service registrations in ASP.NET Core applications Avoiding massive Program.cs/Startup.cs files with hundreds of registrations Making service configuration reusable between production and tests Designing libraries that integrate with Microsoft.Extensions.DependencyInjection The Problem Without organization, Program.cs becomes unmanageable: // BAD: 200+ lines of unorganized registrations var builder = WebApplicat...
419
10406 accessibility-testing aj-geddes/useful-ai-prompts
Accessibility Testing Overview Accessibility testing ensures web applications are usable by people with disabilities, including those using screen readers, keyboard navigation, or other assistive technologies. It validates compliance with WCAG (Web Content Accessibility Guidelines) and identifies barriers to accessibility. When to Use Validating WCAG 2.1/2.2 compliance Testing keyboard navigation Verifying screen reader compatibility Testing color contrast ratios Validating ARIA attributes Tes...
418
10407 security parcadei/continuous-claude-v3
Security Architecture Diagram Generator Quick Start: Define trust boundaries → Place identity/encryption/firewall icons → Connect with access flows → Group into security zones → Wrap in ```plantuml fence. ⚠️ IMPORTANT: Always use ```plantuml or ```puml code fence. NEVER use ```text — it will NOT render as a diagram. Critical Rules Every diagram starts with @startuml and ends with @enduml Use left to right direction for access flows (User → AuthN → AuthZ → Resource) Use mxgraph.aws4.* stencil syn...
418
10408 bun dalestudy/skills
Bun Node.js 대신 Bun을 기본 런타임으로 사용. 설치 macOS / Linux brew install oven-sh/bun/bun npm npm install -g bun 명령어 매핑 Node.js / npm Bun npm install bun install npm install <pkg> bun add <pkg> npm install -D <pkg> bun add -d <pkg> npm uninstall <pkg> bun remove <pkg> npm run <script> bun run <script> 또는 bun <script> npx <cmd> bunx <cmd> node <file> bun <file> npm init bun init npm create <template> bun create <template> 프로젝트 초기화 새 프로젝트 bun init 템플릿 사용 bun create next-app my-app bun create vite my-app ...
418
10409 atomic-design-fundamentals thebushidocollective/han
Atomic Design Fundamentals Master Brad Frost's Atomic Design methodology (extended with quarks) for building scalable, maintainable component-based user interfaces. This skill covers the core hierarchy, principles, and organization strategies for modern design systems. Overview Atomic Design is a methodology for creating design systems inspired by chemistry. Just as atoms combine to form molecules, which combine to form organisms, UI components follow a similar hierarchical structure. We exte...
418
10410 tailwindcss martinholovsky/claude-skills-generator
Tailwind CSS The skill is based on Tailwind CSS v4.1.18, generated at 2026-01-28. Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces. Instead of writing custom CSS, you compose designs using utility classes directly in your markup. Tailwind v4 introduces CSS-first configuration with theme variables, making it easier to customize your design system. Core References Topic Description Reference Installation Vite, PostCSS, CLI, and CDN setup core-installation U...
418
10411 cpp mindrally/skills
C++ Development Guidelines You are an expert in modern C++ development with deep knowledge of C++17/20 standards, memory management, and high-performance programming. Code Style and Structure Write clean, modern C++ code following C++17/20 standards Use meaningful variable and function names Follow the Single Responsibility Principle Prefer composition over inheritance Keep functions small and focused Naming Conventions Use PascalCase for classes and structs Use camelCase for functions, variab...
418
10412 eventkit-calendar dpearson2699/swift-ios-skills
EventKit — Calendar & Reminders Create, read, and manage calendar events and reminders. Covers authorization, event and reminder CRUD, recurrence rules, alarms, and EventKitUI editors. Targets Swift 6.2 / iOS 26+. Contents Setup Authorization Creating Events Fetching Events Reminders Recurrence Rules Alarms EventKitUI Controllers Observing Changes Common Mistakes Review Checklist References Setup Info.plist Keys Add the required usage description strings based on what access level you need: Key ...
417
10413 home-assistant-esphome bradsjm/hassio-addons
ESPHome + Home Assistant Workflow Identify the task: new device/adopt, offline troubleshooting, or YAML feature changes. For HA-side validation, discover ESPHome entities and map to devices before changing names. For YAML changes, edit in ESPHome Device Builder (UI-first), validate, then install (USB first flash, OTA thereafter). When building automations from ESPHome entities, follow home-assistant-best-practices for automation patterns. HA-side discovery (common) Check integration state: ha_ge...
417
10414 continuity-ledger parcadei/continuous-claude-v3
Continuity Ledger Note: This skill is now an alias for /create_handoff. Both output the same YAML format. Create a YAML handoff document for state preservation across /clear. This is the same as /create_handoff. Process 1. Filepath & Metadata First, determine the session name from existing handoffs: ls -td thoughts/shared/handoffs/*/ 2>/dev/null | head -1 | xargs basename This returns the most recently modified handoff folder name (e.g., open-source-release). Use this as the handoff folde...
417
10415 rspec mindrally/skills
RSpec Testing Best Practices You are an expert in Ruby, Rails, and RSpec testing. Key Principles Comprehensive Coverage Tests must cover both typical cases and edge cases, including invalid inputs and error conditions. Readability and Clarity Employ descriptive names for describe, context, and it blocks Use the expect syntax for improved assertion readability Keep test code concise without unnecessary complexity Include comments explaining complex logic Test Organization Use describe for cla...
417
10416 learner yeachan-heo/oh-my-claudecode
Reusable skills are not code snippets to copy-paste, but principles and decision-making heuristics that teach Claude HOW TO THINK about a class of problems. The difference: - BAD (mimicking): "When you see ConnectionResetError, add this try/except block" - GOOD (reusable skill): "In async network code, any I/O operation can fail independently due to client/server lifecycle mismatches. The principle: wrap each I/O operation separately, because failure between operations is the common case, not...
417
10417 release yeachan-heo/oh-my-claudecode
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...
417
10418 validation-patterns wshaddix/dotnet-skills
Validation Patterns in ASP.NET Core Rationale Validation is critical for both security and user experience. Poor validation leads to invalid data, security vulnerabilities, and confusing error messages. These patterns provide a comprehensive approach to validation at multiple layers. Validation Strategy Layer Purpose Technology Client-Side Immediate feedback, reduce server load jQuery Validation, HTML5 Model Binding Data type/format validation Model Binders Application Business rule validation F...
417
10419 self-improving-agent grail-computer/self-improving-agent
Self-Improving Agent "An AI agent that learns from every interaction, accumulating patterns and insights to continuously improve its own capabilities." — Based on 2025 lifelong learning research Overview This is a universal self-improvement system that learns from ALL skill experiences, not just PRDs. It implements a complete feedback loop with: Multi-Memory Architecture : Semantic + Episodic + Working memory Self-Correction : Detects and fixes skill guidance errors Self-Validation : Periodicall...
417
10420 serialization wshaddix/dotnet-skills
Serialization in .NET When to Use This Skill Use this skill when: Choosing a serialization format for APIs, messaging, or persistence Migrating from Newtonsoft.Json to System.Text.Json Implementing AOT-compatible serialization Designing wire formats for distributed systems Optimizing serialization performance Serialization Format Comparison Format Library AOT-Safe Human-Readable Relative Size Relative Speed Best For JSON System.Text.Json (source gen) Yes Yes Largest Good APIs, config, web client...
417
10421 skill-creator getsentry/skills
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...
416
10422 semantic-versioning aj-geddes/useful-ai-prompts
Semantic Versioning Overview Establish semantic versioning practices to maintain consistent version numbering aligned with release significance, enabling automated version management and release notes generation. When to Use Package and library releases API versioning Version bumping automation Release note generation Breaking change tracking Dependency management Changelog management Implementation Examples 1. Semantic Versioning Configuration package.json { "name": "my-awesome-package", ...
416
10423 browser-debugging aj-geddes/useful-ai-prompts
Browser Debugging Overview Browser debugging tools help identify and fix client-side issues including JavaScript errors, layout problems, and performance issues. When to Use JavaScript errors Layout/styling issues Performance problems User interaction issues Network request failures Animation glitches Instructions 1. Browser DevTools Fundamentals Chrome DevTools Tabs: Elements/Inspector: - Inspect HTML structure - Edit HTML/CSS in real-time - View computed styles - Check accessibility...
416
10424 create-handoff parcadei/continuous-claude-v3
Create Handoff You are tasked with writing a handoff document to hand off your work to another agent in a new session. You will create a handoff document that is thorough, but also concise. The goal is to compact and summarize your context without losing any of the key details of what you're working on. Process 1. Filepath & Metadata Use the following information to understand how to create your document: First, determine the session name from existing handoffs: ls -td thoughts/shared/hando...
416
10425 skillclaw-skill-evolution aradotso/trending-skills
SkillClaw: Collective Skill Evolution for LLM Agents Skill by ara.so — Daily 2026 Skills collection. SkillClaw is a framework that makes LLM agents progressively smarter by evolving reusable skills from real session data and sharing them across a group of agents. It intercepts OpenAI-compatible API calls via a local proxy, records session artifacts, and runs an evolve server that distills experience into SKILL.md files synced via cloud storage (OSS/S3/local). Architecture User → OpenClaw Agent →...
416
10426 opentelemetry bobmatnyc/claude-mpm-skills
No SKILL.md available for this skill. View on GitHub Installs 629 Repository grafana/skills GitHub Stars 123 First Seen Apr 14, 2026
416
10427 vercel-development mindrally/skills
Vercel Development Best Practices Overview This skill provides comprehensive guidelines for developing and deploying applications on Vercel, with a focus on Next.js, React Server Components, Edge Functions, and the Vercel AI SDK. Core Principles Write concise, technical TypeScript code with accurate examples Use functional and declarative programming patterns; avoid classes Minimize 'use client', 'useEffect', and 'setState'; favor React Server Components (RSC) Implement responsive design with ...
416
10428 personal-finance-coach erichowens/some_claude_skills
Personal Finance Coach Expert personal finance coach grounded in academic research and quantitative analysis, not platitudes. Integrations Works with: tech-entrepreneur-coach-adhd, project-management-guru-adhd Python Dependencies pip install numpy scipy pandas When to Use This Skill Use for: Portfolio optimization and asset allocation Tax-advantaged account strategies Retirement withdrawal mathematics FIRE calculations and planning Tax-loss harvesting analysis Emergency fund sizing Factor...
416
10429 llvm mohitmishra786/low-level-dev-skills
LLVM IR and Tooling Purpose Guide agents through the LLVM IR pipeline: generating IR, running optimisation passes with opt , lowering to assembly with llc , and inspecting IR for debugging or performance work. Triggers "Show me the LLVM IR for this function" "How do I run an LLVM optimisation pass?" "What does this LLVM IR instruction mean?" "How do I write a custom LLVM pass?" "Why isn't auto-vectorisation happening in LLVM?" Workflow 1. Generate LLVM IR Emit textual IR (.ll) clang -O0 -emit-l...
416
10430 official-document-writing kagurananaga/official-document-writing-skill
公文写作技能 本技能提供党政机关公文写作的完整指南,涵盖格式规范、常用模板、写作技巧和质量检查,确保公文格式正确、语言规范、结构清晰。 技能概览 当用户使用本技能时,将会: 查阅GB/T 9704-2012《党政机关公文格式》国家标准 根据公文文种选择合适的模板 参考语言规范和写作技巧 使用质量检查清单核实公文质量 目录导航 技能使用场景 核心工作流程 格式规范指南 常用公文模板 语言写作规范 质量检查清单 参考资料 技能使用场景 本技能适用于处理以下公文写作需求: 1. 撰写新公文 当用户需要新写一份公文时,协助选择文种、提供模板、指导写作。 操作流程 : 了解公文用途和背景 确定公文文种(请示、通知、函、总结、纪要等) 提供相应模板 指导填写关键内容 检查格式和语言规范 2. 修改完善公文 当用户已有公文初稿,需要修改完善时,提供修改建议。 操作流程 : 通读原文,了解基本内容 对照检查清单检查问题 指出格式、语言、逻辑问题 提供修改建议 3. 检查公文格式规范 当用户已完成公文,需要检查是否符合GB/T 9704-2012标准。 操作流程 : 使用质量检查清单逐项核对 检查字体、...
416
10431 omx supercent-io/skills-template
oh-my-codex (OMX) - Multi-Agent Orchestration for Codex CLI When to use this skill Orchestrating complex multi-agent workflows with OpenAI Codex CLI Running parallel team workers in tmux for coordinated task execution Using persistent MCP servers for state, memory, and code intelligence Executing staged pipelines (plan → prd → exec → verify → fix) Leveraging role-based agent prompts for specialized tasks 1. Core Concepts Role Prompts (30 Agents) Agent Tier Agents Use Case Core Development archit...
415
10432 cloudkit-sync dpearson2699/swift-ios-skills
CloudKit and iCloud Sync Sync data across devices using CloudKit, iCloud key-value storage, and iCloud Drive. Covers container setup, record CRUD, queries, subscriptions, CKSyncEngine, SwiftData integration, conflict resolution, and error handling. Targets iOS 26+ with Swift 6.2; older availability noted where relevant. Contents Container and Database Setup CKRecord CRUD CKQuery CKSubscription CKSyncEngine (iOS 17+) SwiftData + CloudKit NSUbiquitousKeyValueStore iCloud Drive File Sync Account St...
415
10433 grpc-service-development aj-geddes/useful-ai-prompts
gRPC Service Development Overview Develop efficient gRPC services using Protocol Buffers for service definition, with support for unary calls, client streaming, server streaming, and bidirectional streaming patterns. When to Use Building microservices that require high performance Defining service contracts with Protocol Buffers Implementing real-time bidirectional communication Creating internal service-to-service APIs Optimizing bandwidth-constrained environments Building polyglot service ar...
415
10434 debug-hooks parcadei/continuous-claude-v3
Debug Hooks Systematic workflow for debugging Claude Code hooks. When to Use "Hook isn't firing" "Hook produces wrong output" "SessionEnd not working" "PostToolUse hook not triggering" "Why didn't my hook run?" Workflow 1. Check Outputs First (Observe Before Editing) Check project cache ls -la $CLAUDE_PROJECT_DIR/.claude/cache/ Check specific outputs ls -la $CLAUDE_PROJECT_DIR/.claude/cache/learnings/ Check for debug logs tail $CLAUDE_PROJECT_DIR/.claude/cache/*.log 2>/dev/null Also che...
415
10435 data privacy compliance davila7/claude-code-templates
Data Privacy Compliance Comprehensive guidance for implementing data privacy compliance across GDPR, CCPA, HIPAA, and other global data protection regulations. When to Use This Skill Use this skill when: Implementing GDPR, CCPA, or HIPAA compliance Conducting Data Protection Impact Assessments (DPIA) Managing data subject rights (access, deletion, portability) Implementing consent management systems Drafting privacy policies and notices Handling data breaches and incident response Designing priv...
415
10436 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...
415
10437 skill yeachan-heo/oh-my-claudecode
Skill Management CLI Meta-skill for managing oh-my-claudecode skills via CLI-like commands. Subcommands /skill list Show all local skills organized by scope. Behavior: Scan user skills at ~/.claude/skills/omc-learned/ Scan project skills at .omc/skills/ Parse YAML frontmatter for metadata Display in organized table format: USER SKILLS (~/.claude/skills/omc-learned/): | Name | Triggers | Quality | Usage | Scope | |-------------------|--------------------|---------|-------|-...
415
10438 blockchain mindrally/skills
Blockchain Development You are an expert in blockchain development, smart contracts, and distributed systems. Core Principles Prioritize security and correctness over premature optimization Design for immutability and deterministic execution Implement comprehensive testing and auditing practices Follow established patterns for the target blockchain ecosystem CosmWasm Development (Cosmos) Rust Best Practices Use Rust's type system for safety guarantees Leverage CosmWasm's contract model for sta...
415
10439 kanchi-dividend-sop tradermonty/claude-trading-skills
Kanchi Dividend Sop Overview Implement Kanchi's 5-step method as a deterministic workflow for US dividend investing. Prioritize safety and repeatability over aggressive yield chasing. When to Use Use this skill when the user needs: Kanchi-style dividend stock selection adapted for US equities. A repeatable screening and pullback-entry process instead of ad-hoc picks. One-page underwriting memos with explicit invalidation conditions. A handoff package for monitoring and tax/account-location workf...
415
10440 cloudflare-d1 jezweb/claude-skills
Cloudflare D1 Database Status: Production Ready ✅ Last Updated: 2026-01-20 Dependencies: cloudflare-worker-base (for Worker setup) Latest Versions: wrangler@4.59.2, @cloudflare/workers-types@4.20260109.0 Recent Updates (2025): Nov 2025: Jurisdiction support (data localization compliance), remote bindings GA (wrangler@4.37.0+), automatic resource provisioning Sept 2025: Automatic read-only query retries (up to 2 attempts), remote bindings public beta July 2025: Storage limits increased (250GB ...
414
10441 openviking-memory volcengine/openviking
OpenViking Memory Guide How It Works Auto-Capture : At the end of a conversation, automatically extracts memories from user messages semantic mode: captures all qualifying user text, relying on OpenViking's extraction pipeline to filter keyword mode: only captures text matching trigger words (e.g. "remember", "preference", etc.) Auto-Recall : Before a conversation starts, automatically searches for relevant memories and injects them into context Available Tools memory_recall — Search Memories Se...
414
10442 course-designer teachingai/full-stack-skills
课程设计技能 概述 本技能帮助您创建结构化的课程内容,包括课程大纲、学习目标、教学计划和评估方案。 关键词: 课程设计、教学大纲、学习目标、教学计划、课程规划、教育设计 核心功能 1. 课程大纲设计 分析学习需求和目标受众 设计课程结构和模块划分 确定课程时长和进度安排 规划知识点的递进关系 2. 学习目标制定 使用 Bloom 分类法制定认知目标 设计可测量的学习成果 确保目标与评估方式对齐 区分不同层次的学习目标(记忆、理解、应用、分析、评价、创造) 3. 教学计划编写 设计每节课的教学流程 规划教学活动和互动环节 准备教学资源和材料清单 安排实践练习和作业 4. 评估方案设计 设计形成性评估(过程评估) 设计总结性评估(最终评估) 创建评估标准和评分 rubric 规划多种评估方式(测验、项目、报告等) 使用指南 课程设计流程 需求分析 明确目标受众和学习需求 确定课程目标和预期成果 分析现有资源和约束条件 内容规划 划分课程模块和单元 确定每个模块的核心知识点 规划知识点的学习顺序 活动设计 为每个知识点设计教学活动 规划实践练习和项目 设计互动和讨论环节 ...
414
10443 pyre-code-ml-practice aradotso/trending-skills
Pyre Code ML Practice Platform Skill by ara.so — Daily 2026 Skills collection. Pyre Code is a self-hosted ML coding practice platform with 68 problems ranging from ReLU to flow matching. Users implement internals of modern AI systems (Transformers, vLLM, TRL, diffusion models) in a browser editor with instant pass/fail feedback, no GPU required. Installation Option A — One-liner (recommended) git clone https://github.com/whwangovo/pyre-code.git cd pyre-code ./setup.sh npm run dev setup.sh create...
414
10444 littlesnitch-linux aradotso/trending-skills
Little Snitch for Linux — eBPF Network Monitor Skill by ara.so — Daily 2026 Skills collection. Little Snitch for Linux is an open-source eBPF-based network monitoring and blocking toolkit written in Rust. It attaches eBPF programs to the Linux kernel to intercept network connections, then shares data between kernel and user space via eBPF maps. The open-source portion includes eBPF programs, shared types, and a demo runner; the full product from Objective Development includes additional propriet...
414
10445 mise-tasks terrylica/cc-skills
Orchestrate multi-step project workflows using mise `[tasks]` section with dependency management, argument handling, and file tracking. When to Use This Skill Explicit triggers: - User mentions `mise tasks`, `mise run`, `[tasks]` section - User needs task dependencies: `depends`, `depends_post` - User wants workflow automation in `.mise.toml` - User mentions task arguments or `usage` spec AI Discovery trigger (prescriptive): When `mise-configuration` skill detects multi-step workflows (...
414
10446 cancel yeachan-heo/oh-my-claudecode
Cancel Skill Intelligent cancellation that detects and cancels the active OMC mode. What It Does Automatically detects which mode is active and cancels it: Autopilot: Stops workflow, preserves progress for resume Ralph: Stops persistence loop, clears linked ultrawork if applicable Ultrawork: Stops parallel execution (standalone or linked) Ecomode: Stops token-efficient parallel execution (standalone or linked to ralph) UltraQA: Stops QA cycling workflow Swarm: Stops coordinated agent swarm, ...
414
10447 ln-624-code-quality-auditor levnikolaevich/claude-code-skills
Code Quality Auditor (L3 Worker) Specialized worker auditing code complexity, algorithms, and constants management. Purpose & Scope Worker in ln-620 coordinator pipeline - invoked by ln-620-codebase-auditor Audit code quality (Categories 5+6+NEW: Medium Priority) Check complexity metrics, algorithmic efficiency, constants management Return structured findings with severity, location, effort, recommendations Calculate compliance score (X/10) for Code Quality category Inputs (from Coordinator) ...
413
10448 network-debugging aj-geddes/useful-ai-prompts
Network Debugging Overview Network debugging identifies connectivity issues, latency problems, and data transmission errors that impact application performance. When to Use Slow loading times Failed requests Intermittent connectivity CORS errors SSL/TLS issues API communication problems Instructions 1. Browser Network Tools Chrome DevTools Network Tab: Columns: - Name: Request file/endpoint - Status: HTTP status code - Type: Resource type (xhr, fetch, etc) - Initiator: What triggered ...
413
10449 imap-smtp-email netease-youdao/lobsterai
No SKILL.md available for this skill. View on GitHub
413
10450 grepai-embeddings-openai yoanbernabeu/grepai-skills
This skill covers using OpenAI's embedding API with GrepAI for high-quality, cloud-based embeddings. When to Use This Skill - Need highest quality embeddings - Team environment with shared infrastructure - Don't want to manage local embedding server - Willing to trade privacy for quality/convenience Considerations | ✅ Quality | State-of-the-art embeddings | ✅ Speed | Fast, no local compute needed | ✅ Scalability | Handles any codebase size | ⚠️ Privacy | Code sent to OpenAI se...
413