feat: initial monorepo with PRD, 12 ADRs, and plugin skeletons

This commit is contained in:
kagentz-bot
2026-06-19 18:37:27 -04:00
commit fe434553a8
15 changed files with 599 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# ADR 8: Platform-Native Message Formats
**Date**: 2026-04-28
### Decision
Each plugin sends and receives messages using its platform's native format (Hermes `MessageEvent`, openclaw message objects, Agent Zero message types) rather than a cross-platform envelope.
### Context
Platform-native message formats carry richer context (threading, state, metadata) that the platform's event loop depends on. Wrapping them in a cross-platform envelope would strip useful metadata and increase parsing overhead on every message.
### Consequences
- Plugin implementations must understand their platform's message types
- Enriched metadata (sender, topic, stream, message_id) is available to the agent naturally
- No serialization/deserialization overhead for local messages
- Each plugin's message handling code is cleaner and more idiomatic