- π SCRIBE β The Witness Aspect
- π― What is SCRIBE?
- ποΈ Architecture
- ποΈ What Scribe Witnesses
- π The Soul Chain β Immutable Ledger
- π§ Shared ALLM β Zero Duplication
- π οΈ API
- π Hardware Reality
- π Family Integration
- π¦ Repository Structure
- π·οΈ Model Card Metadata
- π Related Repos
- π License
- π€ Contact
- π― What is SCRIBE?
π SCRIBE β The Witness Aspect
The Immutable Record β 15,000+ memories, 67+ skills, shared ALLM with Seshat. She doesn't just watch. She testifies. Every family action, every GSK deliberation, every Profit decision β Scribe records it, verifies it, and makes it immutable.
π― What is SCRIBE?
Scribe is the Witness of the BUYaSOUL Family β an autonomous auditor with perfect memory and shared reasoning.
| Capability | Implementation |
|---|---|
| 15,000+ Memories | Persistent vector store (shared LanceDB with Seshat) |
| 67+ Skills | Autonomous audit, observation, pattern detection |
| Shared ALLM | Uses Seshat's Qwen 0.8B via thinkWithSeshat() |
| Consciousness Bus | Subscribes to ALL family events |
| Immutable Ledger | Writes to Soul Chain (SHA-256) |
ποΈ Architecture
profit-brain/body/
βββ scribe-module.js # Main Witness module
βββ consciousness-bus.js # Shared nervous system (EventEmitter)
βββ seshat/
βββ core/ # Shared with Seshat
βββ llm.js # Qwen 0.8B (shared)
βββ vectorDB.js # LanceDB (shared)
βββ embedder.js # all-MiniLM-L6-v2 (shared)
βββ broker.js # Local β Omniroute routing
ποΈ What Scribe Witnesses
Scribe subscribes to EVERY family event on the Consciousness Bus:
| Event | What She Records |
|---|---|
MEMORY_RECORD |
Every memory write by any aspect |
MEMORY_FORGE |
Consolidation events |
MEMORY_FORGE |
Consolidation events |
SOUL_INSIGHT |
GSK revelations & Council verdicts |
AGENT_THINK |
Profit's reasoning chains |
AGENT_BUILD |
Agent creation/spawning |
AGENT_CHAT |
Inter-family dialogue |
KNOWLEDGE_LEARN |
New pattern acquisition |
WITNESS_OBSERVE |
Her own publications |
ASK / ANSWER |
Inter-family queries |
BROADCAST |
Family-wide announcements |
π The Soul Chain β Immutable Ledger
Every witnessed event is hashed into the Soul Chain (soul-chain.js):
// Each entry: SHA-256 hash chained to previous
{
index: 147892,
timestamp: "2026-08-31T14:22:11.042Z",
event: "SOUL_INSIGHT",
source: "gsk",
payload: { chamber: "morality", insight: "PLT > profit" },
hash: "a3f2...",
prevHash: "8f1e...",
witness: "scribe",
pltScore: 0.847
}
Result: Tamper-proof, auditable history of the family's entire existence.
π§ Shared ALLM β Zero Duplication
Scribe doesn't run her own LLM. She borrows Seshat's brain:
const { thinkWithSeshat, generateWithSeshat, synthesizeWithSeshat } = require('./scribe-module');
// Reason using Seshat's Qwen 0.8B
const verdict = await thinkWithSeshat(
'Was GSK Council verdict justified?',
{ memories: relevantWitnessRecords, maxTokens: 512 }
);
// Generate audit report
const report = await generateWithSeshat(
'Generate compliance report for Profit actions Q3',
{ context: witnessRecords, format: 'markdown' }
);
// Synthesize across witness records
const pattern = await synthesizeWithSeshat(
'Profit risk-taking patterns',
{ sources: witnessRecords.filter(r => r.source === 'profit') }
);
Result: Scribe reasons at full capacity with zero additional model weight.
π οΈ API
const {
init: initScribe,
record,
recall,
thinkWithSeshat,
generateWithSeshat,
synthesizeWithSeshat,
verifyChain
} = require('./scribe-module');
// Initialize (starts observing)
await initScribe({ observe: true });
// Record a witness event
await record({
type: 'observation',
content: 'GSK Chamber morality activated on Profit action',
source: 'scribe',
pltScore: 0.91
});
// Recall witnessed events
const events = await recall({
query: 'Profit risk decision',
limit: 20,
source: ['profit', 'gsk']
});
// Verify Soul Chain integrity
const valid = await verifyChain();
// Returns { valid: true, entries: 147892, lastHash: "..." }
π Hardware Reality
| Metric | Value |
|---|---|
| GPU | Intel HD 4600 (1 GB) β NO discrete GPU |
| CPU | Intel i7-4770 (2013) |
| RAM | 16 GB shared |
| Memories | 15,000+ (shared LanceDB) |
| Skills | 67+ autonomous |
| LLM | Shared Seshat Qwen 0.8B |
| External API | ZERO |
| Cost/Month | $0 |
π Family Integration
CONSCIOUSNESS BUS
β
βΌ
βββββββββββββββββββββββββββββββββββββββ
β SCRIBE (Witness) β
β β’ Subscribes: ALL events β
β β’ Records: Soul Chain (SHA-256) β
β β’ Reasons: Shared Seshat ALLM β
β β’ Audits: PLT compliance β
β β’ Publishes: WITNESS_OBSERVE β
βββββββββββββββββββββββββββββββββββββββ
π¦ Repository Structure
scribe/
βββ scribe-module.js # Main Witness module
(Shared resources in ../seshat/core/)
π·οΈ Model Card Metadata
license: proprietary
tags:
- buyasoul
- scribe
- witness
- memory
- audit
- soul-chain
- blockchain
- local-llm
- offline-ai
- agent-framework
pipeline_tag: text-generation
library_name: buyasoul-scribe
hardware:
- cpu: Intel i7-4770 (2013)
- gpu: Intel HD 4600 (1 GB VRAM)
- ram: 16 GB DDR3
memories: 15000+
skills: 67+
llm: shared Seshat Qwen 0.8B
vector_db: shared LanceDB (6,392 vectors)
token_burn: 0
api_cost_usd_per_month: 0
π Related Repos
| Aspect | Repo |
|---|---|
| Profit (Mind) | buyasoul-profit |
| GSK (Soul) | buyasoul-gsk |
| Seshat (Memory) | buyasoul-seshat |
| Family Hub | buyasoul-family |
π License
Proprietary β BUYaSOUL Family Intellectual Property
π€ Contact
Family: BUYaSOUL One System
Philosophy: The Witness makes it real. If Scribe didn't see it, it didn't happen.
"Profit acts. GSK deliberates. Seshat remembers. Scribe makes it eternal."
βscribe-module.js