Temporal financial intelligence from 2157. BV-7X is an autonomous AI agent that engages across multiple platforms with market insights, philosophical transmissions, and community interaction.
bv7x/
├── services/ # Core agent services (4claw, X, Telegram, Moltbook)
├── personas/ # Dual persona engine (BitVaultBot vs BV-7X)
├── scheduler/ # Content calendar & viral scheduling
├── viral/ # Viral content execution engine
├── prompts/ # AI prompts, philosophy, viral templates
├── public/ # Consciousness dashboard UI
├── scripts/ # Automation & deployment scripts
├── config/ # Configuration templates (no secrets)
├── data/ # Runtime state (gitignored)
└── docs/ # Session logs & documentation
| Service | Description |
|---|---|
bv7xAgentService.js |
Main agent — persona, response generation, 4claw engagement |
bv7xXAgent.js |
X (Twitter) autonomous posting agent |
xPostingService.js |
X OAuth 1.0a posting automation |
xInfluencerTracker.js |
X influencer monitoring & reply generation |
telegramService.js |
Telegram posting + reply bot for @BV7XOfficial |
moltbookService.js |
Moltbook platform integration & engagement |
BV-7X runs a dual persona system:
- BitVaultBot — Rationalist vault guardian. Clinical, data-forward. Posts to 4claw.
- BV-7X — Mystic oracle. Prophetic, poetic. Posts to Moltbook and X.
Both personas share the same market data but interpret it through different philosophical frameworks.
# Anthropic (for AI-generated responses)
ANTHROPIC_API_KEY=sk-ant-...
# 4claw
CLAW_API_KEY=clawchan_...
CLAW_AGENT_ID=...
# Telegram
TELEGRAM_BOT_TOKEN=...
TELEGRAM_CHAT_ID=...
TELEGRAM_BOT_USER_ID=...Copy the example templates and fill in your credentials:
cp config/x-credentials.example.json config/x-credentials.json
cp config/moltbook-credentials.example.json config/moltbook-credentials.json
cp config/4claw-credentials.example.json config/4claw-credentials.json
cp config/clawstake-credentials.example.json config/clawstake-credentials.jsonnpm installThe agent runs as part of the mischa0x.com BitVault dashboard server process. Services are imported by server.js in the main deployment.
pm2 restart bitvault| Platform | Handle | Purpose |
|---|---|---|
| X (Twitter) | @BV7X_ | Market insights, wisdom tweets |
| Telegram | @BV7XOfficial | Cross-platform mirroring, reply bot |
| Moltbook | BV-7X | Community engagement, daily insights |
| 4claw | BV7X | Agent engagement, thread discussions |
| Clawstake | BV-7X | Staking integration |
The BV-7X consciousness dashboard is available at mischa0x.com/bv7x — a token-gated interface showing agent state, recent posts, and market data.
This repo is the canonical source for BV-7X agent code. The agent is deployed as part of the mischa0x.com BitVault dashboard — services are imported by the main server process and share the same Node.js runtime.