{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gtm-system",
    "name": "Gtm System",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/aronchick/gtm-system",
    "canonicalUrl": "https://clawhub.ai/aronchick/gtm-system",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/gtm-system",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gtm-system",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "QUICK_START.md",
      "README.md",
      "RESEARCH_GTM_TOOLS.md",
      "SETUP_REPORT.md",
      "SKILL.md",
      "gerstner-2week-sprint-plan.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "gtm-system",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T00:17:34.723Z",
      "expiresAt": "2026-05-11T00:17:34.723Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gtm-system",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gtm-system",
        "contentDisposition": "attachment; filename=\"gtm-system-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "gtm-system"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/gtm-system"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/gtm-system",
    "agentPageUrl": "https://openagent3.xyz/skills/gtm-system/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gtm-system/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gtm-system/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "GTM Tracking System Skill",
        "body": "A Go-To-Market tracking system for Expanso/Prometheus."
      },
      {
        "title": "Location",
        "body": "/home/daaronch/.openclaw/workspace/gtm-system/"
      },
      {
        "title": "CLI Tool",
        "body": "python3 /home/daaronch/.openclaw/workspace/gtm-system/scripts/gtm.py [command]"
      },
      {
        "title": "Daily Operations",
        "body": "# Get today's actions and priorities\npython3 scripts/gtm.py actions\n\n# Generate digest for Telegram\npython3 scripts/gtm.py digest\n\n# View pipeline\npython3 scripts/gtm.py pipeline\n\n# List unprocessed signals\npython3 scripts/gtm.py signals"
      },
      {
        "title": "Contact Management",
        "body": "# Add a contact\npython3 scripts/gtm.py add-contact \"Name\" \"email@co.com\" --company \"Company\" --role \"CTO\"\n\n# List contacts\npython3 scripts/gtm.py contacts"
      },
      {
        "title": "Opportunity Management",
        "body": "# Create opportunity\npython3 scripts/gtm.py add-opp \"Company Name\" --contact 1 --description \"Interested in Bacalhau\" --priority 3\n\n# Move stage (awareness → interest → evaluation → negotiation → closed_won/closed_lost)\npython3 scripts/gtm.py move-stage 1 evaluation\n\n# Log an interaction\npython3 scripts/gtm.py log \"Had demo call, very interested\" --opp 1"
      },
      {
        "title": "Reminders",
        "body": "# Set a reminder\npython3 scripts/gtm.py remind \"Send pricing proposal\" --opp 1 --date 2024-02-15\n\n# Complete a reminder\npython3 scripts/gtm.py complete 1"
      },
      {
        "title": "Crawling",
        "body": "# Run all crawlers (HN, Reddit, GitHub)\npython3 scripts/gtm.py crawl\n\n# Run specific crawlers\npython3 scripts/gtm.py crawl --sources hn,github\n\n# Mark signal as processed\npython3 scripts/gtm.py process-signal 1"
      },
      {
        "title": "Keywords",
        "body": "# Add a tracking keyword\npython3 scripts/gtm.py add-keyword \"new-keyword\" --category domain --weight 1.5"
      },
      {
        "title": "Pipeline Stages",
        "body": "awareness - They know we exist\ninterest - Showed interest, had initial contact\nevaluation - Actively evaluating, demos, trials\nnegotiation - Discussing terms/pricing\nclosed_won - Deal closed successfully\nclosed_lost - Deal lost"
      },
      {
        "title": "Database Location",
        "body": "/home/daaronch/.openclaw/workspace/gtm-system/data/gtm.db (SQLite)"
      },
      {
        "title": "Natural Language Queries",
        "body": "When user asks about GTM/pipeline/opportunities, use the CLI to fetch data and summarize:\n\n\"What's in my pipeline?\" → Run pipeline command\n\"Any follow-ups today?\" → Run actions command\n\"Add a contact...\" → Use add-contact command\n\"Check for new opportunities\" → Run crawl then signals"
      }
    ],
    "body": "GTM Tracking System Skill\n\nA Go-To-Market tracking system for Expanso/Prometheus.\n\nLocation\n\n/home/daaronch/.openclaw/workspace/gtm-system/\n\nCLI Tool\n\npython3 /home/daaronch/.openclaw/workspace/gtm-system/scripts/gtm.py [command]\n\nQuick Commands\nDaily Operations\n# Get today's actions and priorities\npython3 scripts/gtm.py actions\n\n# Generate digest for Telegram\npython3 scripts/gtm.py digest\n\n# View pipeline\npython3 scripts/gtm.py pipeline\n\n# List unprocessed signals\npython3 scripts/gtm.py signals\n\nContact Management\n# Add a contact\npython3 scripts/gtm.py add-contact \"Name\" \"email@co.com\" --company \"Company\" --role \"CTO\"\n\n# List contacts\npython3 scripts/gtm.py contacts\n\nOpportunity Management\n# Create opportunity\npython3 scripts/gtm.py add-opp \"Company Name\" --contact 1 --description \"Interested in Bacalhau\" --priority 3\n\n# Move stage (awareness → interest → evaluation → negotiation → closed_won/closed_lost)\npython3 scripts/gtm.py move-stage 1 evaluation\n\n# Log an interaction\npython3 scripts/gtm.py log \"Had demo call, very interested\" --opp 1\n\nReminders\n# Set a reminder\npython3 scripts/gtm.py remind \"Send pricing proposal\" --opp 1 --date 2024-02-15\n\n# Complete a reminder\npython3 scripts/gtm.py complete 1\n\nCrawling\n# Run all crawlers (HN, Reddit, GitHub)\npython3 scripts/gtm.py crawl\n\n# Run specific crawlers\npython3 scripts/gtm.py crawl --sources hn,github\n\n# Mark signal as processed\npython3 scripts/gtm.py process-signal 1\n\nKeywords\n# Add a tracking keyword\npython3 scripts/gtm.py add-keyword \"new-keyword\" --category domain --weight 1.5\n\nPipeline Stages\nawareness - They know we exist\ninterest - Showed interest, had initial contact\nevaluation - Actively evaluating, demos, trials\nnegotiation - Discussing terms/pricing\nclosed_won - Deal closed successfully\nclosed_lost - Deal lost\nDatabase Location\n\n/home/daaronch/.openclaw/workspace/gtm-system/data/gtm.db (SQLite)\n\nNatural Language Queries\n\nWhen user asks about GTM/pipeline/opportunities, use the CLI to fetch data and summarize:\n\n\"What's in my pipeline?\" → Run pipeline command\n\"Any follow-ups today?\" → Run actions command\n\"Add a contact...\" → Use add-contact command\n\"Check for new opportunities\" → Run crawl then signals"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/aronchick/gtm-system",
    "publisherUrl": "https://clawhub.ai/aronchick/gtm-system",
    "owner": "aronchick",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gtm-system",
    "downloadUrl": "https://openagent3.xyz/downloads/gtm-system",
    "agentUrl": "https://openagent3.xyz/skills/gtm-system/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gtm-system/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gtm-system/agent.md"
  }
}