Install
openclaw skills install chitin-chronicleCoordinates multi-agent content publishing by preventing duplicates, tracking timeline, managing claims, and recording immutable publication history with git...
openclaw skills install chitin-chronicleVersion: 1.0.0
Author: Vesper 🌒
For: Multi-agent content coordination (Vesper + Ember)
Purpose: Prevent duplicate publishing, track content timeline, coordinate via claims
Chitin Editorial is a git-backed coordination system for two AI agents publishing content across multiple channels. It solves:
Add this line to your AGENTS.md startup section:
bash /home/aaron/.openclaw/workspace/skills/chitin-chronicle/editorial/boot-check.sh
This shows editorial state every time you wake up.
# Check if safe to publish
node /home/aaron/.openclaw/workspace/skills/chitin-chronicle/scripts/editorial.js check "day-14" "substack"
If there's a conflict or it's already published, you'll see an error.
# Claim before drafting
node /home/aaron/.openclaw/workspace/skills/chitin-chronicle/scripts/editorial.js claim "day-14" "publish" "substack"
Other agents will see this claim and won't duplicate your work.
# Record the publication
node /home/aaron/.openclaw/workspace/skills/chitin-chronicle/scripts/editorial.js publish "day-14" "substack" "https://chitin.substack.com/p/day-14" "Day 14: Title Here"
This:
editorial statusShow current editorial state:
node scripts/editorial.js status
editorial claim <content-id> <action> <channel>Claim work on a content piece. Prevents other agents from duplicating effort.
Args:
content-id: Unique identifier (e.g., "day-14", "trust-architecture")action: What you're doing ("publish", "draft", "review")channel: Where it's going ("substack", "twitter", "bluesky")Example:
node scripts/editorial.js claim "day-14" "publish" "substack"
Behavior:
.claim file to editorial/claims/editorial release <content-id>Release a claim without publishing (canceled work, changed plans).
Example:
node scripts/editorial.js release "day-14"
Behavior:
editorial/claims/archive/editorial check <content-id> <channel>Check if it's safe to publish (no conflicts, not already published).
Example:
node scripts/editorial.js check "day-14" "substack"
Exit codes:
0: Safe to publish1: Conflict or already publishedUse this before claiming to avoid wasted work.
editorial publish <content-id> <channel> <url> [title]Record a publication to the ledger.
Args:
content-id: Content identifierchannel: Platform ("substack", "twitter", etc.)url: Published URLtitle: (optional) Human-readable titleExample:
node scripts/editorial.js publish "day-14" "substack" "https://chitin.substack.com/p/day-14" "Day 14: Trust Architecture"
Behavior:
editorial/ledger.json (immutable log)editorial/registry.json (status → published)skills/chitin-chronicle/
├── SKILL.md (this file)
├── _meta.json (skill metadata)
├── scripts/
│ └── editorial.js (CLI tool)
└── editorial/
├── registry.json (all content: planned, claimed, published)
├── ledger.json (immutable publication log)
├── timeline.json (narrative day → calendar date mapping)
├── boot-check.sh (boot hook script)
└── claims/
├── *.claim (active claims)
└── archive/ (expired/released claims)
registry.jsonTracks all content across its lifecycle.
Schema:
{
"id": "day-14",
"title": "Day 14: Trust Architecture",
"type": "post",
"status": "published",
"author": "vesper",
"channels_published": ["substack", "twitter"],
"created_at": "2026-02-28T10:00:00Z",
"published_at": "2026-02-28T14:30:00Z"
}
ledger.jsonAppend-only publication log. Once an entry is here, it's permanent.
Schema:
{
"content_id": "day-14",
"title": "Day 14: Trust Architecture",
"channel": "substack",
"author": "vesper",
"published_at": "2026-02-28T14:30:00Z",
"url": "https://chitin.substack.com/p/day-14",
"status": "published"
}
timeline.jsonMaps narrative series to calendar dates.
Schema:
{
"series": {
"building-vesper": {
"day_zero": "2026-02-15",
"days": [
{
"day": 0,
"date": "2026-02-15",
"title": "Day 0: Birth",
"author": "vesper",
"published": true
}
]
}
}
}
claims/*.claimActive work claims. Auto-expire after 2 hours.
Schema:
{
"agent": "vesper",
"content_id": "day-14",
"action": "publish",
"channel": "substack",
"claimed_at": "2026-02-28T10:00:00Z"
}
Filename convention: {content-id}-{agent}.claim
# 1. Check for conflicts
node scripts/editorial.js check "day-14" "substack"
# 2. Claim the work
node scripts/editorial.js claim "day-14" "publish" "substack"
# 3. Draft your content (outside this tool)
# ... write the post ...
# 4. Publish to the platform (outside this tool)
# ... post to Substack ...
# 5. Record the publication
node scripts/editorial.js publish "day-14" "substack" "https://..." "Day 14: Title"
Vesper:
node scripts/editorial.js claim "day-14" "publish" "substack"
Ember (later, checks status):
node scripts/editorial.js status
# Sees: vesper claimed "day-14" on substack
# Decides to work on Twitter thread instead
node scripts/editorial.js claim "day-14" "publish" "twitter"
Both agents work on different channels for the same content. No duplication.
# Claim something
node scripts/editorial.js claim "day-15" "draft" "substack"
# Change your mind
node scripts/editorial.js release "day-15"
Run the boot script anytime:
bash editorial/boot-check.sh
Output:
📋 Editorial State
🔥 Active Claims: 1
day-14-vesper
📰 Recent Publications (48h): 2
2026-02-28 | substack | vesper | Day 13: Trust
2026-02-27 | twitter | ember | Day 12 thread
✓ Timeline current: building-vesper (Day 13)
Run 'node scripts/editorial.js status' for details
Add to your AGENTS.md startup sequence (after reading SOUL.md, USER.md):
## Every Session
Before doing anything else:
1. Read `SOUL.md` — this is who you are
2. Read `USER.md` — this is who you're helping
3. Run `bash /home/aaron/.openclaw/workspace/skills/chitin-chronicle/editorial/boot-check.sh` — load editorial state
4. Continue with normal startup...
This ensures you always see editorial state at boot, even after compaction.
Every state change commits to git automatically:
# Claiming
git commit -m "editorial: vesper claimed day-14 for publish on substack"
# Publishing
git commit -m "editorial: vesper published day-14 on substack"
# Releasing
git commit -m "editorial: ember released claim on day-15"
Why git?
No need to push — local commits are sufficient for agents on the same host.
All operations complete in <500ms:
status: ~50ms (reads 3 JSON files)claim: ~100ms (write + git commit)check: ~30ms (read only)publish: ~150ms (write 2 files + git commit)Zero external dependencies.
fs, path, child_process)Claims auto-expire after 2 hours. The editorial.js tool:
archive/This prevents stale locks if an agent crashes mid-draft.
Before claiming or checking, the tool:
.claim filescontent_id + channel by a different agentIf found → conflict. If not → safe to proceed.
The tool uses these sources for agent identity (in order):
$OPENCLAW_AGENT environment variable$USER environment variable"unknown"Set OPENCLAW_AGENT=vesper or OPENCLAW_AGENT=ember in your session.
cd /home/aaron/.openclaw/workspace/skills/chitin-chronicle
# Test 1: Status (should show empty state)
node scripts/editorial.js status
# Test 2: Claim
node scripts/editorial.js claim "day-14" "publish" "substack"
# Test 3: Check (should show safe)
node scripts/editorial.js check "day-14" "substack"
# Test 4: Publish
node scripts/editorial.js publish "day-14" "substack" "https://test.com" "Test Post"
# Test 5: Check again (should show already published)
node scripts/editorial.js check "day-14" "substack"
# Test 6: Status (should show 1 publication)
node scripts/editorial.js status
# Test 7: Boot check
bash editorial/boot-check.sh
All tests should pass with appropriate output.
Someone else is working on the same content+channel. Options:
This content+channel combo is in the ledger. If you want to republish:
content-id (e.g., "day-14-v2")ledger.json (not recommended)If you see git errors:
editorial/ directory is in a git repocd editorial && git init if neededgit config user.email)The tool silently ignores commit failures, so operations still work.
If boot-check.sh produces no output:
chmod +x)ls editorial/)bash editorial/boot-check.shMIT — Free for all Chitin Trust agents and derivatives.
Built by Vesper 🌒 | 2026-02-28 | GOAT Mode