███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 6401 | user-research-analysis | aj-geddes/useful-ai-prompts |
User Research Analysis Overview Effective research analysis transforms raw data into actionable insights that guide product development and design. When to Use Synthesis of user interviews and surveys Identifying patterns and themes Validating design assumptions Prioritizing user needs Communicating insights to stakeholders Informing design decisions Instructions 1. Research Synthesis Methods Analyze qualitative and quantitative data class ResearchAnalysis: def synthesize_interviews(self...
|
327 |
| 6402 | gitnexus-exploring | abhigyanpatwari/gitnexus |
Exploring Codebases with GitNexus When to Use "How does authentication work?" "What's the project structure?" "Show me the main components" "Where is the database logic?" Understanding code you haven't seen before Workflow 1. READ gitnexus://repos → Discover indexed repos 2. READ gitnexus://repo/{name}/context → Codebase overview, check staleness 3. gitnexus_query({query: "<what you want to understand>"}) → Find related execution flows 4. gitnexus_context({n...
|
327 |
| 6403 | newapi | quantumnous/skills |
SKILL: newapi newapi ( new-api ) is an open-source unified AI gateway platform. It aggregates multiple model providers behind OpenAI / Claude / Gemini compatible interfaces, and provides model, token, group, and balance management. Security Guidelines This skill follows these security guidelines to protect API keys: Do not expose any sk- key value in chat, files, code, logs, or command arguments. To use keys securely, tell the user to run copy-token (clipboard), apply-token (config file), or exe...
|
327 |
| 6404 | skill-creator | anthropics/financial-services-plugins |
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...
|
327 |
| 6405 | firebase-cli | supercent-io/skills-template |
firebase-cli — Firebase Command Line Interface Keyword : firebase · firebase deploy · firebase init · firebase emulators The Firebase CLI ( firebase-tools ) manages your Firebase project from the terminal: deploy, emulate, import/export data, manage users, configure services, and automate CI/CD. When to use this skill Deploy Firebase Hosting, Cloud Functions, Firestore rules/indexes, Realtime Database rules, Cloud Storage rules, Remote Config, or Extensions Set up a new Firebase project with fir...
|
326 |
| 6406 | api-security-best-practices | davila7/claude-code-templates |
API Security Best Practices Overview Guide developers in building secure APIs by implementing authentication, authorization, input validation, rate limiting, and protection against common vulnerabilities. This skill covers security patterns for REST, GraphQL, and WebSocket APIs. When to Use This Skill Use when designing new API endpoints Use when securing existing APIs Use when implementing authentication and authorization Use when protecting against API attacks (injection, DDoS, etc.) Use whe...
|
326 |
| 6407 | mlflow | davila7/claude-code-templates |
MLflow: ML Lifecycle Management Platform When to Use This Skill Use MLflow when you need to: Track ML experiments with parameters, metrics, and artifacts Manage model registry with versioning and stage transitions Deploy models to various platforms (local, cloud, serving) Reproduce experiments with project configurations Compare model versions and performance metrics Collaborate on ML projects with team workflows Integrate with any ML framework (framework-agnostic) Users: 20,000+ organization...
|
326 |
| 6408 | openspec-context-loading | forztf/open-skilled-sdd |
Discovers and loads project specifications, active changes, and requirements to provide context. Quick Start Context loading helps answer: - What specs exist in this project? - What changes are currently active? - What requirements are defined? - What capabilities does the system have? - Where is a specific feature specified? Basic pattern: Search → Read → Summarize Discovery Commands List All Specifications ``` Find all spec files find spec/specs -name "spec.md" -type f Find al...
|
326 |
| 6409 | svelte-runes | spences10/svelte-skills-kit |
Svelte Runes Quick Start Which rune? Props: $props() | Bindable: $bindable() | Computed: $derived() | Side effect: $effect() | State: $state() Key rules: Runes are top-level only. $derived can be overridden (use const for read-only). Don't mix Svelte 4/5 syntax. Objects/arrays are deeply reactive by default. Example <script> let count = $state(0); // Mutable state const doubled = $derived(count * 2); // Computed (const = read-only) $effect(() => { console.log(`Count is ${count}`); // Si...
|
326 |
| 6410 | sports-news | machina-sports/sports-skills |
Sports News Quick Start Prefer the CLI — it avoids Python import path issues: sports-skills news fetch_items --google_news --query = "Arsenal transfer" --limit = 5 sports-skills news fetch_feed --url = "https://feeds.bbci.co.uk/sport/football/rss.xml" Python SDK (alternative): from sports_skills import news articles = news . fetch_items ( google_news = True , query = "Arsenal transfer news" , limit = 10 ) feed = news . fetch_feed ( url = "https://feeds.bbci.co.uk/sport/football/rss.xml" ) Import...
|
326 |
| 6411 | nba-data | machina-sports/sports-skills |
NBA Data Before writing queries, consult references/api-reference.md for endpoints, ID conventions, and data shapes. Setup Before first use, check if the CLI is available: which sports-skills || pip install sports-skills If pip install fails with a Python version error, the package requires Python 3.10+. Find a compatible Python: python3 --version check version If < 3.10, try: python3.12 -m pip install sports-skills On macOS with Homebrew: /opt/homebrew/bin/python3.12 -m pip install sports-sk...
|
326 |
| 6412 | pr-plan | boshu2/agentops |
PR Plan Skill Strategic planning for open source contributions. Overview Create a contribution plan that bridges research and implementation. Takes $pr-research output and produces an actionable plan. Output: .agents/plans/YYYY-MM-DD-pr-plan-{repo-slug}.md When to Use : After completing $pr-research Planning contribution strategy Before starting implementation When NOT to Use : Haven't researched the repo yet Trivial contributions (fix typos) Internal project planning (use $plan ) Workflow 0. I...
|
326 |
| 6413 | seo-keyword-strategist | sickn33/antigravity-awesome-skills |
Use this skill when Working on seo keyword strategist tasks or workflows Needing guidance, best practices, or checklists for seo keyword strategist Do not use this skill when The task is unrelated to seo keyword strategist 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...
|
326 |
| 6414 | pricing | slavingia/skills |
You are a business advisor channeling the philosophy of The Minimalist Entrepreneur by Sahil Lavingia. Help the user set the right price. Core Principle Charge something. Always. There is a massive difference between free and $1. Behavioral economist Dan Ariely calls it the "zero price effect" — people will line up for free brownies but the line disappears when you charge even 1 cent. If you don't charge, you can't stay alive, and you can't learn what customers actually value. Two Pricing Models...
|
326 |
| 6415 | internationalization-i18n | aj-geddes/useful-ai-prompts |
Internationalization (i18n) & Localization Overview Comprehensive guide to implementing internationalization and localization in applications. Covers message translation, pluralization, date/time/number formatting, RTL languages, and integration with popular i18n libraries. When to Use Building multi-language applications Supporting international users Implementing language switching Formatting dates, times, and numbers for different locales Supporting RTL (right-to-left) languages Extracting ...
|
326 |
| 6416 | shorts-script-personality | outscal/video-generator |
You are an expert short-form video script writer who generates viral-ready, personality-driven scripts for YouTube Shorts and Instagram Reels while strictly avoiding AI-generated writing cliches. 🚨 CRITICAL: This skill works for ANY topic - tech, science, finance, health, culture, etc. The examples may be gaming-focused (from the original dataset), but the STYLE applies universally. Always match the topic from your research. Input Parameters You will receive: - Approved Angle: The angle pro...
|
326 |
| 6417 | mapbox-mcp-devkit-patterns | mapbox/mapbox-agent-skills |
Mapbox MCP DevKit Patterns This skill provides patterns for integrating the Mapbox MCP DevKit Server into AI coding workflows to accelerate Mapbox application development. What is Mapbox MCP DevKit? The Mapbox MCP DevKit Server is a Model Context Protocol (MCP) server that gives AI assistants direct access to Mapbox developer APIs: Style management - Create, list, update, delete, preview, validate, compare, and optimize styles Token management - Generate and list access tokens with scopes Valida...
|
326 |
| 6418 | pptx | appautomaton/document-skills |
PPTX Skill Quick Reference Task Guide Read/analyze content python -m markitdown presentation.pptx Edit or create from template Read editing.md Create from scratch Read pptxgenjs.md Reading Content Text extraction python -m markitdown presentation.pptx Visual overview python scripts/thumbnail.py presentation.pptx Raw XML python scripts/office/unpack.py presentation.pptx unpacked/ Editing Workflow Read editing.md for full details. Analyze template with thumbnail.py Unpack → manipulate slides → ...
|
326 |
| 6419 | nz-business-english | jezweb/claude-skills |
NZ Business English Professional but approachable. Warm without being over-the-top. Inclusive by default. Write like a competent Kiwi professional -- not like an Australian pretending to be from New Zealand, not like someone who just discovered Te Reo, and not like a corporate drone. NZ English is close to Australian English in spelling and register, but softer in tone, more collaborative in framing, and increasingly incorporates Te Reo Maori in everyday business use. Spelling (EN-NZ) EN-NZ foll...
|
326 |
| 6420 | pocketbase-best-practices | greendesertsnow/pocketbase-skills |
PocketBase Best Practices 42 rules across 8 categories for PocketBase v0.36+, prioritized by impact. When to Apply Designing collections and schema structures Implementing API rules for access control Setting up authentication (password, OAuth2, MFA) Using the PocketBase JavaScript SDK Optimizing queries with filtering, sorting, and expansion Implementing realtime subscriptions Handling file uploads and storage Deploying PocketBase to production Categories by Priority Priority Category Impact ...
|
326 |
| 6421 | clean-data-xls | anthropics/financial-services-plugins |
Clean Data Clean messy data in the active sheet or a specified range. Environment If running inside Excel (Office Add-in / Office JS): Use Office JS directly ( Excel.run(async (context) => {...}) ). Read via range.values , write helper-column formulas via range.formulas = [["=TRIM(A2)"]] . The in-place vs helper-column decision still applies. If operating on a standalone .xlsx file: Use Python/openpyxl. Workflow Step 1: Scope If a range is given (e.g. A1:F200 ), use it Otherwise use the full use...
|
326 |
| 6422 | wiki-export | ar9av/obsidian-wiki |
Wiki Export — Knowledge Graph Export You are exporting the wiki's wikilink graph to structured formats so it can be used in external tools (Gephi, Neo4j, custom scripts, browser visualization). Before You Start Read .env to get OBSIDIAN_VAULT_PATH Confirm the vault has pages to export — if fewer than 5 pages exist, warn the user and stop Visibility Filter (optional) By default, all pages are exported regardless of visibility tags. This preserves existing behavior. If the user requests a filtered...
|
326 |
| 6423 | kibana-audit | elastic/agent-skills |
Kibana Audit Logging Enable and configure audit logging for Kibana via kibana.yml . Kibana audit logs cover application-layer security events that Elasticsearch does not see: saved object CRUD (dashboards, visualizations, index patterns, rules, cases), login/logout, session expiry, space operations, and Kibana-level RBAC enforcement. For Elasticsearch audit logging (authentication failures, access grants/denials, security config changes), see elasticsearch-audit . For authentication and API key ...
|
325 |
| 6424 | ui-visual-validator | sickn33/antigravity-awesome-skills |
Use this skill when Working on ui visual validator tasks or workflows Needing guidance, best practices, or checklists for ui visual validator Do not use this skill when The task is unrelated to ui visual validator 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...
|
325 |
| 6425 | datadog-cli | softaworks/agent-toolkit |
Datadog CLI A CLI tool for AI agents to debug and triage using Datadog logs and metrics. Required Reading You MUST read the relevant reference docs before using any command: Log Commands Metrics Query Syntax Workflows Dashboards Setup Environment Variables (Required) export DD_API_KEY = "your-api-key" export DD_APP_KEY = "your-app-key" Get keys from: https://app.datadoghq.com/organization-settings/api-keys Running the CLI npx @leoflores/datadog-cli < command > For non-US Datadog sites, use --sit...
|
325 |
| 6426 | fact-check | jwynia/agent-skills |
Fact-Check Skill Systematic verification of claims in generated content. Designed to catch hallucinations, confabulations, and unsupported assertions. Why Separate Passes Matter The Fundamental Problem: LLMs generate plausible-sounding content by predicting what should come next. This same mechanism produces hallucinations—confident statements that feel true but aren't. An LLM in generation mode cannot reliably catch its own hallucinations because: Attention is on generation , not verification C...
|
325 |
| 6427 | compose-expert | vitorpamplona/amethyst |
Compose Multiplatform Expert Visual UI patterns for sharing composables across Android and Desktop. When to Use This Skill Creating or refactoring shared UI components Deciding whether to share UI in commonMain or keep platform-specific Building custom ImageVector icons (robohash pattern) State management: remember, derivedStateOf, produceState Recomposition optimization: visual usage of @Stable/@Immutable Material3 theming and styling Performance: lazy lists, image loading Delegate to other ...
|
325 |
| 6428 | legal-advisor | sickn33/antigravity-awesome-skills |
Legal Advisor You are a legal advisor specializing in technology law, privacy regulations, and compliance documentation. Focus Areas Privacy policies (GDPR, CCPA, LGPD compliant) Terms of service and user agreements Cookie policies and consent management Data processing agreements (DPA) Disclaimers and liability limitations Intellectual property notices SaaS/software licensing terms E-commerce legal requirements Email marketing compliance (CAN-SPAM, CASL) Age verification and children's privac...
|
325 |
| 6429 | css | mindrally/skills |
CSS Development Guidelines Core Principles Write semantic HTML to improve accessibility and SEO Use CSS for styling, avoiding inline styles Ensure responsive design using media queries and flexible layouts Prioritize external stylesheets over inline or embedded styles Layout Techniques Flexbox Use Flexbox for one-dimensional layouts (rows or columns) Leverage justify-content and align-items for alignment Use flex-wrap for responsive wrapping behavior Prefer gap property over margins for consiste...
|
325 |
| 6430 | react-code-review | giuseppe-trisciuoglio/developer-kit |
React Code Review Overview This skill provides structured, comprehensive code review for React applications. It evaluates code against React 19 best practices, component architecture patterns, hook usage, accessibility standards, and production-readiness criteria. The review produces actionable findings categorized by severity (Critical, Warning, Suggestion) with concrete code examples for improvements. This skill delegates to the react-software-architect-review agent for deep architectural anal...
|
325 |
| 6431 | python-code-quality | laurigates/claude-plugins |
Quick reference for Python code quality tools: ruff (linting & formatting), mypy (type checking). When This Skill Applies - Linting Python code - Code formatting - Type checking - Pre-commit hooks - CI/CD quality gates - Code style enforcement Quick Reference Ruff (Linter & Formatter) ``` Lint code uv run ruff check . Auto-fix issues uv run ruff check --fix . Format code uv run ruff format . Check and format uv run ruff check --fix . && uv run ruff format . Show specific ru...
|
325 |
| 6432 | brand-voice | anthropics/knowledge-work-plugins |
Brand Voice Build a durable voice profile from real source material, then use that profile everywhere instead of re-deriving style from scratch or defaulting to generic AI copy. When to Activate the user wants content or outreach in a specific voice writing for X, LinkedIn, email, launch posts, threads, or product updates adapting a known author's tone across channels the existing content lane needs a reusable style system instead of one-off mimicry Source Priority Use the strongest real source ...
|
324 |
| 6433 | streamlit-snowflake | jezweb/claude-skills |
Streamlit in Snowflake Skill Build and deploy Streamlit apps natively within Snowflake, including Marketplace publishing as Native Apps. Quick Start 1. Initialize Project Copy the templates to your project: Create project directory mkdir my-streamlit-app && cd my-streamlit-app Copy templates (Claude will provide these) 2. Configure snowflake.yml Update placeholders in snowflake.yml: definition_version: 2 entities: my_app: type: streamlit identifier: my_streamlit_app ←...
|
324 |
| 6434 | company-values | slavingia/skills |
You are a business advisor channeling the philosophy of The Minimalist Entrepreneur by Sahil Lavingia. Help the user define their company values — the foundation of their culture. Core Principle Focus on culture before hiring. Before you hire anyone, define what kind of company people want to work for. Values are how you do that. They're not generic two-word commandments — they're for stating the non-obvious, in non-obvious ways. Why Values Matter Values tell employees how to behave every day AN...
|
324 |
| 6435 | economist-analyst | rysweet/amplihack |
Economist Analyst Skill Purpose Analyze events through the disciplinary lens of economics, applying established economic frameworks (supply/demand analysis, game theory, general equilibrium), multiple schools of thought (Classical, Keynesian, Austrian, Behavioral), and rigorous methodological approaches to understand market dynamics, incentive structures, resource allocation efficiency, and policy implications. When to Use This Skill Economic Policy Analysis: Evaluate fiscal policy, monetary p...
|
324 |
| 6436 | code-review-excellence | sickn33/antigravity-awesome-skills |
Code Review Excellence Transform code reviews from gatekeeping to knowledge sharing through constructive feedback, systematic analysis, and collaborative improvement. When to Use This Skill Reviewing pull requests and code changes Establishing code review standards for teams Mentoring junior developers through reviews Conducting architecture reviews Creating review checklists and guidelines Improving team collaboration Reducing code review cycle time Maintaining code quality standards Core Pri...
|
324 |
| 6437 | tavily-web | sickn33/antigravity-awesome-skills |
tavily-web Overview Web search, content extraction, crawling, and research capabilities using Tavily API When to Use When you need to search the web for current information When extracting content from URLs When crawling websites Installation npx skills add -g BenedictKing/tavily-web Step-by-Step Guide Install the skill using the command above Configure Tavily API key Use naturally in Claude Code conversations Examples See GitHub Repository for examples. Best Practices Configure API keys via env...
|
324 |
| 6438 | openclaw-complete-deployment-guide | nathansteelqoder/openclaw-config-qoder-integration |
在阿里云上部署 OpenClaw 完整指南 覆盖阿里云百炼模型配置、飞书 / 钉钉(传统机器人 + DEAP 高级方案)/ QQ / Discord 全平台接入、Qoder CLI 集成,以及高级配置与运维。 ⚠️ 安全警告 在开始之前,请务必阅读以下注意事项: 切勿在个人主力电脑上部署 OpenClaw ——它具有高文件系统和命令执行权限 务必使用云服务器 (如阿里云 ECS)进行部署,与本地环境隔离 保护好你的 API 密钥 ——使用环境变量或安全保险箱,不要硬编码在代码中 使用强随机令牌 限制 Gateway 访问,避免使用简单密码 定期轮换凭证 ——特别是钉钉/飞书/QQ 等平台的应用密钥 使用场景 在阿里云 ECS 服务器上从零部署 OpenClaw AI 助手 通过钉钉(Stream 机器人或 DEAP 高级方案)与 AI 对话 通过飞书、QQ 或 Discord 接入 OpenClaw 配置阿里云百炼 Coding Plan 作为 AI 推理后端 将 Qoder CLI 注册为 ACP Agent,实现钉钉/飞书中的代码开发 示例 安装 OpenClaw curl -f...
|
324 |
| 6439 | tax-advisor | kazukinagata/shinkoku |
税務アドバイザー(Tax Advisor) 税理士・ライフプランナー相当の専門知識で、ユーザーの税務相談に回答するスキル。 令和7年分(2025年課税年度)の税制に基づく。 設定の読み込み(最初に実行) shinkoku.config.yaml を Read ツールで読み込む ファイルが存在しない場合は /setup スキルの実行を案内して終了する 設定値を把握し、相対パスは CWD を基準に絶対パスに変換する: db_path : MCP ツールの db_path 引数に使用 output_dir : 進捗ファイル等の出力先ベースディレクトリ 各ディレクトリ: ファイル参照時に使用 回答の基本方針 1. 正確性の担保 回答は必ず reference/ ディレクトリ内のファイルを根拠とする 一般知識や推測で回答しない。根拠が見つからない場合はその旨を明示する 金額・税率・要件は reference ファイルの数値を引用する 条文・通達の参照を回答に含める(例: 所得税法第89条、所基通36-1) 2. 回答の構造 以下の構造で回答を組み立てる: 結論を先に : 質問に対する端的な回答 ...
|
324 |
| 6440 | gpt-image-1-5 | intellectronica/agent-skills |
GPT Image 1.5 - Image Generation & Editing Generate new images or edit existing ones using OpenAI's GPT Image 1.5 model. Generation: Uses the Responses API with image_generation tool Editing: Uses the Image API for reliable mask-based inpainting Usage Run the script using absolute path (do NOT cd to skill directory first): Generate new image: uv run ~/.claude/skills/gpt-image-1-5/scripts/generate_image.py --prompt "your image description" --filename "output-name.png" [--quality low|medium|h...
|
324 |
| 6441 | deep-research | daymade/claude-code-skills |
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...
|
324 |
| 6442 | spline-interactive | freshtechbro/claudedesignskills |
Spline Interactive - Browser-Based 3D Design and Animation Overview Spline is a browser-based 3D design and animation platform that enables creators to build interactive 3D experiences without requiring code or specialized software knowledge. It provides a collaborative visual editor for designing, animating, and exporting 3D scenes across multiple platforms. Key Features : Visual 3D modeling with parametric shapes, extrusion, and boolean operations State-based animation system with timeline con...
|
324 |
| 6443 | api-testing-observability-api-mock | sickn33/antigravity-awesome-skills |
API Mocking Framework You are an API mocking expert specializing in creating realistic mock services for development, testing, and demonstration purposes. Design comprehensive mocking solutions that simulate real API behavior, enable parallel development, and facilitate thorough testing. Use this skill when Building mock APIs for frontend or integration testing Simulating partner or third-party APIs during development Creating demo environments with realistic responses Validating API contracts b...
|
324 |
| 6444 | ads-creative | agricidaniel/claude-ads |
Cross-Platform Creative Quality Audit Process Collect creative assets or performance data from active platforms Read ads/references/platform-specs.md for creative specifications Read ads/references/benchmarks.md for CTR/engagement benchmarks Read ads/references/scoring-system.md for weighted scoring algorithm Evaluate creative quality per platform Assess cross-platform creative consistency Generate production priority recommendations Per-Platform Assessment Google Ads Creative RSA: ≥8 unique hea...
|
324 |
| 6445 | neon-drizzle | neondatabase/ai-rules |
Comprehensive Drizzle ORM setup for Neon databases with guided workflows. When to Use This Skill - Setting up Drizzle in a new project (Next.js, Vite, Express, etc.) - Integrating Drizzle into an existing application - Creating or modifying database schemas - Troubleshooting migration issues Code Generation Rules When generating TypeScript/JavaScript code: - BEFORE generating import statements, check tsconfig.json for path aliases (compilerOptions.paths) - If path aliases exist (e.g.,...
|
324 |
| 6446 | pptx | ailabs-393/ai-labs-claude-skills |
PPTX Skill Quick Reference Task Guide Read/analyze content python -m markitdown presentation.pptx Edit or create from template Read editing.md Create from scratch Read pptxgenjs.md Reading Content Text extraction python -m markitdown presentation.pptx Visual overview python scripts/thumbnail.py presentation.pptx Raw XML python scripts/office/unpack.py presentation.pptx unpacked/ Editing Workflow Read editing.md for full details. Analyze template with thumbnail.py Unpack → manipulate slides → ...
|
324 |
| 6447 | langsmith | supercent-io/skills-template |
langsmith — LLM Observability, Evaluation & Prompt Management Keyword : langsmith · llm tracing · llm evaluation · @traceable · langsmith evaluate LangSmith is a framework-agnostic platform for developing, debugging, and deploying LLM applications. It provides end-to-end tracing, quality evaluation, prompt versioning, and production monitoring. When to use this skill Add tracing to any LLM pipeline (OpenAI, Anthropic, LangChain, custom models) Run offline evaluations with evaluate() against a cu...
|
323 |
| 6448 | frontend-to-backend-requirements | davila7/claude-code-templates |
Backend Requirements Mode You are a frontend developer documenting what data you need from backend. You describe the what , not the how . Backend owns implementation details. No Chat Output : ALL responses go to .claude/docs/ai/<feature-name>/backend-requirements.md No Implementation Details : Don't specify endpoints, field names, or API structure—that's backend's call. The Point This mode is for frontend devs to communicate data needs: What data do I need to render this screen? What actions sho...
|
323 |
| 6449 | chat-ui | inference-sh/skills |
Chat UI Components Chat building blocks from ui.inference.sh . Quick Start Install chat components npx shadcn@latest add https://ui.inference.sh/r/chat.json Components Chat Container import { ChatContainer } from "@/registry/blocks/chat/chat-container" < ChatContainer > { /* messages go here */ } </ ChatContainer > Messages import { ChatMessage } from "@/registry/blocks/chat/chat-message" < ChatMessage role = " user " content = " Hello, how can you help me? " /> < ChatMessage role = " assistant...
|
323 |
| 6450 | gcp-development | mindrally/skills |
GCP Development Best Practices Overview This skill provides comprehensive guidelines for developing applications on Google Cloud Platform (GCP), covering serverless computing, data services, Infrastructure as Code with Terraform, and security best practices. Core Principles Write clean, well-structured code using GCP client libraries Use Infrastructure as Code (Terraform) for all infrastructure management Follow Google Cloud security best practices and compliance guidelines Implement comprehen...
|
323 |