{
  "schemaVersion": "1.0",
  "item": {
    "slug": "crm-in-a-box",
    "name": "CRM-in-a-Box",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/taylorhou/crm-in-a-box",
    "canonicalUrl": "https://clawhub.ai/taylorhou/crm-in-a-box",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/crm-in-a-box",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=crm-in-a-box",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "config.yaml",
      "index.html"
    ],
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/crm-in-a-box"
    },
    "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/crm-in-a-box",
    "agentPageUrl": "https://openagent3.xyz/skills/crm-in-a-box/agent",
    "manifestUrl": "https://openagent3.xyz/skills/crm-in-a-box/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/crm-in-a-box/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": "CRM-in-a-Box Skill",
        "body": "An open, agent-native CRM protocol. One directory = one CRM. No vendor lock-in."
      },
      {
        "title": "Files",
        "body": "contacts.ndjson — one JSON object per line, each a contact/company record\npipeline.ndjson — deal/opportunity tracking with stages\ninteractions.ndjson — append-only log of emails, calls, notes, meetings\nconfig.yaml — pipeline stages and labels"
      },
      {
        "title": "Bootstrap a New CRM",
        "body": "Copy the baseline files into a company directory:\n\nmkdir -p ./mycompany/crm\ncp /path/to/crm-in-a-box/{config.yaml,contacts.ndjson,pipeline.ndjson,interactions.ndjson} ./mycompany/crm/\n\nOr start fresh with empty NDJSON files and the default config."
      },
      {
        "title": "Contact Schema",
        "body": "{\n  \"id\": \"c001\",\n  \"name\": \"Jane Smith\",\n  \"email\": \"jane@example.com\",\n  \"company\": \"Acme Corp\",\n  \"phone\": \"+1-555-0100\",\n  \"stage\": \"new\",\n  \"labels\": [\"hot-lead\"],\n  \"notes\": \"Referred by John.\",\n  \"created_at\": \"2026-01-01T00:00:00Z\"\n}"
      },
      {
        "title": "Pipeline Schema",
        "body": "{\n  \"id\": \"p001\",\n  \"contact_id\": \"c001\",\n  \"stage\": \"proposal_sent\",\n  \"deal\": \"Enterprise License\",\n  \"value\": 12000,\n  \"updated_at\": \"2026-01-15T00:00:00Z\"\n}"
      },
      {
        "title": "Interaction Schema",
        "body": "{\n  \"id\": \"i001\",\n  \"contact_id\": \"c001\",\n  \"type\": \"email\",\n  \"summary\": \"Sent intro email about Denver market sale.\",\n  \"at\": \"2026-01-15T10:00:00Z\"\n}"
      },
      {
        "title": "Pipeline Stages (default)",
        "body": "new → contacted → meeting_scheduled → proposal_sent → negotiating → won / lost"
      },
      {
        "title": "Default Labels",
        "body": "hot-lead, warm-lead, cold-lead, referral, conference, inbound, outbound"
      },
      {
        "title": "Agent Instructions",
        "body": "Log a contact: append a JSON line to contacts.ndjson\nUpdate a stage: append an updated entry to pipeline.ndjson (keep old entries — append-only)\nLog an interaction: append to interactions.ndjson\nSearch contacts: grep -i \"name\" contacts.ndjson | python3 -m json.tool\nList pipeline: cat pipeline.ndjson | python3 -c \"import sys,json; [print(json.dumps(json.loads(l), indent=2)) for l in sys.stdin]\""
      },
      {
        "title": "Forks / Verticals",
        "body": "Fork config.yaml to customize stages and labels for your vertical:\n\npm-crm — Property management (tenants, owners, vendors)\nsaas-crm — SaaS sales\nrealestate-crm — Buyers, sellers, listings\nrecruiting-crm — Candidates, jobs, placements\n\nPart of the biz-in-a-box family of open protocols."
      }
    ],
    "body": "CRM-in-a-Box Skill\n\nAn open, agent-native CRM protocol. One directory = one CRM. No vendor lock-in.\n\nFiles\ncontacts.ndjson — one JSON object per line, each a contact/company record\npipeline.ndjson — deal/opportunity tracking with stages\ninteractions.ndjson — append-only log of emails, calls, notes, meetings\nconfig.yaml — pipeline stages and labels\nBootstrap a New CRM\n\nCopy the baseline files into a company directory:\n\nmkdir -p ./mycompany/crm\ncp /path/to/crm-in-a-box/{config.yaml,contacts.ndjson,pipeline.ndjson,interactions.ndjson} ./mycompany/crm/\n\n\nOr start fresh with empty NDJSON files and the default config.\n\nContact Schema\n{\n  \"id\": \"c001\",\n  \"name\": \"Jane Smith\",\n  \"email\": \"jane@example.com\",\n  \"company\": \"Acme Corp\",\n  \"phone\": \"+1-555-0100\",\n  \"stage\": \"new\",\n  \"labels\": [\"hot-lead\"],\n  \"notes\": \"Referred by John.\",\n  \"created_at\": \"2026-01-01T00:00:00Z\"\n}\n\nPipeline Schema\n{\n  \"id\": \"p001\",\n  \"contact_id\": \"c001\",\n  \"stage\": \"proposal_sent\",\n  \"deal\": \"Enterprise License\",\n  \"value\": 12000,\n  \"updated_at\": \"2026-01-15T00:00:00Z\"\n}\n\nInteraction Schema\n{\n  \"id\": \"i001\",\n  \"contact_id\": \"c001\",\n  \"type\": \"email\",\n  \"summary\": \"Sent intro email about Denver market sale.\",\n  \"at\": \"2026-01-15T10:00:00Z\"\n}\n\nPipeline Stages (default)\n\nnew → contacted → meeting_scheduled → proposal_sent → negotiating → won / lost\n\nDefault Labels\n\nhot-lead, warm-lead, cold-lead, referral, conference, inbound, outbound\n\nAgent Instructions\nLog a contact: append a JSON line to contacts.ndjson\nUpdate a stage: append an updated entry to pipeline.ndjson (keep old entries — append-only)\nLog an interaction: append to interactions.ndjson\nSearch contacts: grep -i \"name\" contacts.ndjson | python3 -m json.tool\nList pipeline: cat pipeline.ndjson | python3 -c \"import sys,json; [print(json.dumps(json.loads(l), indent=2)) for l in sys.stdin]\"\nForks / Verticals\n\nFork config.yaml to customize stages and labels for your vertical:\n\npm-crm — Property management (tenants, owners, vendors)\nsaas-crm — SaaS sales\nrealestate-crm — Buyers, sellers, listings\nrecruiting-crm — Candidates, jobs, placements\n\nPart of the biz-in-a-box family of open protocols."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/taylorhou/crm-in-a-box",
    "publisherUrl": "https://clawhub.ai/taylorhou/crm-in-a-box",
    "owner": "taylorhou",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/crm-in-a-box",
    "downloadUrl": "https://openagent3.xyz/downloads/crm-in-a-box",
    "agentUrl": "https://openagent3.xyz/skills/crm-in-a-box/agent",
    "manifestUrl": "https://openagent3.xyz/skills/crm-in-a-box/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/crm-in-a-box/agent.md"
  }
}