{
  "schemaVersion": "1.0",
  "item": {
    "slug": "biz-in-a-box",
    "name": "biz-in-a-box",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/taylorhou/biz-in-a-box",
    "canonicalUrl": "https://clawhub.ai/taylorhou/biz-in-a-box",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/biz-in-a-box",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=biz-in-a-box",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/accounts.md",
      "references/spec.md",
      "references/verticals.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. 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. 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/biz-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/biz-in-a-box",
    "agentPageUrl": "https://openagent3.xyz/skills/biz-in-a-box/agent",
    "manifestUrl": "https://openagent3.xyz/skills/biz-in-a-box/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/biz-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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "biz-in-a-box Skill",
        "body": "Agent-native operating system for any business entity. An append-only, hash-chained journal (journal.ndjson) + a chart of accounts (accounts.yaml) + entity metadata (entity.yaml). Agents can derive any financial report from it in one context window.\n\nProtocol spec: See references/spec.md\nChart of accounts: See references/accounts.md\nVertical examples: See references/verticals.md"
      },
      {
        "title": "1. Fork or clone the repo",
        "body": "GitHub: https://github.com/taylorhou/biz-in-a-box\nWebsite: https://biz-in-a-box.org\n\ngit clone https://github.com/taylorhou/biz-in-a-box my-entity\ncd my-entity\n\nEdit entity.yaml with the entity's id, name, and type. Edit accounts.yaml to match the entity's chart of accounts."
      },
      {
        "title": "2. Record a transaction",
        "body": "Append a JSON line to journal.ndjson. Every entry needs id (ULID recommended) and time (ISO-8601 UTC). Financial entries also need balanced debits/credits.\n\nExample — record a $1,200 rent payment:\n\n{\"id\":\"01HXYZ...\",\"time\":\"2026-02-26T14:00:00Z\",\"labels\":[\"financial\"],\"description\":\"February rent\",\"debits\":[{\"account\":\"5200-rent\",\"amount\":1200}],\"credits\":[{\"account\":\"1010-bank-checking\",\"amount\":1200}]}"
      },
      {
        "title": "3. Validate",
        "body": "node validate.js\n\nChecks: required fields, double-entry balance, hash chain continuity, correction has supersedes, transfer has from/to."
      },
      {
        "title": "4. Query / report",
        "body": "Read journal.ndjson line by line. Filter by labels, time range, or accounts to derive:\n\nP&L: sum revenue (4xxx) vs expenses (5xxx) over a period\nBalance sheet: sum assets (1xxx), liabilities (2xxx), equity (3xxx) at a point in time\nCash flow: filter 1010-bank-checking debits and credits\nBurn rate: sum expenses (5xxx) over trailing 30/90 days"
      },
      {
        "title": "Key Rules",
        "body": "sum(debits.amount) must equal sum(credits.amount) for financial entries\nUse correction label + supersedes: <id> to amend entries — never edit in place\nGenesis prev_hash: 64 zeros; subsequent entries chain via SHA-256\nEntries > 7 days backdated require historical or imported label"
      },
      {
        "title": "File Set",
        "body": "FilePurposejournal.ndjsonAppend-only event log (one JSON per line)entity.yamlEntity metadata (id, name, type, jurisdiction, etc.)accounts.yamlChart of accounts (assets/liabilities/equity/revenue/expenses)labels.yamlLabel definitionsaccess.yamlAccess controlvalidate.jsValidation scriptsnapshots/Optional periodic balance snapshotsverticals/Vertical-specific extensions"
      }
    ],
    "body": "biz-in-a-box Skill\n\nAgent-native operating system for any business entity. An append-only, hash-chained journal (journal.ndjson) + a chart of accounts (accounts.yaml) + entity metadata (entity.yaml). Agents can derive any financial report from it in one context window.\n\nProtocol spec: See references/spec.md\nChart of accounts: See references/accounts.md\nVertical examples: See references/verticals.md\nQuickstart\n1. Fork or clone the repo\n\nGitHub: https://github.com/taylorhou/biz-in-a-box Website: https://biz-in-a-box.org\n\ngit clone https://github.com/taylorhou/biz-in-a-box my-entity\ncd my-entity\n\n\nEdit entity.yaml with the entity's id, name, and type. Edit accounts.yaml to match the entity's chart of accounts.\n\n2. Record a transaction\n\nAppend a JSON line to journal.ndjson. Every entry needs id (ULID recommended) and time (ISO-8601 UTC). Financial entries also need balanced debits/credits.\n\nExample — record a $1,200 rent payment:\n\n{\"id\":\"01HXYZ...\",\"time\":\"2026-02-26T14:00:00Z\",\"labels\":[\"financial\"],\"description\":\"February rent\",\"debits\":[{\"account\":\"5200-rent\",\"amount\":1200}],\"credits\":[{\"account\":\"1010-bank-checking\",\"amount\":1200}]}\n\n3. Validate\nnode validate.js\n\n\nChecks: required fields, double-entry balance, hash chain continuity, correction has supersedes, transfer has from/to.\n\n4. Query / report\n\nRead journal.ndjson line by line. Filter by labels, time range, or accounts to derive:\n\nP&L: sum revenue (4xxx) vs expenses (5xxx) over a period\nBalance sheet: sum assets (1xxx), liabilities (2xxx), equity (3xxx) at a point in time\nCash flow: filter 1010-bank-checking debits and credits\nBurn rate: sum expenses (5xxx) over trailing 30/90 days\nKey Rules\nsum(debits.amount) must equal sum(credits.amount) for financial entries\nUse correction label + supersedes: <id> to amend entries — never edit in place\nGenesis prev_hash: 64 zeros; subsequent entries chain via SHA-256\nEntries > 7 days backdated require historical or imported label\nFile Set\nFile\tPurpose\njournal.ndjson\tAppend-only event log (one JSON per line)\nentity.yaml\tEntity metadata (id, name, type, jurisdiction, etc.)\naccounts.yaml\tChart of accounts (assets/liabilities/equity/revenue/expenses)\nlabels.yaml\tLabel definitions\naccess.yaml\tAccess control\nvalidate.js\tValidation script\nsnapshots/\tOptional periodic balance snapshots\nverticals/\tVertical-specific extensions"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/taylorhou/biz-in-a-box",
    "publisherUrl": "https://clawhub.ai/taylorhou/biz-in-a-box",
    "owner": "taylorhou",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/biz-in-a-box",
    "downloadUrl": "https://openagent3.xyz/downloads/biz-in-a-box",
    "agentUrl": "https://openagent3.xyz/skills/biz-in-a-box/agent",
    "manifestUrl": "https://openagent3.xyz/skills/biz-in-a-box/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/biz-in-a-box/agent.md"
  }
}