# Send biz-in-a-box to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "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",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/accounts.md",
      "references/spec.md",
      "references/verticals.md"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### biz-in-a-box Skill

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.

Protocol spec: See references/spec.md
Chart of accounts: See references/accounts.md
Vertical examples: See references/verticals.md

### 1. Fork or clone the repo

GitHub: https://github.com/taylorhou/biz-in-a-box
Website: https://biz-in-a-box.org

git clone https://github.com/taylorhou/biz-in-a-box my-entity
cd my-entity

Edit entity.yaml with the entity's id, name, and type. Edit accounts.yaml to match the entity's chart of accounts.

### 2. Record a transaction

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.

Example — record a $1,200 rent payment:

{"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}]}

### 3. Validate

node validate.js

Checks: required fields, double-entry balance, hash chain continuity, correction has supersedes, transfer has from/to.

### 4. Query / report

Read journal.ndjson line by line. Filter by labels, time range, or accounts to derive:

P&L: sum revenue (4xxx) vs expenses (5xxx) over a period
Balance sheet: sum assets (1xxx), liabilities (2xxx), equity (3xxx) at a point in time
Cash flow: filter 1010-bank-checking debits and credits
Burn rate: sum expenses (5xxx) over trailing 30/90 days

### Key Rules

sum(debits.amount) must equal sum(credits.amount) for financial entries
Use correction label + supersedes: <id> to amend entries — never edit in place
Genesis prev_hash: 64 zeros; subsequent entries chain via SHA-256
Entries > 7 days backdated require historical or imported label

### File Set

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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: taylorhou
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/biz-in-a-box)
- [Send to Agent page](https://openagent3.xyz/skills/biz-in-a-box/agent)
- [JSON manifest](https://openagent3.xyz/skills/biz-in-a-box/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/biz-in-a-box/agent.md)
- [Download page](https://openagent3.xyz/downloads/biz-in-a-box)