Files
openclaw/docs/implementation/AI_ACTION_PLAN_IMPL.md
Clawd Bot ca9b510922 chore: align with upstream openclaw/openclaw and overlay local additions
- Reset master to upstream/main (16,697 commits)
- Overlay 2,271 local-only files (skills, tools, workspace, configs, apps)
- Restore IDENTITY.md and USER.md templates
- Build verified, gateway running, Discord working

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-03 07:40:46 +01:00

16 lines
567 B
Markdown

# AI Action Plan Implementation
## Phase 1 Redis backbone and event pub sub
### Scope
- Add Redis event backend wrapper in `src/services/event-backend.ts`.
- Add event publisher utility in `src/utils/event-publisher.ts`.
- Add system event schema in `src/schemas/events/system.json`.
### Notes
- Redis backend uses separate publisher and subscriber clients with lazy connect support.
- Event publisher emits a version 1 envelope and publishes to `events:{namespace}:{type}` channels.
- System event schema reserves the `system` type for baseline event payloads.