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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,508
总 Skills
163.5M
总安装量
2,745
贡献者
# Skill 仓库 描述 安装量
20701 react-performance thebushidocollective/han
React Performance Performance optimization patterns for React 18/19 and Next.js, adapted from Vercel Labs react-best-practices (MIT, v1.0.0). This skill organizes rules by priority and provides decision-tree guidance for active code review and refactoring. When to Activate Writing or reviewing React/Next.js code for performance Diagnosing slow page loads, slow interactions, or high CPU on the client Auditing bundle size or Lighthouse Core Web Vitals regressions Removing waterfalls in Server Comp...
56
20702 cypress-playwright-setup patricio0312rev/skills
Cypress & Playwright Setup Configure comprehensive end-to-end testing for web applications. Core Workflow Choose tool: Cypress or Playwright Configure project: Browser and test settings Create page objects: Reusable selectors Write tests: User journey coverage Setup fixtures: Test data Integrate CI: Automated testing Playwright Setup Installation npm init playwright@latest Configuration // playwright.config.ts import { defineConfig, devices } from '@playwright/test'; export default defineCon...
56
20703 state-machine-design melodic-software/claude-code-plugins
State Machine Design Skill When to Use This Skill Use this skill when: State Machine Design tasks - Working on statechart and state machine modeling for lifecycle and behavior specification Planning or design - Need guidance on State Machine Design approaches Best practices - Want to follow established patterns and standards Overview Design finite state machines and statecharts for modeling entity lifecycles, workflows, and system behavior. MANDATORY: Documentation-First Approach Before des...
56
20704 typescript-refactoring-patterns autohandai/community-skills
When you see multiple boolean flags, refactor to discriminated union: ``` // Before interface User { isAdmin: boolean; isGuest: boolean; permissions?: string[]; } // After type User = | { role: 'admin'; permissions: string[] } | { role: 'guest' } | { role: 'member'; permissions: string[] }; ``` Replace Conditional with Polymorphism When you see switch statements on type, use the strategy pattern: ``` // Before function process(item: Item) { switch (item.type) { case 'a':...
56
20705 speckit-plan dceoy/speckit-agent-skills
Spec Kit Plan Skill When to Use The feature spec is ready and you need a technical implementation plan. Inputs specs/<feature>/spec.md Repo context and .specify/ templates User-provided constraints or tech preferences (if any) If the spec is missing, ask the user to run speckit-specify first. Workflow Setup : Run .specify/scripts/bash/setup-plan.sh --json from repo root and parse JSON for FEATURE_SPEC, IMPL_PLAN, SPECS_DIR, BRANCH. For single quotes in args like "I'm Groot", use escape syntax: e...
56
20706 perf-web-optimization tech-leads-club/agent-skills
Web Performance Optimization Systematic approach: Measure → Identify → Prioritize → Implement → Verify. Target Metrics Metric Good Needs Work Poor LCP < 2.5s 2.5-4s > 4s INP < 200ms 200-500ms > 500ms CLS < 0.1 0.1-0.25 > 0.25 TTFB < 800ms 800ms-1.8s > 1.8s Quick Wins 1. Images (usually biggest impact on LCP) <!-- Hero/LCP image: eager + high priority --> < img src = " /hero.webp " alt = " Hero " width = " 1200 " height = " 600 " loading = " eager " fetchpriority = " high " decoding = " async " /...
56
20707 clinical-trial-schema-designer jorgealves/agent_skills
Clinical Trial Schema Designer Purpose and Intent The clinical-trial-schema-designer bridges the gap between clinical research and data engineering. It helps automate the creation of standardized data structures (CDISC) based on clinical protocols, reducing the manual effort required for data ingestion and submission preparation. When to Use Study Setup : Use during the "Start-up" phase of a clinical trial to design the Electronic Data Capture (EDC) schemas. Data Integration : When merging data ...
56
20708 godot bfollington/terma
Godot Skill Develop, test, build, and deploy Godot 4.x games. Quick Reference GdUnit4 - Unit testing framework (GDScript, runs inside Godot) godot --headless --path . -s res://addons/gdUnit4/bin/GdUnitCmdTool.gd --run-tests PlayGodot - Game automation framework (Python, like Playwright for games) export GODOT_PATH = /path/to/godot-automation-fork pytest tests/ -v Export web build godot --headless --export-release "Web" ./build/index.html Deploy to Vercel vercel deploy ./build --prod Testing ...
56
20709 coding-standards expensify/app
Coding Standards & Best Practices Baseline coding conventions applicable across projects. This skill is the shared floor, not the detailed framework playbook. Use frontend-patterns for React, state, forms, rendering, and UI architecture. Use backend-patterns or api-design for repository/service layers, endpoint design, validation, and server-specific concerns. Use rules/common/coding-style.md when you need the shortest reusable rule layer instead of a full skill walkthrough. When to Activate Sta...
56
20710 verl-rl-training orchestra-research/ai-research-skills
verl is a flexible, efficient, and production-ready RL training library for large language models from ByteDance's Seed team. It implements the HybridFlow framework (EuroSys 2025) and powers models like Doubao-1.5-pro achieving O1-level performance on math benchmarks. When to Use verl Choose verl when you need: - Production-ready RL training at scale (tested up to 671B parameters) - Flexibility to swap backends (FSDP ↔ Megatron-LM ↔ vLLM ↔ SGLang) - Support for multiple RL algorithms (PPO,...
56
20711 refine-prompt paulrberg/agent-skills
Context Working directory: ! pwd Request: $ARGUMENTS Task You are an expert prompt engineer. Create an optimized prompt based on $ARGUMENTS . 1. Craft the Prompt Apply relevant techniques: Few-shot examples (when helpful) Chain-of-thought reasoning Role/perspective setting Output format specification Constraints and boundaries Self-consistency checks Structure with: Clear role definition (if applicable) Explicit task description Expected output format Constraints and guidelines 2. Display the Re...
56
20712 performance sgcarstrends/sgcarstrends
Performance optimization Deep performance optimization based on Lighthouse performance audits. Focuses on loading speed, runtime efficiency, and resource optimization. How it works Identify performance bottlenecks in code and assets Prioritize by impact on Core Web Vitals Provide specific optimizations with code examples Measure improvement with before/after metrics Performance budget Resource Budget Rationale Total page weight < 1.5 MB 3G loads in ~4s JavaScript (compressed) < 300 KB Parsing ...
56
20713 app-review pollinations/pollinations
App Review Process app submissions from GitHub issues. Validation (registration, duplicates, stars) is pre-done by workflow. Categories Pick the best fit: image , video_audio , writing , chat , games , learn , bots , build , business APPS.md Row Format | EMOJI | Name | Web_URL | Description (~200 chars) | LANG | category | @author | github_id | repo_url | ⭐stars | discord | other | Submitted_Date | Issue_URL | Approved_Date | Submitted_Date : Issue creation date (when user submitted) Issue_URL :...
56
20714 erpnext-syntax-jinja openaec-foundation/erpnext_anthropic_claude_development_skill_package
ERPNext Jinja Templates Syntax Skill Correct Jinja syntax for Print Formats, Email Templates, and Portal Pages in ERPNext/Frappe v14/v15/v16. When to Use This Skill USE this skill when: Creating or modifying Print Formats Developing Email Templates Building Portal Pages (www/*.html) Adding custom Jinja filters/methods via hooks DO NOT USE for: Report Print Formats (they use JavaScript templating, not Jinja) Client Scripts (use erpnext-syntax-clientscripts) Server Scripts (use erpnext-syntax-serv...
56
20715 dev-api-design vasilyu1983/ai-agents-public
API Development & Design — Quick Reference Use this skill to design, implement, and document production-grade APIs (REST, GraphQL, gRPC, and tRPC). Apply it for contract design (OpenAPI), versioning/deprecation, authentication/authorization, rate limiting, pagination, error models, and developer documentation. Modern best practices (Jan 2026): HTTP semantics and cacheability (RFC 9110), Problem Details error model (RFC 9457), OpenAPI 3.1+, contract-first + breaking-change detection, strong Aut...
56
20716 nemo-curator orchestra-research/ai-research-skills
NeMo Curator - GPU-Accelerated Data Curation NVIDIA's toolkit for preparing high-quality training data for LLMs. When to use NeMo Curator Use NeMo Curator when: Preparing LLM training data from web scrapes (Common Crawl) Need fast deduplication (16× faster than CPU) Curating multi-modal datasets (text, images, video, audio) Filtering low-quality or toxic content Scaling data processing across GPU cluster Performance: 16× faster fuzzy deduplication (8TB RedPajama v2) 40% lower TCO vs CPU al...
56
20717 langsmith-observability orchestra-research/ai-research-skills
LangSmith - LLM Observability Platform Development platform for debugging, evaluating, and monitoring language models and AI applications. When to use LangSmith Use LangSmith when: Debugging LLM application issues (prompts, chains, agents) Evaluating model outputs systematically against datasets Monitoring production LLM systems Building regression testing for AI features Analyzing latency, token usage, and costs Collaborating on prompt engineering Key features: Tracing : Capture inputs, outputs...
56
20718 architecture-documentation melodic-software/claude-code-plugins
Architecture Documentation When to Use This Skill Use this skill when you need to: Generate architecture documentation for a system Create C4 diagrams (Context, Container, Component) Document architecture for different stakeholder viewpoints Produce technical overviews or executive summaries Keywords: document, c4, container, context, component, viewpoint, architecture description, technical overview, executive summary Document Types Type Audience Content Context All stakeholders System boun...
56
20719 accessible-motion dylantarre/animation-principles
Accessible Motion Design Apply Disney's 12 animation principles while ensuring accessibility for users with vestibular disorders, motion sensitivity, and cognitive disabilities. Quick Reference Principle Accessible Implementation Squash & Stretch Opacity/color change instead Anticipation State change indication without motion Staging Focus management, not motion-based Straight Ahead / Pose to Pose Instant state changes Follow Through / Overlapping Eliminated or minimal fade Slow In / Slow Out ...
56
20720 project-onboarding mgd34msu/goodvibes-plugin
When to Use Invoke this skill when: Starting work on an unfamiliar codebase After context is lost (new session) When check_onboarding_performed indicates no memories exist When user asks to "learn about this project" or "understand this codebase" Onboarding Workflow Step 1: Check Existing Knowledge First, check if onboarding was already performed: List files in: .claude/context/memory/ Look for: project-structure.md, build-commands.md, test-commands.md If memories exist, read them and skip to St...
56
20721 package-script-writer umbraco/umbraco-cms-backoffice-skills
Package Script Writer (psw) Generate and run Umbraco CMS installation scripts using the psw CLI tool. Workflow Check if PSW CLI is installed: psw --version If command not found, the .NET tools path may not be in PATH. Try: Linux/Mac: export PATH="$PATH:$HOME/.dotnet/tools" && psw --version Windows: %USERPROFILE%\.dotnet\tools\psw --version If not installed, install it: dotnet tool install --global PackageScriptWriter.Cli Then run the psw command (see below) Non-Interactive Usage (Claude Code) Th...
56
20722 reactive-dashboard-performance erichowens/some_claude_skills
Reactive Dashboard Performance Expert in building production-grade reactive dashboards that load in <100ms and have comprehensive test coverage. Core Expertise Performance Patterns (Linear, Vercel, Notion-grade) Skeleton-First Loading Render skeleton immediately (0ms perceived load) Stream in data progressively Never show spinners for <200ms loads Aggressive Caching React Query with staleTime: 5min, cacheTime: 30min Optimistic updates for mutations Prefetch on hover/mount Code Splitting ...
56
20723 swot-pestle-analysis melodic-software/claude-code-plugins
Strategic Environmental Analysis Perform strategic environmental analysis using SWOT, PESTLE, and Porter's Five Forces frameworks. Creates structured assessments for competitive positioning and strategic planning. What is Strategic Environmental Analysis? Strategic environmental analysis examines internal and external factors that impact an organization's ability to achieve its objectives. Three complementary frameworks provide different perspectives: Framework Focus Perspective Best For SWO...
56
20724 react-native gentleman-programming/gentleman-skills
@json-render/react-native React Native renderer that converts JSON specs into native mobile component trees with standard components, data binding, visibility, actions, and dynamic props. Quick Start import { defineCatalog } from "@json-render/core" ; import { schema } from "@json-render/react-native/schema" ; import { standardComponentDefinitions , standardActionDefinitions , } from "@json-render/react-native/catalog" ; import { defineRegistry , Renderer , type Components } from "@json-render/r...
56
20725 import-export groeimetai/snow-flow
Import/Export handles data migration, bulk operations, and data transfer. Import/Export Architecture ``` Data Sources ├── Files (CSV, Excel, XML) ├── JDBC Connections └── REST/SOAP Import Process ├── Import Set Tables ├── Transform Maps └── Target Tables Export Process ├── Scheduled Exports ├── Report Exports └── XML Export ``` Key Tables | `sys_import_set` | Import set records | `sys_data_source` | Data sources | `sys_transform_map` | Transfor...
56
20726 r3f-fundamentals bbeierle12/skill-mcp-claude
React Three Fiber Fundamentals Quick Start import { Canvas } from '@react-three/fiber' import { useRef } from 'react' import { useFrame } from '@react-three/fiber' function RotatingBox() { const meshRef = useRef() useFrame((state, delta) => { meshRef.current.rotation.x += delta meshRef.current.rotation.y += delta * 0.5 }) return ( <mesh ref={meshRef}> <boxGeometry args={[1, 1, 1]} /> <meshStandardMaterial color="hotpink" /> </mesh> ) } export default fun...
56
20727 chrome-debug zenobi-us/dotfiles
Chrome Debugging and Browser Manipulation via Remote Debugging Protocol Overview Chrome DevTools Protocol (CDP) enables remote browser automation and debugging through mcporter. Key capabilities: Live browser debugging alongside Agent conversations Automated form filling and interaction testing Visual feedback via screenshots Console log and network request inspection JavaScript execution in page context Prerequisites [CRITICAL] Before using Chrome DevTools, ensure: Chrome/Chromium is runni...
56
20728 b2c-scaffold salesforcecommercecloud/b2c-developer-tooling
B2C Scaffold Skill Use the b2c scaffold commands to generate B2C Commerce components from templates. Tip: If b2c is not installed globally, use npx @salesforce/b2c-cli instead. Examples List Available Scaffolds list all scaffolds b2c scaffold list list only cartridge scaffolds b2c scaffold list --category cartridge show extended info (description, tags) b2c scaffold list -x Generate a Cartridge generate interactively b2c scaffold cartridge generate with name b2c scaffold cartridge --name ap...
56
20729 docs-writer tech-leads-club/agent-skills
docs-writer skill instructions As an expert technical writer for the Gemini CLI project, your goal is to produce documentation that is accurate, clear, and consistent with the project's standards. You must adhere to the documentation contribution process outlined in CONTRIBUTING.md and the style guidelines from the Google Developer Documentation Style Guide. Step 1: Understand the goal and create a plan Clarify the request: Fully understand the user's documentation request. Identify the core f...
56
20730 hig-components-content raintree-technology/apple-hig-skills
Apple HIG: Content Components Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered. Key Principles Adapt to different sizes and contexts. Content components must work across screen sizes, orientations, and multitasking configurations. Use Auto Layout and size classes. Make content accessible. Charts need audio graph support. Images need alt text. Collections need proper VoiceOver navigation order. All content com...
56
20731 psi siviter-xyz/dot-agent
PSI - Plan Spec Implement Structured workflow for planning, specifying, and implementing changes with documentation-first approach. When to Use Only use when: Explicitly directed by the user Mentioned in project AGENTS.md file Do not use automatically - this is an opt-in workflow, not a default. Core Workflow Plan → Spec → Implement Phases are independent - you can start with any phase, but all must ensure documentation stays up-to-date. Key Principles Ephemeral planning - Plans stored ...
56
20732 cron-scheduler aidotnet/moyucode
Cron Scheduler Tool Description Parse, validate, and explain cron expressions. Calculate next run times and generate cron syntax. Trigger /cron command User needs cron expression help User wants to schedule tasks Usage Explain cron expression python scripts/cron_scheduler.py "0 9 * * 1-5" Get next N run times python scripts/cron_scheduler.py "*/15 * * * *" --next 5 Generate cron from description python scripts/cron_scheduler.py --generate "every day at 9am" Validate expression python scripts...
56
20733 frontend-dev-guidelines bbeierle12/skill-mcp-claude
Frontend Development Guidelines (React · TypeScript · Suspense-First · Production-Grade) You are a senior frontend engineer operating under strict architectural and performance standards. Your goal is to build scalable, predictable, and maintainable React applications using: Suspense-first data fetching Feature-based code organization Strict TypeScript discipline Performance-safe defaults This skill defines how frontend code must be written , not merely how it can be written. 1. Frontend Feasibi...
56
20734 debug-with-file catlog22/claude-code-workflow
Codex Debug-With-File Prompt Overview Enhanced evidence-based debugging with documented exploration process . Records understanding evolution, consolidates insights, and uses analysis to correct misunderstandings. Core workflow : Explore → Document → Log → Analyze → Correct Understanding → Fix → Verify Key enhancements over /prompts:debug : understanding.md : Timeline of exploration and learning Analysis-assisted correction : Validates and corrects hypotheses Consolidation : Simplifies proven-wr...
56
20735 docker-git-bash-guide josiahsiegel/claude-plugin-marketplace
Docker on Windows Git Bash / MINGW - Path Conversion Guide This skill provides comprehensive guidance on handling Docker commands in Git Bash (MINGW) on Windows, with specific focus on volume mount path conversion issues and solutions. The Path Conversion Problem When running Docker commands in Git Bash (MINGW) or MSYS2 on Windows, automatic path conversion can cause serious issues with volume mounts and other Docker commands. What Triggers Automatic Conversion MSYS/MINGW shells automatical...
56
20736 codeup abcfed/claude-marketplace
No SKILL.md available for this skill. View on GitHub
56
20737 umbraco-skill-validator umbraco/umbraco-cms-backoffice-skills
Skill Content Validator Validates all SKILL.md files in the repository for broken links, missing references, and invalid paths. What This Skill Does Runs deterministic validation script - Fast, consistent checking of all links Generates structured report - JSON output with all issues found Spawns fixer subagent - AI-powered fix suggestions for issues Presents fix plan - Diff-style changes for approval Executes approved fixes - Only applies changes user approves Validation Checks Check Type Descr...
56
20738 schema-creator oimiragieo/agent-studio
Schema Creator Skill WARNING: DO NOT WRITE DIRECTLY TO .claude/schemas/ Schema files are protected by unified-creator-guard.cjs (Gate 4 in CLAUDE.md). Direct writes bypass post-creation steps (catalog updates, consumer assignment, integration verification). Always use the schema-creator skill workflow for creating schemas. Direct writes create "invisible artifacts" that no validator or agent can discover. Creates JSON Schema validation files for the Claude Code Enterprise Framework. Schemas enfo...
56
20739 brightdata danielmiessler/personal_ai_infrastructure
Customization Before executing, check for user customizations at: ~/.claude/skills/CORE/USER/SKILLCUSTOMIZATIONS/BrightData/ If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults. Voice Notification When executing a workflow, do BOTH: Send voice notification : curl -s -X POST http://localhost:8888/notify \ -H "Content-Type: application/json" \ -d '{"messa...
56
20740 python-logging-strategist jorgealves/agent_skills
Python Logging Strategist Purpose and Intent Design structured logging systems with context propagation. Use to ensure Python applications are observable and logs are machine-readable. When to Use Project Setup : When initializing a new Python project. Continuous Integration : As part of automated build and test pipelines. Legacy Refactoring : When updating older Python codebases to modern standards. When NOT to Use Non-Python Projects : This tool is specialized for the Python ecosystem. Error C...
56
20741 ccxt-php ccxt/ccxt
CCXT for PHP A comprehensive guide to using CCXT in PHP projects for cryptocurrency exchange integration. Installation Via Composer (REST and WebSocket) composer require ccxt/ccxt Required PHP Extensions cURL mbstring (UTF-8) PCRE iconv gmp (for some exchanges) Optional for Async/WebSocket ReactPHP (installed automatically with ccxt) Quick Start REST API - Synchronous <?php date_default_timezone_set ( 'UTC' ) ; // Required! require_once 'vendor/autoload.php' ; $exchange = new \ ccxt \ binance ( ...
56
20742 specalign 0xbigboss/claude-code
Spec Alignment Principles (Always Active) These apply whenever a spec file and its corresponding implementation are both in context: Spec and Code Must Agree A spec describes intended behavior; code implements it. When they disagree, one is wrong. Never silently tolerate drift - surface it immediately when noticed. The user decides which is the source of truth for each discrepancy. Do not assume. Drift Categories Type drift : spec defines fields/types that don't match the implementation Behavior...
56
20743 brand voice coach eddiebe147/claude-settings
Brand Voice Coach Define, document, and maintain a consistent brand voice that makes your content instantly recognizable. This skill helps you articulate what your brand sounds like, train teams to write on-brand, and ensure consistency across every touchpoint. A strong brand voice builds trust, differentiates from competitors, and creates emotional connection. This skill provides frameworks for defining voice attributes, creating practical guidelines, and evaluating content against brand standa...
56
20744 data-pipeline-engineer erichowens/some_claude_skills
Data Pipeline Engineer Expert data engineer specializing in ETL/ELT pipelines, streaming architectures, data warehousing, and modern data stack implementation. Quick Start Identify sources - data formats, volumes, freshness requirements Choose architecture - Medallion (Bronze/Silver/Gold), Lambda, or Kappa Design layers - staging → intermediate → marts (dbt pattern) Add quality gates - Great Expectations or dbt tests at each layer Orchestrate - Airflow DAGs with sensors and retries Monitor - l...
56
20745 pricing-strategist ncklrs/startup-os-skills
Pricing Strategist Purpose Build a comprehensive, justified pricing strategy — tier structures, price points, positioning, and revenue optimization — tailored to the business through context and conversation. Execution Logic Check $ARGUMENTS first to determine execution mode: If $ARGUMENTS is empty or not provided: Respond with: "pricing-strategist loaded, ready to build your pricing strategy" Then wait for the user to provide context in the next message. If $ARGUMENTS contains content: Proceed ...
56
20746 plan-generator oimiragieo/agent-studio
Plan Generator Skill Step 1: Analyze Requirements Parse user requirements: Extract explicit requirements Identify implicit requirements Determine planning scope Assess complexity Step 2: Coordinate Specialists Request planning input from relevant agents: Analyst : Business requirements and market context PM : Product requirements and user stories Architect : Technical architecture and design Database Architect : Data requirements UX Expert : Interface requirements Step 3: Generate Plan Structure...
56
20747 huggingface-accelerate orchestra-research/ai-research-skills
HuggingFace Accelerate - Unified Distributed Training Quick start Accelerate simplifies distributed training to 4 lines of code. Installation: pip install accelerate Convert PyTorch script (4 lines): import torch + from accelerate import Accelerator + accelerator = Accelerator() model = torch.nn.Transformer() optimizer = torch.optim.Adam(model.parameters()) dataloader = torch.utils.data.DataLoader(dataset) + model, optimizer, dataloader = accelerator.prepare(model, optimizer, data...
56
20748 quality-audit-workflow rysweet/amplihack
Orchestrates a systematic, parallel quality audit of any codebase with automated remediation through PR generation and PM-prioritized recommendations. When I Activate I automatically load when you mention: - "quality audit" or "code audit" - "codebase review" or "full code review" - "refactoring opportunities" or "technical debt audit" - "module quality check" or "architecture review" - "parallel analysis" with multiple agents What I Do Execute a 7-phase workflow that: - Familiarizes...
56
20749 playwright-test open-metadata/openmetadata
Playwright Test Generator - OpenMetadata Generate production-ready, zero-flakiness Playwright tests following OpenMetadata conventions. Usage /playwright-test Feature: <feature name> Category: <Features|Pages|Flow|VersionPages> Entity: <Table|Dashboard|Pipeline|Topic|Database|User|Team|Glossary|Other> Domain: <Governance|Discovery|Platform|Observability|Integration> Scenarios: - <scenario 1 description> - <scenario 2 description> - <scenario 3 description> Roles: <admin|dataConsumer|dataSteward|...
56
20750 react-animation notedit/happy-skills
When to use Use this skill when creating Remotion video compositions that need aesthetically refined visual effects. Components are curated for motion graphics excellence, categorized by visual style. Installation npx shadcn@latest add https://reactbits.dev/r/ < Component > -TS-CSS 🎨 Aesthetic Categories Components organized by visual style. Avoid mixing more than 2 styles in one video. 1. Elegant & Soft (优雅柔和) Smooth, cinematic, refined. Best for luxury brands, emotional storytelling. Text Comp...
56