@automagik/genie 4.260419.3 → 4.260420.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/dist/genie.js +647 -339
- package/package.json +4 -2
- package/plugins/genie/.claude-plugin/plugin.json +1 -1
- package/plugins/genie/agents/engineer/AGENTS.md +3 -3
- package/plugins/genie/agents/pm/AGENTS.md +2 -2
- package/plugins/genie/agents/pm/HEARTBEAT.md +1 -1
- package/plugins/genie/agents/team-lead/AGENTS.md +5 -5
- package/plugins/genie/agents/team-lead/HEARTBEAT.md +2 -2
- package/plugins/genie/package.json +1 -1
- package/plugins/genie/rules/genie-orchestration.md +3 -3
- package/skills/dream/SKILL.md +1 -1
- package/skills/genie-hacks/SKILL.md +2 -2
- package/skills/pm/SKILL.md +1 -1
- package/skills/wish/SKILL.md +9 -97
- package/skills/work/SKILL.md +1 -1
- package/src/db/migrations/037_runtime_events_otel_columns.sql +85 -0
- package/src/db/migrations/038_runtime_events_partition.sql +258 -0
- package/src/db/migrations/039_runtime_events_siblings.sql +181 -0
- package/src/db/migrations/040_listen_channel_split.sql +73 -0
- package/src/db/migrations/041_rbac_roles.sql +269 -0
- package/src/db/migrations/observability-migrations.test.ts +215 -0
- package/templates/wish-template.md +99 -0
package/README.md
CHANGED
|
@@ -157,6 +157,13 @@ v4 is a ground-up rewrite. 700 commits. 300 files. ~19K lines.
|
|
|
157
157
|
|
|
158
158
|
[Full v4 release notes →](https://github.com/automagik-dev/genie/releases/tag/v4.260402.18)
|
|
159
159
|
|
|
160
|
+
### Observability substrate (v0)
|
|
161
|
+
|
|
162
|
+
Structured event emission, signed subscription tokens, 4-tier retention, and
|
|
163
|
+
an external dead-man's switch. Consumer-compat promises are published at
|
|
164
|
+
[docs/observability-contract.md](docs/observability-contract.md); the 5-phase
|
|
165
|
+
rollout plan at [docs/observability-rollout.md](docs/observability-rollout.md).
|
|
166
|
+
|
|
160
167
|
---
|
|
161
168
|
|
|
162
169
|
<p align="center">
|