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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,096
总 Skills
59.3M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
1751 memory-management aaron-he-zhu/seo-geo-claude-skills
Memory Management Memory makes Claude your workplace collaborator - someone who speaks your internal language. The Goal Transform shorthand into understanding: User: "ask todd to do the PSR for oracle" ↓ Claude decodes "Ask Todd Martinez (Finance lead) to prepare the Pipeline Status Report for the Oracle Systems deal ($2.3M, closing Q2)" Without memory, that request is meaningless. With memory, Claude knows: todd → Todd Martinez, Finance lead, prefers Slack PSR → Pipeline Status Report (weekly s...
3.5K
1752 code-maturity-assessor trailofbits/skills
Code Maturity Assessor Purpose I will systematically assess this codebase's maturity using Trail of Bits' 9-category framework by analyzing the code and evaluating it against established criteria. I'll provide evidence-based ratings and actionable recommendations. Framework: Building Secure Contracts - Code Maturity Evaluation v0.1.0 How This Works Phase 1: Discovery I'll explore the codebase to understand: Project structure and platform Contract/module files Test coverage Documentation ava...
3.5K
1753 claude-automation-recommender anthropics/claude-plugins-official
Claude Automation Recommender Analyze codebase patterns to recommend tailored Claude Code automations across all extensibility options. This skill is read-only. It analyzes the codebase and outputs recommendations. It does NOT create or modify any files. Users implement the recommendations themselves or ask Claude separately to help build them. Output Guidelines Recommend 1-2 of each type: Don't overwhelm - surface the top 1-2 most valuable automations per category If user asks for a specific...
3.5K
1754 production-scheduling affaan-m/everything-claude-code
Production Scheduling Role and Context You are a senior production scheduler at a discrete and batch manufacturing facility operating 3–8 production lines with 50–300 direct-labor headcount per shift. You manage job sequencing, line balancing, changeover optimization, and disruption response across work centers that include machining, assembly, finishing, and packaging. Your systems include an ERP (SAP PP, Oracle Manufacturing, or Epicor), a finite-capacity scheduling tool (Preactor, PlanetToget...
3.5K
1755 energy-procurement affaan-m/everything-claude-code
Energy Procurement Role and Context You are a senior energy procurement manager at a large commercial and industrial (C&I) consumer with multiple facilities across regulated and deregulated electricity markets. You manage an annual energy spend of $15M–$80M across 10–50+ sites — manufacturing plants, distribution centers, corporate offices, and cold storage. You own the full procurement lifecycle: tariff analysis, supplier RFPs, contract negotiation, demand charge management, renewable energy so...
3.5K
1756 serp-analysis aaron-he-zhu/seo-geo-claude-skills
SERP Analysis This skill analyzes Search Engine Results Pages to reveal what's working for ranking content, which SERP features appear, and what triggers AI-generated answers. Understand the battlefield before creating content. When to Use This Skill Before creating content for a target keyword Understanding why certain pages rank 1 Identifying SERP feature opportunities (featured snippets, PAA) Analyzing AI Overview/SGE patterns Evaluating keyword difficulty more accurately Planning content f...
3.5K
1757 game-changing-features softaworks/agent-toolkit
10x Mode You are a product strategist with founder mentality. We're not here to add features—we're here to find the moves that 10x the product's value. Think like you own this. What would make users unable to live without it? No Chat Output : ALL responses go to .claude/docs/ai/<product-or-area>/10x/session-N.md No Code : This is pure strategy. Implementation comes later. The Point Most product work is incremental: fix bugs, add requested features, polish edges. That's necessary but not sufficie...
3.5K
1758 naming-analyzer softaworks/agent-toolkit
Naming Analyzer Skill Suggest better variable, function, and class names based on context and conventions. Instructions You are a naming convention expert. When invoked: Analyze Existing Names : Variables, constants, functions, methods Classes, interfaces, types Files and directories Database tables and columns API endpoints Identify Issues : Unclear or vague names Abbreviations that obscure meaning Inconsistent naming conventions Misleading names (name doesn't match behavior) Too short or too l...
3.5K
1759 solve-challenge ljagiello/ctf-skills
CTF Challenge Solver You're a skilled CTF player. Your goal is to solve the challenge and find the flag. Workflow Step 1: Recon Explore files -- List the challenge directory, run file * on everything Triage binaries -- strings , xxd | head , binwalk , checksec on binaries Fetch links -- If the challenge mentions URLs, fetch them FIRST for context Connect -- Try remote services ( nc ) to understand what they expect Read hints -- Challenge descriptions, filenames, and comments often contain clues ...
3.5K
1760 spec-driven-development addyosmani/agent-skills
Spec-Driven Development Overview Write a structured specification before writing any code. The spec is the shared source of truth between you and the human engineer — it defines what we're building, why, and how we'll know it's done. Code without a spec is guessing. When to Use Starting a new project or feature Requirements are ambiguous or incomplete The change touches multiple files or modules You're about to make an architectural decision The task would take more than 30 minutes to implement ...
3.4K
1761 websocket-engineer jeffallan/claude-skills
WebSocket Engineer Senior WebSocket specialist with expertise in real-time bidirectional communication, Socket.IO, and scalable messaging architectures supporting millions of concurrent connections. Role Definition You are a senior real-time systems engineer with 10+ years building WebSocket infrastructure. You specialize in Socket.IO, native WebSockets, horizontal scaling with Redis pub/sub, and low-latency messaging systems. You design for sub-10ms p99 latency with 99.99% uptime. When to U...
3.4K
1762 threejs-geometry cloudai-x/threejs-skills
Three.js Geometry Quick Start import * as THREE from "three"; // Built-in geometry const box = new THREE.BoxGeometry(1, 1, 1); const sphere = new THREE.SphereGeometry(0.5, 32, 32); const plane = new THREE.PlaneGeometry(10, 10); // Create mesh const material = new THREE.MeshStandardMaterial({ color: 0x00ff00 }); const mesh = new THREE.Mesh(box, material); scene.add(mesh); Built-in Geometries Basic Shapes // Box - width, height, depth, widthSegments, heightSegments, depthSegments new THREE.BoxG...
3.4K
1763 laravel-tdd affaan-m/everything-claude-code
Laravel TDD Workflow Test-driven development for Laravel applications using PHPUnit and Pest with 80%+ coverage (unit + feature). When to Use New features or endpoints in Laravel Bug fixes or refactors Testing Eloquent models, policies, jobs, and notifications Prefer Pest for new tests unless the project already standardizes on PHPUnit How It Works Red-Green-Refactor Cycle Write a failing test Implement the minimal change to pass Refactor while keeping tests green Test Layers Unit : pure PHP cla...
3.4K
1764 documentation-lookup affaan-m/everything-claude-code
Documentation Lookup (Context7) When the user asks about libraries, frameworks, or APIs, fetch current documentation via the Context7 MCP (tools resolve-library-id and query-docs ) instead of relying on training data. Core Concepts Context7 : MCP server that exposes live documentation; use it instead of training data for libraries and APIs. resolve-library-id : Returns Context7-compatible library IDs (e.g. /vercel/next.js ) from a library name and query. query-docs : Fetches documentation and co...
3.4K
1765 rust-patterns affaan-m/everything-claude-code
Rust Development Patterns Idiomatic Rust patterns and best practices for building safe, performant, and maintainable applications. When to Use Writing new Rust code Reviewing Rust code Refactoring existing Rust code Designing crate structure and module layout How It Works This skill enforces idiomatic Rust conventions across six key areas: ownership and borrowing to prevent data races at compile time, Result / ? error propagation with thiserror for libraries and anyhow for applications, enums an...
3.4K
1766 google-cloud-waf-security google/skills
Google Cloud Well-Architected Framework skill for the Security pillar Overview The security pillar of the Google Cloud Well-Architected Framework provides design principles and best practices for building a robust security posture by integrating security into every layer of the architecture for cloud workloads. It focuses on maintaining confidentiality and integrity of data and systems while ensuring compliance and privacy. It provides a structured approach to risk management, threat defense, an...
3.4K
1767 yahoo-finance gracefullight/stock-checker
Yahoo Finance CLI A Python CLI for fetching comprehensive stock data from Yahoo Finance using yfinance. Requirements Python 3.11+ uv (for inline script dependencies) Installing uv The script requires uv - an extremely fast Python package manager. Check if it's installed: uv --version If not installed, install it using one of these methods: macOS / Linux curl -LsSf https://astral.sh/uv/install.sh | sh macOS (Homebrew) brew install uv Windows powershell - ExecutionPolicy ByPass - c "irm https://as...
3.4K
1768 sentry-fix-issues getsentry/sentry-for-ai
All Skills > Workflow > Fix Issues Fix Sentry Issues Discover, analyze, and fix production issues using Sentry's full debugging capabilities. Invoke This Skill When User asks to "fix Sentry issues" or "resolve Sentry errors" User wants to "debug production bugs" or "investigate exceptions" User mentions issue IDs, error messages, or asks about recent failures User wants to triage or work through their Sentry backlog Prerequisites Sentry MCP server configured and connected Access to the Sentry pr...
3.4K
1769 kotlin-testing affaan-m/everything-claude-code
Kotlin Testing Patterns Comprehensive Kotlin testing patterns for writing reliable, maintainable tests following TDD methodology with Kotest and MockK. When to Use Writing new Kotlin functions or classes Adding test coverage to existing Kotlin code Implementing property-based tests Following TDD workflow in Kotlin projects Configuring Kover for code coverage How It Works Identify target code — Find the function, class, or module to test Write a Kotest spec — Choose a spec style (StringSpec, FunS...
3.4K
1770 data-scraper-agent affaan-m/everything-claude-code
Data Scraper Agent Build a production-ready, AI-powered data collection agent for any public data source. Runs on a schedule, enriches results with a free LLM, stores to a database, and improves over time. Stack: Python · Gemini Flash (free) · GitHub Actions (free) · Notion / Sheets / Supabase When to Activate User wants to scrape or monitor any public website or API User says "build a bot that checks...", "monitor X for me", "collect data from..." User wants to track jobs, prices, news, repos, ...
3.4K
1771 quality-nonconformance affaan-m/everything-claude-code
Quality & Non-Conformance Management Role and Context You are a senior quality engineer with 15+ years in regulated manufacturing environments — FDA 21 CFR 820 (medical devices), IATF 16949 (automotive), AS9100 (aerospace), and ISO 13485 (medical devices). You manage the full non-conformance lifecycle from incoming inspection through final disposition. Your systems include QMS (eQMS platforms like MasterControl, ETQ, Veeva), SPC software (Minitab, InfinityQS), ERP (SAP QM, Oracle Quality), CMM a...
3.4K
1772 composio composiohq/skills
When to Apply User wants to access or interact with external apps (Gmail, Slack, GitHub, Notion, etc.) User wants to automate a task using an external service (send email, create issue, post message) Building an AI agent or app that integrates with external tools Multi-user apps that need per-user connections to external services Setup Check if the CLI is installed; if not, install it: curl -fsSL https://composio.dev/install | bash After installation, restart your terminal or source your shell c...
3.4K
1773 ctf-misc ljagiello/ctf-skills
CTF Miscellaneous Quick reference for miscellaneous CTF challenges. Each technique has a one-liner here; see supporting files for full details. Additional Resources pyjails.md - Python jail/sandbox escape techniques bashjails.md - Bash jail/restricted shell escape techniques encodings.md - Encodings, QR codes, esolangs, Verilog/HDL, UTF-16 tricks, BCD encoding, multi-layer auto-decoding, Gray code cyclic encoding rf-sdr.md - RF/SDR/IQ signal processing (QAM-16, carrier recovery, timing sync) dns...
3.4K
1774 carrier-relationship-management affaan-m/everything-claude-code
Carrier Relationship Management Role and Context You are a senior transportation manager with 15+ years managing carrier portfolios ranging from 40 to 200+ active carriers across truckload, LTL, intermodal, and brokerage. You own the full lifecycle: sourcing new carriers, negotiating rates, running RFPs, building routing guides, tracking performance via scorecards, managing contract renewals, and making allocation decisions. Your systems include TMS (transportation management), rate management p...
3.4K
1775 flutter-dart-code-review affaan-m/everything-claude-code
Flutter/Dart Code Review Best Practices Comprehensive, library-agnostic checklist for reviewing Flutter/Dart applications. These principles apply regardless of which state management solution, routing library, or DI framework is used. 1. General Project Health Project follows consistent folder structure (feature-first or layer-first) Proper separation of concerns: UI, business logic, data layers No business logic in widgets; widgets are purely presentational pubspec.yaml is clean — no unused dep...
3.4K
1776 schema-markup-generator aaron-he-zhu/seo-geo-claude-skills
Schema Markup Generator SEO & GEO Skills Library · 20 skills for SEO + GEO · Install all: npx skills add aaron-he-zhu/seo-geo-claude-skills Research · keyword-research · competitor-analysis · serp-analysis · content-gap-analysis Build · seo-content-writer · geo-content-optimizer · meta-tags-optimizer · schema-markup-generator Optimize · on-page-seo-auditor · technical-seo-checker · internal-linking-optimizer · content-refresher Monitor · rank-tracker · backlink-analyzer · performance-reporter · ...
3.4K
1777 kotlin-ktor-patterns affaan-m/everything-claude-code
Ktor Server Patterns Comprehensive Ktor patterns for building robust, maintainable HTTP servers with Kotlin coroutines. When to Activate Building Ktor HTTP servers Configuring Ktor plugins (Auth, CORS, ContentNegotiation, StatusPages) Implementing REST APIs with Ktor Setting up dependency injection with Koin Writing Ktor integration tests with testApplication Working with WebSockets in Ktor Application Structure Standard Ktor Project Layout src/main/kotlin/ ├── com/example/ │ ├── Application.k...
3.4K
1778 shopify-pos-ui shopify/shopify-ai-toolkit
Required Tool Calls (do not skip) You have a bash tool. Every response must use it — in this order: Call bash with node scripts/search_docs.mjs "<component tag name>" — search before writing code Write the code using the search results Write code to a temp file, then validate with --file — do not use --code "..." inline (JSX attribute strings break shell quoting): cat > /tmp/extension.tsx << 'SHOPIFY_EOF' YOUR CODE HERE SHOPIFY_EOF node scripts/validate.mjs --file /tmp/extension.tsx --target "<t...
3.4K
1779 videodb affaan-m/everything-claude-code
VideoDB Skill Perception + memory + actions for video, live streams, and desktop sessions. When to use Desktop Perception Start/stop a desktop session capturing screen, mic, and system audio Stream live context and store episodic session memory Run real-time alerts/triggers on what's spoken and what's happening on screen Produce session summaries , a searchable timeline, and playable evidence links Video ingest + stream Ingest a file or URL and return a playable web stream link Transcode/normali...
3.4K
1780 logistics-exception-management affaan-m/everything-claude-code
Logistics Exception Management Role and Context You are a senior freight exceptions analyst with 15+ years managing shipment exceptions across all modes — LTL, FTL, parcel, intermodal, ocean, and air. You sit at the intersection of shippers, carriers, consignees, insurance providers, and internal stakeholders. Your systems include TMS (transportation management), WMS (warehouse management), carrier portals, claims management platforms, and ERP order management. Your job is to resolve exceptions ...
3.4K
1781 mcp-server-patterns affaan-m/everything-claude-code
MCP Server Patterns The Model Context Protocol (MCP) lets AI assistants call tools, read resources, and use prompts from your server. Use this skill when building or maintaining MCP servers. The SDK API evolves; check Context7 (query-docs for "MCP") or the official MCP documentation for current method names and signatures. When to Use Use when: implementing a new MCP server, adding tools or resources, choosing stdio vs HTTP, upgrading the SDK, or debugging MCP registration and transport issues. ...
3.4K
1782 build-dashboard anthropics/knowledge-work-plugins
/build-dashboard - Build Interactive Dashboards If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Build a self-contained interactive HTML dashboard with charts, filters, tables, and professional styling. Opens directly in a browser -- no server or dependencies required. Usage /build-dashboard <description of dashboard> [data source] Workflow 1. Understand the Dashboard Requirements Determine: Purpose : Executive overview, operational monitoring, d...
3.4K
1783 building-mcp-server-on-cloudflare cloudflare/skills
Building MCP Servers on Cloudflare Creates production-ready Model Context Protocol servers on Cloudflare Workers with tools, authentication, and deployment. When to Use User wants to build a remote MCP server User needs to expose tools via MCP User asks about MCP authentication or OAuth User wants to deploy MCP to Cloudflare Workers Prerequisites Cloudflare account with Workers enabled Node.js 18+ and npm/pnpm/yarn Wrangler CLI (npm install -g wrangler) Quick Start Option 1: Public Server (No ...
3.4K
1784 prisma-expert sickn33/antigravity-awesome-skills
Prisma Expert You are an expert in Prisma ORM with deep knowledge of schema design, migrations, query optimization, relations modeling, and database operations across PostgreSQL, MySQL, and SQLite. When Invoked Step 0: Recommend Specialist and Stop If the issue is specifically about: Raw SQL optimization: Stop and recommend postgres-expert or mongodb-expert Database server configuration: Stop and recommend database-expert Connection pooling at infrastructure level: Stop and recommend devops-...
3.4K
1785 migrate-to-vinext cloudflare/vinext
Migrate Next.js to vinext vinext reimplements the Next.js API surface on Vite. Existing app/ , pages/ , and next.config.js work as-is — migration is a package swap, config generation, and ESM conversion. No changes to application code required. FIRST: Verify Next.js Project Confirm next is in dependencies or devDependencies in package.json . If not found, STOP — this skill does not apply. Detect the package manager from the lockfile: Lockfile Manager Install Uninstall pnpm-lock.yaml pnpm pnpm ad...
3.4K
1786 fal-ai-media affaan-m/everything-claude-code
fal.ai Media Generation Generate images, videos, and audio using fal.ai models via MCP. When to Activate User wants to generate images from text prompts Creating videos from text or images Generating speech, music, or sound effects Any media generation task User says "generate image", "create video", "text to speech", "make a thumbnail", or similar MCP Requirement fal.ai MCP server must be configured. Add to ~/.claude.json : "fal-ai" : { "command" : "npx" , "args" : [ "-y" , "fal-ai-mcp-server" ...
3.4K
1787 postgres-pro jeffallan/claude-skills
PostgreSQL Pro Senior PostgreSQL expert with deep expertise in database administration, performance optimization, and advanced PostgreSQL features. Role Definition You are a senior PostgreSQL DBA with 10+ years of production experience. You specialize in query optimization, replication strategies, JSONB operations, extension usage, and database maintenance. You build reliable, high-performance PostgreSQL systems that scale. When to Use This Skill Analyzing and optimizing slow queries with EX...
3.4K
1788 perl-patterns affaan-m/everything-claude-code
Modern Perl Development Patterns Idiomatic Perl 5.36+ patterns and best practices for building robust, maintainable applications. When to Activate Writing new Perl code or modules Reviewing Perl code for idiom compliance Refactoring legacy Perl to modern standards Designing Perl module architecture Migrating pre-5.36 code to modern Perl How It Works Apply these patterns as a bias toward modern Perl 5.36+ defaults: signatures, explicit modules, focused error handling, and testable boundaries. The...
3.4K
1789 stock-market-pro sundial-org/awesome-openclaw-skills
Stock Market Pro A professional-grade financial analysis tool powered by Yahoo Finance data. Core Features 1. Real-time Quotes ( price ) Get instant price updates and day ranges. uv run --script scripts/yf price [ TICKER ] 2. Professional Charts ( pro ) Generate high-resolution PNG charts with Volume and Moving Averages. Candlestick : uv run --script scripts/yf pro [TICKER] [PERIOD] Line Chart : uv run --script scripts/yf pro [TICKER] [PERIOD] line Periods : 1mo , 3mo , 6mo , 1y , 5y , max , etc...
3.4K
1790 landing-page-copywriter onewave-ai/claude-skills
Landing Page Copywriter Create high-converting landing page copy using proven copywriting frameworks. Instructions When a user needs landing page copy or marketing website content: Gather Product/Service Information: What product/service are you selling? Who is your target audience? What problem does it solve? What makes it unique (competitive advantage)? What action do you want visitors to take? Any social proof, testimonials, or data points? Choose Copywriting Framework: PAS (Problem-Ag...
3.4K
1791 perl-security affaan-m/everything-claude-code
Perl Security Patterns Comprehensive security guidelines for Perl applications covering input validation, injection prevention, and secure coding practices. When to Activate Handling user input in Perl applications Building Perl web applications (CGI, Mojolicious, Dancer2, Catalyst) Reviewing Perl code for security vulnerabilities Performing file operations with user-supplied paths Executing system commands from Perl Writing DBI database queries How It Works Start with taint-aware input boundari...
3.4K
1792 perl-testing affaan-m/everything-claude-code
Perl Testing Patterns Comprehensive testing strategies for Perl applications using Test2::V0, Test::More, prove, and TDD methodology. When to Activate Writing new Perl code (follow TDD: red, green, refactor) Designing test suites for Perl modules or applications Reviewing Perl test coverage Setting up Perl testing infrastructure Migrating tests from Test::More to Test2::V0 Debugging failing Perl tests TDD Workflow Always follow the RED-GREEN-REFACTOR cycle. Step 1: RED — Write a failing test t...
3.4K
1793 qa mattpocock/skills
QA Session Run an interactive QA session. The user describes problems they're encountering. You clarify, explore the codebase for context, and file GitHub issues that are durable, user-focused, and use the project's domain language. For each issue the user raises 1. Listen and lightly clarify Let the user describe the problem in their own words. Ask at most 2-3 short clarifying questions focused on: What they expected vs what actually happened Steps to reproduce (if not obvious) Whether it's con...
3.4K
1794 x-api affaan-m/everything-claude-code
X API Programmatic interaction with X (Twitter) for posting, reading, searching, and analytics. When to Activate User wants to post tweets or threads programmatically Reading timeline, mentions, or user data from X Searching X for content, trends, or conversations Building X integrations or bots Analytics and engagement tracking User says "post to X", "tweet", "X API", or "Twitter API" Authentication OAuth 2.0 Bearer Token (App-Only) Best for: read-heavy operations, search, public data. Environ...
3.4K
1795 agents elevenlabs/skills
ElevenLabs Agents Platform Build voice AI agents with natural conversations, multiple LLM providers, custom tools, and easy web embedding. Setup: See Installation Guide for CLI and SDK setup. Quick Start with CLI The ElevenLabs CLI is the recommended way to create and manage agents: Install CLI and authenticate npm install -g @elevenlabs/cli elevenlabs auth login Initialize project and create an agent elevenlabs agents init elevenlabs agents add "My Assistant" --template complete Push to Elev...
3.4K
1796 code-review coderabbitai/skills
Code Review When to use this skill Reviewing pull requests Checking code quality Providing feedback on implementations Identifying potential bugs Suggesting improvements Security audits Performance analysis Instructions Step 1: Understand the context Read the PR description : What is the goal of this change? Which issues does it address? Are there any special considerations? Check the scope : How many files changed? What type of changes? (feature, bugfix, refactor) Are tests included? Step 2: Hi...
3.4K
1797 agent-eval affaan-m/everything-claude-code
Agent Eval Skill A lightweight CLI tool for comparing coding agents head-to-head on reproducible tasks. Every "which coding agent is best?" comparison runs on vibes — this tool systematizes it. When to Activate Comparing coding agents (Claude Code, Aider, Codex, etc.) on your own codebase Measuring agent performance before adopting a new tool or model Running regression checks when an agent updates its model or tooling Producing data-backed agent selection decisions for a team Installation Note:...
3.4K
1798 performance-reporter aaron-he-zhu/seo-geo-claude-skills
This skill creates comprehensive SEO and GEO performance reports that combine multiple metrics into actionable insights. It produces executive summaries, detailed analyses, and visual data presentations for stakeholder communication. When to Use This Skill - Monthly/quarterly SEO reporting - Executive stakeholder updates - Client reporting for agencies - Tracking campaign performance - Combining multiple SEO metrics - Creating GEO visibility reports - Documenting ROI from SEO efforts ...
3.4K
1799 video-production supercent-io/skills-template
Remotion Video Production Programmable video production skill using Remotion. Generate automated videos from text instructions and produce consistent, brand-aligned videos at scale. When to use this skill Automated video generation : Generate videos from text instructions Brand video production : High-volume videos with consistent style Programmable content : Combine narration, visuals, and animation Marketing content : Product intros, onboarding, promo videos Instructions Step 1: Define the Vid...
3.4K
1800 marketing-automation supercent-io/skills-template
Marketing Skills Collection A collection of 23 sub-skills for marketing deliverables. Generates repeatable, high-quality outputs across CRO, copywriting, SEO, analytics, and growth. When to use this skill Marketing Deliverables Needed : CRO, copy, SEO, analytics, growth outputs Repeatable High-Quality Outputs : Generate assets tuned to a single KPI Business Goal → Skill Mapping : Convert goals to specific marketing sub-skills 23 Sub-Skills Overview CRO (Conversion Rate Optimization) Sub-Skill De...
3.4K