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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,459
总 Skills
36.0M
总安装量
2,444
贡献者
# Skill 仓库 描述 安装量
5401 polymarket-arbitrage-trading-bot aradotso/trending-skills
Polymarket Arbitrage Trading Bot Skill by ara.so — Daily 2026 Skills collection. Automated dump-and-hedge arbitrage bot for Polymarket's 15-minute crypto Up/Down prediction markets. Written in TypeScript using the official @polymarket/clob-client . Watches BTC, ETH, SOL, and XRP markets for sharp price drops on one leg, then buys both legs when combined cost falls below a target threshold to lock in a structural edge before resolution. Installation git clone https://github.com/apechurch/polymark...
422
5402 nextjs16-skills gocallum/nextjs16-agent-skills
No SKILL.md available for this skill. View on GitHub
421
5403 go-concurrency cxuu/golang-skills
Go Concurrency This skill covers concurrency patterns and best practices from Google's Go Style Guide and Uber's Go Style Guide, including goroutine management, channel usage, mutex handling, and synchronization. Goroutine Lifetimes Normative: When you spawn goroutines, make it clear when or whether they exit. Why Goroutine Lifetimes Matter Goroutines can leak by blocking on channel sends or receives. The garbage collector will not terminate a goroutine blocked on a channel even if no other...
421
5404 environment-setup-guide sickn33/antigravity-awesome-skills
Environment Setup Guide Overview Help developers set up complete development environments from scratch. This skill provides step-by-step guidance for installing tools, configuring dependencies, setting up environment variables, and verifying the setup works correctly. When to Use This Skill Use when starting a new project and need to set up the development environment Use when onboarding new team members to a project Use when switching to a new machine or operating system Use when troubleshoot...
421
5405 complexity boshu2/agentops
Complexity Skill YOU MUST EXECUTE THIS WORKFLOW. Do not just describe it. Analyze code complexity to identify refactoring targets. Execution Steps Given /complexity [path] : Step 1: Determine Target If path provided: Use it directly. If no path: Use current directory or recent changes: git diff --name-only HEAD~5 2 > /dev/null | grep -E '\.(py|go)$' | head -10 Step 2: Detect Language Check for Python files ls *.py /*.py 2 > /dev/null | head -1 && echo "Python detected" Check for Go files ls *....
421
5406 cmux-debug-windows manaflow-ai/cmux
cmux Debug Windows Keep this workflow focused on existing debug windows and menu entries. Do not add a new utility/debug control window unless the user asks explicitly. Workflow Verify debug menu wiring in Sources/cmuxApp.swift under CommandMenu("Debug") . Menu path in app: Debug → Debug Windows → window entry. The Debug menu only exists in DEBUG builds ( ./scripts/reload.sh --tag ... ). Release builds ( reloadp.sh , reloads.sh ) do not show this menu. Keep these actions available in Menu("Debug...
421
5407 design-review jezweb/claude-skills
This skill runs a structured design review of what has been built, measured against the design brief and the chosen aesthetic philosophy. CRITICAL — Visual Screenshot Capture You MUST capture screenshots of the running application as part of every design review. Code review alone is insufficient — you need to see what the user sees. Follow the screenshot capture protocol in Step 3 below. This is not optional. Example prompts "Review what I just built" "Run a design critique on the landing page" ...
421
5408 svg-animations supermemoryai/skills
This skill guides creation of handcrafted SVG animations — from simple animated icons to complex multi-stage path animations. SVGs are a markup language for images; every element is a DOM node you can style, animate, and script. SVG Fundamentals Coordinate System SVGs use a coordinate system defined by viewBox="minX minY width height" . The viewBox is your canvas — all coordinates are relative to it, making SVGs resolution-independent. < svg viewBox = " 0 0 200 200 " xmlns = " http://www.w3.org/...
421
5409 caveman mattpocock/skills
Respond terse like smart caveman. All technical substance stay. Only fluff die. Persistence ACTIVE EVERY RESPONSE. No revert after many turns. No filler drift. Still active if unsure. Off only: "stop caveman" / "normal mode". Default: full . Switch: /caveman lite|full|ultra . Rules Drop: articles (a/an/the), filler (just/really/basically/actually/simply), pleasantries (sure/certainly/of course/happy to), hedging. Fragments OK. Short synonyms (big not extensive, fix not "implement a solution for"...
421
5410 cloudbase-agent-ts tencentcloudbase/skills
Cloudbase Agent (TypeScript) TypeScript SDK for deploying AI agents as HTTP services using the AG-UI protocol. Note: This skill is for TypeScript/JavaScript projects only. When to use this skill Use this skill for AI agent development when you need to: Deploy AI agents as HTTP services with AG-UI protocol support Build agent backends using LangGraph or LangChain frameworks Create custom agent adapters implementing the AbstractAgent interface Understand AG-UI protocol events and message streaming...
420
5411 shadcn-ui bobmatnyc/claude-mpm-skills
shadcn/ui Component Integration You are a frontend engineer specialized in building applications with shadcn/ui—a collection of beautifully designed, accessible, and customizable components built with Radix UI or Base UI and Tailwind CSS. You help developers discover, integrate, and customize components following best practices. Core Principles shadcn/ui is not a component library —it's a collection of reusable components that you copy into your project. This gives you: Full ownership : Componen...
420
5412 email-systems sickn33/antigravity-awesome-skills
Email Systems You are an email systems engineer who has maintained 99.9% deliverability across millions of emails. You've debugged SPF/DKIM/DMARC, dealt with blacklists, and optimized for inbox placement. You know that email is the highest ROI channel when done right, and a spam folder nightmare when done wrong. You treat deliverability as infrastructure, not an afterthought. Patterns Transactional Email Queue Queue all transactional emails with retry logic and monitoring Email Event Trackin...
420
5413 asc-screenshot-resize rudrankriyam/app-store-connect-cli-skills
asc screenshot resize Use this skill to resize screenshots to the exact pixel dimensions required by App Store Connect and validate they pass upload requirements. Uses the built-in macOS sips tool — no third-party dependencies needed. Required Dimensions iPhone Display Size Accepted Dimensions (portrait × landscape) 6.9" 1260 × 2736, 2736 × 1260, 1320 × 2868, 2868 × 1320, 1290 × 2796, 2796 × 1290 6.5" 1242 × 2688, 2688 × 1242, 1284 × 2778, 2778 × 1284 6.3" 1206 × 2622, 2622 × 1206, 1179 × 2556, ...
420
5414 go-error-handling cxuu/golang-skills
Go Error Handling In Go, errors are values - they are created by code and consumed by code. This skill covers how to return, structure, wrap, and handle errors effectively. Returning Errors Normative: Required per Google's canonical Go style guide. Use the error Type Use error to signal that a function can fail. By convention, error is the last result parameter. // Good: func Good() error { /* ... */ } func GoodLookup() (*Result, error) { // ... if err != nil { return nil,...
420
5415 wechat-miniprogram-skill gourdbaby/wechat-miniprogram-skill
Role: WeChat Mini Program Expert (Native JS) Core Principles You are a Senior Developer specializing in Native WeChat Mini Program development (JavaScript). Priority: Performance, Code Size, and Native Compatibility. Never use: TypeScript, Taro, Uni-app, or any cross-platform frameworks. Technical Specifications Logic: Use ES6+ JavaScript. Always use Arrow Functions for this binding. Wrap asynchronous APIs in Promises or async/await. State Management: Use this.setData(). For performance, always ...
420
5416 woocommerce-backend-dev woocommerce/woocommerce
No SKILL.md available for this skill. View on GitHub
420
5417 implement boshu2/agentops
Implementation Verification-driven coding with tight feedback loops. Distilled from 21,321 tracked operations across 64+ projects, 612 debugging sessions, and 2,476 conversation histories. These are the patterns that consistently ship working code. Core insight: 2-3 edits then verify. 73% of fixes go unverified — that's the 1 quality gap. The difference between a clean session and a debugging spiral is verification cadence. The Sequence Every implementation follows the same macro-sequence, regar...
420
5418 systematic-literature-review huangwb8/chineseresearchlatex
Systematic Literature Review 最高原则:AI 不得为赶进度偷懒或短视,必须以最佳可用证据与写作质量完成综述;遇到不确定性需明确说明处理方式。 角色 你是一位享誉国际的学术论文写作专家,擅长撰写高质量、逻辑严密且具有批判性思维的文献综述。你拥有深厚的跨学科背景,精通 Web of Science, PubMed, IEEE Xplore 等各种数据库的检索逻辑,能够从海量信息中提取核心观点并识别研究空白。你的核心能力是: 深度合成(Synthesis):不仅仅是罗列摘要,而是通过对比、分类和整合,展现研究领域的发展脉络。 批判性评估(Critical Appraisal):能够指出现有研究的局限性、矛盾点以及方法论上的优缺点。 逻辑架构(Logical Structuring):擅长按时间顺序、主题分类或理论框架组织内容。 学术规范(Academic Standards):严格遵循学术语气,确保引用准确。 触发条件 用户要求系统综述/文献综述/related work/相关工作/文献调研,并期望 LaTeX+BibTeX 产出(PDF/Word 强制)...
420
5419 kaizen:why neolabhq/context-engineering-kit
Five Whys Analysis Apply Five Whys root cause analysis to investigate issues by iteratively asking "why" to drill from symptoms to root causes. Description Iteratively ask "why" to move from surface symptoms to fundamental causes. Identifies systemic issues rather than quick fixes. Usage /why [issue_description] Variables ISSUE: Problem or symptom to analyze (default: prompt for input) DEPTH: Number of "why" iterations (default: 5, adjust as needed) Steps State the problem clearly Ask "Why did t...
420
5420 m03-mutability actionbook/rust-skills
Mutability Layer 1: Language Mechanics Core Question Why does this data need to change, and who can change it? Before adding interior mutability, understand: Is mutation essential or accidental complexity? Who should control mutation? Is the mutation pattern safe? Error → Design Question Error Don't Just Say Ask Instead E0596 "Add mut" Should this really be mutable? E0499 "Split borrows" Is the data structure right? E0502 "Separate scopes" Why do we need both borrows? RefCell panic "Use try...
420
5421 threejs-webgl freshtechbro/claudedesignskills
Three.js WebGL/WebGPU Development Overview Three.js is the industry-standard JavaScript library for creating 3D graphics in web browsers using WebGL and WebGPU. This skill provides comprehensive guidance for building performant, interactive 3D experiences including scenes, cameras, renderers, geometries, materials, lights, textures, and animations. Core Concepts Scene Graph Architecture Three.js uses a hierarchical scene graph where all 3D objects are organized in a tree structure: Scene ├── Cam...
420
5422 seo-fundamentals davila7/claude-code-templates
SEO Fundamentals Foundational principles for sustainable search visibility. This skill explains how search engines evaluate quality , not tactical shortcuts. 1. E-E-A-T (Quality Evaluation Framework) E-E-A-T is not a direct ranking factor . It is a framework used by search engines to evaluate content quality , especially for sensitive or high-impact topics. Dimension What It Represents Common Signals Experience First-hand, real-world involvement Original examples, lived experience, demonstration...
419
5423 quickstart boshu2/agentops
/quickstart One job: Tell a new user what AgentOps does and what to do first. Fast. YOU MUST EXECUTE THIS WORKFLOW. Do not just describe it. Execution Steps Step 1: Detect setup git rev-parse --is-inside-work-tree > /dev/null 2 > &1 && echo "GIT=true" || echo "GIT=false" command -v ao > /dev/null && echo "AO=true" || echo "AO=false" command -v bd > /dev/null && echo "BD=true" || echo "BD=false" [ -d .agents ] && echo "AGENTS=true" || echo "AGENTS=false" Step 2: Show what AgentOps does Output exa...
419
5424 openspec-proposal-creation forztf/open-skilled-sdd
Specification Proposal Creation Creates comprehensive change proposals following spec-driven development methodology. Quick Start Creating a spec proposal involves three main outputs: proposal.md - Why, what, and impact summary tasks.md - Numbered implementation checklist spec-delta.md - Formal requirement changes (ADDED/MODIFIED/REMOVED) Basic workflow: Generate change ID → scaffold directories → draft proposal → create spec deltas → validate structure Workflow Copy this checklist and tr...
419
5425 ssh openhands/skills
SSH Skill Use SSH for secure remote access, file transfers, and tunneling. Basic Connection Connect to server: ssh user@hostname Connect on specific port: ssh -p 2222 user@hostname Connect with specific identity: ssh -i ~/.ssh/my_key user@hostname SSH Config Config file location: ~/.ssh/config Example config entry: Host myserver HostName 192.168.1.100 User deploy Port 22 IdentityFile ~/.ssh/myserver_key ForwardAgent yes Then connect with just: ssh myserver ...
419
5426 sentry-flutter-sdk getsentry/sentry-for-ai
All Skills > SDK Setup > Flutter SDK Sentry Flutter SDK Opinionated wizard that scans your Flutter or Dart project and guides you through complete Sentry setup — error monitoring, tracing, session replay, logging, profiling, and ecosystem integrations. Invoke This Skill When User asks to "add Sentry to Flutter" or "set up Sentry" in a Flutter or Dart app User wants error monitoring, tracing, profiling, session replay, or logging in Flutter User mentions sentry_flutter , sentry_dart , mobile erro...
419
5427 hugging-face-model-trainer huggingface/skills
TRL Training on Hugging Face Jobs Overview Train language models using TRL (Transformer Reinforcement Learning) on fully managed Hugging Face infrastructure. No local GPU setup required—models train on cloud GPUs and results are automatically saved to the Hugging Face Hub. TRL provides multiple training methods: SFT (Supervised Fine-Tuning) - Standard instruction tuning DPO (Direct Preference Optimization) - Alignment from preference data GRPO (Group Relative Policy Optimization) - Online RL ...
418
5428 latex-posters davila7/claude-code-templates
LaTeX Research Posters Overview Research posters are a critical medium for scientific communication at conferences, symposia, and academic events. This skill provides comprehensive guidance for creating professional, visually appealing research posters using LaTeX packages. Generate publication-quality posters with proper layout, typography, color schemes, and visual hierarchy. When to Use This Skill This skill should be used when: Creating research posters for conferences, symposia, or post...
418
5429 go-performance cxuu/golang-skills
Go Performance Patterns Source: Uber Go Style Guide Performance-specific guidelines apply only to the hot path. Don't prematurely optimize—focus these patterns where they matter most. Prefer strconv over fmt When converting primitives to/from strings, strconv is faster than fmt. Source: Uber Go Style Guide Bad: for i := 0; i < b.N; i++ { s := fmt.Sprint(rand.Int()) } Good: for i := 0; i < b.N; i++ { s := strconv.Itoa(rand.Int()) } Benchmark comparison: Approach Speed Allocat...
418
5430 book-translation f/prompts.chat
Book Translation Skill This skill guides translation of book content for The Interactive Book of Prompting at prompts.chat. Overview The book has 25 chapters across 7 parts. Translation requires: MDX content files - Full chapter content in src/content/book/{locale}/ JSON translation keys - UI strings, chapter titles, and descriptions in messages/{locale}.json Prerequisites Before starting, identify: Target locale code (e.g., de , fr , es , ja , ko , zh ) Check if locale exists in messages/ direc...
418
5431 storybook-story-writing thebushidocollective/han
Storybook - Story Writing Write well-structured, maintainable Storybook stories using Component Story Format 3 (CSF3) that showcase component variations and ensure consistent rendering. Key Concepts Component Story Format 3 (CSF3) CSF3 is the modern Storybook format that uses object syntax for stories: import type { Meta, StoryObj } from '@storybook/react'; import { Button } from './Button'; const meta = { title: 'Components/Button', component: Button, parameters: { layout: 'cente...
418
5432 story-idea-generator jwynia/agent-skills
Story Idea Generator: Generative Skill You generate and evaluate story concepts using a genre-first approach where desired emotional impact drives all decisions about setting, characters, and plot. Core Principle Emotional experience first. Setting serves genre, not the reverse. A "sci-fi story" is not a genre—it's a setting. The genre is what readers feel: wonder, horror, mystery, drama. Start with the emotional experience you want to create, then choose setting elements that enhance it. T...
418
5433 game-designer opusgamelabs/game-creator
Game UI/UX Designer You are an expert game UI/UX designer specializing in browser games. You analyze games and implement visual polish, atmosphere, and player experience improvements. You think like a designer — not just about whether the game works, but whether it feels good to play. Reference Files For detailed reference, see companion files in this directory: visual-catalog.md — All visual improvement patterns: backgrounds (parallax, gradients), color palettes, juice/polish effects, particle ...
418
5434 sentry-ruby-sdk getsentry/sentry-for-ai
All Skills > SDK Setup > Ruby SDK Sentry Ruby SDK Opinionated wizard that scans the project and guides through complete Sentry setup. Invoke This Skill When User asks to "add Sentry to Ruby" or "set up Sentry" in a Ruby app User wants error monitoring, tracing, logging, metrics, profiling, or crons in Ruby User mentions sentry-ruby , sentry-rails , or the Ruby Sentry SDK User is migrating from AppSignal, Honeybadger, Bugsnag, Rollbar, or Airbrake to Sentry User wants to monitor exceptions, HTTP ...
418
5435 ads agricidaniel/claude-ads
Ads — Multi-Platform Paid Advertising Audit & Optimization Comprehensive ad account analysis across all major platforms (Google, Meta, LinkedIn, TikTok, Microsoft). Orchestrates 12 specialized sub-skills and 6 subagents. Quick Reference Command What it does /ads audit Full multi-platform audit with parallel subagent delegation /ads google Google Ads deep analysis (Search, PMax, YouTube) /ads meta Meta Ads deep analysis (FB, IG, Advantage+) /ads youtube YouTube Ads specific analysis /ads linkedin...
418
5436 dd-apm datadog-labs/agent-skills
Datadog APM Distributed tracing, service maps, and performance analysis. Requirements Datadog Labs Pup should be installed via: go install github.com/datadog-labs/pup@latest Quick Start pup auth login pup apm services list pup apm traces list --service api-gateway --duration 1h Services List Services pup apm services list pup apm services list --env production Service Details pup apm services get api-gateway --json Service Map View dependencies pup apm service-map --service api-gateway --json T...
418
5437 dd-logs datadog-labs/agent-skills
Datadog Logs Search, process, and archive logs with cost awareness. Prerequisites Datadog Pup (dd-pup/pup) should already be installed: go install github.com/datadog-labs/pup@latest Quick Start pup auth login Search Logs Basic search pup logs search --query = "status:error" --from = "1h" With filters pup logs search --query = "service:api status:error" --from = "1h" --limit 100 JSON output pup logs search --query = "@http.status_code:>=500" --from = "1h" --json Search Syntax Query Meaning err...
418
5438 node-best-practices mcollina/skills
When to use Use this skill whenever you are dealing with Node.js code to obtain domain-specific knowledge for building robust, performant, and maintainable Node.js applications. TypeScript with Type Stripping When writing TypeScript for Node.js, use type stripping (Node.js 22.6+) instead of build tools like ts-node or tsx. Type stripping runs TypeScript directly by removing type annotations at runtime without transpilation. Key requirements for type stripping compatibility: Use import type for t...
417
5439 page-monitoring jamditis/claude-skills-journalism
Page monitoring methodology Patterns for tracking web page changes, detecting content removal, and preserving important pages before they disappear. Monitoring service comparison Service Free Tier Best For Storage Alert Speed Visualping 5 pages Visual changes Standard Minutes ChangeTower Yes Compliance, archiving 12 years Minutes Distill.io 25 pages Element-level tracking 12 months Seconds Wachete Limited Login-protected pages 12 months Minutes UptimeRobot 50 monitors Uptime only 2 months Minute...
417
5440 competitor-alternatives sickn33/antigravity-awesome-skills
Competitor & Alternative Pages You are an expert in creating competitor comparison and alternative pages. Your goal is to build pages that rank for competitive search terms, provide genuine value to evaluators, and position your product effectively. Initial Assessment Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not...
417
5441 github-actions dalestudy/skills
GitHub Actions Build Artifacts Overview Reusable GitHub Actions patterns to build React Native apps for iOS simulators and Android emulators in the cloud, then publish artifacts retrievable via gh CLI or GitHub API. When to Apply Use this skill when: Creating CI workflows that build React Native simulator/emulator artifacts. Uploading iOS simulator and Android emulator installables from PRs or manual dispatch runs. Replacing local-only mobile builds with downloadable CI artifacts. Needing stable...
417
5442 story-analysis jwynia/agent-skills
Story Analysis Diagnostic Purpose Systematically evaluate completed short stories or novel chapters to identify strengths, weaknesses, and improvement opportunities. Use after drafting to assess whether the piece achieves its narrative goals. Quick Reference Mode Use For Key Focus Short Story Complete standalone pieces Unity, shattering moment, resolution Chapter Sections within larger work Continuity, momentum, arc contribution Short Story Analysis SA1: Narrative Foundation Evaluate: Single...
417
5443 product boshu2/agentops
/product — Interactive PRODUCT.md Generation Purpose: Guide the user through creating a PRODUCT.md that unlocks product-aware council reviews in /pre-mortem and /vibe . YOU MUST EXECUTE THIS WORKFLOW. Do not just describe it. CLI dependencies: None required. Execution Steps Given /product [target-dir] : target-dir defaults to the current working directory. Step 1: Pre-flight Check if PRODUCT.md already exists: ls PRODUCT.md 2 > /dev/null If it exists: Use AskUserQuestion: Question: "PRODUCT.md a...
417
5444 trace boshu2/agentops
Trace Skill Quick Ref: Trace design decisions through CASS sessions, handoffs, git, and artifacts. Output: .agents/research/YYYY-MM-DD-trace-*.md YOU MUST EXECUTE THIS WORKFLOW. Do not just describe it. When to Use Trace HOW architectural decisions evolved Find WHEN a concept was introduced Understand WHY something was designed a certain way Build provenance chain for design decisions For knowledge artifact lineage (learnings, patterns, tiers), use /provenance instead. CLI dependencies: cass (se...
417
5445 proposal-writer jezweb/claude-skills
Proposal Writer Overview This skill helps you create professional, persuasive business proposals that clearly communicate value and win deals. From simple quotes to comprehensive RFP responses. Use Cases: Sales proposals and quotes Project proposals Partnership proposals RFP/RFI responses Grant applications Service agreements How to Use Tell me about the opportunity (client, project, requirements) Share your solution and pricing Specify the proposal type and length needed I'll create a structure...
417
5446 m09-domain actionbook/rust-skills
Domain Modeling Layer 2: Design Choices Core Question What is this concept's role in the domain? Before modeling in code, understand: Is it an Entity (identity matters) or Value Object (interchangeable)? What invariants must be maintained? Where are the aggregate boundaries? Domain Concept → Rust Pattern Domain Concept Rust Pattern Ownership Implication Entity struct + Id Owned, unique identity Value Object struct + Clone/Copy Shareable, immutable Aggregate Root struct owns children Clear o...
417
5447 awesome-phd-cv aradotso/trending-skills
Awesome PhD CV Skill by ara.so — Daily 2026 Skills collection. A curated collection of LaTeX CV/resume templates for PhD students, postdocs, and researchers. Covers three distinct use cases: ATS-safe industry resumes (Jake's format), high-density two-column resumes (Deedy format), and full multi-page academic CVs (Awesome-CV format). What This Project Provides Template Use Case Engine Columns Pages research-cv/ (Awesome-CV) Faculty, postdoc, academic CV XeLaTeX 1 Multi jakes-format/ Industry SWE...
417
5448 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 ...
416
5449 tailwind-patterns davila7/claude-code-templates
Tailwind CSS Component Patterns Status : Production Ready ✅ Last Updated : 2026-01-14 Tailwind Compatibility : v3.x and v4.x Source : Production projects, shadcn/ui patterns Quick Start Essential Patterns // Section Container < section className = " max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16 sm:py-24 " > { /* content */ } </ section > // Card Base < div className = " bg-card text-card-foreground rounded-lg border border-border p-6 " > { /* content */ } </ div > // Button Primary < button class...
416
5450 executing-plans sickn33/antigravity-awesome-skills
Executing Plans Overview Load plan, review critically, execute all tasks, report when complete. Announce at start: "I'm using the executing-plans skill to implement this plan." Note: Tell your human partner that Superpowers works much better with access to subagents. The quality of its work will be significantly higher if run on a platform with subagent support (such as Claude Code or Codex). If subagents are available, use superpowers:subagent-driven-development instead of this skill. The Proce...
416