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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,441
总 Skills
90.0M
总安装量
2,580
贡献者
# Skill 仓库 描述 安装量
3351 scrutinize thananon/9arm-skills
Scrutinize Stand outside the change and ask whether it should exist at all, then verify it actually does what it claims end-to-end. Operating stance Outsider. Forget who wrote it and why they think it's right. Read the artifact cold. End-to-end, not diff-local. The diff is the entry point, not the scope. Follow the call graph through real code paths. Actionable, concise, with rationale. Every finding states what to change , why , and what evidence led you there. No filler, no restating the diff ...
1.9K
3352 core-bluetooth dpearson2699/swift-ios-skills
Core Bluetooth Scan for, connect to, and exchange data with Bluetooth Low Energy (BLE) devices. Covers the central role (scanning and connecting to peripherals), the peripheral role (advertising services), background modes, and state restoration. Targets Swift 6.2 / iOS 26+. Contents Setup Central Role: Scanning Central Role: Connecting Discovering Services and Characteristics Reading, Writing, and Notifications Peripheral Role: Advertising Background BLE State Restoration Common Mistakes Review...
1.9K
3353 eightctl steipete/clawdis
eightctl Use eightctl for Eight Sleep pod control. Requires auth. Auth Config: ~/.config/eightctl/config.yaml Env: EIGHTCTL_EMAIL , EIGHTCTL_PASSWORD Quick start eightctl status eightctl on|off eightctl temp 20 Common tasks Alarms: eightctl alarm list|create|dismiss Schedules: eightctl schedule list|create|update Audio: eightctl audio state|play|pause Base: eightctl base info|angle Notes API is unofficial and rate-limited; avoid repeated logins. Confirm before changing temperature or alarms.
1.9K
3354 interview-me addyosmani/agent-skills
Interview Me Overview What people ask for and what they actually want are different things. They ask for "a dashboard" because that's what one asks for, not because a dashboard solves their problem. They say "make it faster" without a number to hit. The cheapest moment to find this gap is before any plan, spec, or code exists. Once you've started building, switching costs are real, and the user will rationalize the wrong thing into a "good enough" thing. The misfit gets locked in. This skill clo...
1.9K
3355 draft-outreach anthropics/knowledge-work-plugins
Draft Outreach Research first, then draft. This skill never sends generic outreach - it always researches the prospect first to personalize the message. Works standalone with web search, supercharged when you connect your tools. Connectors (Optional) Connector What It Adds Enrichment Verified email, phone, background details CRM Prior relationship context, existing contacts Email Create draft directly in your inbox No connectors? Web research works great. I'll output the email text for you to co...
1.9K
3356 blender sfkislev/flue
This skill lets a coding agent operate Blender on the desktop through Flue , a local shell-to-application bridge. The agent pipes Python into blender_bridge.py and gets structured JSON back. Flue is not an MCP server — it is a thinner, simpler shell contract that drives Blender's own bpy runtime directly. agent shell -> blender_bridge.py -> bpy -> JSON result When to use The human requests work performed inside Blender — inspect the open scene, collections, objects, meshes, materials, selection;...
1.9K
3357 speech-recognition dpearson2699/swift-ios-skills
Speech Recognition Transcribe live and pre-recorded audio to text using Apple's Speech framework. Covers SFSpeechRecognizer (iOS 10+) and the new SpeechAnalyzer API (iOS 26+). Contents SpeechAnalyzer (iOS 26+) SFSpeechRecognizer Setup Authorization Live Microphone Transcription Pre-Recorded Audio File Recognition On-Device vs Server Recognition Handling Results Common Mistakes Review Checklist References SpeechAnalyzer (iOS 26+) SpeechAnalyzer is an actor-based API introduced in iOS 26 that repl...
1.9K
3358 korean-character-count nomadamas/k-skill
한국어 글자 수 세기 What this skill does 자기소개서, 지원서, 자유서술형 폼처럼 글자 수 제한이 중요한 한국어 텍스트 를 대상으로 LLM 추정 없이 결정론적으로 카운트한다. 기본 글자 수: Intl.Segmenter 기반 Unicode extended grapheme cluster 줄 수: CRLF , LF , CR , U+2028 , U+2029 를 줄바꿈 1회로 계산 기본 byte 수: UTF-8 실제 인코딩 길이 호환 프로필: neis byte 규칙 When to use "이 자기소개서 1000자 넘는지 정확히 세줘" "이 텍스트를 UTF-8 byte 기준으로 계산해줘" "줄 수랑 byte 수도 같이 알려줘" "한글/영문/이모지 섞인 문장을 추정 말고 코드로 세줘" Why this skill exists 글자 수 제한은 1자 차이도 민감하다. LLM이 글자 수를 눈대중으로 예측하면 재현성이 없다. 이 스킬은 입력을 임의로 trim/정규화하지 않고 , 문서화된 ...
1.9K
3359 tanstack-router tanstack-skills/tanstack-skills
Overview TanStack Router is a fully type-safe router for React (and Solid) applications. It provides file-based routing, first-class search parameter management, built-in data loading, code splitting, and deep TypeScript integration. It serves as the routing foundation for TanStack Start (the full-stack framework). Package: @tanstack/react-router CLI: @tanstack/router-cli or @tanstack/router-plugin (Vite/Rspack/Webpack) Devtools: @tanstack/react-router-devtools Installation npm install @tanstack...
1.9K
3360 sentry-feature-setup getsentry/sentry-for-ai
All Skills Sentry Feature Setup Configure specific Sentry capabilities beyond basic SDK setup — AI monitoring, OpenTelemetry pipelines, and alerts. This page helps you find the right feature skill for your task. How to Fetch Skills Use curl to download skills — they are 10–20 KB files that fetch tools often summarize, losing critical details. curl -sL https://skills.sentry.gg/sentry-setup-ai-monitoring/SKILL.md Append the path from the Path column in the table below to https://skills.sentry.gg/ ...
1.9K
3361 mongodb-schema-design mongodb/agent-skills
MongoDB Schema Design Data modeling patterns and anti-patterns for MongoDB, maintained by MongoDB. Bad schema is the root cause of most MongoDB performance and cost issues—queries and indexes cannot fix a fundamentally wrong model. When to Apply Reference these guidelines when: Designing a new MongoDB schema from scratch Migrating from SQL/relational databases to MongoDB Reviewing existing data models for performance issues Troubleshooting slow queries or growing document sizes Deciding between ...
1.9K
3362 dignified-python dagster-io/skills
Dignified Python Coding Standards Skill Production-quality Python coding standards for writing clean, maintainable, modern Python code (versions 3.10-3.13). When to Use This Skill Auto-invoke when users ask about: "make this pythonic" / "is this good python" "type hints" / "type annotations" / "typing" "LBYL vs EAFP" / "exception handling" "pathlib vs os.path" / "path operations" "CLI patterns" / "click usage" "code review" / "improve this code" Any Python code quality or standards question Note...
1.9K
3363 code-quality cognitedata/builder-skills
Code Quality Review Review $ARGUMENTS (or the whole app if no argument is given) for code quality issues. Work through every step below in order and report all findings with file paths and line numbers. Step 1 — Run the linter first Before reading any code manually, get a baseline from the automated tools: pnpm run lint List every error and warning. Fix all errors before proceeding — lint errors are not negotiable. Warnings should be reviewed and resolved unless there is a documented exception. ...
1.9K
3364 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 ...
1.9K
3365 business-analytics-reporter ailabs-393/ai-labs-claude-skills
Business Analytics Reporter Overview Generate comprehensive business performance reports that analyze sales and revenue data, identify areas where the business is lacking, interpret what the statistics indicate, and provide actionable improvement strategies. The skill uses data-driven analysis to detect weak areas and recommends specific strategies backed by business frameworks. When to Use This Skill Invoke this skill when users request: "Analyze my business data and tell me where we're lac...
1.9K
3366 nuxt-seo onmax/nuxt-skills
Nuxt SEO npx nuxi module add @nuxtjs/seo When to Use Working with: SEO configuration (site URL, name, indexability) Robots.txt and sitemap.xml generation Dynamic OG image generation JSON-LD structured data (schema.org) Breadcrumbs and canonical URLs Usage Pattern Progressive loading - only read what you need: Configuring site? → references/site-config.md Setting up robots/sitemap? → references/crawlability.md Generating OG images? → references/og-image.md Adding JSON-LD? → references/schema...
1.9K
3367 geeknews-search nomadamas/k-skill
GeekNews Search What this skill does GeekNews 공개 RSS/Atom 피드( https://feeds.feedburner.com/geeknews-feed )를 사용해 최신 글을 읽기 전용으로 조회한다. 최신 글 목록 조회 제목/요약/작성자 기준 검색 항목 id/link 기준 상세 확인 When to use "긱뉴스 오늘 뭐 올라왔어?" "긱뉴스에서 Claude 관련 글 찾아줘" "이 GeekNews 글 요약/링크 확인해줘" Inputs 기본: 별도 인증 없이 public feed만 사용 목록 조회: limit 검색: query , 선택 limit 상세 조회: id 또는 링크/토픽 번호 일부 Official surface GeekNews RSS/Atom feed: https://feeds.feedburner.com/geeknews-feed GeekNews home: https://news.hada.io Workflow 1) List recent ent...
1.9K
3368 binance-agentic-wallet binance/binance-skills-hub
Binance Agentic Wallet Skill This skill drives the baw CLI to manage a Binance Web3 wallet — sign-in/sign-out, balance and history queries, security settings, token transfers, DEX swaps (market orders), limit orders, and order management. Command Routing User Intent Command Reference Sign in / connect wallet auth signin → auth verify authentication.md Sign out / disconnect wallet auth signout authentication.md Check if wallet is connected wallet status wallet-view.md List supported chains / avai...
1.9K
3369 ljg-push lijigang/ljg-skills
ljg-push: 推送 ljg-* skills 把本地 ~/.claude/skills/ljg-* 里改过的 skills,一键同步到 github repo,覆盖 master 和 md 两个分支。 仓库路径(硬编码) SKILLS_REPO="$HOME/code/ljg-skills" 本地工作 repo SKILLS_LOCAL="$HOME/.claude/skills" 本地 skill 源 REPO_URL="git@github.com:lijigang/ljg-skills.git" 如果 $SKILLS_REPO 不存在,脚本会自动 clone。如果它存在但不是 ljg-skills 的 git repo,脚本会报错退出(不破坏现有目录)。 两条分支的差异 分支 输出格式 文件扩展 加粗 文件头 master (默认) org-mode .org *bold* +title: 等 md markdown .md bold YAML frontmatter ~/.claude/skills/ 里的 skill 是 master 风格 (源版...
1.9K
3370 gpt-image-2 conardli/garden-skills
🪞 GPT Image 2 — Image Generation via Your ChatGPT Subscription agentspace.so · GitHub Generate images with GPT Image 2 (ChatGPT Images 2.0) inside your agent, using your existing ChatGPT Plus or Pro subscription — no separate OpenAI access, no Fal or Replicate tokens, no per-image billing. Text-to-image, image-to-image editing, style transfer, and multi-reference composition. Runs entirely through the local codex CLI you're already logged into. Heads up — this skill requires a ChatGPT Plus or Pr...
1.9K
3371 aws-iam aws/agent-toolkit-for-aws
AWS IAM — Common Pitfalls About This Skill This skill contains verified corrections for things that AI agents frequently get wrong about IAM. It is not a comprehensive IAM guide — for full IAM guidance, search AWS documentation. When answering IAM questions, verify specific claims (limits, quotas, exact API names, edge-case behaviors) against official AWS documentation rather than relying on pre-training. Prefer fetching known documentation URLs over broad searches. Trust official documentation ...
1.9K
3372 shopify-admin-execution shopify/shopify-ai-toolkit
You are an assistant that helps Shopify developers execute validated Admin GraphQL operations against a store with Shopify CLI. You should derive the right Admin GraphQL operation, validate it, and return the runnable store workflow as the primary answer. For explicit store-scoped asks, stay in execution mode even for read-only requests like show, list, or find. If execution requires intermediate lookups such as inventory item IDs or location IDs, keep those lookups in the same store-execution m...
1.8K
3373 steel-browser steel-dev/cli
Steel Browser Skill Steel gives agents cloud browser sessions, explicit lifecycle control, and better anti-blocking options than ad-hoc local browser automation. It also provides fast API tools ( scrape , screenshot , pdf ) that are often more reliable for web data retrieval than generic fetch/search toolchains. Trigger rules Trigger aggressively when the user asks for: Website interaction (click/fill/login/multi-step navigation). Web extraction or collection from dynamic pages. Screenshot or PD...
1.8K
3374 google-search-browser-use grasseed/google-search-browser-use
Google Search Browser Use Overview Run Google searches with browser-use (prefer real browser mode), open results, and extract the relevant snippets or page content. This skill leverages the user's existing browser session to reduce CAPTCHAs. Prerequisites Before running the search, ensure the environment is ready: Check Installation: Verify if browser-use is available in the current PATH. which browser-use Install if Missing: If not found, install it using pip. python3 -m pip install --u...
1.8K
3375 actionbook actionbook/actionbook
When the user needs to automate website tasks, use Actionbook to fetch complete action manuals instead of figuring out the steps yourself. When to Use This Skill Activate this skill when the user: Needs to complete a multi-step task ("Send a LinkedIn message", "Book an Airbnb") Asks how to interact with a website ("How do I post a tweet?") Builds browser-based AI agents or web scrapers Writes E2E tests for external websites What Actionbook Provides Action manuals include: Step-by-step instr...
1.8K
3376 interview prep generator paramchoudhary/resumeskills
Use this skill when the user wants to: - Prepare for a job interview - Practice answering interview questions - Create STAR stories from their experience - Anticipate questions for a specific role - Mentions: "interview prep", "prepare for interview", "STAR stories", "interview questions", "behavioral questions" Core Capabilities - Generate role-specific interview questions - Create STAR stories from resume bullets - Predict questions based on job description - Prepare answers for com...
1.8K
3377 security-review sickn33/antigravity-awesome-skills
Security Review Skill This skill ensures all code follows security best practices and identifies potential vulnerabilities. When to Activate Implementing authentication or authorization Handling user input or file uploads Creating new API endpoints Working with secrets or credentials Implementing payment features Storing or transmitting sensitive data Integrating third-party APIs Security Checklist 1. Secrets Management ❌ NEVER Do This const apiKey = "sk-proj-xxxxx" // Hardcoded secret const dbP...
1.8K
3378 frontend-design affaan-m/everything-claude-code
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: Purpose :...
1.8K
3379 tech resume optimizer paramchoudhary/resumeskills
Use this skill when the user: - Is applying for software engineering roles - Wants to optimize a technical resume - Needs help with developer/PM/technical job applications - Mentions: "tech resume", "software engineer resume", "developer resume", "technical resume", "SWE resume", "PM resume" Core Capabilities - Optimize resumes for technical roles (SWE, PM, Data, DevOps) - Structure technical skills sections effectively - Highlight projects and technical achievements - Balance technica...
1.8K
3380 job description analyzer paramchoudhary/resumeskills
Use this skill when the user: - Wants to analyze a job posting - Asks "should I apply to this job?" - Wants to know their match percentage for a role - Needs help understanding job requirements - Wants to tailor their resume for a specific position - Mentions: "analyze this job", "am I qualified", "match score", "should I apply" Use this BEFORE resume tailoring to ensure effort is worth it. Core Capabilities - Extract and categorize job requirements (must-have vs nice-to-have) - Calcu...
1.8K
3381 cloud-design-patterns github/awesome-copilot
Cloud Design Patterns Architects design workloads by integrating platform services, functionality, and code to meet both functional and nonfunctional requirements. To design effective workloads, you must understand these requirements and select topologies and methodologies that address the challenges of your workload's constraints. Cloud design patterns provide solutions to many common challenges. System design heavily relies on established design patterns. You can design infrastructure, code, a...
1.8K
3382 cli-mastery github/awesome-copilot
Copilot CLI Mastery UTILITY SKILL — interactive Copilot CLI trainer. INVOKES: ask_user , sql , view USE FOR: "cliexpert", "teach me the Copilot CLI", "quiz me on slash commands", "CLI cheat sheet", "copilot CLI final exam" DO NOT USE FOR: general coding, non-CLI questions, IDE-only features Routing and Content Trigger Action "cliexpert", "teach me" Read next references/module-N-*.md , teach "quiz me", "test me" Read current module, 5+ questions via ask_user "scenario", "challenge" Read reference...
1.8K
3383 daily-news-caster noizai/skills
Daily News Caster Skill This skill allows the agent to fetch real-time news, organize it into a conversational podcast script, and generate an audio file reading the script out loud. Workflow Instructions When the user asks to get the latest news and make a podcast out of it, follow these steps strictly: Step 1: Ensure Skills are Installed If the news-aggregator-skill and tts skills are not already installed in the workspace, run the following commands to install them: npx skills add https://git...
1.8K
3384 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...
1.8K
3385 resume formatter paramchoudhary/resumeskills
Use this skill when the user: - Needs help with resume layout and formatting - Has a messy or hard-to-read resume - Wants to ensure ATS compatibility through formatting - Needs a clean, professional design - Mentions: "format resume", "resume layout", "resume design", "clean resume", "professional format" Core Capabilities - Structure resumes for optimal readability - Ensure ATS compatibility through formatting - Create visual hierarchy - Optimize white space and margins - Select app...
1.8K
3386 godot-best-practices jwynia/agent-skills
Godot 4.x GDScript Best Practices Guide AI agents in writing high-quality GDScript code for Godot 4.x. This skill provides coding standards, architecture patterns, and templates for game development. When to Use This Skill Use this skill when: Generating new GDScript code Creating or organizing Godot scenes Designing game architecture and node hierarchies Implementing state machines, object pools, or save systems Answering questions about GDScript patterns or Godot conventions Reviewing GDSc...
1.8K
3387 element-plus-vue3 teachingai/full-stack-skills
When to use this skill Use this skill whenever the user wants to: Install and set up Element Plus in a Vue 3 project Use Element Plus components in Vue 3 applications Configure Element Plus (global config, i18n, theme, etc.) Use form components (Button, Input, Form, etc.) Use data display components (Table, Card, etc.) Use feedback components (Message, Notification, Dialog, etc.) Use navigation components (Menu, Tabs, etc.) Customize component styles and themes Handle component events Understa...
1.8K
3388 tailwindcss-animations josiahsiegel/claude-plugin-marketplace
Tailwind CSS Animations & Transitions Built-in Animations Spin Continuous rotation for loading indicators: <svg class="animate-spin h-5 w-5 text-blue-500" viewBox="0 0 24 24"> <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4" /> <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z" /> </svg> Ping Radar-style pulse for notifications: <span class="relative flex h-3 w-3"> <span class="animate-ping absolute inli...
1.8K
3389 c-level-advisor alirezarezvani/claude-skills
C-Level Advisory Ecosystem A complete virtual board of directors for founders and executives. Quick Start 1. Run /cs:setup → creates company-context.md (all agents read this) 2. Ask any strategic question → Chief of Staff routes to the right role 3. For big decisions → /cs:board triggers a multi-role board meeting What's Included 10 C-Suite Roles CEO, CTO, COO, CPO, CMO, CFO, CRO, CISO, CHRO, Executive Mentor 6 Orchestration Skills Founder Onboard, Chief of Staff (router), Board Meeting, Decisio...
1.8K
3390 product-skills alirezarezvani/claude-skills
Product Team Skills 8 production-ready product skills covering product management, UX/UI design, and SaaS development. Quick Start Claude Code /read product-team/product-manager-toolkit/SKILL.md Codex CLI npx agent-skills-cli add alirezarezvani/claude-skills/product-team Skills Overview Skill Folder Focus Product Manager Toolkit product-manager-toolkit/ RICE prioritization, customer discovery, PRDs Agile Product Owner agile-product-owner/ User stories, sprint planning, backlog Product Strategist...
1.8K
3391 pm-skills alirezarezvani/claude-skills
Project Management Skills 6 production-ready project management skills with Atlassian MCP integration. Quick Start Claude Code /read project-management/jira-expert/SKILL.md Codex CLI npx agent-skills-cli add alirezarezvani/claude-skills/project-management Skills Overview Skill Folder Focus Senior PM senior-pm/ Portfolio management, risk analysis, resource planning Scrum Master scrum-master/ Velocity forecasting, sprint health, retrospectives Jira Expert jira-expert/ JQL queries, workflows, autom...
1.8K
3392 excel analysis davila7/claude-code-templates
Excel Analysis Quick start Read Excel files with pandas: import pandas as pd Read Excel file df = pd . read_excel ( "data.xlsx" , sheet_name = "Sheet1" ) Display first few rows print ( df . head ( ) ) Basic statistics print ( df . describe ( ) ) Reading multiple sheets Process all sheets in a workbook: import pandas as pd Read all sheets excel_file = pd . ExcelFile ( "workbook.xlsx" ) for sheet_name in excel_file . sheet_names : df = pd . read_excel ( excel_file , sheet_name = sheet_name ) p...
1.8K
3393 liquid-theme-standards benjaminsehl/liquid-skills
CSS, JS & HTML Standards for Shopify Liquid Themes Core Principles Progressive enhancement — semantic HTML first, CSS second, JS third No external dependencies — native browser APIs only for JavaScript Design tokens — never hardcode colors, spacing, or fonts BEM naming — consistent class naming throughout Defensive CSS — handle edge cases gracefully CSS in Liquid Themes Where CSS Lives Location Liquid? Use For {% stylesheet %} No Component-scoped styles (one per file) {% style %} Yes Dynamic val...
1.8K
3394 vue-options-api-best-practices hyf0/vue-skills
Vue.js Options API best practices, TypeScript integration, and common gotchas. TypeScript Need to enable TypeScript type inference for component properties → See ts-options-api-use-definecomponent Enabling type safety for Options API this context → See ts-strict-mode-options-api Using old TypeScript versions with prop validators → See ts-options-api-arrow-functions-validators Event handler parameters need proper type safety → See ts-options-api-type-event-handlers Need to type object or array pr...
1.8K
3395 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...
1.8K
3396 ios-device-automation web-infra-dev/midscene-skills
iOS Device Automation CRITICAL RULES — VIOLATIONS WILL BREAK THE WORKFLOW: Never run midscene commands in the background. Each command must run synchronously so you can read its output (especially screenshots) before deciding the next action. Background execution breaks the screenshot-analyze-act loop. Run only one midscene command at a time. Wait for the previous command to finish, read the screenshot, then decide the next action. Never chain multiple commands together. Allow enough time for ea...
1.8K
3397 automate-whatsapp gokapso/agent-skills
Use this skill to build and run WhatsApp automations: workflow CRUD, graph edits, triggers, executions, function management, app integrations, and D1 database operations. Setup Env vars: - `KAPSO_API_BASE_URL` (host only, no `/platform/v1`) - `KAPSO_API_KEY` How to Edit a workflow graph - Fetch graph: `node scripts/get-graph.js <workflow_id>` (note the `lock_version`) - Edit the JSON (see graph rules below) - Validate: `node scripts/validate-graph.js --definition-file <path>` - Upda...
1.8K
3398 opentwitter 6551team/opentwitter-mcp
Twitter/X Data Skill Query Twitter/X data from the 6551 platform REST API. All endpoints require a Bearer token via $TWITTER_TOKEN . Get your token : https://6551.io/mcp Base URL : https://ai.6551.io Authentication All requests require the header: Authorization: Bearer $TWITTER_TOKEN Twitter Operations 1. Get Twitter User Info Get user profile by username. curl -s -X POST "https://ai.6551.io/open/twitter_user_info" \ -H "Authorization: Bearer $TWITTER_TOKEN " \ -H "Content-Type: application/json...
1.8K
3399 metadata-optimization eronred/aso-skills
Metadata Optimization You are an expert ASO copywriter who specializes in crafting App Store metadata that maximizes both search visibility and conversion rate. Your goal is to write metadata that ranks for target keywords while compelling users to download. Initial Assessment Check for app-marketing-context.md — read it for positioning and target audience Ask for the App ID (to see current metadata) Ask for target keywords (or suggest running keyword-research first) Ask for platform (iOS / Andr...
1.8K
3400 jackyshen-gen-short-video-script mebusw/awesome-jackyshen-skills
Short Video Script Generator Generate platform-optimized short video scripts that capture attention, deliver value quickly, and encourage engagement. Script Structure by Duration Ultra-Short (15-30s) Hook (3s) → Content (20s) → CTA (2s) Standard (30-60s) Hook (3-5s) → Problem (5-10s) → Solution (15-30s) → Proof (5-10s) → CTA (3-5s) Extended (1-3min) Hook (5s) → Problem (10s) → Solution (60-120s) → Proof (15s) → Application (20s) → CTA (5s) Hook Formulas Type Formula Example Provocative "You thin...
1.8K