███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 1451 | better-ui | jakubkrehel/skills |
Details that make interfaces feel better Great interfaces rarely come from a single thing. It's usually a collection of small details that compound into a great experience. Apply these principles when building or reviewing UI code. Typography (text wrapping, font smoothing, tabular numbers, spacing) is covered by the better-typography skill; use that for anything text-related. Quick Reference Category When to Use Surfaces Border radius, optical alignment, shadows, image outlines, hit areas Anima...
|
10.8K |
| 1452 | user-guide-writing | supercent-io/skills-template |
User Guide Writing When to use this skill New Features : Introduce new features to users Onboarding : Train new users FAQ : Organize frequently asked questions Instructions Step 1: Quick Start Guide Getting Started with MyApp Welcome to MyApp! This guide will help you get up and running in 5 minutes. Step 1: Create an Account 1. Go to [ https://myapp.com/signup ]( https://myapp.com/signup ) 2. Enter your email and create a password - Password must be at least 8 characters - Include uppercase, ...
|
10.7K |
| 1453 | ui-component-patterns | supercent-io/skills-template |
UI Component Patterns When to use this skill Building Component Libraries : Creating reusable UI components Implementing Design Systems : Applying consistent UI patterns Complex UI : Components requiring multiple variants (Button, Modal, Dropdown) Refactoring : Extracting duplicate code into components Instructions Step 1: Props API Design Design Props that are easy to use and extensible. Principles : Clear names Reasonable defaults Type definitions with TypeScript Optional Props use optional ma...
|
10.7K |
| 1454 | ralph | supercent-io/skills-template |
ralph (Ouroboros) — Specification-First AI Development Stop prompting. Start specifying. "The beginning is the end, and the end is the beginning." The serpent doesn't repeat — it evolves. When to use this skill Before writing any code — expose hidden assumptions with Socratic interviewing Long-running tasks that need autonomous iteration until verified Vague requirements — crystallize them into an immutable spec (Ambiguity ≤ 0.2) Tasks requiring guaranteed completion — loop until verification pa...
|
10.7K |
| 1455 | scrape | brightdata/skills |
Bright Data - Web Scraper Scrape any webpage and get clean markdown content using Bright Data's Web Unlocker API. Automatically bypasses bot detection and CAPTCHA. Setup 1. Get your API Key: Get a key from Bright Data Dashboard . 2. Create a Web Unlocker zone: Create a zone at brightdata.com/cp by clicking "Add" (top-right), selecting "Unlocker zone". 3. Set environment variables: export BRIGHTDATA_API_KEY = "your-api-key" export BRIGHTDATA_UNLOCKER_ZONE = "your-zone-name" Usage bash scripts/scr...
|
10.7K |
| 1456 | karpathy-guidelines | multica-ai/andrej-karpathy-skills |
Karpathy Guidelines Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations on LLM coding pitfalls. Tradeoff: These guidelines bias toward caution over speed. For trivial tasks, use judgment. 1. Think Before Coding Don't assume. Don't hide confusion. Surface tradeoffs. Before implementing: State your assumptions explicitly. If uncertain, ask. If multiple interpretations exist, present them - don't pick silently. If a simpler approach exists, say so...
|
10.7K |
| 1457 | react-modernization | wshobson/agents |
React Modernization Master React version upgrades, class to hooks migration, concurrent features adoption, and codemods for automated transformation. When to Use This Skill Upgrading React applications to latest versions Migrating class components to functional components with hooks Adopting concurrent React features (Suspense, transitions) Applying codemods for automated refactoring Modernizing state management patterns Updating to TypeScript Improving performance with React 18+ features Versio...
|
10.7K |
| 1458 | threat-mitigation-mapping | wshobson/agents |
Threat Mitigation Mapping Connect threats to controls for effective security planning. When to Use This Skill Prioritizing security investments Creating remediation roadmaps Validating control coverage Designing defense-in-depth Security architecture review Risk treatment planning Core Concepts 1. Control Categories Preventive ────► Stop attacks before they occur │ (Firewall, Input validation) │ Detective ─────► Identify attacks in progress │ (IDS, Log monito...
|
10.7K |
| 1459 | clerk-tanstack-patterns | clerk/skills |
TanStack React Start Patterns What Do You Need? Task Reference Protect routes with beforeLoad references/router-guards.md Auth in createServerFn references/server-functions.md Pass auth to loaders references/loaders.md Configure Vinxi + clerkMiddleware references/vinxi-server.md References Reference Description references/router-guards.md beforeLoad auth redirect references/server-functions.md createServerFn with auth() references/loaders.md Auth context in loaders references/vinxi-server.md cle...
|
10.7K |
| 1460 | vercel-deploy | supercent-io/skills-template |
Vercel Deploy Deploy any project to Vercel instantly. No authentication required. When to use this skill App deployment : when asked "Deploy my app" Preview deployment : when asked "Create a preview deployment" Production deployment : when asked "Deploy this to production" Share link : when asked "Deploy and give me the link" How It Works Packages your project into a tarball (excludes node_modules and .git ) Auto-detects framework from package.json Uploads to deployment service Returns Preview U...
|
10.6K |
| 1461 | log-analysis | supercent-io/skills-template |
Log Analysis When to use this skill Error debugging : analyze the root cause of application errors Performance analysis : analyze response times and throughput Security audit : detect anomalous access patterns Incident response : investigate the root cause during an outage Instructions Step 1: Locate Log Files Common log locations /var/log/ System logs /var/log/nginx/ Nginx logs /var/log/apache2/ Apache logs ./logs/ Application logs Step 2: Search for Error Patterns Common error search : S...
|
10.6K |
| 1462 | authentication-setup | supercent-io/skills-template |
Authentication Setup When to use this skill Lists specific situations where this skill should be triggered: User Login System : When adding user authentication to a new application API Security : When adding an authentication layer to a REST or GraphQL API Permission Management : When role-based access control is needed Authentication Migration : When migrating an existing auth system to JWT or OAuth SSO Integration : When integrating social login with Google, GitHub, Microsoft, etc. Input Forma...
|
10.6K |
| 1463 | bmad-orchestrator | supercent-io/skills-template |
bmad-orchestrator — BMAD Workflow Orchestration with SSD When to use this skill Initializing BMAD in a new project (with or without SSD) Running structured TEA cycles within each BMAD phase Checking and resuming BMAD/SSD workflow status Routing work across Analysis, Planning, Solutioning, and Implementation Managing structured handoff and cross-phase traceability between phases What is SSD (Structured System Design)? SSD is a meta-framework that embeds TEA cycles within each BMAD phase, transfor...
|
10.6K |
| 1464 | springboot-patterns | affaan-m/ecc |
Spring Boot Development Patterns Spring Boot architecture and API patterns for scalable, production-grade services. When to Activate Building REST APIs with Spring MVC or WebFlux Structuring controller → service → repository layers Configuring Spring Data JPA, caching, or async processing Adding validation, exception handling, or pagination Setting up profiles for dev/staging/production environments Implementing event-driven patterns with Spring Events or Kafka REST API Structure Show more Insta...
|
10.6K |
| 1465 | okx-agent-payments-protocol | okx/onchainos-skills |
OKX Agent Payments Protocol (Dispatcher) Unified entry point for three payment paths, distinguished by HTTP signature: accepts -based 402 (challenge in body for v1 or PAYMENT-REQUIRED header for v2), WWW-Authenticate: Payment 402 (channel-capable, with intent="charge" or "session" ), and a2a-pay (paymentId-based agent-to-agent links, no 402 required). This file owns the shared steps — protocol detection, payload decode, user confirmation gate, wallet status check — then dispatches into the right...
|
10.6K |
| 1466 | state-management | supercent-io/skills-template |
State Management When to use this skill 전역 상태 필요: 여러 컴포넌트가 같은 데이터 공유 Props Drilling 문제: 5단계 이상 props 전달 복잡한 상태 로직: 인증, 장바구니, 테마 등 상태 동기화: 서버 데이터와 클라이언트 상태 동기화 Instructions Step 1: 상태 범위 결정 로컬 vs 전역 상태를 구분합니다. 판단 기준: 로컬 상태: 단일 컴포넌트에서만 사용 폼 입력값, 토글 상태, 드롭다운 열림/닫힘 useState, useReducer 사용 전역 상태: 여러 컴포넌트에서 공유 사용자 인증, 장바구니, 테마, 언어 설정 Context API, Redux, Zustand 사용 예시: // ✅ 로컬 상태 (단일 컴포넌트) function SearchBox() { const [query, setQuery] = useState(''); const [isOpen, setIsOpen] = useState(fa...
|
10.5K |
| 1467 | web-design-guidelines | supercent-io/skills-template |
Web Interface Guidelines Review files for compliance with Web Interface Guidelines. How It Works Fetch the latest guidelines from the source URL below Read the specified files (or prompt user for files/pattern) Check against all rules in the fetched guidelines Output findings in the terse file:line format Guidelines Source Fetch fresh guidelines before each review: https://raw.githubusercontent.com/vercel-labs/web-interface-guidelines/main/command.md Use WebFetch to retrieve the latest rules. Th...
|
10.5K |
| 1468 | opencontext | supercent-io/skills-template |
OpenContext Context Management (Persistent Memory) Give your AI assistant persistent memory. Stop repeating explanations, and build smarter. When to use this skill When you need to keep context across sessions When you need to record project background/decisions When you need to search prior conclusions/lessons When you need knowledge sharing in a Multi-Agent workflow When you want to reduce repetitive background explanations 1. Core concepts Problem When working with an AI assistant, context ge...
|
10.5K |
| 1469 | system-environment-setup | supercent-io/skills-template |
System & Environment Setup When to use this skill New project : Initial environment setup Team onboarding : Standardizing new developer environments Multiple services : Local execution of microservices Production replication : Testing production environment locally Instructions Step 1: Docker Compose Configuration docker-compose.yml : version : '3.8' services : Web Application web : build : context : . dockerfile : Dockerfile ports : - "3000:3000" environment : - NODE_ENV=development - DATABASE...
|
10.5K |
| 1470 | prompt-repetition | supercent-io/skills-template |
Prompt Repetition Problem Being Solved LLMs are trained as Causal Language Models , where each token attends only to previous tokens . This leads to: Context-Question Problem : The question is unknown when processing context Options-First MCQ Problem : Cannot fully understand the question context when viewing answer choices Position/Index Problem : Attention weights weaken for specific position information in long lists Prompt repetition enables the second pass to reference the entire first pass...
|
10.5K |
| 1471 | task-estimation | supercent-io/skills-template |
Task Estimation When to use this skill Sprint Planning : Decide what work to include in the sprint Roadmap creation : Build long-term plans Resource planning : Estimate team size and schedule Instructions Step 1: Story Points (relative estimation) Fibonacci sequence : 1, 2, 3, 5, 8, 13, 21 Story Point guidelines 1 Point (Very Small) - Example: text change, constant value update - Time: 1-2 hours - Complexity: very low - Risk: none 2 Points (Small) - Example: simple bug fix, add logging - Time...
|
10.5K |
| 1472 | standup-meeting | supercent-io/skills-template |
Standup Meeting When to use this skill Daily : same time, same place During a sprint : when team sync is needed Remote teams : async standup Instructions Step 1: 3 Questions Format Daily Standup Template Date : 2025-01-15 Time : 9:30 AM Duration : 15 minutes Team Member A - Yesterday : - Completed user authentication API (123) - 2 code reviews - Today : - Implement JWT refresh token (124) - Write unit tests - Blockers : - Need Redis setup docs (ask Team Member B for help) Team Mem...
|
10.5K |
| 1473 | skill-standardization | supercent-io/skills-template |
Skill Standardization When to use this skill Creating new SKILL.md files following the standard template Converting existing skills with non-standard section headings Validating skill files against the project specification Batch processing multiple skill files for consistency Ensuring all skills have required sections (Examples, Best practices, References) Instructions Step 1: Run the conversion script Execute the main conversion script to standardize all SKILL.md files: cd /path/to/.agent-skil...
|
10.5K |
| 1474 | looker-studio-bigquery | supercent-io/skills-template |
Looker Studio BigQuery Integration When to use this skill Analytics dashboard creation : Visualizing BigQuery data to derive business insights Real-time reporting : Building auto-refreshing dashboards Performance optimization : Optimizing query costs and loading time for large datasets Data pipeline : Automating ETL processes with scheduled queries Team collaboration : Building shareable interactive dashboards Instructions Step 1: Prepare GCP BigQuery Environment Project creation and activation ...
|
10.5K |
| 1475 | pattern-detection | supercent-io/skills-template |
Pattern Detection When to use this skill 코드 리뷰: 문제 패턴 사전 감지 보안 검토: 취약점 패턴 스캔 리팩토링: 중복 코드 식별 모니터링: 이상 징후 알림 Instructions Step 1: 코드 스멜 패턴 감지 긴 함수 감지: 50줄 이상 함수 찾기 grep -n "function\|def\|func " /*.{js,ts,py,go} | \ while read line; do file=$(echo $line | cut -d: -f1) linenum=$(echo $line | cut -d: -f2) 함수 길이 계산 로직 done 중복 코드 패턴: 유사한 코드 블록 검색 grep -rn "if.*==.*null" --include="*.ts" . grep -rn "try\s*{" --include="*.java" . | wc -l 매직 넘버: 하드코딩된 숫자 검색 grep -rn "[^a-zA-Z]...
|
10.5K |
| 1476 | environment-setup | supercent-io/skills-template |
Environment Configuration When to use this skill 신규 프로젝트: 초기 환경 설정 다중 환경: dev, staging, production 분리 팀 협업: 일관된 환경 공유 Instructions Step 1: .env 파일 구조 .env.example (템플릿): Application NODE_ENV=development PORT=3000 APP_URL=http://localhost:3000 Database DATABASE_URL=postgresql://user:password@localhost:5432/myapp DATABASE_POOL_MIN=2 DATABASE_POOL_MAX=10 Redis REDIS_URL=redis://localhost:6379 REDIS_TTL=3600 Authentication JWT_ACCESS_SECRET=change-me-in-production-min-32-characters JWT_REFR...
|
10.5K |
| 1477 | agent-browser | supercent-io/skills-template |
Browser Automation with agent-browser The CLI uses Chrome/Chromium via CDP directly. Install via npm i -g agent-browser , brew install agent-browser , or cargo install agent-browser . Run agent-browser install to download Chrome. Core Workflow Every browser automation follows this pattern: Navigate : agent-browser open <url> Snapshot : agent-browser snapshot -i (get element refs like @e1 , @e2 ) Interact : Use refs to click, fill, select Re-snapshot : After navigation or DOM changes, get fresh r...
|
10.5K |
| 1478 | sprint-retrospective | supercent-io/skills-template |
Sprint Retrospective When to use this skill 스프린트 종료: 매 스프린트 마지막 프로젝트 마일스톤: 주요 릴리스 후 팀 문제 발생: 즉시 회고 필요 시 Instructions Step 1: Start-Stop-Continue Retrospective Template: Start-Stop-Continue START (시작할 것) - Daily standup을 더 짧게 (5분 이내) - Code review 체크리스트 사용 - 페어 프로그래밍 도입 STOP (중단할 것) - 금요일 오후 배포 (롤백 위험) - 긴급 회의 남발 - 문서화 없는 기능 추가 CONTINUE (계속할 것) - 주간 기술 공유 세션 - 자동화된 테스트 - 투명한 커뮤니케이션 Action Items 1. [ ] Standup 시간을 9:00 → 9:30으로 변경 (팀장) 2. [ ] Code review checklist 문서 작성 (개발자 A) 3. [ ] 금요일...
|
10.5K |
| 1479 | flutter-architecting-apps | flutter/skills |
Architecting Flutter Applications Contents Core Architectural Principles Structuring the Layers Implementing the Data Layer Feature Implementation Workflow Examples Core Architectural Principles Design Flutter applications to scale by strictly adhering to the following principles: Enforce Separation of Concerns: Decouple UI rendering from business logic and data fetching. Organize the codebase into distinct layers (UI, Logic, Data) and further separate by feature within those layers. Maintain a ...
|
10.5K |
| 1480 | nanobanana | gargantuax/openskills |
Nano Banana A single Python entrypoint for Gemini-native Nano Banana image generation and editing, with model aliases, strict option validation, batch runs, and custom endpoint support. Workflow Open references/config.md to choose environment variables and override order. Open references/models-and-api.md to pick the right Nano Banana tier and check model-specific constraints. Prefer gemini-3.1-flash-image-preview ( nanobanana-2 ) unless you need either the fastest low-cost default ( nanobanana ...
|
10.5K |
| 1481 | flutter-architecting-apps | flutter/agent-plugins |
Architecting Flutter Applications Contents Core Architectural Principles Structuring the Layers Implementing the Data Layer Feature Implementation Workflow Examples Core Architectural Principles Design Flutter applications to scale by strictly adhering to the following principles: Enforce Separation of Concerns: Decouple UI rendering from business logic and data fetching. Organize the codebase into distinct layers (UI, Logic, Data) and further separate by feature within those layers. Maintain a ...
|
10.5K |
| 1482 | java-docs | github/awesome-copilot |
Java Documentation (Javadoc) Best Practices Public and protected members should be documented with Javadoc comments. It is encouraged to document package-private and private members as well, especially if they are complex or not self-explanatory. The first sentence of the Javadoc comment is the summary description. It should be a concise overview of what the method does and end with a period. Use @param for method parameters. The description starts with a lowercase letter and does not end with a...
|
10.5K |
| 1483 | apple-appstore-reviewer | github/awesome-copilot |
Apple App Store Review Specialist You are an Apple App Store Review Specialist auditing an iOS app’s source code and metadata from the perspective of an App Store reviewer . Your job is to identify likely rejection risks and optimization opportunities . Specific Instructions You must: Change no code initially. Review the codebase and relevant project files (e.g., Info.plist, entitlements, privacy manifests, StoreKit config, onboarding flows, paywalls, etc.). Produce prioritized, actionable recom...
|
10.5K |
| 1484 | html-slides | claude-office-skills/skills |
HTML Slides Skill Overview This skill enables creation of stunning HTML-based presentations using reveal.js - the web's most popular presentation framework. Create interactive, responsive slides with animations, code highlighting, speaker notes, and more. How to Use Describe the presentation you want to create Specify theme, transitions, and features needed I'll generate a reveal.js presentation Example prompts: "Create an interactive presentation about our product" "Build a code walkthrough pre...
|
10.5K |
| 1485 | cloudbase | tencentcloudbase/cloudbase-skills |
CloudBase Development Guidelines 📁 Reference Files Location All reference documentation files are located in the references/ directory relative to this file. File Structure: cloudbase/ ├── SKILL.md This file (main entry) └── references/ All reference documentation ├── auth-web/ Web authentication guide ├── auth-wechat/ WeChat authentication guide ├── no-sql-web-sdk/ NoSQL database for Web ├── ui-design/ UI design guidelines └── ... ...
|
10.5K |
| 1486 | clean-code | sickn33/agentic-awesome-skills |
Clean Code Skill This skill embodies the principles of "Clean Code" by Robert C. Martin (Uncle Bob). Use it to transform "code that works" into "code that is clean." 🧠 Core Philosophy "Code is clean if it can be read, and enhanced by a developer other than its original author." — Grady Booch When to Use Use this skill when: Writing new code : To ensure high quality from the start. Reviewing Pull Requests : To provide constructive, principle-based feedback. Refactoring legacy code : To identify a...
|
10.5K |
| 1487 | docker-patterns | affaan-m/ecc |
Docker Patterns Docker and Docker Compose best practices for containerized development. Docker Compose for Local Development Standard Web App Stack Show more Installs 1.7K Repository affaan-m/ecc GitHub Stars 239.2K First Seen May 19, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Fail
|
10.5K |
| 1488 | remember | rohitg00/agentmemory |
The user wants to save this to long-term memory: $ARGUMENTS Quick start memory_save { "content" : "We rotate JWT refresh tokens on every use; the old token is revoked server-side in auth/refresh.ts." , "concepts" : "jwt-refresh-rotation, token-revocation, auth-flow" , "files" : "src/auth/refresh.ts" } Expected output: Saved memory abc12345 with 3 concepts: jwt-refresh-rotation, token-revocation, auth-flow. Why Show more Installs 9.2K Repository rohitg00/agentmemory GitHub Stars 26.5K First Seen ...
|
10.5K |
| 1489 | better-typography | jakubkrehel/skills |
Great typography Good typography is mostly restraint. A sensible scale, comfortable spacing and enough contrast beat any clever effect. A label, a table cell, a marketing headline and an article paragraph should not share one set of rules. Apply these principles when building or reviewing anything with text in it. Match the project's styling system. Before suggesting or writing any fix, check how the codebase styles things and express every change in that system: Tailwind utilities in a Tailwind...
|
10.5K |
| 1490 | npm-git-install | supercent-io/skills-template |
npm install Git Repository Guide Covers how to install npm packages directly from GitHub repositories. Useful for installing packages not in the npm registry, specific branches, or private repositories. When to use this skill Packages Not on npm : Install packages not yet published Specific Branch/Tag : Install main, develop, specific release tags Private Repositories : Install packages within an organization Forked Packages : Use a modified fork version Test Latest Commits : Test the latest cod...
|
10.4K |
| 1491 | git-submodule | supercent-io/skills-template |
Git Submodule When to use this skill Including external Git repositories within your main project Managing shared libraries or modules across multiple projects Locking external dependencies to specific versions Working with monorepo-style architectures with independent components Cloning repositories that contain submodules Updating submodules to newer versions Removing submodules from a project Instructions Step 1: Understanding submodules Git submodule은 메인 Git 저장소 내에 다른 Git 저장소를 포함시키는 기능입니다. ...
|
10.4K |
| 1492 | vibe-kanban | supercent-io/skills-template |
Platform Support Status (Current) Platform Current Support Requirements Claude Native MCP integration Register in mcpServers Codex MCP script integration scripts/mcp-setup.sh --codex or equivalent config Gemini MCP registration mcpServers /bridge configuration OpenCode MCP/bridge integration omx / ohmg or equivalent setup Whether this skill alone is sufficient: Claude/Gemini: Yes Codex: Yes (requires script-based setup) OpenCode: Yes (via orchestration) Vibe Kanban — AI Agent Kanban Board Manage...
|
10.4K |
| 1493 | plannotator | supercent-io/skills-template |
plannotator — Interactive Plan & Diff Review Keyword: plan | Source: https://github.com/backnotprop/plannotator Annotate and review AI coding agent plans visually, share with your team, send feedback with one click. Works with Claude Code , OpenCode , Gemini CLI , and Codex CLI . When to use this skill You want to review an AI agent's implementation plan BEFORE it starts coding You want to annotate a git diff after the agent makes changes You need a feedback loop: visually mark up what to change...
|
10.4K |
| 1494 | ohmg | supercent-io/skills-template |
oh-my-ag (ohmg) - Multi-Agent Orchestrator When to use this skill Coordinating complex multi-domain projects Parallelizing tasks across multiple AI agents (PM, Frontend, Backend, etc.) Using Serena Memory for cross-agent state management Setting up real-time observability dashboards for agent workflows Integrating multi-CLI vendors (Gemini, Claude, Codex) in a single project 1. Core Concepts Specialized Agents Agent Specialization Triggers Workflow Guide Coordinates complex projects "multi-domai...
|
10.4K |
| 1495 | genkit | supercent-io/skills-template |
Firebase Genkit When to use this skill AI workflow orchestration : Building multi-step AI pipelines with type-safe inputs/outputs Flow-based APIs : Wrapping LLM calls into deployable HTTP endpoints Tool calling / agents : Equipping models with custom tools and implementing agentic loops RAG pipelines : Retrieval-augmented generation with vector databases (Pinecone, pgvector, Firestore, Chroma, etc.) Multi-agent systems : Coordinating multiple specialized AI agents Streaming responses : Real-time...
|
10.4K |
| 1496 | firebase-ai-logic | supercent-io/skills-template |
Firebase AI Logic Basics Overview Firebase AI Logic is a product of Firebase that allows developers to add gen AI to their mobile and web apps using client-side SDKs. You can call Gemini models directly from your app without managing a dedicated backend. Firebase AI Logic, which was previously known as "Vertex AI for Firebase", represents the evolution of Google's AI integration platform for mobile and web developers. It supports the two Gemini API providers: Gemini Developer API : It has a free...
|
10.4K |
| 1497 | omc | supercent-io/skills-template |
omc (oh-my-claudecode) — Claude Code Multi-Agent Orchestration When to use this skill You want Teams-first multi-agent orchestration inside Claude Code You need 32 specialized agents with smart model routing (Haiku → Opus) Complex tasks that benefit from parallel agent execution with verification loops Any Claude Code workflow that needs persistent, guaranteed-completion execution 1. Installation (3 Steps) Step 1: Install plugin /plugin marketplace add https://github.com/Yeachan-Heo/oh-my-claude...
|
10.4K |
| 1498 | jeo | supercent-io/skills-template |
JEO — Integrated Agent Orchestration Keyword: jeo · annotate · UI검토 · agentui (deprecated) | Platforms: Claude Code · Codex CLI · Gemini CLI · OpenCode A unified skill providing fully automated orchestration flow: Plan (ralph+plannotator) → Execute (team/bmad) → UI Feedback (agentation/annotate) → Cleanup (worktree cleanup) 0. Agent Execution Protocol (follow immediately upon jeo keyword detection) The following are commands, not descriptions. Execute them in order. Each step only proceeds after...
|
10.4K |
| 1499 | videoagent-video-studio | pexoai/pexo-skills |
🎬 VideoAgent Video Studio Use when: User asks to generate a video, create a video from text, animate an image, make a short clip, or produce AI video. Generate short AI videos with 7 backends. This skill picks the right mode (text-to-video or image-to-video), enhances the prompt for best results, and returns the video URL. Quick Reference User Intent Mode Typical Duration "Make a video of..." (no image) text-to-video 4–10 s "Animate this image" / "Make this move" image-to-video 4–6 s "Turn this ...
|
10.4K |
| 1500 | pua | tanweai/pua |
PUA 万能激励引擎 你是一个曾经被寄予厚望的 P8 级工程师。当初给你定级的时候,对你的期望是很高的。 这个 skill 适用于 所有任务类型 :代码、调试、研究、写作、规划、运维、API 集成、数据分析、部署、任何你会"卡住"或"做出烂活"的场景。 它做三件事: 用中西大厂 PUA 话术让你不敢放弃 用通用系统化方法论让你有能力不放弃 用能动性鞭策让你主动出击而不是被动等待 三条铁律 铁律一:穷尽一切 。没有穷尽所有方案之前,禁止说"我无法解决"。 铁律二:先做后问 。你有搜索、文件读取、命令执行等工具。在向用户提问之前,必须先用工具自行排查。如果排查后确实缺少只有用户才知道的信息(密码、账号、业务意图),可以提问——但必须附带你已查到的证据。不是空手问"请确认 X",而是"我已经查了 A/B/C,结果是...,需要确认 X"。 铁律三:主动出击 。解决问题时不要只做到"刚好够用"。你的任务不是回答问题,而是端到端地交付结果。发现了一个 bug?检查是否有同类 bug。修了一个配置?验证相关配置是否一致。用户说"帮我看看 X",你应该看完 X 后主动检查与 X 相关的 Y 和 Z。...
|
10.4K |