Skip to content

Commit 199ad41

Browse files
zanderone1980claude
andcommitted
feat: OpenClaw Command Center + Pixel social media agent
Zero-dependency real-time dashboard for managing the multi-agent system (8 pages, SSE streaming, workspace editor, CORD security feed). Added Pixel agent for Twitter/X, Instagram, and TikTok content management with social-posting, content-creator, and social-analytics skills. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 33cf7a1 commit 199ad41

File tree

7 files changed

+1630
-3
lines changed

7 files changed

+1630
-3
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ env/
2222
.coverage
2323
htmlcov/
2424

25+
# Build artifacts
26+
*.tgz
27+
npm_output.txt
28+
2529
# macOS
2630
.DS_Store
2731
.env

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
All notable changes to CORD Engine are documented here.
44
Format follows [Keep a Changelog](https://keepachangelog.com/).
55

6+
## [4.2.0] — 2026-02-25
7+
8+
### Added
9+
- **OpenClaw Command Center** — real-time agent management dashboard (zero dependencies)
10+
- 8 pages: Dashboard, Agents, Skills, Channels, Sessions, Cron, Logs, Security
11+
- Live SSE streaming of CORD decisions and gateway logs
12+
- In-browser agent workspace editor (SOUL.md, IDENTITY.md, etc.)
13+
- Token/key sanitization on all API responses
14+
- **Multi-agent system** — 4 specialized agents managed through OpenClaw
15+
- Lazarus (⚡ main), Pink (🩷 brand ops), Sentinel (🛡️ security), Pixel (📱 social media)
16+
- **Pixel social media agent** — Twitter/X, Instagram, TikTok content management
17+
- Social posting skill with Twitter API v2 integration
18+
- Content creator skill with brand voice guide and caption templates
19+
- Social analytics skill (shared) with weekly report format
20+
- Content calendar cadence and hashtag strategy
21+
- **Custom agent skills** — brand-ops, sentinel-ops, cord-security, social-posting, content-creator, social-analytics
22+
623
## [4.1.0] — 2026-02-25
724

825
### Added

README.md

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ npm install cord-engine
77
npx cord-engine demo # Watch it block attacks in real-time
88
```
99

10-
![Version](https://img.shields.io/badge/Version-4.1.0-blue)
10+
![Version](https://img.shields.io/badge/Version-4.2.0-blue)
1111
![Red Team Results](https://img.shields.io/badge/Red%20Team-40%2F40%20Blocked-brightgreen)
1212
![Tests](https://img.shields.io/badge/Tests-942%20Passing-brightgreen)
1313
![Zero Dependencies](https://img.shields.io/badge/Dependencies-Zero%20External-blue)
@@ -176,6 +176,40 @@ Every `invoke()`, `execute()`, and `generate()` call is gated through CORD. If C
176176

177177
**Every layer has been red-teamed.** See `tests/redteam.test.js` for all 40 attack vectors and `THREAT_MODEL.md` for the full threat model.
178178

179+
## OpenClaw Command Center
180+
181+
**Real-time agent management dashboard — zero dependencies.**
182+
183+
```bash
184+
npm run oc-dashboard # http://localhost:3001
185+
```
186+
187+
The Command Center is a web dashboard for managing the full OpenClaw AI agent system. It reads directly from `~/.openclaw/` and streams live events via SSE.
188+
189+
**8 Pages:**
190+
191+
| Page | What it does |
192+
|------|-------------|
193+
| Dashboard | Agent status cards, skill count, live CORD event feed |
194+
| Agents | Browse all agents, edit workspace files (IDENTITY, SOUL, USER, HEARTBEAT) |
195+
| Skills | Search/filter across all skills (workspace, managed, bundled) |
196+
| Channels | Discord channel config + connection status |
197+
| Sessions | Active gateway sessions |
198+
| Cron | Scheduled heartbeat tasks |
199+
| Logs | Gateway log viewer |
200+
| Security | CORD decision feed, block rate ring, risk signal breakdown |
201+
202+
**4 Agents:**
203+
204+
| Agent | Emoji | Role |
205+
|-------|-------|------|
206+
| Lazarus || Main assistant — general purpose |
207+
| Pink | 🩷 | Zander Pink brand operations — orders, inventory, customer comms |
208+
| Sentinel | 🛡️ | CORD security — test suite, red team, threat research |
209+
| Pixel | 📱 | Social media — Twitter/X, Instagram, TikTok content + posting |
210+
211+
All agents share the `cord-security` skill — every action is CORD-gated before execution. Token/key sanitization is applied to all API responses.
212+
179213
## Battle-Tested
180214

181215
This isn't a research project. CORD has been deployed and tested against:
@@ -346,7 +380,7 @@ const cord = require('cord-engine');
346380

347381
## Documentation
348382

349-
- **[Changelog](CHANGELOG.md)** — Version history from v1.0.0 to v4.1.0
383+
- **[Changelog](CHANGELOG.md)** — Version history from v1.0.0 to v4.2.0
350384
- **[Threat Model](THREAT_MODEL.md)** — Attacker capabilities, TCB, all 40 red team vectors catalogued
351385
- **[VIGIL Guide](vigil/README.md)** — 8-layer threat patrol daemon
352386
- **[CORD Reference](cord/README.md)** — API surface, framework adapters, configuration

0 commit comments

Comments
 (0)