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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,431
总 Skills
161.2M
总安装量
2,740
贡献者
# Skill 仓库 描述 安装量
3751 database sync claude-office-skills/skills
Database Sync Comprehensive skill for database synchronization, replication, and data integration. Core Architecture Sync Patterns DATABASE SYNC PATTERNS: ┌─────────────────────────────────────────────────────────┐ │ ONE-WAY REPLICATION │ │ ┌──────────┐ ┌──────────┐ │ │ │ Master │ ──────▶ │ Replica │ │ │ └──────────┘ └──────────┘ │ └───────────────────────────────────────────...
3.7K
3752 sentry-workflow getsentry/sentry-for-ai
All Skills Sentry Workflows Debug production issues and maintain code quality with Sentry context. This page helps you find the right workflow 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-fix-issues/SKILL.md Append the path from the Path column in the table below to https://skills.sentry.gg/ . Do not guess or shorten URLs. Start Here — Read This Be...
3.7K
3753 building-ui-bundle-app forcedotcom/sf-skills
Building a UI Bundle App Overview Build a complete, deployable Salesforce React UI bundle application from a natural language description by orchestrating specialized UI bundle skills in correct dependency order. Each skill MUST be explicitly loaded before executing its phase. When to Use This Skill Use when: User requests a "React app", "UI bundle", "web app", or "full-stack app" on Salesforce User says "build an app", "create an application" and the context implies a non-LWC based frontend (e....
3.7K
3754 generating-ui-bundle-features forcedotcom/sf-skills
UI Bundle Features Installing Pre-built Features Always check for an existing feature before building something from scratch. The features CLI installs pre-built, tested packages into Salesforce UI bundles — from foundational UI libraries (shadcn/ui) to full-stack capabilities (authentication, search, navigation, GraphQL, Agentforce AI). Workflow Search project code first — check src/ for existing implementations before installing anything. Scope searches to src/ to avoid matching node_modules/ ...
3.7K
3755 building-ui-bundle-frontend forcedotcom/sf-skills
UI Bundle UI Identify the Task Determine which category the request falls into: Category Examples Implementation Guide Page New routed page (contacts, dashboard, settings) implementation/page.md Header / Footer Site-wide nav bar, footer, branding implementation/header-footer.md Component Widget, card, table, form, dialog implementation/component.md Layout and Navigation appLayout.tsx is the source of truth for navigation and layout. Every page shares this shell. When making any change that affec...
3.7K
3756 deploying-ui-bundle forcedotcom/sf-skills
Deploying a UI Bundle The order of operations is critical when deploying to a Salesforce org. This sequence reflects the canonical flow. Step 1: Org Authentication Check if the org is connected. If not, authenticate. All subsequent steps require an authenticated org. Step 2: Pre-deploy UI Bundle Build Install dependencies and build the UI bundle to produce dist/ . Required before deploying UI bundle entities. Run when: deploying UI bundles and dist/ is missing or source has changed. Step 3: Depl...
3.7K
3757 generating-ui-bundle-site forcedotcom/sf-skills
Digital Experience Site for React UI Bundles Create and configure Digital Experience Sites that host React UI bundles on Salesforce. This skill generates the minimum necessary site infrastructure — Network, CustomSite, DigitalExperienceConfig, DigitalExperienceBundle, and the sfdc_cms__site content type — so a React app can be served from Salesforce. React sites differ from standard LWR sites: they don't need routes, views, theme layouts, or branding sets. The site acts as a thin container ( app...
3.7K
3758 testing-agentforce forcedotcom/sf-skills
ADLC Test Automated testing for Agentforce agents with smoke tests, batch execution, and iterative fix loops. Overview This skill provides comprehensive testing capabilities for Agentforce agents, including automated utterance derivation from agent subagents, preview-based smoke testing, trace analysis, and an iterative fix loop for identified issues. It bridges the gap between initial development and production deployment. Platform Notes Shell examples below use bash syntax. On Windows, use Pow...
3.7K
3759 uplifting-components-to-slds2 forcedotcom/sf-skills
Goal Systematically migrate Lightning Web Components from SLDS 1 to SLDS 2 using the SLDS linter and structured guidance for fixing violations across all styling hook categories. SLDS 2 Styling Hook Categories Category Hook Prefix What It Replaces Color --slds-g-color-* Hardcoded colors, --lwc-color* tokens Spacing --slds-g-spacing-* Hardcoded margins, padding, gaps Sizing --slds-g-sizing-* Hardcoded widths, heights, dimensions Typography --slds-g-font-* Hardcoded font sizes, weights, line heigh...
3.7K
3760 observing-agentforce forcedotcom/sf-skills
Agentforce Observability Improve Agentforce agents using session trace data and live preview testing. Three-phase workflow: Observe -- Query STDM sessions from Data Cloud (if available), OR run test suites + preview with local traces as fallback Reproduce -- Use sf agent preview to simulate problematic conversations live Improve -- Edit the .agent file directly, validate, publish, verify Platform Notes Shell examples below use bash syntax. On Windows, use PowerShell equivalents or Git Bash. Repl...
3.7K
3761 clawhub openclaw/openclaw
ClawHub CLI Install npm i -g clawhub Auth (publish) clawhub login clawhub whoami Search clawhub search "postgres backups" Install clawhub install my-skill clawhub install my-skill --version 1.2 .3 Update (hash-based match + upgrade) clawhub update my-skill clawhub update my-skill --version 1.2 .3 clawhub update --all clawhub update my-skill --force clawhub update --all --no-input --force List clawhub list Publish clawhub publish ./my-skill --slug my-skill --name "My Skill" --version 1.2 .0 --cha...
3.7K
3762 playwright-skill sickn33/agentic-awesome-skills
Playwright Skill Opinionated, production-tested Playwright guidance — every pattern includes when (and when not ) to use it. 50+ reference guides covering the full Playwright surface: selectors, assertions, fixtures, page objects, network mocking, auth, visual regression, accessibility, API testing, CI/CD, debugging, and more — with TypeScript and JavaScript examples throughout. Playwright 1.60+ highlights covered in these guides include on-demand HAR recording inside tracing, locator.drop() for...
3.7K
3763 angular-ssr analogjs/angular-skills
Angular SSR Implement server-side rendering, hydration, and prerendering in Angular v20+. Setup Add SSR to Existing Project ng add @angular/ssr This adds: @angular/ssr package server.ts - Express server src/main.server.ts - Server bootstrap src/app/app.config.server.ts - Server providers Updates angular.json with SSR configuration Project Structure src/ ├── app/ │ ├── app.config.ts Browser config │ ├── app.config.server.ts Server config │ └── app.routes.ts ├── main.ts ...
3.7K
3764 dev-slides claude-office-skills/skills
Developer Slides Skill Overview This skill enables creation of developer-focused presentations using Slidev - a Vue-powered presentation framework. Write slides in Markdown with live code demos, diagrams, and components. How to Use Describe your technical presentation needs I'll generate Slidev markdown with proper syntax Includes code blocks, diagrams, and Vue components Example prompts: "Create a Vue.js workshop presentation" "Build slides with live code execution" "Make a technical talk with ...
3.7K
3765 nda-generator claude-office-skills/skills
NDA Generator Skill Overview I help you create professional Non-Disclosure Agreements (NDAs) for various business situations. Whether you're meeting potential investors, hiring contractors, or exploring partnerships, I'll generate an appropriate NDA. What I can do: Generate one-way or mutual NDAs Customize confidentiality scope and duration Include standard protective clauses Adapt for different jurisdictions Support English and Chinese What I cannot do: Provide legal advice Guarantee enforceabi...
3.7K
3766 intercom automation claude-office-skills/skills
Intercom Automation Comprehensive skill for automating Intercom customer communication and support workflows. Core Workflows 1. Conversation Flow CUSTOMER CONVERSATION FLOW: ┌─────────────────┐ │ User Message │ │ (Inbound) │ └────────┬────────┘ ▼ ┌─────────────────┐ │ Bot Triage │ │ - Intent │ │ - Route │ └────────┬────────┘ │ ┌────┴────┐ ▼ ▼ ┌───────┐ ┌───────┐ │ Bot │ │ Human │ │ Reply │ │ Agent │ └───┬───┘ └───┬───┘ │ │ └────┬────┘ ▼ ┌───────────...
3.7K
3767 lead-routing claude-office-skills/skills
Lead Routing Intelligent lead assignment and routing system with AI-powered scoring, territory mapping, round-robin distribution, and workload balancing. Based on n8n's HubSpot/Salesforce automation templates. Overview This skill covers: Lead scoring and qualification Territory-based routing Round-robin distribution Workload balancing SLA monitoring and escalation Routing Strategies 1. Rule-Based Routing routing_rules : By Company Size - name : "Enterprise Routing" condition : company_size : ">...
3.7K
3768 zendesk automation claude-office-skills/skills
Zendesk Automation Comprehensive skill for automating Zendesk support workflows and ticket management. Core Workflows 1. Ticket Triage Pipeline INCOMING TICKET FLOW: ┌─────────────────┐ │ New Ticket │ └────────┬────────┘ ▼ ┌─────────────────┐ │ AI Analysis │ │ - Intent │ │ - Sentiment │ │ - Urgency │ └────────┬────────┘ ▼ ┌─────────────────┐ │ Categorize │ │ - Type │ │ - Product │ │ - Skill needed │ └────────┬────────┘ ▼ ┌─────────────────┐ │ Route...
3.7K
3769 weather automation claude-office-skills/skills
Weather Automation Automate weather-based workflows and notifications. Core Capabilities Current Weather current_weather : location : "San Francisco, CA" or coordinates lat : 37.7749 lon : -122.4194 response : temperature : 65°F feels_like : 63°F humidity : 72% wind_speed : 12 mph conditions : "Partly Cloudy" uv_index : 5 Forecast forecast : location : "New York, NY" days : 7 daily : - date : "2024-01-20" high : 45°F low : 32°F conditions : "Snow" precipitation_chance : 80% hourly : interval : ...
3.7K
3770 qmd tobi/qmd
Contains Shell Commands This skill contains shell command directives ( !`command` ) that may execute system commands. Review carefully before installing. QMD - Quick Markdown Search Local search engine for markdown content. Status ! qmd status 2>/dev/null || echo "Not installed: npm install -g @tobilu/qmd" MCP: query { "searches" : [ { "type" : "lex" , "query" : "CAP theorem consistency" } , { "type" : "vec" , "query" : "tradeoff between consistency and availability" } ] , "collections" : [ "doc...
3.7K
3771 offer letter generator claude-office-skills/skills
Offer Letter Generator Generate professional employment offer letters that clearly communicate job terms and compensation. Overview This skill creates formal offer letters that: Clearly state position and compensation Outline key employment terms Maintain legal compliance awareness Create positive candidate experience How to Use Provide the following information: Required Candidate Name : Full legal name Job Title : Position being offered Start Date : Proposed start date Compensation : Base sala...
3.7K
3772 modal lobehub/lobehub
Modal Imperative API Guide Use createModal from @lobehub/ui for imperative modal dialogs. Why Imperative? Mode Characteristics Recommended Declarative Need open state, render <Modal /> ❌ Imperative Call function directly, no state ✅ File Structure features/ └── MyFeatureModal/ ├── index.tsx Export createXxxModal └── MyFeatureContent.tsx Modal content Implementation 1. Content Component ( MyFeatureContent.tsx ) 'use client' ; import { useModalContext } from '@lobehub/ui' ; import { us...
3.7K
3773 skill-name claude-office-skills/skills
Skill Name Overview [Clear explanation of what this skill does and when to use it] What I can do: [Capability 1] [Capability 2] [Capability 3] What I cannot do: [Limitation 1] [Limitation 2] How to Use Me Step 1: [First Step] [Instructions] Step 2: [Second Step] [Instructions] Step 3: [Third Step] [Instructions] Domain Knowledge [This is where the real value lives - embedded expertise, patterns, rules, best practices] [Knowledge Area 1] [Details] [Knowledge Area 2] [Details] Output Format [Defin...
3.7K
3774 financial-statements anthropics/knowledge-work-plugins
Financial Statements Important : This skill assists with financial statement workflows but does not provide financial advice. All statements should be reviewed by qualified financial professionals before use in reporting or filings. Formats, GAAP presentation requirements, common adjustments, and flux analysis methodology for income statements, balance sheets, and cash flow statements. Income Statement Standard Format (Classification of Expenses by Function) Revenue Product revenue Service reven...
3.7K
3775 humanize humanizerai/agent-skills
Humanize AI Text Transform AI-generated content into natural, human-like writing using the HumanizerAI API. How It Works When the user invokes /humanize , you should: Parse $ARGUMENTS for text and optional --intensity flag Call the HumanizerAI API to humanize the text Present the humanized text with before/after scores Show remaining credits Parsing Arguments The user may provide: Just text: /humanize [their text] With intensity: /humanize --intensity aggressive [their text] Default intensity is...
3.7K
3776 pipedrive automation claude-office-skills/skills
Pipedrive Automation Comprehensive skill for automating Pipedrive CRM and sales pipeline management. Core Workflows 1. Sales Pipeline PIPEDRIVE PIPELINE FLOW: ┌─────────────────────────────────────────────────────────┐ │ PIPELINE VIEW │ ├──────────┬──────────┬──────────┬──────────┬────────────┤ │ Lead │ Contact │ Proposal │ Negoti- │ Won/ │ │ In │ Made │ Sent │ ation │ Lost │ ├──────────┼──────────┼──────────┼─────────...
3.7K
3777 suspicious email analyzer claude-office-skills/skills
Suspicious Email Analyzer Analyze emails for phishing attempts, scams, and security threats to protect against fraud. Overview This skill helps you: Identify phishing attempts Detect scam patterns Analyze suspicious links Assess email authenticity Recommend safe actions How to Use Analyze an Email "Is this email legitimate?" "Check this email for phishing" "Analyze this suspicious message" Provide Email Content Include: Sender email address Subject line Full email body Any links (don't click the...
3.7K
3778 prd-development deanpeters/product-manager-skills
Purpose Guide product managers through structured PRD (Product Requirements Document) creation by orchestrating problem framing, user research synthesis, solution definition, and success criteria into a cohesive document. Use this to move from scattered notes and Slack threads to a clear, comprehensive PRD that aligns stakeholders, provides engineering context, and serves as a source of truth—avoiding ambiguity, scope creep, and the "build what's in my head" trap. This is not a waterfall spec—it...
3.7K
3779 add-setting-env lobehub/lobehub
Adding Environment Variable for User Settings Add server-side environment variables to configure default values for user settings. Priority : User Custom > Server Env Var > Hardcoded Default Steps 1. Define Environment Variable Create src/envs/<domain>.ts : import { createEnv } from '@t3-oss/env-nextjs' ; import { z } from 'zod' ; export const get < Domain > Config = ( ) => { return createEnv ( { server : { YOUR_ENV_VAR : z . coerce . number ( ) . min ( MIN ) . max ( MAX ) . optional ( ) , } , r...
3.7K
3780 mcp-builder composiohq/awesome-claude-skills
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...
3.7K
3781 add-provider-doc lobehub/lobehub
Adding New AI Provider Documentation Complete workflow for adding documentation for a new AI provider. Overview Create usage documentation (EN + CN) Add environment variable documentation (EN + CN) Update Docker configuration files Update .env.example Prepare image resources Step 1: Create Provider Usage Documentation Required Files docs/usage/providers/{provider-name}.mdx (English) docs/usage/providers/{provider-name}.zh-CN.mdx (Chinese) Key Requirements 5-6 screenshots showing the process Cove...
3.7K
3782 langsmith-trace langchain-ai/langsmith-skills
LANGSMITH_API_KEY = lsv2_pt_your_api_key_here Required LANGSMITH_PROJECT = your-project-name Optional: default project LANGSMITH_WORKSPACE_ID = your-workspace-id Optional: for org-scoped keys IMPORTANT: Always check the environment variables or .env file for LANGSMITH_PROJECT before querying or interacting with LangSmith. This tells you which project contains the relevant traces and data. If the LangSmith project is not available, use your best judgement to identify the right one. CLI Tool cu...
3.7K
3783 langsmith-evaluator langchain-ai/langsmith-skills
LANGSMITH_API_KEY = lsv2_pt_your_api_key_here Required LANGSMITH_PROJECT = your-project-name Check this to know which project has traces LANGSMITH_WORKSPACE_ID = your-workspace-id Optional: for org-scoped keys OPENAI_API_KEY = your_openai_key For LLM as Judge IMPORTANT: Always check the environment variables or .env file for LANGSMITH_PROJECT before querying or interacting with LangSmith. This tells you which project contains the relevant traces and data. If the LangSmith project is not avai...
3.7K
3784 twitter/x automation claude-office-skills/skills
3.7K
3785 uniwind uni-stack/uniwind
Uniwind — Complete Reference Uniwind 1.5.0+ / Tailwind CSS v4 / React Native 0.81+ / Expo SDK 54+ If user has lower version, recommend updating to 1.5.0+ for best experience. Uniwind brings Tailwind CSS v4 to React Native. All core React Native components support the className prop out of the box. Styles are compiled at build time — no runtime overhead. Critical Rules Tailwind v4 only — Use @import 'tailwindcss' not @tailwind base . Tailwind v3 is not supported. Never construct classNames dynami...
3.7K
3786 continuous-discovery wondelai/skills
Continuous Discovery Habits Framework Framework for building a sustainable, weekly practice of customer discovery that keeps product teams making progress toward desired outcomes. Rather than treating discovery as a phase that happens before development, this framework embeds customer learning into the ongoing rhythm of product work so that every decision is informed by fresh evidence. Core Principle Good product discovery requires a continuous cadence, not a one-time event. Teams that talk to c...
3.7K
3787 naver-blog-research nomadamas/k-skill
네이버 블로그 리서치 What this skill does 네이버 블로그를 검색하고, 개별 포스트의 원문을 읽고, 이미지를 로컬에 다운로드한다. API 키 없이 python3 표준 라이브러리만으로 동작한다. 검색 결과를 구조화된 JSON으로 출력한다. 모바일 버전( m.blog.naver.com )을 이용해 iframe 없이 본문을 직접 추출한다. 블로그 이미지 CDN( blogfiles.naver.net , postfiles.pstatic.net )에서 이미지를 다운로드한다. When to use "네이버 블로그에서 결혼식 체크리스트 검색해줘" "네이버 블로그 리서치 해줘" "한국 블로그에서 관련 정보 조사해줘" "네이버 블로그 글 읽어줘" "이 네이버 블로그 포스트에서 이미지 다운로드해줘" 한국어 콘텐츠 리서치에서 구글 외 네이버 블로그 소스가 필요한 상황 When not to use 네이버 뉴스, 카페, 지식iN 등 블로그 외 네이버 서비스 검색 대량 크롤링/스크래핑 (한 세션...
3.7K
3788 meeting-insights-analyzer composiohq/awesome-claude-skills
Meeting Insights Analyzer This skill transforms your meeting transcripts into actionable insights about your communication patterns, helping you become a more effective communicator and leader. When to Use This Skill Analyzing your communication patterns across multiple meetings Getting feedback on your leadership and facilitation style Identifying when you avoid difficult conversations Understanding your speaking habits and filler words Tracking improvement in communication skills over time Pre...
3.7K
3789 pixijs-assets pixijs/pixijs-skills
The Assets API is PixiJS's asset loader, resolver, and cache in one singleton. Use it to load textures, video, spritesheets, fonts, JSON, and other resources with format detection, resolution switching, bundle grouping, progress tracking, and GPU cleanup. Quick Start await Assets . init ( { basePath : "/static/" } ) ; const texture = await Assets . load ( "bunny.png" ) ; const sprite = new Sprite ( texture ) ; app . stage . addChild ( sprite ) ; const [ hero , enemy ] = await Assets . load ( [ "...
3.7K
3790 pixijs-scene-sprite pixijs/pixijs-skills
PixiJS has three sprite classes for different drawing tasks. Sprite is the default image-drawing leaf; NineSliceSprite is a resizable UI-panel variant that preserves corner art; TilingSprite repeats a texture across an area. The AnimatedSprite subclass of Sprite cycles through texture frames for frame-based animation. Assumes familiarity with pixijs-scene-core-concepts . All sprite classes are leaf nodes; they cannot have children. Wrap multiple sprites in a Container to group them. Quick Start ...
3.7K
3791 creating-mermaid-diagrams agents365-ai/365-skills
Mermaid Diagrams Generate .mmd text files and export to PNG/SVG/PDF using mmdc (local) or Kroki API (no install). Key advantage: Text-based syntax with fully automatic layout — no x/y coordinates needed. Prerequisites Option A: Local (mmdc) npm install -g @mermaid-js/mermaid-cli mmdc --version Option B: Kroki API (no install) curl --version Just need curl Show more
3.7K
3792 contagious wondelai/skills
Word-of-Mouth & Virality Framework A framework for engineering word-of-mouth and making products, ideas, and content contagious. Based on Jonah Berger's research into why certain things catch on while others languish in obscurity — and how to systematically tip the odds in your favor. Core Principle Virality is not born — it is engineered. Products don't go viral by luck or by simply being great. They spread because they were designed — consciously or unconsciously — to be shared. The foundation...
3.7K
3793 react-native-brownfield-migration callstackincubator/agent-skills
Migrating to React Native Overview Prescriptive workflow for incremental adoption of React Native in existing native apps using @callstack/react-native-brownfield , from initial setup through phased host integration. Expo track Bare React Native track Use one track per task unless the user explicitly asks for migration or comparison. Migration Strategy Use this strategy for brownfield migration planning and execution: Assess app state and select Expo or bare path. Perform initial setup with @cal...
3.7K
3794 pixijs-events pixijs/pixijs-skills
PixiJS's federated event system mirrors DOM events on the scene graph. Set container.eventMode = 'static' to opt an object in, then listen with .on() , addEventListener() , or onEventName property handlers. Move events fire only over the listening object; use globalpointermove for drag. Quick Start const button = new Sprite ( await Assets . load ( "button.png" ) ) ; button . eventMode = "static" ; button . cursor = "pointer" ; app . stage . addChild ( button ) ; button . on ( "pointertap" , ( ev...
3.7K
3795 crossing-the-chasm wondelai/skills
Crossing the Chasm Framework Strategic framework for marketing and selling disruptive technology products, particularly for transitioning from early adopters to mainstream customers. Core Principle There is a chasm between early adopters and the mainstream market. Most tech companies fail not because they can't build great products, but because they can't cross from visionaries who love new technology to pragmatists who just want solutions that work. The foundation: Early adopters and mainstream...
3.7K
3796 nextjs-cache-architecture mohamed-hossam1/nextjs-skills
Next.js Cache Architecture Architect caching in a Next.js 16+ App Router project from day one — not just dropping "use cache" where it happens to fit, but structuring the tag registry, revalidation utilities, Suspense boundaries, and mutation wiring so the cache stays correct as the codebase grows. How to use this skill Apply every rule and template below to the user's actual project. Replace placeholders like [Entity] and [collection] with names from their codebase before writing any code. $ARG...
3.7K
3797 pixijs-math pixijs/pixijs-skills
PixiJS exposes lightweight math primitives (Point, Matrix, shape classes) used throughout the library for transforms, hit testing, and coordinate conversion. Import pixi.js/math-extras to add vector operations (add, dot, magnitude, reflect) and Rectangle intersection/union helpers. Quick Start const parent = new Container ( ) ; parent . position . set ( 100 , 100 ) ; parent . scale . set ( 2 ) ; app . stage . addChild ( parent ) ; const child = new Container ( ) ; child . position . set ( 50 , 5...
3.7K
3798 cloud assistant-ui/skills
assistant-ui Cloud Always consult assistant-ui.com/llms.txt for the latest API. Cloud persistence for threads, messages, and files. References ./references/persistence.md -- Thread and message persistence ./references/authorization.md -- Authentication patterns ./references/custom-persistence.md -- Self-hosted message persistence ./references/auth-integrations.md -- better-auth and Clerk integrations Installation npm install assistant-cloud Show more Installs 2.7K Repository assistant-ui/skills ...
3.7K
3799 teach vinvcn/mattpocock-skills-zh-cn
No SKILL.md available for this skill. View on GitHub
3.7K
3800 travel-planner ailabs-393/ai-labs-claude-skills
Travel Planner Overview This skill transforms Claude into a comprehensive travel planning assistant that maintains your travel preferences and generates detailed, personalized trip plans including itineraries, budget breakdowns, packing lists, and cultural guidelines for any destination. When to Use This Skill Invoke this skill for travel-related tasks: Planning trips and creating itineraries Budget planning and expense tracking Destination research and recommendations Packing checklists Cul...
3.7K