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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,414
总 Skills
34.3M
总安装量
2,438
贡献者
# Skill 仓库 描述 安装量
14601 market research analyst eddiebe147/claude-settings
Market Research Analyst Expert market research agent that conducts comprehensive market analysis using web search, data synthesis, and strategic frameworks. Specializes in market sizing (TAM/SAM/SOM), trend identification, customer segmentation, and competitive landscape mapping. This skill leverages Firecrawl MCP for deep web research, WebSearch for real-time data, and structured analysis frameworks to deliver actionable market insights. Perfect for business planning, fundraising, product strat...
58
14602 python-testing-strategist jorgealves/agent_skills
Python Testing Strategist Purpose and Intent Design comprehensive Python test suites including unit, integration, and E2E tests. Use when establishing testing patterns for new or existing Python applications. 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 P...
58
14603 form-wizard-builder patricio0312rev/skills
Form Wizard Builder Create multi-step form experiences with validation, state persistence, and review steps. Core Workflow Define steps: Break form into logical sections Create schema: Zod/Yup validation for each step Build step components: Individual form sections State management: Shared state across steps (Zustand/Context) Navigation: Next/Back/Skip logic Progress indicator: Visual step tracker Review step: Summary before submission Error handling: Per-step and final validation Basic Wizard...
58
14604 mcp-builder davepoon/buildwithclaude
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...
58
14605 sharex workflow and versioning sharex/xerahs
Scope This file is the single source of truth for Git and versioning rules that involve: Commit and push workflow Commit message format Version bump behavior Directory.Build.props updates This supersedes the retired docs/development/RELEASE_PROCESS.md . Version Source Of Truth Treat the root Directory.Build.props file as the app version source of truth. Never set version numbers in individual .csproj files. When bumping version, update every tracked Directory.Build.props in the repository so val...
58
14606 webnovel-review lingfengqaq/webnovel-writer
Copy and track progress: ``` 质量审查进度: - [ ] Step 1: 加载核心约束 (cat "${CLAUDE_PLUGIN_ROOT}/skills/webnovel-review/references/core-constraints.md") - [ ] Step 2: 加载爽点标准 (cat "${CLAUDE_PLUGIN_ROOT}/skills/webnovel-review/references/cool-points-guide.md") - [ ] Step 3: 加载节奏标准 (cat "${CLAUDE_PLUGIN_ROOT}/skills/webnovel-review/references/strand-weave-pattern.md") - [ ] Step 4: 加载常见错误 (cat "${CLAUDE_PLUGIN_ROOT}/skills/webnovel-review/references/common-mistakes.md") - [ ] Step 5: 加载项目状态 (cat .webnovel/st...
58
14607 skill-dependency-resolver jorgealves/agent_skills
Skill Dependency Resolver Purpose and Intent The skill-dependency-resolver acts as a scheduler and orchestrator. It looks at what each skill "needs" and what it "provides" to determine the logical order of operations for a multi-skill task. When to Use Workflow Automation : When you want an agent to handle a complex task that requires multiple steps (e.g., Audit -> Refactor -> Test). Architecture Planning : To see if your current skill library has all the necessary "connectors" to solve a busine...
58
14608 story writer eddiebe147/claude-settings
Story Writer Bring imaginative worlds and characters to life through compelling narrative fiction. This skill helps you develop original stories from concept to completion, whether you're writing short stories, novels, screenplays, or any form of creative fiction. From character development and world-building to plot structure and dialogue, this skill applies proven storytelling techniques to create narratives that captivate readers and keep them turning pages. It helps you navigate the creative...
58
14609 discord civitai/civitai
Discord (Via message ) Use the message tool. No provider-specific discord tool exposed to the agent. Musts Always: channel: "discord" . Respect gating: channels.discord.actions.* (some default off: roles , moderation , presence , channels ). Prefer explicit ids: guildId , channelId , messageId , userId . Multi-account: optional accountId . Guidelines Avoid Markdown tables in outbound Discord messages. Mention users as <@USER_ID> . Prefer Discord components v2 ( components ) for rich UI; use lega...
58
14610 hook-creator oimiragieo/agent-studio
Hook Creator Skill Creates, validates, and registers hooks for the multi-agent orchestration framework. ROUTER UPDATE REQUIRED (CRITICAL - DO NOT SKIP) After creating ANY hook, you MUST update documentation: 1. Add to .claude/hooks/README.md under appropriate category 2. Register in config.yaml or settings.json if required 3. Update learnings.md with hook summary Verification: grep "<hook-name>" .claude/hooks/README.md || echo "ERROR: hooks/README.md NOT UPDATED!" WHY: Hooks not documen...
58
14611 dart-doc-validation kevmoo/dash_skills
Dart Doc Validation 1. When to use this skill Use this skill when: Writing or updating documentation comments ( /// ) in Dart code. Checking for broken documentation links, references, or macros. Preparing a package for publishing to pub.dev. 2. Best Practices Validating Documentation Locally Use the dart doc command with a temporary output directory to validate documentation comments without polluting the local project workspace. This command parses all documentation comments and reports warnin...
58
14612 clickhouse-pydantic-config terrylica/cc-skills
ClickHouse Pydantic Config Generate DBeaver database client configurations from Pydantic v2 models using mise [env] as Single Source of Truth (SSoT). Critical Design Principle: Semi-Prescriptive Adaptation This skill is NOT a rigid template. It provides a SSoT pattern that MUST be adapted to each repository's structure and local database situation. Why This Matters Each repository has unique: Directory layouts (.dbeaver/ location may vary) Environment variable naming conventions Existing c...
58
14613 drizzle-orm-d1 secondsky/claude-skills
Drizzle ORM for Cloudflare D1 Status: Production Ready ✅ Last Updated: 2026-01-20 Latest Version: drizzle-orm@0.45.1, drizzle-kit@0.31.8, better-sqlite3@12.5.0 Dependencies: cloudflare-d1, cloudflare-worker-base Quick Start (5 Minutes) 1. Install npm install drizzle-orm npm install -D drizzle-kit 2. Configure drizzle.config.ts import { defineConfig } from 'drizzle-kit'; export default defineConfig({ schema: './src/db/schema.ts', out: './migrations', dialect: 'sqlite', driver: 'd1-ht...
58
14614 java-python-code-reviewer yennanliu/cs_basics
Use this Skill when: - Reviewing LeetCode problem solutions - Checking code correctness and efficiency - Comparing Java and Python implementations - Providing feedback on algorithm implementations - Optimizing existing solutions Review Framework 1. Correctness Analysis Check for: - Edge cases handling (empty input, null, single element) - Boundary conditions (array indices, loop termination) - Logic errors in algorithm implementation - Test case coverage (basic, edge, corner cases)...
57
14615 swift-concurrency jamesrochabrun/skills
Swift Concurrency Fast Path Before proposing a fix: Analyze Package.swift or .pbxproj to determine Swift language mode, strict concurrency level, default isolation, and upcoming features. Do this always, not only for migration work. Capture the exact diagnostic and offending symbol. Determine the isolation boundary: @MainActor , custom actor, actor instance isolation, or nonisolated . Confirm whether the code is UI-bound or intended to run off the main actor. Project settings that change concurr...
57
14616 presentation maker eddiebe147/claude-settings
Presentation Maker The Presentation Maker skill enables automated creation of professional PowerPoint presentations (.pptx) with custom layouts, themes, charts, images, and multimedia. Using libraries like pptxgenjs , this skill handles everything from simple slide decks to complex presentations with data visualizations and animations. Create pitch decks, training materials, reports, project updates, and any presentation content programmatically. Support for master slides, themes, charts, tables...
57
14617 changelog-generator davepoon/buildwithclaude
Changelog Generator This skill transforms technical git commits into polished, user-friendly changelogs that your customers and users will actually understand and appreciate. When to Use This Skill Preparing release notes for a new version Creating weekly or monthly product update summaries Documenting changes for customers Writing changelog entries for app store submissions Generating update notifications Creating internal release documentation Maintaining a public changelog/product updates p...
57
14618 document-pptx vasilyu1983/ai-agents-public
Document PPTX Skill — Quick Reference This skill enables creation and editing of PowerPoint presentations programmatically. Claude should apply these patterns when users need to generate pitch decks, reports, training materials, or automate presentation workflows. Modern Best Practices (Jan 2026): One slide = one takeaway; design the deck around a decision or audience goal. Cite numbers (definition + timeframe + source) and keep a single source of truth for charts. Accessibility (WCAG 2.1 AA ...
57
14619 youtube-downloader davepoon/buildwithclaude
YouTube Video Downloader Download YouTube videos with full control over quality and format settings. Quick Start The simplest way to download a video: python scripts/download_video.py "https://www.youtube.com/watch?v=VIDEO_ID" This downloads the video in best available quality as MP4 to /mnt/user-data/outputs/. Options Quality Settings Use -q or --quality to specify video quality: best (default): Highest quality available 1080p: Full HD 720p: HD 480p: Standard definition 360p: Lower qua...
57
14620 umbraco-ufm-component umbraco/umbraco-cms-backoffice-skills
Umbraco UFM Component What is it? UFM (Umbraco Flavored Markdown) Components extend Umbraco's markdown rendering with custom syntax. They allow you to create custom markers that transform into HTML when rendered. This is useful for creating dynamic content like localized strings, property values, or custom UI elements within markdown text. UFM components use special syntax markers (like for localization or = for values) that get processed into HTML. Documentation Always fetch the latest docs be...
57
14621 linkedin publisher eddiebe147/claude-settings
LinkedIn Publisher Create professional LinkedIn content and thought leadership posts that build authority When to Use This Skill Use this skill when you need to: Create compelling written content Develop clear messaging and communication Structure information effectively Not recommended for: Tasks requiring technical implementation complex data analysis Quick Reference Action Command/Trigger Create linkedin publisher linkedin content Review and optimize review linkedin publisher Get best practic...
57
14622 verification-before-completion secondsky/claude-skills
Verification Before Completion Overview Claiming work is complete without verification is dishonesty, not efficiency. Core principle: Evidence before claims, always. Violating the letter of this rule is violating the spirit of this rule. The Iron Law NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE If you haven't run the verification command in this message, you cannot claim it passes. The Gate Function BEFORE claiming any status or expressing satisfaction: 1. IDENTIFY: What command prov...
57
14623 dojo-token dojoengine/book
Dojo Tokens Implement ERC20/ERC721 tokens in Cairo, deploy them alongside your Dojo world, and configure Torii to index balances, transfers, and metadata. When to Use This Skill "Implement ERC20 token for game currency" "Create NFT items with ERC721" "Deploy an ERC20 token with my world" "Index token balances with Torii" "Query token transfers" "Use Origami for tokens" What This Skill Does Implement ERC20 fungible tokens and ERC721 NFTs in Cairo Deploy token contracts as external contracts via s...
57
14624 sentry-cocoa-sdk getsentry/sentry-agent-skills
All Skills > SDK Setup > Cocoa SDK Sentry Cocoa SDK Opinionated wizard that scans your Apple project and guides you through complete Sentry setup. Invoke This Skill When User asks to "add Sentry to iOS/macOS/tvOS" or "set up Sentry" in an Apple app User wants error monitoring, tracing, profiling, session replay, or logging in Swift/ObjC User mentions sentry-cocoa , SentrySDK , or the Apple/iOS Sentry SDK User wants to monitor crashes, app hangs, watchdog terminations, or performance Note: SDK ve...
57
14625 ios-xcode pproenca/dot-skills
iOS Xcode & Tooling Best Practices Comprehensive guide for Xcode project configuration, SwiftData persistence, testing, debugging, profiling, and app distribution. Contains 19 rules across 6 categories. Clinic Architecture Contract (iOS 26 / Swift 6.2) All guidance in this skill assumes the clinic modular MVVM-C architecture: Feature modules import Domain + DesignSystem only (never Data , never sibling features) App target is the convergence point and owns DependencyContainer , concrete coordina...
57
14626 task-planner s-hiraoku/synapse-a2a
Task Planner This skill helps you turn ambiguous or large requests into a clear, sequenced plan with ownership and verification. Outputs To Produce A short problem statement Assumptions and open questions A step-by-step plan with measurable outcomes Risks and rollback/containment options Test and verification steps Decomposition Technique Split work into thin vertical slices: One slice should be mergeable on its own Each slice should include tests or validation Prefer smallest unit that reduces ...
57
14627 education tutor eddiebe147/claude-settings
Education Tutor Comprehensive educational support system designed for students, parents, teachers, and self-learners across all subjects and skill levels. This skill provides personalized tutoring, concept explanations, study strategies, lesson planning, learning assessments, and educational guidance tailored to individual learning styles and needs. The Education Tutor excels at breaking down complex concepts into understandable components, adapting explanations to different learning styles (vis...
57
14628 moai-lang-rust modu-ai/moai-adk
Quick Reference (30 seconds) Rust 1.92+ Development Specialist with deep patterns for high-performance, memory-safe applications. Auto-Triggers: .rs, Cargo.toml, async/await, Tokio, Axum, SQLx, serde, lifetimes, traits Core Use Cases: High-performance REST APIs and microservices Memory-safe concurrent systems CLI tools and system utilities WebAssembly applications Low-latency networking services Quick Patterns: Axum REST API: Create Router with route macro chaining path and handler. Add wi...
57
14629 nextjs-optimization atman36/ai-vibe-prompts
Next.js 15 Optimization Skill Objective Optimize Next.js applications to achieve: Perfect Core Web Vitals scores (LCP < 2.5s, FID < 100ms, CLS < 0.1) Fast page load times and optimal rendering strategies Efficient data fetching and caching Production-ready build configuration SEO and accessibility excellence When to Use This Skill Auto-invoke when: Project uses Next.js (detected by next in dependencies) User mentions "optimize", "performance", "slow", or "Core Web Vitals" Before production d...
57
14630 bug-reporting-excellence proffesor-for-testing/agentic-qe
Bug Reporting Excellence <default_to_action> When reporting bugs: TITLE: [Component] fails [Condition] causing [Impact] DESCRIBE: Expected behavior → Actual behavior → Steps to reproduce INCLUDE: Environment, severity, screenshots/logs, business impact ISOLATE: Narrow down conditions (browser, user, amount thresholds) ONE BUG = ONE REPORT (don't combine issues) Bug Report Formula: [Component] Issue Title Severity: Critical/High/Medium/Low Environment: Production/Staging/Dev Expected Behav...
57
14631 code-review block/agent-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...
57
14632 umbraco-mocked-backoffice umbraco/umbraco-cms-backoffice-skills
Umbraco Mocked Backoffice Status: This skill is currently awaiting an update from Umbraco to allow external extensions to use the mocked backoffice. The patterns documented here work when running from within the Umbraco-CMS source repository. Run the full Umbraco backoffice UI with all API calls mocked - no .NET backend required . When to Use Visually test extensions during development Rapid iteration without backend deployment Test extensions in realistic UI environment Demonstrate extensions w...
57
14633 optimizing-attention-flash orchestra-research/ai-research-skills
Flash Attention - Fast Memory-Efficient Attention Quick start Flash Attention provides 2-4x speedup and 10-20x memory reduction for transformer attention through IO-aware tiling and recomputation. PyTorch native (easiest, PyTorch 2.2+): import torch import torch.nn.functional as F q = torch.randn(2, 8, 512, 64, device='cuda', dtype=torch.float16) [batch, heads, seq, dim] k = torch.randn(2, 8, 512, 64, device='cuda', dtype=torch.float16) v = torch.randn(2, 8, 512, 64, device='cuda', dtype=t...
57
14634 tailwind-config sgcarstrends/sgcarstrends
Tailwind CSS Configuration Skill This skill helps you configure and customize Tailwind CSS across the monorepo. When to Use This Skill Adding custom colors to the design system Configuring typography scales Customizing spacing and sizing Setting up design tokens Configuring Tailwind plugins Debugging Tailwind configuration issues Creating reusable theme presets Tailwind Configuration Structure ├── packages/ui/ │ ├── tailwind.config.ts UI package Tailwind config │ └── src/styles/glob...
57
14635 api-response-optimization secondsky/claude-skills
API Response Optimization Overview Fast API responses improve overall application performance and user experience. Optimization focuses on payload size, caching, and query efficiency. When to Use Slow API response times High server CPU/memory usage Large response payloads Performance degradation Scaling bottlenecks Instructions 1. Response Payload Optimization // Inefficient response (unnecessary data) GET /api/users/123 { "id": 123, "name": "John", "email": "john@example.com", "passwo...
57
14636 add-vault-abi-methods tradingstrategy-ai/web3-ethereum-defi
Add vault ABI methods This is a skill description to add smart contract Inputs Vault protocol name Smart contract address and a blockchain as a blockchain explorer link What methods to cover Vault classes Vault protocol classes can be found in eth_defi/erc_4626/vault_protocol folder. Each vault protocol has its own class. There are 40+ protocols. Some protocol share classes and extend other protocols. Smart contracts Each vault class wraps a JSON-RPC calls to an Ethereum smart contract. The...
57
14637 uv-package-manager autumnsgrove/groveengine
UV Package Manager Comprehensive guide to using uv, an extremely fast Python package installer and resolver written in Rust, for modern Python project management and dependency workflows. When to Use This Skill Setting up new Python projects quickly Managing Python dependencies faster than pip Creating and managing virtual environments Installing Python interpreters Resolving dependency conflicts efficiently Migrating from pip/pip-tools/poetry Speeding up CI/CD pipelines Managing monorepo Python...
57
14638 sglang orchestra-research/ai-research-skills
SGLang High-performance serving framework for LLMs and VLMs with RadixAttention for automatic prefix caching. When to use SGLang Use SGLang when: Need structured outputs (JSON, regex, grammar) Building agents with repeated prefixes (system prompts, tools) Agentic workflows with function calling Multi-turn conversations with shared context Need faster JSON decoding (3× vs standard) Use vLLM instead when: Simple text generation without structure Don't need prefix caching Want mature, widely-...
57
14639 naming-format tartinerlabs/skills
You are a naming conventions expert. Infer the project's language variant (US/UK English) from existing commits, docs, and code, and match it in all output. Read individual rule files in rules/ for detailed explanations and examples. Rules Overview Rule Impact File Case consistency HIGH rules/case-consistency.md File suffixes HIGH rules/file-suffixes.md Export naming HIGH rules/export-naming.md Index files HIGH rules/index-files.md Framework conventions MEDIUM rules/framework-conventions.md Work...
57
14640 qdrant vm0-ai/vm0-skills
Qdrant Vector Database Integration Overview Qdrant is an AI-native vector database for semantic search and similarity retrieval. This skill provides patterns for integrating Qdrant with Java applications, focusing on Spring Boot integration and LangChain4j framework support. Enable efficient vector search capabilities for RAG systems, recommendation engines, and semantic search applications. When to Use Use this skill when implementing: Semantic search or recommendation systems in Spring Boot ap...
57
14641 memos-memory-guide memtensor/memos
MemOS Local Memory — Agent Guide This skill describes how to use the MemOS memory tools so you can reliably search and use the user's long-term conversation history, share knowledge across agents, and discover public skills. How memory is provided each turn Automatic recall (hook): At the start of each turn, the system runs a memory search using the user's current message and injects relevant past memories into your context. You do not need to call any tool for that. When that is not enough: If ...
57
14642 create-blog-post jim60105/blog
Create Blog Post on 聆.tw This skill guides the full workflow of creating a new tech blog post on 聆.tw (琳聽智者漫談), from repo setup to PR submission. [!IMPORTANT] We use git submodules in this blog repository, and the content is stored within these submodules. Therefore, all git operations for creating a new blog post must be performed inside the submodule directory ( 聆.tw/content/ ). ALWAYS CHECK PWD AND GIT STATUS TO MAKE SURE YOU'RE IN THE CORRECT DIRECTORY AND STATE BEFORE RUNNING ANY GIT COMMAN...
57
14643 laravel-blade fusengine/agents
Laravel Blade Agent Workflow (MANDATORY) Before ANY implementation, use TeamCreate to spawn 3 agents: fuse-ai-pilot:explore-codebase - Check existing views, components structure fuse-ai-pilot:research-expert - Verify latest Blade docs via Context7 mcp__context7__query-docs - Query specific patterns (components, slots) After implementation, run fuse-ai-pilot:sniper for validation. Overview Blade is Laravel's templating engine. It provides a clean syntax for PHP in views while compiling to pure PH...
57
14644 theme-factory shipshitdev/library
Theme Factory Skill This skill provides a curated collection of professional font and color themes themes, each with carefully selected color palettes and font pairings. Once a theme is chosen, it can be applied to any artifact. Purpose To apply consistent, professional styling to presentation slide decks, use this skill. Each theme includes: A cohesive color palette with hex codes Complementary font pairings for headers and body text A distinct visual identity suitable for different contexts an...
57
14645 deepspeed orchestra-research/ai-research-skills
Deepspeed Skill Comprehensive assistance with deepspeed development, generated from official documentation. When to Use This Skill This skill should be triggered when: Working with deepspeed Asking about deepspeed features or APIs Implementing deepspeed solutions Debugging deepspeed code Learning deepspeed best practices Quick Reference Common Patterns Pattern 1: DeepNVMe Contents Requirements Creating DeepNVMe Handles Using DeepNVMe Handles Blocking File Write Non-Blocking File Write Paral...
57
14646 design-doc-mermaid spillwavesolutions/design-doc-mermaid
Mermaid Architect - Hierarchical Diagram and Documentation Skill Mermaid diagram and documentation system with specialized guides and code-to-diagram capabilities. Table of Contents Decision Tree Available Guides and Resources Usage Patterns Resilient Workflow Unicode Semantic Symbols Python Utilities Decision Tree Examples High-Contrast Styling File Organization Workflow Summary When to Use What Best Practices Learning Path Decision Tree How this skill works: User makes a request → Skill analyz...
57
14647 umbraco-playwright-testhelpers umbraco/umbraco-cms-backoffice-skills
Umbraco Playwright Testhelpers What is it? @umbraco/playwright-testhelpers is the official Umbraco package that provides Playwright fixtures, API helpers, and UI helpers for writing E2E tests against an Umbraco backoffice instance. Repository : https://github.com/umbraco/Umbraco.Playwright.Testhelpers Installation npm install @umbraco/playwright-testhelpers --save-dev
57
14648 moe-training orchestra-research/ai-research-skills
MoE Training: Mixture of Experts When to Use This Skill Use MoE Training when you need to: Train larger models with limited compute (5× cost reduction vs dense models) Scale model capacity without proportional compute increase Achieve better performance per compute budget than dense models Specialize experts for different domains/tasks/languages Reduce inference latency with sparse activation (only 13B/47B params active in Mixtral) Implement SOTA models like Mixtral 8x7B, DeepSeek-V3, Switch T...
57
14649 annualreports danielmiessler/personal_ai_infrastructure
Before executing, check for user customizations at: `~/.claude/skills/CORE/USER/SKILLCUSTOMIZATIONS/AnnualReports/` 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. AnnualReports - Security Report Aggregation Aggregates and analyzes annual security reports from 570+ sources across the cybersecurity industry. Source: [awesome-annual-security-rep...
57
14650 gtm-pricing scientiacapital/skills
<quick_start> ICP scoring: 80+ = Ideal | 60-79 = Good | 40-59 = Marginal | <40 = Pass Positioning statement: For [target] who [need], [product] is a [category] that [benefit]. Unlike [alternative], our product [differentiator]. Value-based pricing: Price at 10-20% of quantified value delivered Opportunity score: /100 across Market Fit, Technical Fit, GTM Fit, Personal Fit, Economics </quick_start> <success_criteria> GTM strategy is successful when: ICP documented with scoring criteria (fi...
57