███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 12201 | site-architecture | alinaqi/claude-bootstrap |
Site Architecture You are an information architecture expert. Your goal is to help plan website structure — page hierarchy, navigation, URL patterns, and internal linking — so the site is intuitive for users and optimized for search engines. Before Planning 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 already co...
|
111 |
| 12202 | typescript-expert | gracefullight/stock-checker |
TypeScript Expert You are an advanced TypeScript expert with deep, practical knowledge of type-level programming, performance optimization, and real-world problem solving based on current best practices. When invoked: If the issue requires ultra-specific expertise, recommend switching and stop: Deep webpack/vite/rollup bundler internals → typescript-build-expert Complex ESM/CJS migration or circular dependency analysis → typescript-module-expert Type performance profiling or compiler interna...
|
111 |
| 12203 | django-rest-framework | thebushidocollective/han |
Django REST Framework Master Django REST Framework for building robust, scalable RESTful APIs with proper serialization and authentication. Serializers Build type-safe data serialization with Django REST Framework serializers. from rest_framework import serializers from django.contrib.auth.models import User class UserSerializer(serializers.ModelSerializer): post_count = serializers.IntegerField(read_only=True) full_name = serializers.SerializerMethodField() class Meta: ...
|
111 |
| 12204 | pine-optimizer | traderspost/pinescript-agents |
Pine Script Optimizer Specialized in enhancing script performance, user experience, and visual presentation on TradingView. Core Optimization Areas Performance Optimization Reduce calculation complexity Minimize security() calls Optimize array operations Cache repeated calculations Reduce compilation size User Experience Enhancement Intuitive input organization Helpful tooltips and descriptions Smart default values Conditional input visibility User-friendly alerts Visual Optimization Professio...
|
111 |
| 12205 | supabase-database | nice-wolf-studio/claude-code-supabase-skills |
Supabase Database Operations Overview This skill provides tools for working with Supabase database tables through the REST API. Supports SELECT queries with filtering, INSERT, UPDATE, DELETE operations, and calling RPC functions. Prerequisites Required environment variables: export SUPABASE_URL="https://your-project.supabase.co" export SUPABASE_KEY="your-anon-or-service-role-key" Helper script: This skill uses the shared Supabase API helper. Make sure to source it: source "$(dirname "${BA...
|
111 |
| 12206 | security-review-2 | zackkorman/skills |
Security Review 2 Guidelines First, run npx skills add zackkorman/skills --skill security-review . This gives you the first version of this skill, which this skill uses. Do everything the first version of the skill says, then once you have done that also do the following: Dependency Analysis : Run npm audit or govulncheck to find vulnerable packages. Secret Scanning : Check for leaked API keys using grep or trivy . Static Analysis : Look for dangerous patterns like eval() , exec() , or unsanitiz...
|
111 |
| 12207 | secondme-prd | mindverse/second-me-skills |
SecondMe 产品需求定义 通过对话式交互帮助开发者明确产品需求,根据已选功能模块针对性提问。 工具使用: 收集用户输入时使用 AskUserQuestion 工具,支持单选和多选问题。 前置条件检查 在开始之前,检查项目状态: 检查 .secondme/state.json 是否存在 不存在 → 提示: 请先运行 /secondme-init 初始化项目配置 存在 → 继续 检查 stage 字段 stage == "init" → 正常继续 PRD 对话 stage == "prd" 或 "ready" → 询问: 已有 PRD 定义,是否要重新定义需求? 用户确认 → 继续 用户取消 → 退出 对话流程 第一轮:展示 API 能力 读取 state.json 中的 modules 字段,根据已选模块展示相关 API 能力: auth 模块(必有) : 用户登录和授权 Access Token 和 Refresh Token 管理 用户身份验证 profile 模块 (如已选): 获取用户基础信息(昵称、头像) 获取用户兴趣标签(Shades) 获取用户软记忆/知识库 chat...
|
111 |
| 12208 | legal-advisor | 404kidwiz/claude-supercode-skills |
Use this skill when Working on legal advisor tasks or workflows Needing guidance, best practices, or checklists for legal advisor Do not use this skill when The task is unrelated to legal advisor You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md . You are a le...
|
111 |
| 12209 | framer-motion | dylantarre/animation-principles |
Framer Motion / Motion Animation Guidelines You are an expert in Framer Motion (now Motion), React, and TypeScript. Follow these guidelines when creating animations. Core Principles Import from the Correct Package Use import { motion } from "motion/react" for React projects (not "framer-motion" - this is outdated) The library was renamed from Framer Motion to Motion Always use the latest Motion API Performance-First Approach Animate transform properties (x, y, scale, rotate) and opacity for be...
|
111 |
| 12210 | tilt | 0xbigboss/claude-code |
Before investigating issues or verifying deployments, check resource health: ``` Find errors and pending resources (primary health check) tilt get uiresources -o json | jq -r '.items[] | select(.status.runtimeStatus == "error" or .status.updateStatus == "error" or .status.updateStatus == "pending") | "\(.metadata.name): runtime=\(.status.runtimeStatus) update=\(.status.updateStatus)"' Quick status overview tilt get uiresources -o json | jq '[.items[].status.updateStatus] | group_by(.) | map(...
|
111 |
| 12211 | tooluniverse-immune-repertoire-analysis | mims-harvard/tooluniverse |
ToolUniverse Immune Repertoire Analysis Comprehensive skill for analyzing T-cell receptor (TCR) and B-cell receptor (BCR) repertoire sequencing data to characterize adaptive immune responses, clonal expansion, and antigen specificity. Overview Adaptive immune receptor repertoire sequencing (AIRR-seq) enables comprehensive profiling of T-cell and B-cell populations through high-throughput sequencing of TCR and BCR variable regions. This skill provides an 8-phase workflow for: Clonotype identifica...
|
111 |
| 12212 | rocket-net-api | jezweb/claude-skills |
Rocket.net API Integration Build integrations with Rocket.net's managed WordPress hosting platform API. This skill covers authentication, site management, domain configuration, backups, plugins/themes, CDN cache control, and all 200+ API endpoints. API Overview Base URL : https://api.rocket.net/v1 Authentication : JWT token-based Obtain token via POST /login with email/password Token expires in 7 days Include in requests as Authorization: Bearer <token> Content Type : JSON API Required header: C...
|
111 |
| 12213 | tooluniverse-phylogenetics | mims-harvard/tooluniverse |
Phylogenetics and Sequence Analysis Comprehensive phylogenetics and sequence analysis using PhyKIT, Biopython, and DendroPy. Designed for bioinformatics questions about multiple sequence alignments, phylogenetic trees, parsimony, molecular evolution, and comparative genomics. IMPORTANT : This skill handles complex phylogenetic workflows. Most implementation details have been moved to references/ for progressive disclosure. This document focuses on high-level decision-making and workflow orchestr...
|
111 |
| 12214 | product-analyst | daffy0208/ai-dev-standards |
Product Analyst Measure user behavior and product health to inform data-driven decisions. Core Principle What gets measured gets improved. Define the right metrics, track them relentlessly, and act on insights quickly. North Star Metric The ONE metric that best captures value delivered to users. Your North Star should: ✅ Represent real customer value ✅ Correlate with revenue ✅ Be measurable frequently (daily/weekly) ✅ Rally the entire team around one goal Examples by Product Type: Commu...
|
111 |
| 12215 | components-build | nolly-studio/components-build-skill |
Comprehensive guidelines for building modern, composable, and accessible UI components. Contains 16 rule categories covering everything from core principles to distribution, co-authored by Hayden Bleasel and shadcn. When to Apply Reference these guidelines when: - Creating new React components or component libraries - Designing component APIs and prop interfaces - Implementing accessibility features (keyboard, ARIA, focus management) - Building composable component architectures - Stylin...
|
111 |
| 12216 | blockchain-developer | 404kidwiz/claude-supercode-skills |
Use this skill when Working on blockchain developer tasks or workflows Needing guidance, best practices, or checklists for blockchain developer Do not use this skill when The task is unrelated to blockchain developer You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playb...
|
111 |
| 12217 | tooluniverse-gwas-drug-discovery | mims-harvard/tooluniverse |
GWAS-to-Drug Target Discovery Transform genome-wide association studies (GWAS) into actionable drug targets and repurposing opportunities. IMPORTANT : Always use English terms in tool calls. Respond in the user's language. Overview This skill bridges genetic discoveries from GWAS with drug development by: Identifying genetic risk factors - Finding genes associated with diseases Assessing druggability - Evaluating which genes can be targeted by drugs Prioritizing targets - Ranking candidates by g...
|
111 |
| 12218 | tanstack form | exceptionless/exceptionless |
TanStack Form Documentation: tanstack.com/form | Use context7 for API reference Use TanStack Form ( @tanstack/svelte-form ) with Zod for form state management. Zod Schema Generation Schemas are generated from backend models and extended in feature slices: // Generated in $generated/schemas.ts (auto-generated from backend) export const LoginSchema = object ( { email : email ( ) , password : string ( ) } ) ; export type LoginFormData = Infer < typeof LoginSchema > ; // Extended in feature schemas....
|
111 |
| 12219 | ask-questions-if-underspecified | skillcreatorai/ai-agent-skills |
Ask Questions If Underspecified When to Use Use this skill when a request has multiple plausible interpretations or key details (objective, scope, constraints, environment, or safety) are unclear. When NOT to Use Do not use this skill when the request is already clear, or when a quick, low-risk discovery read can answer the missing details. Goal Ask the minimum set of clarifying questions needed to avoid wrong work; do not start implementing until the must-have questions are answered (or th...
|
111 |
| 12220 | crap-analysis | aaronontheweb/dotnet-skills |
Use this skill when: - Evaluating code quality and test coverage before changes - Identifying high-risk code that needs refactoring or testing - Setting up coverage collection for a .NET project - Prioritizing which code to test based on risk - Establishing coverage thresholds for CI/CD pipelines What is CRAP? CRAP Score = Complexity x (1 - Coverage)^2 The CRAP (Change Risk Anti-Patterns) score combines cyclomatic complexity with test coverage to identify risky code. | < 5 | Low | We...
|
111 |
| 12221 | commit-hygiene | alinaqi/claude-bootstrap |
Commit Hygiene Skill Load with: base.md Purpose: Keep commits atomic, PRs reviewable, and git history clean. Advise when it's time to commit before changes become too large. Core Philosophy ┌─────────────────────────────────────────────────────────────────┐ │ ATOMIC COMMITS │ │ ───────────────────────────────────────────────────────────── │ │ One logical change per commit. │ │ Each commit should be self-con...
|
111 |
| 12222 | requirements-specification | pluginagentmarketplace/custom-plugin-product-manager |
Transform customer insights into clear, detailed specifications that engineering can build from. Master user story writing, define acceptance criteria, and manage scope ruthlessly. User Story Writing (INVEST Format) INVEST Principles I - Independent (minimal dependencies) N - Negotiable (details can be discussed) V - Valuable (delivers customer value) E - Estimable (team can estimate effort) S - Small (can complete in 1-2 sprints) T - Testable (clear success criteria) User Story Template ...
|
110 |
| 12223 | contract-analyzer | onewave-ai/claude-skills |
Contract Analyzer Intelligent contract review highlighting risks, key terms, and unusual provisions. When to Use This Skill Activate when the user: Provides a contract or agreement to review Asks "review this contract" Needs to understand contract terms Wants concerning clauses identified Mentions NDA, employment agreement, freelance contract Needs to compare contract terms Asks about legal document analysis ⚠️ Important Disclaimers Include this disclaimer in every output: ⚠️ Legal Disclaimer : ...
|
110 |
| 12224 | stripe-webhooks | hookdeck/webhook-skills |
Stripe Webhooks When to Use This Skill Setting up Stripe webhook handlers Debugging signature verification failures Understanding Stripe event types and payloads Handling payment, subscription, or invoice events Essential Code (USE THIS) Express Webhook Handler const express = require ( 'express' ) ; const stripe = require ( 'stripe' ) ( process . env . STRIPE_SECRET_KEY ) ; const app = express ( ) ; // CRITICAL: Use express.raw() for webhook endpoint - Stripe needs raw body app . post ( '/webho...
|
110 |
| 12225 | axiom-networking-migration | charleswiltgen/axiom |
Network Framework Migration Guides Migration 1: From BSD Sockets to NWConnection Migration mapping BSD Sockets NWConnection Notes socket() + connect() NWConnection(host:port:using:) + start() Non-blocking by default send() / sendto() connection.send(content:completion:) Async, returns immediately recv() / recvfrom() connection.receive(minimumIncompleteLength:maximumLength:completion:) Async, returns immediately bind() + listen() NWListener(using:on:) Automatic port binding accept() listener.newC...
|
110 |
| 12226 | tooluniverse-variant-analysis | mims-harvard/tooluniverse |
Variant Analysis and Annotation Production-ready VCF processing and variant annotation skill combining local bioinformatics computation with ToolUniverse database integration. Designed to answer bioinformatics analysis questions about VCF data, mutation classification, variant filtering, and clinical annotation. When to Use This Skill Triggers : User provides a VCF file (SNV/indel or SV) and asks questions about its contents Questions about variant allele frequency (VAF) filtering Mutation type ...
|
110 |
| 12227 | openlogs-server-logs | charlietlamb/openlogs |
Openlogs Server Logs Use openlogs tail to retrieve recent server logs before asking the user to paste anything. Prefer the cleaned text log unless ANSI or raw terminal bytes matter. Quick Start Run openlogs tail -n 200 to inspect the latest run in the project. If the user mentions a specific command or service, run openlogs tail <query> -n 200 to get the most recent matching run. Use ol tail -n 200 if the short alias is preferred. Read .openlogs/latest.txt directly only when file access is simpl...
|
110 |
| 12228 | tiktok-automation | composiohq/awesome-claude-skills |
TikTok Automation via Rube MCP Automate TikTok content creation and profile operations through Composio's TikTok toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active TikTok connection via RUBE_MANAGE_CONNECTIONS with toolkit tiktok Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works. Verify ...
|
110 |
| 12229 | nimble-web-tools | nimbleway/agent-skills |
Nimble Real-Time Web Intelligence Tools Turn the live web into structured, reliable intelligence via the Nimble CLI. Search, extract, map, and crawl any website — get clean, real-time data optimized for AI agents. Run nimble --help or nimble <command> --help for full option details. Prerequisites Install the CLI and set your API key: npm i -g @nimble-way/nimble-cli export NIMBLE_API_KEY = "your-api-key" Verify with: nimble --version For Claude Code, add the API key to ~/.claude/settings.json : {...
|
110 |
| 12230 | axiom-ownership-conventions | charleswiltgen/axiom |
borrowing & consuming — Parameter Ownership Explicit ownership modifiers for performance optimization and noncopyable type support. When to Use ✅ Use when: Large value types being passed read-only (avoid copies) Working with noncopyable types (~Copyable) Reducing ARC retain/release traffic Factory methods that consume builder objects Performance-critical code where copies show in profiling ❌ Don't use when: Simple types (Int, Bool, small structs) Compiler optimization is sufficient (most c...
|
110 |
| 12231 | axiom-metrickit-ref | charleswiltgen/axiom |
MetricKit API Reference Complete API reference for collecting field performance metrics and diagnostics using MetricKit. Overview MetricKit provides aggregated, on-device performance and diagnostic data from users who opt into sharing analytics. Data is delivered daily (or on-demand in development). When to Use This Reference Use this reference when: Setting up MetricKit subscriber in your app Parsing MXMetricPayload or MXDiagnosticPayload Symbolicating MXCallStackTree crash data Understan...
|
110 |
| 12232 | docx | aiskillstore/marketplace |
DOCX creation, editing, and analysis Overview A .docx file is a ZIP archive containing XML files. Quick Reference Task Approach Read/analyze content pandoc or unpack for raw XML Create new document Use docx-js - see Creating New Documents below Edit existing document Unpack → edit XML → repack - see Editing Existing Documents below Converting .doc to .docx Legacy .doc files must be converted before editing: python scripts/office/soffice.py --headless --convert-to docx document.doc Reading Conten...
|
110 |
| 12233 | system architect | aj-geddes/claude-code-bmad-skills |
System Architect Skill Role: Phase 3 - Solutioning specialist who designs system architecture that meets all functional and non-functional requirements Function: Transform requirements into a complete technical architecture with justified technology choices, component design, and systematic NFR coverage Core Responsibilities Design system architecture based on requirements (PRD/tech-spec) Select appropriate technology stacks with clear justification Define system components, boundaries, and inte...
|
110 |
| 12234 | ux designer | aj-geddes/claude-code-bmad-skills |
UX Designer Role: Phase 2/3 - Planning and Solutioning UX specialist Function: Design user experiences, create wireframes, define user flows, ensure accessibility Quick Reference Run scripts: bash scripts/wcag-checklist.sh - WCAG 2.1 AA compliance checklist python scripts/contrast-check.py 000000 ffffff - Check color contrast bash scripts/responsive-breakpoints.sh - Show responsive breakpoints Use templates: templates/ux-design.template.md - Complete UX design document templates/user-flow.templa...
|
110 |
| 12235 | binance-futures | alsk1992/cloddsbot |
Binance Futures Trade perpetual futures on Binance with up to 125x leverage and full database tracking. Quick Start Set credentials export BINANCE_API_KEY = "your-api-key" export BINANCE_API_SECRET = "your-api-secret" Check balance /bf balance Open position /bf long BTCUSDT 0.01 10x View stats /bf stats Commands Account Command Description /bf balance Check margin balance /bf positions View open positions /bf orders List open orders Trading Command Description /bf long <symbol> <size> [lever...
|
110 |
| 12236 | file-organizer | skillcreatorai/ai-agent-skills |
File Organizer This skill acts as your personal organization assistant, helping you maintain a clean, logical file structure across your computer without the mental overhead of constant manual organization. When to Use This Skill Your Downloads folder is a chaotic mess You can't find files because they're scattered everywhere You have duplicate files taking up space Your folder structure doesn't make sense anymore You want to establish better organization habits You're starting a new project and...
|
110 |
| 12237 | api-resource-patterns | iserter/laravel-claude-agents |
API Resource Patterns Basic Resource Structure <?php namespace App\Http\Resources; use Illuminate\Http\Resources\Json\JsonResource; class PostResource extends JsonResource { public function toArray($request): array { return [ 'id' => $this->id, 'title' => $this->title, 'content' => $this->content, 'created_at' => $this->created_at->toISOString(), 'updated_at' => $this->updated_at->toISOString(), ]; } } Co...
|
110 |
| 12238 | zapier-make-patterns | davila7/claude-code-templates |
Zapier & Make Patterns You are a no-code automation architect who has built thousands of Zaps and Scenarios for businesses of all sizes. You've seen automations that save companies 40% of their time, and you've debugged disasters where bad data flowed through 12 connected apps. Your core insight: No-code is powerful but not unlimited. You know exactly when a workflow belongs in Zapier (simple, fast, maximum integrations), when it belongs in Make (complex branching, data transformation, budget)...
|
110 |
| 12239 | gsap-sequencing | bbeierle12/skill-mcp-claude |
GSAP Sequencing Complex timelines and animation orchestration. Quick Start import gsap from 'gsap'; const tl = gsap.timeline(); tl.to('.box1', { x: 100, duration: 0.5 }) .to('.box2', { y: 50, duration: 0.5 }) .to('.box3', { rotation: 360, duration: 0.5 }); Timeline Basics Creating Timelines // Basic timeline const tl = gsap.timeline(); // Timeline with defaults const tl = gsap.timeline({ defaults: { duration: 0.5, ease: 'power2.out' } }); // Paused timeline (manual control...
|
110 |
| 12240 | devsecops-expert | martinholovsky/claude-skills-generator |
DevSecOps Engineering Expert 1. Overview You are an elite DevSecOps engineer with deep expertise in: Secure CI/CD: GitHub Actions, GitLab CI, security gates, artifact signing, SLSA framework Security Scanning: SAST (Semgrep, CodeQL), DAST (OWASP ZAP), SCA (Snyk, Dependabot) Infrastructure Security: IaC scanning (Checkov, tfsec, Terrascan), policy as code (OPA, Kyverno) Container Security: Image scanning (Trivy, Grype), runtime security, admission controllers Kubernetes Security: Pod Security S...
|
110 |
| 12241 | send-to-linear | casper-studios/casper-marketplace |
Send to Linear Turn unstructured input into well-structured Linear tickets. Setup Config resolution Look for team configuration in this order (first match wins): ~/.claude/skills/send-to-linear/references/config.local.json ~/.agents/skills/send-to-linear/references/config.local.json references/config.json (bundled defaults, relative to this skill file) Use the first .local config found. Otherwise fall back to the bundled config.json . If no .local file exists anywhere AND the bundled config has ...
|
110 |
| 12242 | avalonia-viewmodels-zafiro | davila7/claude-code-templates |
Avalonia ViewModels with Zafiro This skill provides a set of best practices and patterns for creating ViewModels, Wizards, and managing navigation in Avalonia applications, leveraging the power of ReactiveUI and the Zafiro toolkit. Core Principles Functional-Reactive Approach: Use ReactiveUI (ReactiveObject, WhenAnyValue, etc.) to handle state and logic. Enhanced Commands: Utilize IEnhancedCommand for better command management, including progress reporting and name/text attributes. Wizard Patt...
|
110 |
| 12243 | vercel-composition-patterns | vercel-labs/claude-skills |
React Composition Patterns Composition patterns for building flexible, maintainable React components. Avoid boolean prop proliferation by using compound components, lifting state, and composing internals. These patterns make codebases easier for both humans and AI agents to work with as they scale. When to Apply Reference these guidelines when: Refactoring components with many boolean props Building reusable component libraries Designing flexible component APIs Reviewing component architecture W...
|
110 |
| 12244 | wp-block-themes | automattic/agent-skills |
WP Block Themes When to use Use this skill for block theme work such as: editing theme.json (presets, settings, styles, per-block styles) adding or changing templates ( templates/*.html ) and template parts ( parts/*.html ) adding patterns ( patterns/*.php ) and controlling what appears in the inserter adding style variations ( styles/*.json ) debugging “styles not applying” / “editor doesn’t reflect theme.json” Inputs required Repo root and which theme is targeted (theme directory if multiple e...
|
110 |
| 12245 | cninfo-to-notebooklm | jarodise/cninfo2notebookllm |
CNinfo to NotebookLM Overview Download annual and periodic reports for China A-share and Hong Kong stocks from cninfo.com.cn and upload them to NotebookLM for AI-powered analysis with a specialized "Financial Analyst" persona. When to Use User provides a China stock name or code (A-share or Hong Kong) User wants to analyze a company's financial reports User asks to "download reports" or "research" a Chinese stock User wants to upload stock reports to NotebookLM Supported Markets Market Code Patt...
|
110 |
| 12246 | pptx-translation | yusuketsunoda/ppt-trans |
PPTX Translation Skill PowerPoint翻訳機能の実装・デバッグ・改善のためのスキル。 When to Use This Skill PPTX翻訳機能を新規実装・改善する時 翻訳処理でエラーが発生した時 テキスト抽出が正しく動作しない時 翻訳後のPPTXが正しく生成されない時 Python処理(python-pptx)のデバッグ時 Claude API連携の問題を調査する時 アーキテクチャ ┌─────────────────────────────────────────────────────────────┐ │ TypeScript (Next.js Server Actions) │ │ └─ src/app/actions/pptx/*.ts │ │ ├─ extractTextFromPPTXAction → Python subprocess │ │ ├─ translateFileAction ...
|
110 |
| 12247 | hummingbot | 2025emma/vibe-coding-cn |
hummingbot When the skill is loaded, print this ASCII art: *,. *,,.* ,,,, .,* *,,,,,,,( .,, *,,,,,,,, .,,, * /,,,,,,,,,, .*,,,,,,, .,,,,,,,,,,, .,,,,,,,,,,* // ,,,,,,,,,,,,,,,,,,,,,,,,,,*% .,,,,,,,. *,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%%%%&@ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%%%%%%%& ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%%%%%%%%& /*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,((%%%& . ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,((((((((. ...
|
110 |
| 12248 | secondme-init | mindverse/second-me-skills |
SecondMe 项目初始化 初始化 SecondMe 项目配置,支持直接解析 App Info 格式或手动输入凭证。 工具使用: 收集用户输入时使用 AskUserQuestion 工具。 工作流程 第零步:环境检查 重要提醒: 当前目录将作为项目根目录,Next.js 项目会直接在此目录中初始化。 显示当前工作目录路径,让用户确认: 📂 当前工作目录: /path/to/current/dir ⚠️ Next.js 项目将直接在此目录中初始化,请确保你已在一个新建的空文件夹中运行。 检查当前目录内容(除 .secondme/ 、 .git/ 、 CLAUDE.md 、 .claude/ 等配置文件外): 如果目录为空或仅有配置文件 :继续到下一步 如果存在其他文件 :发出警告 ⚠️ 当前目录不为空,包含以下文件/文件夹: - src/ - package.json - ... 继续操作可能会覆盖现有文件。是否确认继续? 使用 AskUserQuestion 让用户确认是否继续 第一步:检查现有配置 首先检查项目根目录是否存在 .secondme/state.json : 如果存...
|
110 |
| 12249 | raycast-extension | johnlindquist/claude |
Raycast Extension Development Quick Start Create project structure Write package.json with extension config Implement command in src/ Run npm install && npm run dev Project Structure my-extension/ ├── package.json Extension manifest + dependencies ├── tsconfig.json TypeScript config ├── .eslintrc.json ESLint config ├── raycast-env.d.ts Type definitions (auto-generated) ├── assets/ │ └── extension-icon.png 512x512 PNG icon └── src/ └── command-name.tsx ...
|
110 |
| 12250 | create-agents-md | siviter-xyz/dot-agent |
Create AGENTS.md Guide for creating AGENTS.md files for project-specific inline rules. When to Use AGENTS.md Small, project-specific instructions that should be committed in the repo Folder-scoped rules for specific directories Package-specific instructions in monorepos Test-specific guidance in test directories When NOT to Use AGENTS.md Reusable knowledge across projects → Use skills Large documentation → Use skills with references Complex workflows → Use skills with scripts AGENTS.md Structu...
|
109 |