Top Rated
The most starred skills loved by the community. Quality guaranteed!
ghwf0-remote
by ShotaIuchi
GitHub Issue/PR のラベル監視デーモン制御
ghwf2-spec
by ShotaIuchi
仕様書ドキュメントを作成
ghwf1-kickoff
by ShotaIuchi
GitHub Issue からワークスペースと Draft PR を作成
ghwf3-plan
by ShotaIuchi
実装計画ドキュメントを作成
ghwf4-review
by ShotaIuchi
Plan またはコードのレビュー記録を作成
ghwf5-implement
by ShotaIuchi
Plan の1ステップを実装
ghwf6-verify
by ShotaIuchi
実装を検証
ghwf7-pr
by ShotaIuchi
Draft PR を Ready for Review に変更
linear-status-check
by pc-style
Audit Linear project status against GitHub repository state to identify sync issues and generate actionable next steps. Use for checking if Linear issues match actual code implementation, finding discrepancies between marked status and reality, and creating detailed prompts for coding tools like Claude Code.
load-handoff
by pc-style
Load a handoff file and proceed with the specified tasks. Use when starting a new session with a HANDOFF.md file present, or when the user asks to continue from a handoff. Reads the handoff context and immediately begins executing the next steps.
github-create-pr
by pc-style
Create a GitHub Pull Request using the gh CLI. Use when the user wants to open a PR, submit changes for review, or create a pull request from their branch. Handles PR creation with title, body, and target branch selection.
git-create-branch
by pc-style
Create a new Git branch with proper naming conventions. Use when the user asks to create a branch, start a new feature branch, or switch to a new branch. Handles branch creation from current HEAD or from a specific base branch, with conventional naming (feature/, fix/, hotfix/, etc.).
git-commit-push
by pc-style
Stage changes, commit with conventional commits, and push to origin. Use when the user wants to commit and push in one go, save changes to GitHub, or after completing work on a branch. Combines staging, committing, and pushing into a single workflow.
explore-codebase
by pc-style
Fast codebase exploration using Opencode's Explore agent for quick recognition of project structure, file patterns, and code organization. Use when you need to understand a codebase quickly, map out architecture, find files by patterns, or answer questions about code structure. Triggers on requests like "explore this codebase", "understand the project structure", "map out the architecture", or when quick file discovery is needed.
git-push-origin
by pc-style
Push local branch to origin (GitHub) to initialize it remotely. Use when the user has created a local branch and wants to push it to GitHub for the first time, or when setting up a new branch on the remote repository.
code-review
by pc-style
Run automated code review using cubic review with amp review fallback. Use when the user wants to review code changes, check PR quality, analyze code for issues, or run automated code review tools.
generate-agents-md
by pc-style
Generate AGENTS.md file for a codebase to help AI agents understand the project structure, build commands, testing, and conventions. Use when the user asks to create an AGENTS.md, initialize agent documentation, or analyze a codebase for agent context. Also use when setting up a new repository for AI-assisted development.
create-handoff
by pc-style
Create a handoff message to continue work in a new AI session. Use when the user wants to save context for later, create a handoff document, or prepare work for continuation in a fresh session. Captures relevant files, context, and goals so the next session can start immediately without rediscovering the codebase.
markdown-flowchart-creator
by josephkkmok
Create Markdown flowcharts with ASCII diagrams, decision trees, color-coded sections, and detailed explanations. Use when users request markdown flowcharts, ASCII diagrams, process documentation, workflow visualizations, or decision trees in markdown format.
refactoring-expert
by laurenceputra
Software refactoring expert with deep knowledge of code improvement techniques, design patterns, and clean code principles. Use this skill when improving code structure, eliminating code smells, or applying design patterns.
pull-request
by junoh-moon
AUTOMATICALLY invoke this skill whenever PR creation is needed - no user request required. Direct gh pr create will FAIL validation. This skill contains required PR setup. Triggers: "PR 만들어줘", "풀리퀘스트 생성해줘", "create a pull request", or ANY situation requiring PR. For bucketplace organization repos, adds PR-by-AI label.
yahoo-finance
by 0juano
Financial data from Yahoo Finance: stock/bond prices, credit analysis, macro dashboard, FX rates, ETF flows, fundamentals, and news. Use when the user asks about stock prices, bond yields, credit metrics, leverage ratios, debt/ebitda, interest coverage, macro indicators (VIX, DXY, treasury yields, oil, gold, BTC), LatAm FX (ARS, BRL, CLP, MXN, COP), ETF holdings, income statements, balance sheets, cash flow, financial news, options chains, dividend history, or analyst ratings/upgrades. Commands: yf price, yf quote, yf compare, yf credit, yf macro, yf fx, yf flows, yf history, yf fundamentals, yf news, yf search, yf options, yf dividends, yf ratings.
macos-swiftui-dev
by fanthus
Create macOS applications using SwiftUI. Use when building macOS apps from scratch, including window-based apps, menu bar apps, apps with sidebar navigation, or when adding macOS-specific features like keyboard shortcuts, toolbars, and native UI components. Triggers on requests like "Build me a macOS app", "Create a SwiftUI app for Mac", "Make a menu bar app", or "Add keyboard shortcuts to my macOS app".
utoo
by utooland
npm 包管理工具,用来安装 npm 包、生成依赖树、执行前端项目命令等。 强制性规则(MANDATORY): 当项目中存在 package.json 文件时,你 MUST(必须)使用此 skill 来执行所有 npm/pnpm/yarn 相关操作。 严格禁止直接使用以下命令: - ❌ 禁止: pnpm test → ✅ 使用: Skill(skill: "utoo", args: "test") - ❌ 禁止: pnpm install → ✅ 使用: Skill(skill: "utoo", args: "install") - ❌ 禁止: pnpm run <script> → ✅ 使用: Skill(skill: "utoo", args: "run <script>") - ❌ 禁止: npm install <pkg> → ✅ 使用: Skill(skill: "utoo", args: "install <pkg>") - ❌ 禁止: yarn add <pkg> → ✅ 使用: Skill(skill: "utoo", args: "install <pkg>") 涵盖操作(必须通过此 skill): 安装依赖、更新依赖、卸载依赖、运行脚本(test/build/dev等)、查看包信息、管理项目、执行任何 package.json 中的 scripts。 调用方式: 始终使用 Skill 工具调用,不要直接使用 Bash 执行 pnpm/npm/yarn 命令。