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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
201 deployment-automation supercent-io/skills-template
Deployment Automation When to use this skill New Projects : Set up automated deployment from scratch Manual Deployment Improvement : Automate repetitive manual tasks Multi-Environment : Separate dev, staging, and production environments Scaling : Introduce Kubernetes to handle traffic growth Instructions Step 1: Docker Containerization Package the application as a Docker image. Dockerfile (Node.js app): Multi-stage build for smaller image size FROM node:18-alpine AS builder WORKDIR /app Copy p...
10.9K
202 testing-strategies supercent-io/skills-template
Testing Strategies When to use this skill New project : define a testing strategy Quality issues : bugs happen frequently Before refactoring : build a safety net CI/CD setup : automated tests Instructions Step 1: Understand the Test Pyramid /\ /E2E\ ← few (slow, expensive) /______\ / \ /Integration\ ← medium /____________\ / \ / Unit Tests \ ← many (fast, inexpensive) /________________\ Ratio guide : Unit: 70% Integration: 20% E2E: 10% Step 2: Unit testing st...
10.9K
203 dogfood vercel-labs/agent-browser
Dogfood Systematically explore a web application, find issues, and produce a report with full reproduction evidence for every finding. Setup Only the Target URL is required. Everything else has sensible defaults -- use them unless the user explicitly provides an override. Parameter Default Example override Target URL (required) vercel.com , http://localhost:3000 Session name Slugified domain (e.g., vercel.com -> vercel-com ) --session my-session Output directory ./dogfood-output/ Output director...
10.9K
204 responsive-design supercent-io/skills-template
Responsive Design When to use this skill New website/app : Layout design for combined mobile-desktop use Legacy improvement : Converting fixed layouts to responsive Performance optimization : Image optimization per device Multiple screens : Tablet, desktop, and large screen support Instructions Step 1: Mobile-First Approach Design from small screens and progressively expand. Example : /* Default: Mobile (320px~) */ .container { padding : 1 rem ; font-size : 14 px ; } .grid { display : grid ; gri...
10.8K
205 git-workflow supercent-io/skills-template
Git Workflow When to use this skill Creating meaningful commit messages Managing branches Merging code Resolving conflicts Collaborating with team Git best practices Instructions Step 1: Branch management Create feature branch : Create and switch to new branch git checkout -b feature/feature-name Or create from specific commit git checkout -b feature/feature-name < commit-hash > Naming conventions : feature/description : New features bugfix/description : Bug fixes hotfix/description : Urgent f...
10.8K
206 copilot-coding-agent supercent-io/skills-template
GitHub Copilot Coding Agent — Issue → Draft PR automation If you add the ai-copilot label to an issue, GitHub Actions automatically assigns it to Copilot, and Copilot creates a branch → writes code → opens a Draft PR. When to use this skill When PMs/designers create issues and Copilot starts implementation without a developer When offloading backlog issues (refactors/docs/tests) to Copilot When delegating follow-up work created by Vibe Kanban / Conductor to Copilot When automating pipelines like...
10.8K
207 python-performance-optimization wshobson/agents
Python Performance Optimization Comprehensive guide to profiling, analyzing, and optimizing Python code for better performance, including CPU profiling, memory optimization, and implementation best practices. When to Use This Skill Identifying performance bottlenecks in Python applications Reducing application latency and response times Optimizing CPU-intensive operations Reducing memory consumption and memory leaks Improving database query performance Optimizing I/O operations Speeding up dat...
10.8K
208 file-organization supercent-io/skills-template
Project File Organization When to use this skill New Projects : Initial folder structure design Project Growth : Refactoring when complexity increases Team Standardization : Establish consistent structure Instructions Step 1: React/Next.js Project Structure src/ ├── app/ Next.js 13+ App Router │ ├── (auth)/ Route groups │ │ ├── login/ │ │ └── signup/ │ ├── (dashboard)/ │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── settings/ │ ├── api/ ...
10.8K
209 monitoring-observability supercent-io/skills-template
Monitoring & Observability When to use this skill Before Production Deployment : Essential monitoring system setup Performance Issues : Identify bottlenecks Incident Response : Quick root cause identification SLA Compliance : Track availability/response times Instructions Step 1: Metrics Collection (Prometheus) Application Instrumentation (Node.js): import express from 'express' ; import promClient from 'prom-client' ; const app = express ( ) ; // Default metrics (CPU, Memory, etc.) promClient ....
10.7K
210 baoyu-post-to-x jimliu/baoyu-skills
Post to X (Twitter) Posts text, images, videos, and long-form articles to X via real Chrome browser (bypasses anti-bot detection). Script Directory Important: All scripts are located in the scripts/ subdirectory of this skill. Agent Execution Instructions: Determine this SKILL.md file's directory path as SKILL_DIR Script path = ${SKILL_DIR}/scripts/<script-name>.ts Replace all ${SKILL_DIR} in this document with the actual path Script Reference: Script Purpose scripts/x-browser.ts Regular ...
10.7K
211 codebase-search supercent-io/skills-template
Codebase Search When to use this skill Finding specific functions or classes Tracing function calls and dependencies Understanding code structure and architecture Finding usage examples Identifying code patterns Locating bugs or issues Code archaeology (understanding legacy code) Impact analysis before changes Instructions Step 1: Understand what you're looking for Feature implementation : Where is feature X implemented? How does feature Y work? What files are involved in feature Z? Bug location...
10.7K
212 nodejs-backend-patterns wshobson/agents
Node.js Backend Patterns Comprehensive guidance for building scalable, maintainable, and production-ready Node.js backend applications with modern frameworks, architectural patterns, and best practices. When to Use This Skill Building REST APIs or GraphQL servers Creating microservices with Node.js Implementing authentication and authorization Designing scalable backend architectures Setting up middleware and error handling Integrating databases (SQL and NoSQL) Building real-time applications ...
10.6K
213 debugging supercent-io/skills-template
Debugging When to use this skill Encountering runtime errors or exceptions Code produces unexpected output or behavior Performance degradation or memory issues Intermittent or hard-to-reproduce bugs Understanding unfamiliar error messages Post-incident analysis and prevention Instructions Step 1: Gather Information Collect all relevant context about the issue: Error details : Full error message and stack trace Error type (syntax, runtime, logic, etc.) When did it start occurring? Is it reproduci...
10.6K
214 next-cache-components vercel-labs/next-skills
Cache Components (Next.js 16+) Cache Components enable Partial Prerendering (PPR) - mix static, cached, and dynamic content in a single route. Enable Cache Components // next.config.ts import type { NextConfig } from 'next' const nextConfig: NextConfig = { cacheComponents: true, } export default nextConfig This replaces the old experimental.ppr flag. Three Content Types With Cache Components enabled, content falls into three categories: 1. Static (Auto-Prerendered) Synchronous code, ...
10.6K
215 prd github/awesome-copilot
Product Requirements Document (PRD) Overview Design comprehensive, production-grade Product Requirements Documents (PRDs) that bridge the gap between business vision and technical execution. This skill works for modern software systems, ensuring that requirements are clearly defined. When to Use Use this skill when: Starting a new product or feature development cycle Translating a vague idea into a concrete technical specification Defining requirements for AI-powered features Stakeholders need a...
10.6K
216 neon-postgres neondatabase/agent-skills
Neon Serverless Postgres Neon is a serverless Postgres platform that separates compute and storage to offer autoscaling, branching, instant restore, and scale-to-zero. It's fully compatible with Postgres and works with any language, framework, or ORM that supports Postgres. Neon Documentation The Neon documentation is the source of truth for all Neon-related information. Always verify claims against the official docs before responding. Neon features and APIs evolve, so prefer fetching current do...
10.5K
217 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.5K
218 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.5K
219 baoyu-infographic jimliu/baoyu-skills
Infographic Generator Two dimensions: layout (information structure) × style (visual aesthetics). Freely combine any layout with any style. Usage /baoyu-infographic path/to/content.md /baoyu-infographic path/to/content.md --layout hierarchical-layers --style technical-schematic /baoyu-infographic path/to/content.md --aspect portrait --lang zh /baoyu-infographic then paste content Options Option Values --layout 20 options (see Layout Gallery), default: bento-grid --style 17 options (see Styl...
10.5K
220 changelog-maintenance supercent-io/skills-template
Changelog Maintenance When to use this skill Before release : organize changes before shipping a version Continuous : update whenever significant changes occur Migration guide : document breaking changes Instructions Step 1: Keep a Changelog format CHANGELOG.md : Changelog All notable changes to this project will be documented in this file. The format is based on [ Keep a Changelog ]( https://keepachangelog.com/en/1.0.0/ ) , and this project adheres to [ Semantic Versioning ]( https://semver.or...
10.5K
221 expo-api-routes expo/skills
When to Use API Routes Use API routes when you need: Server-side secrets — API keys, database credentials, or tokens that must never reach the client Database operations — Direct database queries that shouldn't be exposed Third-party API proxies — Hide API keys when calling external services (OpenAI, Stripe, etc.) Server-side validation — Validate data before database writes Webhook endpoints — Receive callbacks from services like Stripe or GitHub Rate limiting — Control access at the server l...
10.5K
222 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.5K
223 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.4K
224 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.4K
225 expo-cicd-workflows expo/skills
EAS Workflows Skill Help developers write and edit EAS CI/CD workflow YAML files. Reference Documentation Fetch these resources before generating or validating workflow files. Use the fetch script (implemented using Node.js) in this skill's scripts/ directory; it caches responses using ETags for efficiency: Fetch resources node {baseDir}/scripts/fetch.js <url> JSON Schema — https://api.expo.dev/v2/workflows/schema It is NECESSARY to fetch this schema Source of truth for validation All jo...
10.4K
226 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.4K
227 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.4K
228 baoyu-comic jimliu/baoyu-skills
Knowledge Comic Creator Create original knowledge comics with flexible art style × tone combinations. Usage /baoyu-comic posts/turing-story/source.md /baoyu-comic article.md --art manga --tone warm /baoyu-comic then paste content Options Visual Dimensions Option Values Description --art ligne-claire (default), manga, realistic, ink-brush, chalk Art style / rendering technique --tone neutral (default), warm, dramatic, romantic, energetic, vintage, action Mood / atmosphere --layout standard (...
10.4K
229 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.4K
230 baoyu-danger-x-to-markdown jimliu/baoyu-skills
X to Markdown Converts X content to markdown: Tweets/threads → Markdown with YAML front matter X Articles → Full content extraction Script Directory Scripts located in scripts/ subdirectory. Path Resolution: SKILL_DIR = this SKILL.md's directory Script path = ${SKILL_DIR}/scripts/main.ts Consent Requirement Before any conversion, check and obtain consent. Consent Flow Step 1: Check consent file macOS cat ~/Library/Application\ Support/baoyu-skills/x-to-markdown/consent.json Linux cat...
10.4K
231 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.4K
232 vue antfu/skills
Vue Based on Vue 3.5. Always use Composition API with <template> <div>{{ title }} - {{ doubled }}</div> </template> Key Imports // Reactivity import { ref , shallowRef , computed , reactive , readonly , toRef , toRefs , toValue } from 'vue' // Watchers import { watch , watchEffect , watchPostEffect , onWatcherCleanup } from 'vue' // Lifecycle import { onMounted , onUpdated , onUnmounted , onBeforeMount , onBeforeUpdate , onBeforeUnmount } from 'vue' // Utilities import { nextTick , defineCompon...
10.4K
233 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.3K
234 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.3K
235 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.3K
236 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.3K
237 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.3K
238 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.3K
239 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.3K
240 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.3K
241 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.3K
242 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.3K
243 release-skills jimliu/baoyu-skills
Release Skills Universal release workflow supporting any project type with multi-language changelog. Quick Start Just run /release-skills - auto-detects your project configuration. Supported Projects Project Type Version File Auto-Detected Node.js package.json ✓ Python pyproject.toml ✓ Rust Cargo.toml ✓ Claude Plugin marketplace.json ✓ Generic VERSION / version.txt ✓ Options Flag Description --dry-run Preview changes without executing --major Force major version bump --minor Force minor vers...
10.3K
244 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.3K
245 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.3K
246 baoyu-url-to-markdown jimliu/baoyu-skills
URL to Markdown Fetches any URL via Chrome CDP and converts HTML to clean markdown. Script Directory Important: All scripts are located in the scripts/ subdirectory of this skill. Agent Execution Instructions: Determine this SKILL.md file's directory path as SKILL_DIR Script path = ${SKILL_DIR}/scripts/<script-name>.ts Replace all ${SKILL_DIR} in this document with the actual path Script Reference: Script Purpose scripts/main.ts CLI entry point for URL fetching Preferences (EXTEND.md) Us...
10.3K
247 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.3K
248 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.3K
249 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.3K
250 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.2K