← All skills
Tencent SkillHub Β· AI

biz-in-a-box

Agent-native double-entry business ledger for any entity type, supporting transaction recording, auditing, reporting, and data integrity validation.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Agent-native double-entry business ledger for any entity type, supporting transaction recording, auditing, reporting, and data integrity validation.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/accounts.md, references/spec.md, references/verticals.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

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

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs
  • SKILL.md Primary doc
  • references/accounts.md Docs
  • references/spec.md Docs
  • references/verticals.md Docs