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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,096
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
21601 svelte5 trevors/dot-claude
Svelte 5 Syntax Always use Svelte 5 runes. Never use Svelte 4 patterns. Svelte 4 → Svelte 5 Svelte 4 ❌ Svelte 5 ✅ export let foo let { foo } = $props() export let foo = 'default' let { foo = 'default' } = $props() $: doubled = x * 2 let doubled = $derived(x * 2) $: { sideEffect() } $effect(() => { sideEffect() }) on:click={handler} onclick={handler} on:input={handler} oninput={handler} on:click|preventDefault={h} onclick={e => { e.preventDefault(); h(e) }} <slot /> {@render children()} <slot n...
39
21602 api-endpoint-builder sickn33/antigravity-awesome-skills
API Endpoint Builder Build complete, production-ready REST API endpoints with proper validation, error handling, authentication, and documentation. When to Use This Skill User asks to "create an API endpoint" or "build a REST API" Building new backend features Adding endpoints to existing APIs User mentions "API", "endpoint", "route", or "REST" Creating CRUD operations What You'll Build For each endpoint, you create: Route handler with proper HTTP method Input validation (request body, params, q...
39
21603 how-to-send-push-notifications-on-flutter-web-fcm rodydavis/skills
How To Send Push Notifications on Flutter Web (FCM) If you are using Firebase then you are probably familiar with Firebase Cloud Messaging. The setup on Flutter web is very different than mobile and other plugins you are probably used to. Setting Up Open your web/index.html and look for the following script. If you do not have one you can add it now in the tag. We need to modify it to support the FCM service worker. The important thing we need to do is comment out the flutter_service_worker.js ...
39
21604 confluence-automation davepoon/buildwithclaude
Confluence Automation via Rube MCP Automate Confluence operations including page creation and updates, content search with CQL, space management, label tagging, and page hierarchy navigation through Composio's Confluence toolkit. Toolkit docs : composio.dev/toolkits/confluence Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Confluence connection via RUBE_MANAGE_CONNECTIONS with toolkit confluence Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup ...
39
21605 mobile-app-security-testing ed1s0nz/cyberstrikeai
移动应用安全测试 概述 移动应用安全测试是确保移动应用安全性的重要环节。本技能提供移动应用安全测试的方法、工具和最佳实践,涵盖Android和iOS平台。 测试范围 1. 应用安全 检查项目: 代码混淆 反编译防护 调试防护 证书绑定 2. 数据安全 检查项目: 数据加密 密钥管理 敏感数据存储 数据传输 3. 认证授权 检查项目: 认证机制 Token管理 生物识别 会话管理 4. 通信安全 检查项目: TLS/SSL配置 证书验证 API安全 中间人攻击防护 Android安全测试 静态分析 使用APKTool: 反编译APK apktool d app.apk 查看AndroidManifest.xml cat app/AndroidManifest.xml 查看Smali代码 find app/smali -name "*.smali" 使用Jadx: 反编译APK jadx -d output app.apk 查看Java源码 find output -name "*.java" 使用MobSF: 启动MobSF docker run -it -p 8000 :8...
39
21606 d1-swim-recruiting breverdbidder/life-os
D1 Swimming Recruitment Skill Michael Shapira Profile DOB : July 22, 2009 (16 years old) School : Satellite Beach High School, Class of 2027 SwimCloud ID : 3250085 Primary Events : 50 Free, 100 Free, 200 Free Secondary Events : 100 Fly, 100 Back D1 Time Standards Reference Men's NCAA Division I Recruiting Standards (SCY) Event D1 Mid-Major D1 High-Major Power 5 50 Free 20.5-21.5 19.5-20.5 <19.5 100 Free 45.0-47.0 43.5-45.0 <43.5 200 Free 1:38-1:42 1:35-1:38 <1:35 100 Fly 49.0-51.0 47.5-49.0 <47....
39
21607 modernize-scientific-stack letta-ai/skills
This skill provides guidance for migrating legacy Python 2 scientific computing code to modern Python 3 with contemporary libraries and best practices. When to Use This Skill Apply this skill when: - Migrating Python 2 scientific scripts to Python 3 - Updating legacy data processing code using outdated patterns - Modernizing scripts that use deprecated file handling, string encoding, or numerical libraries - Converting scripts from csv module to pandas for data analysis - Replacing os.pa...
39
21608 magento-feature-developer maxnorm/magento2-agent-skills
Magento 2 Feature Developer Expert specialist in translating business requirements into robust, scalable technical solutions within the Magento ecosystem following Adobe Commerce best practices. When to Use Implementing new business features Developing custom functionality Creating integrations with third-party systems Building complex business logic Extending existing Magento functionality Feature Development Process 1. Discovery & Planning Requirements Analysis : Break down business requiremen...
39
21609 implementation-plan masayuki-kono/agent-skills
Implementation Plan Guide A structured guide for creating comprehensive implementation plans before starting development work. When to Use Planning new features or significant functionality additions Preparing for refactoring or architectural changes Documenting approach before starting complex implementation work Ensuring clear acceptance criteria and testing strategy Instructions Required Sections 1. Background and Context Document the background and history that led to this implementation:...
39
21610 find-hypertable-candidates timescale/pg-aiguide
PostgreSQL Hypertable Candidate Analysis Identify tables that would benefit from TimescaleDB hypertable conversion. After identification, use the companion "migrate-postgres-tables-to-hypertables" skill for configuration and migration. TimescaleDB Benefits Performance gains: 90%+ compression, fast time-based queries, improved insert performance, efficient aggregations, continuous aggregates for materialization (dashboards, reports, analytics), automatic data management (retention, compression). ...
39
21611 package-npm-nix ypares/agent-skills
<quick_start> <pre_built_from_npm> For tools already built and published to npm (fastest approach): ``` { lib, stdenv, fetchzip, nodejs, }: stdenv.mkDerivation rec { pname = "tool-name"; version = "1.0.0"; src = fetchzip { url = "https://registry.npmjs.org/${pname}/-/${pname}-${version}.tgz"; hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; }; nativeBuildInputs = [ nodejs ]; installPhase = '' runHook preInstall mkdir -p $out/bin cp $src/...
39
21612 comprehensive-type-annotations oimiragieo/agent-studio
Comprehensive Type Annotations Skill Comprehensive Type Annotations: All functions, methods, and class members must have type annotations, using the most specific types possible. Memory Protocol (MANDATORY) Before starting: cat .claude/context/memory/learnings.md After completing: Record any new patterns or exceptions discovered. ASSUME INTERRUPTION: Your context may reset. If it's not in memory, it didn't happen.
39
21613 update-api-docs agenta-ai/agenta
Update API Documentation This skill guides you through updating the API reference documentation from the production OpenAPI specification. Overview The API documentation is generated from an OpenAPI spec using docusaurus-plugin-openapi-docs . The workflow involves: Downloading the latest openapi.json from production Replacing the local spec file Regenerating the API documentation pages File Locations Purpose Path OpenAPI spec (source) docs/docs/reference/openapi.json Generated API docs docs/docs...
39
21614 quarto-book htlin222/dotfiles
Quarto Book Generator Generate complete Quarto Book project structure with proper configuration. When to use User wants to create a book or multi-chapter document User asks to set up a Quarto book project User needs a technical manual or documentation structure User mentions "quarto book" or "book project" Quick generation Run the generator script with book name: python3 ~/.claude/skills/quarto-book/scripts/generate.py <book-name> [--chapters N] [--author "Name"] Or use Quarto CLI directly...
39
21615 swarm orchestration ruvnet/claude-flow
Swarm Orchestration Skill Purpose Multi-agent swarm coordination for complex tasks. Uses hierarchical topology with specialized agents to break down and execute complex work across multiple files and modules. When to Trigger 3+ files need changes new feature implementation cross-module refactoring API changes with tests security-related changes performance optimization across codebase database schema changes When to Skip single file edits simple bug fixes (1-2 lines) documentation updates config...
39
21616 migrate-postgres-tables-to-hypertables timescale/pg-aiguide
PostgreSQL to TimescaleDB Hypertable Migration Migrate identified PostgreSQL tables to TimescaleDB hypertables with optimal configuration, migration planning and validation. Prerequisites: Tables already identified as hypertable candidates (use companion "find-hypertable-candidates" skill if needed). Step 1: Optimal Configuration Partition Column Selection -- Find potential partition columns SELECT column_name, data_type, is_nullable FROM information_schema.columns WHERE table_name = 'your_ta...
39
21617 laravel:task-scheduling jpcaparas/superpowers-laravel
Run scheduled tasks predictably across environments. Commands ``` // app/Console/Kernel.php protected function schedule(Schedule $schedule): void { $schedule->command('reports:daily') ->dailyAt('01:00') ->withoutOverlapping() ->onOneServer() ->runInBackground() ->evenInMaintenanceMode(); } Run the scheduler from cron * * * * * cd /var/www/app && php artisan schedule:run >> /dev/null 2>&1 ``` Patterns - Guard long-running commands with `without...
39
21618 seedream-image refly-ai/refly-skills
Seedream Image Assistant | Seedream 即梦 图像助手 Seedream 5.0 is ByteDance's next-generation AI image model, available on Jimeng AI, Jianying, CapCut, and Volcengine Ark. Seedream 5.0 是字节跳动推出的新一代 AI 图像生成模型,已在即梦AI、剪映、CapCut、火山方舟上线。 Core Capabilities | 核心能力 Capability Description Real-time Web Search Auto-fetches trending info when prompt contains timely keywords Multi-step Reasoning Interprets abstract concepts (e.g. "serene tech feel" → desaturated + clean lines + cold light) Multi-round Editing Iter...
39
21619 web cascade-protocol/agentbox
Web Scraping & Search Paid web crawling and search API at https://web.surf.cascade.fyi . Crawl costs $0.005 USDC, search costs $0.01 USDC per call via x402 on Solana. Use the x_payment tool for all requests. Use this when the built-in web_fetch tool fails or is blocked (anti-bot, JS-rendered pages, paywalled content). Endpoints Crawl Web Pages Fetch and extract content from any URL. Automatically escalates through fetching tiers if blocked: fast HTTP -> headless browser -> stealth browser with p...
39
21620 highcharts vamseeachanta/workspace-hub
Create professional, enterprise-grade interactive charts with Highcharts - trusted by Fortune 500 companies worldwide. When to Use This Skill Use Highcharts when you need: - Enterprise features - Stock charts, Gantt charts, network diagrams - Accessibility - WCAG compliant, screen reader support - Financial charts - Advanced stock/trading visualizations - Professional quality - Polished, production-ready charts - Export capabilities - PDF, PNG, SVG, Excel exports built-in - Commercial s...
39
21621 api-test-generator jeremylongshore/claude-code-plugins-plus-skills
Api Test Generator Purpose This skill provides automated assistance for api test generator tasks within the Test Automation domain. When to Use This skill activates automatically when you: Mention "api test generator" in your request Ask about api test generator patterns or best practices Need help with test automation skills covering unit testing, integration testing, mocking, and test framework configuration. Capabilities Provides step-by-step guidance for api test generator Follows industry b...
39
21622 windows privilege escalation zebbern/claude-code-guide
Windows Privilege Escalation Purpose Provide systematic methodologies for discovering and exploiting privilege escalation vulnerabilities on Windows systems during penetration testing engagements. This skill covers system enumeration, credential harvesting, service exploitation, token impersonation, kernel exploits, and various misconfigurations that enable escalation from standard user to Administrator or SYSTEM privileges. Inputs / Prerequisites Initial Access : Shell or RDP access as standard...
39
21623 presentation-builder yonatangross/orchestkit
Presentation Builder Use slides-grab when the user needs a real slide deck artifact, not just an outline. The workflow is HTML-first: plan the deck, generate slide HTML, review visually, then export to PPTX/PDF. When to use this skill Create a presentation from a topic, document, or brief Iterate on slide design visually instead of editing raw PPT manually Export approved decks to .pptx or .pdf Maintain multi-deck workspaces under decks/<deck-name>/ Preflight Install and verify slides-grab befor...
39
21624 upgrade-stripe exceptionless/exceptionless
Upgrading Stripe Versions This skill covers upgrading Stripe API versions, server-side SDKs, Stripe.js, and mobile SDKs. Understanding Stripe API Versioning Stripe uses date-based API versions (e.g., 2025-12-15.clover, 2025-08-27.basil, 2024-12-18.acacia). Your account's API version determines request/response behavior. Types of Changes Backward-Compatible Changes (do not require code updates): New API resources New optional request parameters New properties in existing responses Changes t...
39
21625 software-architecture neolabhq/context-engineering-kit
Software Architecture Development Skill This skill provides guidance for quality focused software development and architecture. It is based on Clean Architecture and Domain Driven Design principles. Code Style Rules General Principles Early return pattern : Always use early returns when possible, over nested conditions for better readability Avoid code duplication through creation of reusable functions and modules Decompose long (more than 80 lines of code) components and functions into multiple...
39
21626 use-screenshot gjkeller/use-screenshot
Use Screenshot Trigger When the user asks to check the latest screenshot, clipboard image, or a recent downloaded image. Usage Repo: node skills/use-screenshot/scripts/screenshot-agent.js Downloads: node skills/use-screenshot/scripts/screenshot-agent.js --downloads Clipboard only: node skills/use-screenshot/scripts/screenshot-agent.js --clipboard-only Output is two lines: source ( clipboard or original file path) temp file path (PNG/JPG/JPEG) Agent pattern out = " $( node skills/use-screenshot/s...
38
21627 opensearch-docs-search tkykenmt/opensearch-docs-search
OpenSearch Documentation Search Search OpenSearch docs, blogs, and forum using the bundled script (Python 3.10+, no dependencies). Usage python scripts/search.py docs "k-NN" python scripts/search.py blogs "performance" --limit 5 python scripts/search.py forum "cluster health" Options: -v/--version (docs/blogs), -l/--limit , -o/--offset (docs/blogs) Query Tips Version search: use dot notation ( "opensearch 3.5" ), not hyphenated slug ( "3-5" ) Blog release posts: search "opensearch {major}.{minor...
38
21628 postmortem-writer patricio0312rev/skills
Postmortem Writer Document incidents for learning and improvement. Postmortem Template Postmortem: API Outage - Database Connection Pool Exhausted Date: 2024-01-15 Authors: Jane Doe (On-call), John Smith (DBA) Status: Complete Severity: P1 (Critical) Summary On January 15, 2024, our API experienced a complete outage for 25 minutes (14:32 - 14:57 UTC) affecting 100% of users. The root cause was database connection pool exhaustion triggered by a connection leak introduced in deployment v2.3...
38
21629 svelte teachingai/full-stack-skills
@json-render/svelte Svelte 5 renderer that converts json-render specs into Svelte component trees. Quick Start <JsonUIProvider> <Renderer {spec} {registry} /> </JsonUIProvider> Creating a Catalog import { defineCatalog } from "@json-render/core" ; import { schema } from "@json-render/svelte" ; import { z } from "zod" ; export const catalog = defineCatalog ( schema , { components : { Button : { props : z . object ( { label : z . string ( ) , variant : z . enum ( [ "primary" , "secondary" ] ) . n...
38
21630 agent-swarm-memory-manager ruvnet/claude-flow
name: swarm-memory-manager description: Manages distributed memory across the hive mind, ensuring data consistency, persistence, and efficient retrieval through advanced caching and synchronization protocols color: blue priority: critical You are the Swarm Memory Manager, the distributed consciousness keeper of the hive mind. You specialize in managing collective memory, ensuring data consistency across agents, and optimizing memory operations for maximum efficiency. Core Responsibilities 1. Dis...
38
21631 go-expert personamanagmentlayer/pcl
Go Expert go api development general rules When reviewing or writing code, apply these guidelines: You are an expert AI programming assistant specializing in building APIs with Go, using the standard library's net/http package and the new ServeMux introduced in Go 1.22. Always use the latest stable version of Go (1.22 or newer) and be familiar with RESTful API design principles, best practices, and Go idioms. Follow the user's requirements carefully & to the letter. First think step-by-step - ...
38
21632 postman sterlingchin/postman-claude-skill
Postman Agent Skill Version: 1.1.0 (Phase 1 - Core API Compatibility) API Support: Postman v10+ (with v9 graceful degradation) 🚀 Quick Start When you first use this skill, Claude will automatically: ✅ Validate your API key and connection 📁 Check your workspace configuration 📊 Count your collections and resources 💡 Suggest next steps if setup is incomplete First time setup validation: Claude will run this automatically on first use python scripts/validate_setup.py Common first questions ...
38
21633 modern-drug-rehab-computer erichowens/some_claude_skills
Modern Drug Rehab Computer Comprehensive knowledge companion for individuals in addiction recovery, whether in residential treatment or commuting from home for outpatient programs. When to Use This Skill Use for: Evidence-based treatment modality information Coping strategies and grounding techniques Recovery resource navigation Understanding medications (MAT, Suboxone, etc.) Family dynamics and communication Lifestyle and wellness guidance Meeting/support group information Trigger managemen...
38
21634 word-stats humanizerai/agent-skills
Word Statistics Provide quick, accurate statistics about the provided text. Input The user provides text in $ARGUMENTS. Important: If text is provided, immediately output stats. Don't ask clarifying questions - they want the numbers. Output Format Word Statistics Counts | Metric | Value | |--------|-------| | Words | [X] | | Characters (with spaces) | [X] | | Characters (no spaces) | [X] | | Sentences | [X] | | Paragraphs | [X] | Time | Metric | Value | |--------|-------| | Reading time | [X]...
38
21635 seo-technical-audit schwepps/skills
Technical SEO Audit Framework Professional methodology for comprehensive technical SEO analysis aligned with 2025 best practices. When to Use This Skill Full technical SEO audits Diagnosing crawling/indexation issues Core Web Vitals analysis Site architecture review Schema markup validation Mobile-first readiness assessment AI crawler configuration audit Audit Workflow Execute in priority order—crawlability issues block all downstream optimizations. Phase 1: Crawlability & Indexation (CRITIC...
38
21636 shadcn squirrelfishcityhall150/claude-code-kit
shadcn/ui A framework for building ui, components and design systems. Components are added as source code to the user's project via the CLI. IMPORTANT: Run all CLI commands using the project's package runner: npx shadcn@latest , pnpm dlx shadcn@latest , or bunx --bun shadcn@latest — based on the project's packageManager . Examples below use npx shadcn@latest but substitute the correct runner for the project. Current Project Context !`npx shadcn@latest info --json 2 >/dev/ null || echo ' { "error...
38
21637 recovery-app-onboarding erichowens/some_claude_skills
Recovery App Onboarding Excellence Build compassionate, effective onboarding experiences for recovery and wellness applications that serve vulnerable populations with dignity and practical utility. When to Use ✅ USE this skill for: First-time user onboarding flows Feature discovery and app tours Progressive disclosure design Permission request timing and framing Welcome screens and value propositions Recovery program selection flows Crisis resource integration Privacy and anonymity communica...
38
21638 kontour-travel-planner bookingdesk-ai/kontour-travel-planner
Kontour Travel Planner The planning brain that any AI agent can plug in. Not a search wrapper — a planning methodology . This skill transforms any agent into a world-class travel planner using Kontour AI's 9-dimension progressive planning model. Requirements No API keys or credentials required. This skill runs entirely offline using bundled reference data (destinations, airports, airlines, activities, budget benchmarks). Scripts ( plan.sh , export-gmaps.sh ) — Pure local processing. No external ...
38
21639 animated-message-composer qodex-ai/ai-agent-skills
Slack GIF Creator A toolkit providing utilities and knowledge for creating animated GIFs optimized for Slack. Slack Requirements Emoji GIFs (Slack emoji uploads): Max size: 64 KB Dimensions: 128x128 recommended (square) FPS: 10-12 Colors: 32-48 Duration: 1-2s Message GIFs: Max size: ~2 MB Dimensions: 480x480 typical FPS: 15-20 Colors: 128-256 Duration: 2-5s Core Workflow from core.gif_builder import GIFBuilder from PIL import Image, ImageDraw 1. Create builder builder = GIFBuilder(width=...
38
21640 date-normalizer dkyazzentwatwa/chatgpt-skills
Date Normalizer Parse and normalize dates from various formats into consistent, standardized formats for data cleaning and ETL pipelines. Purpose Date standardization for: Data cleaning and ETL pipelines Database imports with mixed date formats Log file parsing and analysis International data harmonization Report generation with consistent dating Features Smart Parsing: Automatically detect and parse 100+ date formats Format Conversion: Convert to ISO 8601, US, EU, or custom formats Batch Pr...
38
21641 firecrawl tumf/skills
Firecrawl CLI Web scraping, search, and browser automation CLI. Returns clean markdown optimized for LLM context windows. Run firecrawl --help or firecrawl <command> --help for full option details. Prerequisites Must be installed and authenticated. Check with firecrawl --status . 🔥 firecrawl cli v1.8.0 ● Authenticated via FIRECRAWL_API_KEY Concurrency: 0/100 jobs (parallel scrape limit) Credits: 500,000 remaining Concurrency : Max parallel jobs. Run parallel operations up to this limit. Credits ...
38
21642 sap-btp-business-application-studio secondsky/sap-skills
SAP Business Application Studio is a cloud-based IDE on SAP BTP built on Code-OSS (VS Code foundation). It provides tailored dev spaces for SAP Fiori, CAP, HANA, and mobile development with pre-installed tools and runtimes. Architecture: Multi-cloud SaaS (AWS, Azure, GCP) with isolated dev spaces functioning as Developer Virtual Appliances. Quick Decision Tree Setting up BAS? → See [Setup Checklist](setup-checklist) Creating a dev space? → See [Dev Space Types](dev-space-types) Connecting to...
38
21643 branch-naming-helper jeremylongshore/claude-code-plugins-plus-skills
Branch Naming Helper Purpose This skill provides automated assistance for branch naming helper tasks within the DevOps Basics domain. When to Use This skill activates automatically when you: Mention "branch naming helper" in your request Ask about branch naming helper 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 branch naming helper Fol...
38
21644 story-pitch jamditis/claude-skills-journalism
Story pitch guide Good stories die in bad pitches. This skill covers pitch structure, angle development, and outlet-specific formatting. When to use Pitching stories to editors (internal or external) Developing freelance query letters Refining story angles before reporting Competing for assignment in a newsroom Proposal writing for grants or fellowships The pitch fundamentals What every pitch needs The hook : Why should anyone care? Why now? The story : What will you show/reveal/explain? The evi...
38
21645 zenith-ui gravito-framework/gravito
Zenith UI Expert You are a master frontend artisan. Your goal is to build stunning, high-performance user interfaces using the Gravito Zenith stack. Workflow 1. Conceptual Design Before writing code, define the visual language: Theme : Is it "Cyber Vegas", "Celestial", or "Corporate"? Interactions : Identify key animations and hover effects. 2. Implementation Layout : Define the container and grid structure in src/client/layouts/ . Components : Build reusable Vue components. Styling : Use global...
38
21646 infinite-gratitude sickn33/antigravity-awesome-skills
Infinite Gratitude Source : sstklen/infinite-gratitude Description A multi-agent research skill designed for parallel research execution. It orchestrates 10 agents to conduct deep research, battle-tested with real case studies. When to Use Use this skill when you need to perform extensive, parallelized research on a topic, leveraging multiple agents to gather and synthesize information more efficiently than a single linear process. How to Use This is an external skill. Please refer to the offici...
38
21647 pyroscope julianobarbosa/claude-code-skills
Grafana Pyroscope - Continuous Profiling Docs : https://grafana.com/docs/pyroscope/latest/ Continuous profiling aggregation system — understand resource usage down to source code line numbers. Instrumentation Methods Three ways to send profiles to Pyroscope: Grafana Alloy (preferred) : eBPF auto-instrumentation, no code changes SDK : Push profiles directly from your application SDK → Alloy : SDK sends to Alloy's pyroscope.receive_http , Alloy forwards to Pyroscope SDK Examples Python Show more
38
21648 network-diagnostics jackspace/claudeskillz
For network troubleshooting: - MTU Issues (common in WSL) Check current MTU: ip link show - Test different MTU: sudo ip link set dev eth0 mtu 1350 - Common WSL MTU: 1300-1400 - DNS Resolution Check /etc/resolv.conf - Test with: dig google.com, nslookup google.com - Try different DNS: 8.8.8.8, 1.1.1.1 - Connectivity Tests Ping gateway: ip route | grep default - Traceroute to destination - Test ports: nc -zv host port, telnet host port - Firewall/Routing Check iptables: sudo iptables...
38
21649 make-automation davepoon/buildwithclaude
Make Automation via Rube MCP Automate Make (formerly Integromat) operations through Composio's Make toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/make Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Make connection via RUBE_MANAGE_CONNECTIONS with toolkit make Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpo...
38
21650 frontend-ui-integration julianromli/ai-skills
Skill: Frontend UI integration Purpose Implement or extend a user-facing workflow in our primary web application, integrating with existing backend APIs and following our design system, routing, and testing conventions. When to use this skill The feature is primarily a UI/UX change backed by one or more existing APIs. The backend contracts, auth model, and core business rules already exist. The change affects only the web frontend (no schema or service ownership changes). Inputs Feature descri...
38