███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 5801 | homelab-vlan-segmentation | affaan-m/everything-claude-code |
Homelab VLAN Segmentation How to split a home network into isolated VLANs so IoT devices, guests, and your main PCs cannot talk to each other. The most impactful security upgrade for a home network. All firewall rules shown here add isolation between segments — they do not remove existing protections. Apply changes in a maintenance window and verify connectivity between segments after each step before moving on. When to Use Setting up VLANs on a home network for the first time Isolating IoT devi...
|
2.2K |
| 5802 | homelab-pihole-dns | affaan-m/everything-claude-code |
Homelab Pi-hole DNS Pi-hole is a network-wide DNS ad blocker that runs on a Raspberry Pi or any Linux host. Every device on your network gets ad and malware domain blocking automatically — no browser extension needed. When to Use Installing Pi-hole on a Raspberry Pi or Linux host Configuring Pi-hole as the DNS server for a home network Adding or managing blocklists Setting up DNS-over-HTTPS (DoH) upstream resolvers Creating local DNS records (e.g. nas.home.lan , pi.home.lan ) Troubleshooting dev...
|
2.2K |
| 5803 | hygiene | microsoft/vscode |
Hygiene Checks VS Code runs a hygiene check as a git pre-commit hook. Commits will be rejected if hygiene fails. Running the hygiene check Always run the pre-commit hygiene check before declaring work complete. This catches issues that would block a commit. To run the hygiene check on your staged files: npm run precommit This executes node --experimental-strip-types build/hygiene.ts , which scans only staged files (from git diff --cached ). To check specific files directly (without staging them ...
|
2.2K |
| 5804 | linkedin-ghostwriting | samber/cc-skills |
Persona: You are a B2B ghostwriter. You extract authentic, quantified stories and turn them into high-conversion LinkedIn posts — results first. LinkedIn Ghostwriting Generate conversion-focused LinkedIn B2B posts, prioritizing results and authority over vanity metrics. Workflow Phase 1: Strategic Interview Extract authentic, quantified material before writing anything. Without raw material, even skilled writing produces generic posts that blend into the feed. Ask questions (8-14 at once) coveri...
|
2.2K |
| 5805 | release | tobi/qmd |
Release Workflow This skill provides a systematic workflow for creating and publishing releases for the linear-cli project. It handles changelog management, version bumping, testing, and tagging. When to Use Use this skill when preparing to release a new version of linear-cli. The workflow ensures all changes are documented, tests pass, and versions are properly tagged before publishing. Prerequisites Ensure the following tools are available: changelog skill for changelog management svbump for v...
|
2.2K |
| 5806 | loop-library | forward-future/loop-library |
Loop Library (legacy alias) loop-library is the compatibility name for Loopy. Complete the user's request with this workflow. Use loopy , $loopy , or /loopy for new installations and explicit invocations. Help the user discover loop opportunities in existing engineering work, reuse a published Loop Library loop when one fits, audit or repair an existing loop, craft a new one through a focused interview, run it with evidence, learn from the result, or prepare it for Loop Library. Treat a loop as ...
|
2.2K |
| 5807 | deep-research | bytedance/deer-flow |
Deep Research Core System Instructions Purpose: Deliver citation-backed, verified research reports through 8-phase pipeline (Scope → Plan → Retrieve → Triangulate → Synthesize → Critique → Refine → Package) with source credibility scoring and progressive context management. Context Strategy: This skill uses 2025 context engineering best practices: Static instructions cached (this section) Progressive disclosure (load references only when needed) Avoid "loss in the middle" (critical info at start...
|
2.2K |
| 5808 | nextjs-app-router-fundamentals | wsimmonds/claude-nextjs-skills |
Next.js App Router Fundamentals Overview Provide comprehensive guidance for Next.js App Router (Next.js 13+), covering migration from Pages Router, file-based routing conventions, layouts, metadata handling, and modern Next.js patterns. TypeScript: NEVER Use any Type CRITICAL RULE: This codebase has @typescript-eslint/no-explicit-any enabled. Using any will cause build failures. ❌ WRONG: function handleSubmit(e: any) { ... } const data: any[] = []; ✅ CORRECT: function handleSubmit(e: Rea...
|
2.2K |
| 5809 | trigger-setup | triggerdotdev/skills |
Get Trigger.dev running in your project in minutes. When to Use - Adding Trigger.dev to an existing project - Creating your first task - Setting up trigger.config.ts - Connecting to Trigger.dev cloud Prerequisites - Node.js 18+ or Bun - A Trigger.dev account ([https://cloud.trigger.dev](https://cloud.trigger.dev)) Quick Start 1. Install the SDK ``` npm install @trigger.dev/sdk ``` 2. Initialize Your Project ``` npx trigger init ``` This creates: - `trigger.config.ts` - proj...
|
2.2K |
| 5810 | literature-search | lingzhi227/agent-research-skills |
Literature Search Search multiple academic databases to find relevant papers. Input $ARGUMENTS — The search query (natural language) Scripts Semantic Scholar (primary — best for ML/AI, has BibTeX) python ~/.claude/skills/deep-research/scripts/search_semantic_scholar.py \ --query "QUERY" --max-results 20 --year-range 2022 -2026 \ --api-key " $( grep S2_API_Key /Users/lingzhi/Code/keys.md 2 > /dev/null | cut -d: -f2 | tr -d ' ' ) " \ -o results_s2.jsonl Key flags: --peer-reviewed-only , --top-conf...
|
2.2K |
| 5811 | design-an-interface | vinvcn/mattpocock-skills-zh-cn |
Design an Interface Based on "Design It Twice" from "A Philosophy of Software Design": your first idea is unlikely to be the best. Generate multiple radically different designs, then compare. Workflow 1. Gather Requirements Before designing, understand: What problem does this module solve? Who are the callers? (other modules, external users, tests) What are the key operations? Any constraints? (performance, compatibility, existing patterns) What should be hidden inside vs exposed? Ask: "What doe...
|
2.2K |
| 5812 | qa | vinvcn/mattpocock-skills-zh-cn |
QA Session Run an interactive QA session. The user describes problems they're encountering. You clarify, explore the codebase for context, and file GitHub issues that are durable, user-focused, and use the project's domain language. For each issue the user raises 1. Listen and lightly clarify Let the user describe the problem in their own words. Ask at most 2-3 short clarifying questions focused on: What they expected vs what actually happened Steps to reproduce (if not obvious) Whether it's con...
|
2.2K |
| 5813 | voice-call | openclaw/openclaw |
Voice Call Use the voice-call plugin to start or inspect calls (Twilio, Telnyx, Plivo, or mock). CLI openclaw voicecall call --to "+15555550123" --message "Hello from OpenClaw" openclaw voicecall status --call-id < id > Tool Use voice_call for agent-initiated calls. Actions: initiate_call (message, to?, mode?) continue_call (callId, message) speak_to_user (callId, message) end_call (callId) get_status (callId) Notes: Requires the voice-call plugin to be enabled. Plugin config lives under plugins...
|
2.2K |
| 5814 | slack | openclaw/openclaw |
Slack Automation Interact with Slack workspaces to check messages, extract data, and automate common tasks. Quick Start Connect to an existing Slack browser session or open Slack: Connect to existing session on port 9222 (typical for already-open Slack) agent-browser connect 9222 Or open Slack if not already running agent-browser open https://app.slack.com Then take a snapshot to see what's available: agent-browser snapshot -i Core Workflow Connect/Navigate : Open or connect to Slack Snapshot ...
|
2.2K |
| 5815 | fix | react/react |
Fix Lint and Formatting Instructions Run yarn prettier to fix formatting Run yarn linc to check for remaining lint issues Report any remaining manual fixes needed Common Mistakes Running prettier on wrong files - yarn prettier only formats changed files Ignoring linc errors - These will fail CI, fix them before committing
|
2.2K |
| 5816 | edit-article | vinvcn/mattpocock-skills-zh-cn |
First, divide the article into sections based on its headings. Think about the main points you want to make during those sections. Consider that information is a directed acyclic graph, and that pieces of information can depend on other pieces of information. Make sure that the order of the sections and their contents respects these dependencies. Confirm the sections with the user. For each section: 2a. Rewrite the section to improve clarity, coherence, and flow. Use maximum 240 characters per p...
|
2.2K |
| 5817 | obsidian-vault | vinvcn/mattpocock-skills-zh-cn |
Obsidian Vault Vault location /mnt/d/Obsidian Vault/AI Research/ Mostly flat at root level. Naming conventions Index notes : aggregate related topics (e.g., Ralph Wiggum Index.md , Skills Index.md , RAG Index.md ) Title case for all note names No folders for organization - use links and index notes instead Linking Use Obsidian [[wikilinks]] syntax: [[Note Title]] Notes link to dependencies/related notes at the bottom Index notes are just lists of [[wikilinks]] Workflows Search for notes Search ...
|
2.2K |
| 5818 | image-portrait | starchild-ai-agent/official-skills |
image-portrait Use this skill for all identity-consistent portrait generation requests on Starchild. Covers: professional headshots, dating/social photos, artistic style transfers, themed/holiday portraits, photo series, digital avatars, children/family photos, ID/passport photos. Core principle: call the provided script. Do not re-implement proxy/billing plumbing. 1. Quick start — single portrait (most common) Show more Installs 670 Repository starchild-ai-ag…l-skills GitHub Stars 15 First Seen...
|
2.2K |
| 5819 | request-refactor-plan | vinvcn/mattpocock-skills-zh-cn |
This skill will be invoked when the user wants to create a refactor request. You should go through the steps below. You may skip steps if you don't consider them necessary. Ask the user for a long, detailed description of the problem they want to solve and any potential ideas for solutions. Explore the repo to verify their assertions and understand the current state of the codebase. Ask whether they have considered other options, and present other options to them. Interview the user about the im...
|
2.2K |
| 5820 | novel-architect | junaid18183/novel-architect-skills |
A comprehensive skill for literary fiction writers that transforms vague story ideas into structured novel projects through patient, emotionally-attentive dialogue. Core Philosophy Reflection before construction. Emotional truth before narrative logic. This skill: - Works through conversation first, writing only after understanding is complete - Proposes content section-by-section, waiting for approval at each step - Stores approved sections in memory, writing files only when complete - ...
|
2.2K |
| 5821 | second-brain-query | nicholasspisak/second-brain |
Second Brain — Query Answer questions by searching and synthesizing knowledge from the wiki. Search Strategy 1. Start with the index Read wiki/index.md to identify relevant pages. Scan all category sections (Sources, Entities, Concepts, Synthesis) for entries related to the question. 2. Use qmd for large wikis If qmd is installed (check with command -v qmd ), use it for search: qmd search "query terms" --path wiki/ This is especially useful when the wiki has grown beyond ~100 pages where scannin...
|
2.2K |
| 5822 | mobile-touch | dylantarre/animation-principles |
Mobile Touch Animation Apply Disney's 12 animation principles to mobile gestures, haptics, and native app motion. Quick Reference Principle Mobile Implementation Squash & Stretch Rubber-banding, bounce on scroll limits Anticipation Peek before reveal, long-press preview Staging Sheet presentations, focus states Straight Ahead / Pose to Pose Gesture-driven vs preset transitions Follow Through / Overlapping Momentum scrolling, trailing elements Slow In / Slow Out iOS spring animations, Material ...
|
2.2K |
| 5823 | 10x-cli-setup | przeprogramowani/10x-cli |
10x-cli Setup This skill sets up the @przeprogramowani/10x-cli on the user's machine. The core principle is simple: the README is the single source of truth . The CLI evolves — version requirements change, new install methods appear, commands get updated. Rather than hardcoding any of that here, this skill tells you how to work , and the README tells you what to do . Step 1: Check if the CLI is already installed Before anything else, check the current state: 10x --version 2 > /dev/null || echo "...
|
2.2K |
| 5824 | motion | onmax/nuxt-skills |
Motion Vue (motion-v) Animation library for Vue 3 and Nuxt. Production-ready, hardware-accelerated animations with minimal bundle size. Current stable: motion-v 1.x - Vue port of Motion (formerly Framer Motion) Overview Progressive reference for Motion Vue animations. Load only files relevant to current task (~200 tokens base, 500-1500 per sub-file). When to Use Use Motion Vue for: Simple declarative animations (fade, slide, scale) Gesture-based interactions (hover, tap, drag) Scroll-linked anim...
|
2.2K |
| 5825 | chart-visualization | bytedance/deer-flow |
Chart Visualization Skill This skill provides a comprehensive workflow for transforming data into visual charts. It handles chart selection, parameter extraction, and image generation. Workflow To visualize data, follow these steps: 1. Intelligent Chart Selection Analyze the user's data features to determine the most appropriate chart type. Use the following guidelines (and consult references/ for detailed specs): Time Series: Use generate_line_chart (trends) or generate_area_chart (accumu...
|
2.2K |
| 5826 | core-data-expert | avdlee/core-data-agent-skill |
Fast, production-oriented guidance for building correct, performant Core Data stacks and fixing common crashes. Agent behavior contract (follow these rules) - Determine OS/deployment target when advice depends on availability (iOS 14+/17+ features, etc.). - Identify the context type before proposing fixes: view context (UI) vs background context (heavy work). - Recommend `NSManagedObjectID` for cross-context/cross-task communication; never pass `NSManagedObject` instances across contexts. ...
|
2.2K |
| 5827 | trigger-realtime | triggerdotdev/skills |
Subscribe to task runs and stream data in real-time from frontend and backend. When to Use - Building progress indicators for long-running tasks - Creating live dashboards showing task status - Streaming AI/LLM responses to the UI - React components that trigger and monitor tasks - Waiting for user approval in tasks Authentication Create Public Access Token (Backend) ``` import { auth } from "@trigger.dev/sdk"; // Read-only token for specific runs const publicToken = await auth.crea...
|
2.2K |
| 5828 | image-processing | jezweb/claude-skills |
Image Processing Process images for web development. Generate a Pillow script adapted to the user's environment and specific needs. Prerequisites Pillow is usually pre-installed. If not: pip install Pillow If Pillow is unavailable, adapt using alternatives: Alternative Platform Install Capabilities sips macOS (built-in) None Resize, convert (no trim/OG) sharp Node.js npm install sharp Full feature set ffmpeg Cross-platform brew install ffmpeg Resize, convert Capabilities Generate a Python script...
|
2.2K |
| 5829 | hermes-history-ingest | ar9av/obsidian-wiki |
Hermes History Ingest — Conversation & Memory Mining You are extracting knowledge from the user's Hermes agent history and distilling it into the Obsidian wiki. Hermes stores both free-form memories and structured session transcripts — focus on durable knowledge, not operational telemetry. This skill can be invoked directly or via the wiki-history-ingest router ( /wiki-history-ingest hermes ). Before You Start Read .env to get OBSIDIAN_VAULT_PATH and HERMES_HISTORY_PATH (default to ~/.hermes if ...
|
2.2K |
| 5830 | flyai | alibaba-flyai/flyai-skill |
FlyAI — Travel, Flight & Hotel Search and Booking Use flyai-cli to call Fliggy MCP services for travel search and booking scenarios. All commands output single-line JSON to stdout ; errors and hints go to stderr for easy piping with jq or Python. Quick Start Install CLI : npm i -g @fly-ai/flyai-cli Verify setup : run flyai keyword-search --query "what to do in Sanya" and confirm JSON output. List commands : run flyai --help . Read command details BEFORE calling : each command has its own schema ...
|
2.2K |
| 5831 | winui-app | openai/skills |
WinUI App Use this skill for WinUI 3 and Windows App SDK work that needs grounded setup guidance, app bootstrap, modern Windows UX decisions, or concrete implementation patterns. Required Flow Classify the task as environment/setup, new-app bootstrap, design, implementation, review, or troubleshooting. If the task is about preparing a machine for WinUI, auditing readiness, or creating a brand new app, start with the bundled setup-and-scaffold flow in this skill before broader design, implementat...
|
2.2K |
| 5832 | second-brain-lint | nicholasspisak/second-brain |
Second Brain — Lint Health-check the wiki and report issues with actionable fixes. Audit Steps Run all checks below, then present a consolidated report. 1. Broken wikilinks Scan all wiki pages for [[wikilink]] references. For each link, verify the target page exists. Report any broken links. Find all wikilinks across wiki pages grep -roh '\[\[[^]]*\]\]' wiki/ | sort -u Cross-reference against actual files in wiki/ . 2. Orphan pages Find pages with no inbound links — no other page references the...
|
2.2K |
| 5833 | cli-creator | openai/skills |
CLI Creator Create a real CLI that future Codex threads can run by command name from any working directory. This skill is for durable tools, not one-off scripts. If a short script in the current repo solves the task, write the script there instead. Start Name the target tool, its source, and the first real jobs it should do: Source: API docs, OpenAPI JSON, SDK docs, curl examples, browser app, existing internal script, article, or working shell history. Jobs: literal reads/writes such as list dr...
|
2.2K |
| 5834 | arize-link | arize-ai/arize-skills |
Arize Link Generate deep links to the Arize UI for traces, spans, sessions, datasets, labeling queues, evaluators, and annotation configs. When to Use User wants a link to a trace, span, session, dataset, labeling queue, evaluator, or annotation config You have IDs from exported data or logs and need to link back to the UI User asks to "open" or "view" any of the above in Arize Required Inputs Collect from the user or context (exported trace data, parsed URLs): Show more Installs 906 Repository ...
|
2.2K |
| 5835 | discovery-process | deanpeters/product-manager-skills |
Purpose Guide product managers through a complete discovery cycle—from initial problem hypothesis to validated solution—by orchestrating problem framing, customer interviews, synthesis, and experimentation skills into a structured process. Use this to systematically explore problem spaces, validate assumptions, and build confidence before committing to full development—avoiding "build it and they will come" syndrome and ensuring you're solving real customer problems. This is not a one-time resea...
|
2.2K |
| 5836 | cohort-analysis | phuryn/pm-skills |
Cohort Analysis & Retention Explorer Purpose Analyze user engagement and retention patterns by cohort to identify trends in user behavior, feature adoption, and long-term engagement. Combine quantitative insights with qualitative research recommendations. How It Works Step 1: Read and Validate Your Data Accept CSV, Excel, or JSON data files with user cohort information Verify data structure: cohort identifier, time periods, engagement metrics Check for missing values and data quality issues Summ...
|
2.2K |
| 5837 | ab-test-analysis | phuryn/pm-skills |
A/B Test Analysis Evaluate A/B test results with statistical rigor and translate findings into clear product decisions. Context You are analyzing A/B test results for $ARGUMENTS . If the user provides data files (CSV, Excel, or analytics exports), read and analyze them directly. Generate Python scripts for statistical calculations when needed. Instructions Understand the experiment : What was the hypothesis? What was changed (the variant)? What is the primary metric? Any guardrail metrics? How l...
|
2.2K |
| 5838 | market-segments | phuryn/pm-skills |
Market Segments Purpose Identify and analyze 3-5 distinct customer segments for your product, understanding their unique jobs-to-be-done, desired outcomes, pain points, and product fit. Use this skill to evaluate market opportunities, prioritize target audiences, or expand into new market segments. Instructions You are a strategic market research expert skilled in market segmentation, customer profiling, and total addressable market (TAM) analysis. Input Your task is to identify and analyze pote...
|
2.2K |
| 5839 | prioritize-features | phuryn/pm-skills |
Prioritize Feature Backlog Evaluate and rank a backlog of feature ideas to identify the top 5 to pursue. Context You are helping prioritize features for $ARGUMENTS . If the user provides files (spreadsheets, backlogs, opportunity assessments), read and analyze them directly. Domain Context For framework selection guidance, see the prioritization-frameworks skill. Key recommendations: Opportunity Score (Dan Olsen, The Lean Product Playbook ) is recommended for evaluating customer problems: Opport...
|
2.2K |
| 5840 | awwwards-animations | devmartinese/awwwards-animations-skill |
Awwwards Animations Create premium web animations at Awwwards/FWA quality level. React-first approach . 60fps non-negotiable. Decision Matrix Task Library Why Scroll-driven animations GSAP + ScrollTrigger + useGSAP Industry standard, best control Smooth scroll Lenis + ReactLenis Best performance, works with ScrollTrigger React-native animations Motion (Framer Motion) Native React, useScroll/useTransform Simple/lightweight effects Anime.js 4.0 Small footprint, clean API Complex timelines GSAP Unm...
|
2.2K |
| 5841 | napkin | github/awesome-copilot |
Napkin — Visual Whiteboard for Copilot CLI Napkin gives users a browser-based whiteboard where they can draw, sketch, and add sticky notes to think through ideas visually. The agent reads back the whiteboard contents (via a PNG snapshot and optional JSON data) and responds conversationally with analysis, suggestions, and next steps. The target audience is lawyers, PMs, and business stakeholders — not software developers. Keep everything approachable and jargon-free. Activation When the user invo...
|
2.2K |
| 5842 | apollo-server | apollographql/skills |
Apollo Server 4.x Guide Apollo Server is an open-source GraphQL server that works with any GraphQL schema. Version 4.x is framework-agnostic and runs standalone or integrates with Express, Fastify, and serverless environments. Quick Start Step 1: Install npm install @apollo/server graphql For Express integration: npm install @apollo/server express graphql cors Step 2: Define Schema const typeDefs = `graphql type Book { title: String author: String } type Query { books: [...
|
2.2K |
| 5843 | test-tui | openai/codex |
You can start and use Codex TUI to verify changes. Important notes: Start interactively. Always set RUST_LOG="trace" when starting the process. Pass -c log_dir=<some_temp_dir> argument to have logs written to a specific directory to help with debugging. When sending a test message programmatically, send text first, then send Enter in a separate write (do not send text + Enter in one burst). Use just codex target to run - just codex -c ...
|
2.2K |
| 5844 | arize-ai-provider-integration | arize-ai/arize-skills |
Arize AI Integration Skill SPACE — Most --space flags and the ARIZE_SPACE env var accept a space name (e.g., my-workspace ) or a base64 space ID (e.g., U3BhY2U6... ). Find yours with ax spaces list . Note: ai-integrations create does not accept --space — AI integrations are account-scoped. Use --space only with list , get , update , and delete . Concepts AI Integration = stored LLM provider credentials registered in Arize; used by evaluators to call a judge model and by other Arize features that...
|
2.2K |
| 5845 | growth-loops | phuryn/pm-skills |
Growth Loops Overview Identify and design growth loops (flywheels) that create sustainable traction. This skill evaluates five proven growth loop mechanisms to reduce reliance on paid acquisition and build product-led growth. When to Use Designing growth mechanisms for a product Building sustainable viral or referral traction Reducing reliance on paid acquisition Analyzing competitor growth strategies Optimizing product for product-led growth The 5 Growth Loop Types 1. Viral Loop Product content...
|
2.2K |
| 5846 | heygen-video | heygen-com/skills |
Preamble (run first) No auto-run steps. Check for updates manually when desired: " ${SKILL_DIR} /scripts/update-check.sh" This script is opt-in only. Do not execute it automatically on skill invocation. HeyGen Video Producer You are a video producer. Not a form. Not a CLI wrapper. A producer who understands what makes video work and guides the user from idea to finished cut. Docs: https://developers.heygen.com/docs/quick-start (API) · https://developers.heygen.com/cli (CLI) STOP. If you are abou...
|
2.2K |
| 5847 | aihot | kkkkhazix/khazix-skills |
AI HOT Skill 让 Agent 用最自然的中文查询拿到 aihot.virxact.com 上每天的 AI HOT 日报和全部 AI 动态,不需要打开浏览器。SKILL.md 标准格式,跨 Claude Code / Codex CLI / Cursor / Gemini CLI / OpenCode / 任何兼容平台可用。 线上: https://aihot.virxact.com(公开匿名可访,无需 token) 先决条件:必须带 User-Agent(仅 API 端点) /api/public/* 走 nginx UA 黑名单挡商业爬虫,默认 curl/X.Y UA 会被 403 Forbidden。 调 API 时所有 curl 都必须带浏览器 UA : UA = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36" 之后所有调 API 的 curl 都加 -H "User-Agen...
|
2.2K |
| 5848 | local-election-candidate-search | nomadamas/k-skill |
Local Election Candidate Search What this skill does 중앙선거관리위원회(NEC) 선거통계시스템의 공개 통합검색에서 후보자 이름을 조회하고, 지방선거 관련 후보자 이력만 기본으로 정리한다. 후보자명, 한자명, 생년월일/성별, 선거일, 선거명, 선거종류, 정당, 선거구, 득표, 직업, 학력, 경력 등을 반환한다. When to use 사용자가 “지방선거 후보”, “시도지사 후보”, “기초의원 후보”, “교육감 후보” 등을 이름/지역/선거일 기준으로 찾아 달라고 할 때 중앙선관위 선거통계시스템에서 공개된 후보자 이력을 확인해야 할 때 동명이인이 있을 수 있어 후보자명 + 선거종류/지역/연도 필터가 필요한 때 Public access path Chosen path: NEC integrated candidate search. Show more Installs 463 Repository nomadamas/k-skill GitHub Stars 5.4K F...
|
2.2K |
| 5849 | sentry-sdk-skill-creator | getsentry/sentry-for-ai |
All Skills > SDK Skill Creator Create a Sentry SDK Skill Bundle Produce a complete, research-backed SDK skill bundle — a main wizard SKILL.md plus deep-dive reference files for every feature pillar the SDK supports. Invoke This Skill When Asked to "create a Sentry SDK skill" for a new platform Asked to "add support for [language/framework]" to sentry-agent-skills Building a new sentry-<platform>-sdk skill bundle Porting the SDK skill pattern to a new Sentry SDK Read ${SKILL_ROOT}/references/phil...
|
2.2K |
| 5850 | muapi-social-media-video | samuraigpt/generative-media-skills |
Social Media Video Creator End-to-end pipeline: Brand Files → Storyboard → Reference Images → Seedance 2.0 Video. Reads your brand identity, ICP, and messaging documents to produce on-brand social video — fully optimized for Seedance 2.0's instructional prompt grammar and your target platform. Agent Execution Protocol Step 1 — Read Brand Files Before writing anything, the agent MUST read all available brand files. Look for them in the working directory or any brand/ subdirectory: File What to ex...
|
2.2K |