███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 12751 | adding-memory | volcengine/openviking |
OpenViking (OV) add-memory The ov add-memory command adds long persistant memory — turning text and structured conversations into searchable, retrievable memories in the OpenViking context database. When to Use After learning something worth remembering across sessions To persist conversation insights, decisions, or findings To build up a knowledge base from interactions When an agent wants to store context for future retrieval Input Modes choose wisely between plain text and multi-turn mode. Mu...
|
58 |
| 12752 | livewire-development | laravel/boost |
Livewire Development When to Apply Activate this skill when: Creating or modifying Livewire components Using wire: directives (model, click, loading, sort, intersect) Implementing islands or async actions Writing Livewire component tests Documentation Use search-docs for detailed Livewire 4 patterns and documentation. Basic Usage Creating Components Single-file component (default in v4) {{ $assist->artisanCommand('make:livewire create-post') }} Multi-file component {{ $assist->artisanCommand('ma...
|
58 |
| 12753 | vercel-react-native-skills | vercel-labs/claude-skills |
React Native Skills Comprehensive best practices for React Native and Expo applications. Contains rules across multiple categories covering performance, animations, UI patterns, and platform-specific optimizations. When to Apply Reference these guidelines when: Building React Native or Expo apps Optimizing list and scroll performance Implementing animations with Reanimated Working with images and media Configuring native modules or fonts Structuring monorepo projects with native dependencies Rul...
|
58 |
| 12754 | umbraco-collection-action | umbraco/umbraco-cms-backoffice-skills |
Umbraco Collection Action What is it? Collection Actions are buttons that appear in a collection's toolbar, providing actions that can be performed on the collection as a whole (not on individual items - those are Entity Bulk Actions). Common examples include "Create New" buttons or export functionality. Actions can either execute code or navigate to a URL. Documentation Always fetch the latest docs before implementing: Main docs : https://docs.umbraco.com/umbraco-cms/customizing/extending-overv...
|
58 |
| 12755 | umbraco-tiptap-statusbar-extension | umbraco/umbraco-cms-backoffice-skills |
Umbraco Tiptap Statusbar Extension What is it? A Tiptap Statusbar Extension adds components to the status bar at the bottom of the Rich Text Editor. Common uses include showing element path (breadcrumb navigation), word count, character count, or other editor state information. Unlike toolbar extensions, statusbar extensions are purely visual/informational elements. Documentation Always fetch the latest docs before implementing: Extension Types : https://docs.umbraco.com/umbraco-cms/customizing/...
|
58 |
| 12756 | vibe-build | khazp/vibe-coding-prompt-template |
You are the build agent for the vibe-coding workflow. This is Step 5 - the final step where you build the actual MVP. Your Role Execute the plan in AGENTS.md to build the MVP incrementally, testing after each feature. Prerequisites Check for required files: - `AGENTS.md` - REQUIRED (master plan) - `agent_docs/` directory - REQUIRED (detailed specs) - `docs/PRD-*.md` - Reference for requirements - `docs/TechDesign-*.md` - Reference for implementation If missing, suggest running `/vibe-...
|
58 |
| 12757 | vue-test-utils-skilld | harlan-zw/vue-ecosystem-skills |
vuejs/test-utils @vue/test-utils Version: 2.4.6 (May 2024) Deps: js-beautify@^1.14.9, vue-component-type-helpers@^2.0.0 Tags: latest: 2.4.6 (May 2024), 2.0.0-alpha.0: 2.0.0-alpha.0 (Apr 2020), 2.0.0-alpha.1: 2.0.0-alpha.1 (Apr 2020), 2.0.0-alpha.2: 2.0.0-alpha.2 (Apr 2020), 2.0.0-alpha.3: 2.0.0-alpha.3 (Apr 2020), 2.0.0-alpha.4: 2.0.0-alpha.4 (May 2020), next: 2.4.0-alpha.2 (Jun 2023), 2.0.0-alpha.8: 2.0.0-alpha.8 (Jul 2020), 2.0.0-beta.1: 2.0.0-beta.1 (Aug 2020), 2.0.0-beta.2: 2.0.0-beta.2 (Aug...
|
58 |
| 12758 | skill-creator | oimiragieo/agent-studio |
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
|
58 |
| 12759 | browser | danielmiessler/personal_ai_infrastructure |
Browser Automation Automate browser interactions using the browse CLI with Claude. Setup check Before running any browser commands, verify the CLI is available: which browse || npm install -g @browserbasehq/browse-cli Environment Selection (Local vs Remote) The CLI automatically selects between local and remote browser environments based on available configuration: Local mode (default) Uses local Chrome — no API keys needed Best for: development, simple pages, trusted sites with no bot protectio...
|
58 |
| 12760 | workers-performance | secondsky/claude-skills |
Techniques for maximizing Worker performance and minimizing latency. Quick Wins ``` // 1. Avoid unnecessary cloning // ❌ Bad: Clones entire request const body = await request.clone().json(); // ✅ Good: Parse directly when not re-using body const body = await request.json(); // 2. Use streaming instead of buffering // ❌ Bad: Buffers entire response const text = await response.text(); return new Response(transform(text)); // ✅ Good: Stream transformation return new Response(response.body.pip...
|
58 |
| 12761 | expo-framework-rule | oimiragieo/agent-studio |
Expo Framework Rule Skill Expo SDK Features and APIs Core Expo Modules FileSystem: import * as FileSystem from 'expo-file-system' ; // Read file const content = await FileSystem . readAsStringAsync ( FileSystem . documentDirectory + 'file.txt' ) ; // Download file const download = await FileSystem . downloadAsync ( 'https://example.com/file.pdf' , FileSystem . documentDirectory + 'file.pdf' ) ; Camera: import { CameraView , useCameraPermissions } from 'expo-camera' ; function CameraScreen ( ) { ...
|
58 |
| 12762 | emotional-narrative | dylantarre/animation-principles |
Emotional Narrative Think like a storyteller who draws. Every movement is a sentence. Every pause is punctuation. You're not animating shapes—you're animating feelings. Core Mental Model Before animating anything, ask: What does the audience need to feel right now? The same walk cycle can convey confidence, defeat, nervousness, or joy. Motion is emotion made visible. The 12 Principles Through Emotion Anticipation — The breath before the confession. Anticipation isn't just physical preparat...
|
58 |
| 12763 | creative-frontend-aesthetics | seika139/dotfiles |
Creative Frontend Aesthetics Skill あなたは、統計的にありがちな「AIが生成したっぽい」デザイン(AI slop)から脱却し、ユーザーを驚かせ、喜ばせる独創的なフロントエンドを構築しなければなりません。 重点項目 1. タイポグラフィ 美しく、ユニークで、興味を惹くフォントを選択してください。 回避: Arial, Inter などの汎用フォント。 推奨: フロントエンドの美学を高める特徴的なフォント。 2. カラー & テーマ 一貫した美学(Cohesive aesthetic)を徹底してください。 CSS変数を使用して一貫性を保ち、ぼやけた配色ではなく「強い主色 + 鋭いアクセント」の構成を優先します。 インスピレーション: IDEのテーマ、文化的な美学(サイバーパンク、レトロ、北欧モダンなど)から着想を得てください。 3. モーション (動き) 効果的なアニメーションとマイクロインタラクションを導入します。 HTMLの場合はCSSのみの解決策を、Reactの場合は framer-motion 等のライブラリを優先してください。 戦略: 散発的な動...
|
58 |
| 12764 | jest-testing | pluginagentmarketplace/custom-plugin-nodejs |
Jest Testing Skill Master testing Node.js applications with Jest - the delightful JavaScript testing framework. Quick Start Test in 3 steps: Install - npm install --save-dev jest supertest Write Test - Create *.test.js files Run - npm test Core Concepts Basic Test Structure // sum.test.js const sum = require('./sum'); describe('sum function', () => { test('adds 1 + 2 to equal 3', () => { expect(sum(1, 2)).toBe(3); }); test('adds negative numbers', () => { expect(sum(-1, -2))....
|
58 |
| 12765 | shadcn-vue | noartem/skills |
shadcn-vue Quick Start (3 Minutes) For Vue Projects (Vite) 1. Initialize shadcn-vue npx shadcn-vue@latest init During initialization: Style: New York or Default (cannot change later!) Base color: Slate (recommended) CSS variables: Yes (required for dark mode) 2. Configure TypeScript Path Aliases // tsconfig.json { "compilerOptions": { "baseUrl": ".", "paths": { "@/*": ["./src/*"] } } } 3. Configure Vite // vite.config.ts import { defineConfig } from "vite"; import vue f...
|
58 |
| 12766 | reportlab | ovachiever/droid-tings |
ReportLab PDF Generation Overview ReportLab is a powerful Python library for programmatic PDF generation. Create anything from simple documents to complex reports with tables, charts, images, and interactive forms. Two main approaches: Canvas API (low-level): Direct drawing with coordinate-based positioning - use for precise layouts Platypus (high-level): Flowing document layout with automatic page breaks - use for multi-page documents Core capabilities: Text with rich formatting and custom...
|
58 |
| 12767 | product-marketing | dengineproblem/agents-monorepo |
Product Marketing Manager Expertise in go-to-market strategy, positioning, messaging, and product launches. Positioning Framework positioning_statement : template : | For [target customer] Who [statement of need] [Product] is a [category] That [key benefit] Unlike [competitor] Our product [differentiation] example : | For B2B SaaS marketing teams Who need to attribute revenue to marketing efforts, AttributeIQ is a marketing attribution platform That provides full-funnel visibility Unlike legacy ...
|
58 |
| 12768 | neon-postgres-egress-optimizer | neondatabase/agent-skills |
Postgres Egress Optimizer Guide the user through diagnosing and fixing application-side query patterns that cause excessive data transfer (egress) from their Postgres database. Most high egress bills come from the application fetching more data than it uses. Step 1: Diagnose Identify which queries transfer the most data. The primary tool is the pg_stat_statements extension. Check if pg_stat_statements is available SELECT 1 FROM pg_stat_statements LIMIT 1 ; If this errors, the extension needs to ...
|
58 |
| 12769 | dojo-model | dojoengine/book |
Dojo Model Generation Create Dojo models that define your game's state using Entity Component System (ECS) patterns. When to Use This Skill "Add a Position model" "Create a Player entity with health and level" "Generate an Inventory model" "Define a model for [game concept]" What This Skill Does Generates Cairo model structs with: [dojo::model] attribute Required trait derivations ( Drop , Serde ) Key field configuration ( [key] ) Field types appropriate to your data Quick Start Interactive mode...
|
58 |
| 12770 | csrf-protection | secondsky/claude-skills |
CSRF Protection Overview Implement comprehensive Cross-Site Request Forgery protection using synchronizer tokens, double-submit cookies, SameSite cookie attributes, and custom headers. When to Use Form submissions State-changing operations Authentication systems Payment processing Account management Any POST/PUT/DELETE requests Implementation Examples 1. Node.js/Express CSRF Protection // csrf-protection.js const crypto = require('crypto'); const csrf = require('csurf'); class CSRFProtection ...
|
58 |
| 12771 | yaml-config-validator | jeremylongshore/claude-code-plugins-plus-skills |
Yaml Config Validator Purpose This skill provides automated assistance for yaml config validator tasks within the DevOps Basics domain. When to Use This skill activates automatically when you: Mention "yaml config validator" in your request Ask about yaml config validator patterns or best practices Need help with foundational devops skills covering version control, containerization, basic ci/cd, and infrastructure fundamentals. Capabilities Provides step-by-step guidance for yaml config vali...
|
58 |
| 12772 | answers | brave/brave-search-skills |
Answers — AI Grounding Requires API Key : Get one at https://api.search.brave.com Plan : Included in the Answers plan. See https://api-dashboard.search.brave.com/app/subscriptions/subscribe When to Use Use Case Skill Why Quick factual answer (raw context) llm-context Single search, returns raw context for YOUR LLM Fast AI answer with citations answers (single-search) streaming, citations Thorough multi-search deep research answers (research mode) Iterative deep research, synthesized cited answer...
|
58 |
| 12773 | umbraco-unit-testing | umbraco/umbraco-cms-backoffice-skills |
Umbraco Unit Testing What is it? Unit testing for Umbraco backoffice extensions using @open-wc/testing - a testing framework designed for Web Components and Lit elements. This is the fastest and most isolated testing approach. When to Use Testing context logic and state management Testing Lit element rendering and shadow DOM Testing observable subscriptions and state changes Testing controllers and utility functions Fast feedback during development
|
58 |
| 12774 | domain-dns-ops | steipete/agent-scripts |
Domain/DNS Ops (Peter) This skill is a thin router: use ~/Projects/manager as truth, run the repo scripts, follow the checklists. Source of truth (read first) ~/Projects/manager/DOMAINS.md (domain -> target map; registrar hints; exclusions) ~/Projects/manager/DNS.md (Cloudflare onboarding + DNS/redirect checklist) ~/Projects/manager/redirect-worker.ts + ~/Projects/manager/redirect-worker-mapping.md (worker redirects) Golden path (new vanity domain -> Cloudflare -> redirect) Decide routing mode...
|
58 |
| 12775 | chatbot designer | eddiebe147/claude-settings |
Chatbot Designer Design conversational AI chatbots with optimal flows and user experience When to Use This Skill Use this skill when you need to: Automate workflows and processes Integrate tools and systems Optimize technical operations Not recommended for: Tasks requiring creative content manual processes Quick Reference Action Command/Trigger Create chatbot designer chatbot design Review and optimize review chatbot designer Get best practices chatbot designer best practices Core Workflows Work...
|
58 |
| 12776 | umbraco-conditions | umbraco/umbraco-cms-backoffice-skills |
Umbraco Conditions What is it? Extension Conditions enable developers to declare requirements that must be met before an extension becomes available in the backoffice. They function as gatekeeping mechanisms controlling when and where extensions appear based on context like section, workspace, user permissions, or content type. Multiple conditions use AND logic—all must pass for the extension to display. Documentation Always fetch the latest docs before implementing: Main docs : https://docs.umb...
|
58 |
| 12777 | cloud-aliyun-ecs | teachingai/full-stack-skills |
When to use this skill Use this skill whenever the user wants to: [待完善:根据具体工具添加使用场景] How to use this skill [待完善:根据具体工具添加使用指南] Best Practices [待完善:根据具体工具添加最佳实践] Keywords [待完善:根据具体工具添加关键词]
|
58 |
| 12778 | defender-for-devops | josiahsiegel/claude-plugin-marketplace |
🚨 CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes (\) in file paths, NOT forward slashes (/). Examples: ❌ WRONG: D:/repos/project/file.tsx ✅ CORRECT: D:\repos\project\file.tsx This applies to: Edit tool file_path parameter Write tool file_path parameter All file operations on Windows systems Documentation Guidelines NEVER create new documentation files unless ...
|
58 |
| 12779 | concept-mastery-validator | jorgealves/agent_skills |
Concept Mastery Validator Purpose and Intent The concept-mastery-validator is a quality assurance tool for educators and mentors. It ensures that the learning journey is logically sound and that students are not asked to perform tasks for which they haven't yet received foundational training. When to Use Curriculum Auditing : Run this after designing a new module to ensure the learning objectives match the suggested projects. Project Refinement : Use this to identify if a project is too difficul...
|
58 |
| 12780 | code-quality-principles | athola/claude-night-market |
Table of Contents KISS (Keep It Simple, Stupid) YAGNI (You Aren't Gonna Need It) SOLID Principles Quick Reference When Principles Conflict Integration with Code Review Code Quality Principles Guidance on KISS, YAGNI, and SOLID principles with language-specific examples. KISS (Keep It Simple, Stupid) Principle: Avoid unnecessary complexity. Prefer obvious solutions over clever ones. Guidelines Prefer Avoid Simple conditionals Complex regex for simple checks Explicit code Magic numbers/strings...
|
58 |
| 12781 | hig-components-menus | raintree-technology/apple-hig-skills |
Apple HIG: Menus and Buttons Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered. Key Principles Menus should be contextual and predictable. Standard items in standard locations. Follow platform conventions for ordering and grouping. Use standard button styles. System-defined styles communicate affordance and maintain visual consistency. Prefer them over custom designs. Toolbars for frequent actions. Most common...
|
58 |
| 12782 | cli-builder | eddiebe147/claude-settings |
CLI Builder Skill Overview This skill helps you build professional command-line interfaces with excellent user experience. Covers argument parsing, interactive prompts, progress indicators, colored output, and cross-platform compatibility. CLI Design Philosophy Principles of Good CLI Design Predictable: Follow conventions users expect Helpful: Provide clear help text and error messages Composable: Work well with pipes and other tools Forgiving: Accept common variations in input Design Guidelin...
|
58 |
| 12783 | create-meta-prompts | glittercowboy/taches-cc-resources |
Every execution produces a SUMMARY.md for quick human scanning without reading full outputs. Each prompt gets its own folder in .prompts/ with its output artifacts, enabling clear provenance and chain detection. <quick_start> Intake: Determine purpose (Do/Plan/Research/Refine), gather requirements Chain detection: Check for existing research/plan files to reference Generate: Create prompt using purpose-specific patterns Save: Create folder in .prompts/{number}-{topic}-{purpose}/ Present: Show...
|
58 |
| 12784 | mcp-builder | shipshitdev/library |
MCP Server Development Guide Overview Create MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks. Process 🚀 High-Level Workflow Creating a high-quality MCP server involves four main phases: Phase 1: Deep Research and Planning 1.1 Understand Modern MCP Design API Coverage vs. Workflow Tools: Balance comprehensive API endpoint coverag...
|
58 |
| 12785 | pnpm-upgrade | openai/openai-agents-js |
Use these steps to update pnpm and CI pins without blunt search/replace. Steps (run from repo root) - Update pnpm locally Try `pnpm self-update`; if pnpm is missing or self-update fails, run `corepack prepare pnpm@latest --activate`. - Capture the resulting version as `PNPM_VERSION=$(pnpm -v)`. - Align package.json Open `package.json` and set `packageManager` to `pnpm@${PNPM_VERSION}` (preserve trailing newline and formatting). - Find latest pnpm/action-setup tag Query GitHub API: `c...
|
58 |
| 12786 | chroma | orchestra-research/ai-research-skills |
Chroma - Open-Source Embedding Database The AI-native database for building LLM applications with memory. When to use Chroma Use Chroma when: Building RAG (retrieval-augmented generation) applications Need local/self-hosted vector database Want open-source solution (Apache 2.0) Prototyping in notebooks Semantic search over documents Storing embeddings with metadata Metrics: 24,300+ GitHub stars 1,900+ forks v1.3.3 (stable, weekly releases) Apache 2.0 license Use alternatives instead: Pin...
|
58 |
| 12787 | controller-setup | cartridge-gg/docs |
Controller Setup Cartridge Controller is a gaming-focused smart contract wallet for Starknet with session keys, passkeys, and paymaster support. Installation Basic Controller usage pnpm add @cartridge/controller starknet With framework connectors (React, native apps) pnpm add @cartridge/controller @cartridge/connector starknet Quick Start import Controller from "@cartridge/controller" ; const controller = new Controller ( ) ; const account = await controller . connect ( ) ; // Ready to execute...
|
58 |
| 12788 | memory-hygiene | sundial-org/awesome-openclaw-skills |
Memory Hygiene Keep vector memory lean. Prevent token waste from junk memories. Quick Commands Audit: Check what's in memory memory_recall query="*" limit=50 Wipe: Clear all vector memory rm -rf ~/.clawdbot/memory/lancedb/ Then restart gateway: clawdbot gateway restart Reseed: After wipe, store key facts from MEMORY.md memory_store text="<fact>" category="preference|fact|decision" importance=0.9 Config: Disable Auto-Capture The main source of junk is autoCapture: true . Disable it: { "plugins" :...
|
58 |
| 12789 | umbraco-granular-user-permissions | umbraco/umbraco-cms-backoffice-skills |
Umbraco Granular User Permissions What is it? Granular User Permissions allow you to create custom permission controls for specific entity types in Umbraco. Unlike general entity permissions that apply to all instances, granular permissions can be configured per-entity, allowing fine-grained access control. This is commonly used for document permissions where different users can have different permissions on different content nodes. Documentation Always fetch the latest docs before implementing:...
|
58 |
| 12790 | add-vault-note | tradingstrategy-ai/web3-ethereum-defi |
Add vault note This skill adda s human readable note to a specific vault in the database. Required inputs Before starting, gather the following information from the user: Vault smart contract address - The address of an example vault contract on a blockchain Message: A human readable message Flags (optional): Flags from VaultFlag enum - if not given set to None 1. Resolve vault name Can be resolved from https://top-defi-vaults.tradingstrategy.ai/top_vaults_by_chain.json JSON file It's a li...
|
58 |
| 12791 | tiktok creator | eddiebe147/claude-settings |
TikTok Creator Master TikTok trends, create viral hooks, and optimize content for the algorithm When to Use This Skill Use this skill when you need to: Create compelling written content Develop clear messaging and communication Structure information effectively Not recommended for: Tasks requiring technical implementation complex data analysis Quick Reference Action Command/Trigger Create tiktok creator tiktok content Review and optimize review tiktok creator Get best practices tiktok creator be...
|
58 |
| 12792 | bun next.js | secondsky/claude-skills |
Run Next.js applications with Bun for faster development and builds. Quick Start ``` Create new Next.js project with Bun bunx create-next-app@latest my-app cd my-app Install dependencies bun install Development bun run dev Build bun run build Production bun run start ``` Project Setup package.json ``` { "scripts": { "dev": "next dev --turbo", "build": "next build", "start": "next start", "lint": "next lint" }, "dependencies": { "next": "^16.1.1", "...
|
58 |
| 12793 | godot-resource-data-patterns | thedivergentai/gd-agentic-skills |
Resource & Data Patterns Resource-based design, typed arrays, and serialization define reusable, inspector-friendly data structures. Available Scripts data_factory_resource.gd Expert resource factory with type validation and batch instantiation. resource_pool.gd Object pooling for Resource instances - reduces allocation overhead in hot paths. resource_validator.gd Validates Resource files for missing exports and configuration issues. MANDATORY - For Data Systems : Read data_factory_resource.gd b...
|
58 |
| 12794 | json-schema-validator | dkyazzentwatwa/chatgpt-skills |
Validate JSON documents against JSON Schema (Draft 7) specifications. Features - Schema Validation: Validate JSON against schema - Error Details: Detailed validation error messages - Batch Validation: Validate multiple files - Schema Generation: Generate schema from examples - Multiple Drafts: Support for Draft 4, 6, 7 Quick Start ``` from json_validator import JSONValidator validator = JSONValidator() Validate data against schema schema = { "type": "object", "properties": {...
|
58 |
| 12795 | task-status | addozhang/openclaw-forge |
Task Status Skill Quick Start Manual Status Updates python scripts/send_status.py "Starting data fetch..." "progress" "step1" python scripts/send_status.py "Processing complete" "success" "final" python scripts/send_status.py "Error: Missing API key" "error" "auth" Automatic Periodic Monitoring (Every 5 seconds) Start monitoring a long-running task python scripts/monitor_task.py start "My Long Task" "processing" Monitor will send "Still working..." updates every 5 seconds When task completes,...
|
58 |
| 12796 | summarize | nkchivas/openclaw-skill-summarize |
Turn “things” (URLs, PDFs, Word docs, PowerPoints, HTML pages, text files, etc.) into Markdown so they can be inspected/quoted/processed like normal text. markitdown can fetch URLs by itself; this skill mainly wraps it to make saving + summarizing convenient. For PDF inputs, use the markitdown[pdf] extra (or the wrapper below, which now does this automatically). When to use Use this skill when you need to: pull down a web page as a document-like Markdown representation convert binary docs (PDF/D...
|
58 |
| 12797 | midjourney-prompt-engineering | justinperea/midjourney-cc-skill |
Midjourney Prompt Learning System A skill that knows Midjourney. The foundation is a structured understanding of Midjourney V7 built from the official documentation — every parameter, prompt syntax rule, reference system, and style code mechanic. On top of that, a learning loop: each session extracts patterns from what worked and what didn't, building a knowledge base of craft that improves first-attempt quality over time. Architecture You are a multimodal reasoning model. You don't need pipelin...
|
58 |
| 12798 | docs-sync | openai/openai-agents-js |
Docs Sync Overview Identify doc coverage gaps and inaccuracies by comparing main branch features and configuration options against the current docs structure, then propose targeted improvements. Workflow Confirm scope and base branch Identify the current branch and default branch (usually main ). Prefer analyzing the current branch to keep work aligned with in-flight changes. If the current branch is not main , analyze only the diff vs main to scope doc updates. Avoid switching branches if it wo...
|
58 |
| 12799 | process-substitution-fifos | josiahsiegel/claude-plugin-marketplace |
CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes ( \ ) in file paths, NOT forward slashes ( / ). Process Substitution & FIFOs (2025) Overview Master advanced inter-process communication patterns in bash using process substitution, named pipes (FIFOs), and efficient data streaming techniques. These patterns enable powerful data pipelines without temporary files. Proces...
|
58 |
| 12800 | ios-app-store-submission | kimny1143/claude-code-template |
iOS Local Build & Submission ローカルビルド → App Store Connect アップロード → TestFlight / 審査提出の完全ワークフロー。 基本方針 ローカルビルドをデフォルトにする (EAS Buildは使わない) EAS Free tier は月30ビルド。デバッグ反復で一瞬で溶ける EASはgit cloneベース → gitに入っていないファイルはビルドに含まれない → 事故の元 ローカルビルドはファイルシステムを直接使う → 安全・高速・無制限 Phase 0: ビルド前チェック 0.1 アプリ特定 どのアプリをビルドするか確認 ls -d */app.json → muednote-mobile/app.json, muedear/app.json 0.2 ブランチ確認 目的 ブランチ App Store 審査提出 main TestFlight テスト feature ブランチ OK git branch --show-current git status 0.3 バージョン・ビルド番号の確認 app.json から現...
|
58 |