From ebd29778df440647c11329ed25dbca3a173cf364 Mon Sep 17 00:00:00 2001 From: chitcommit <208086304+chitcommit@users.noreply.github.com> Date: Tue, 24 Mar 2026 02:44:04 +0000 Subject: [PATCH 1/2] feat: add branded README with ecosystem badges and service description Adds standard ChittyOS branding header with tier badge, org badge, and accurate service description to README.md. Co-Authored-By: Claude Opus 4.6 --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..0cc0f9d --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +![Foundation](https://img.shields.io/badge/Foundation-service-8B5CF6?style=flat-square) +![Tier](https://img.shields.io/badge/tier-3%20Operational-0EA5E9?style=flat-square) + +# ChittyChronicle + +> Authoritative event logging and audit trail system for the ChittyOS ecosystem. + +ChittyChronicle captures all significant events across every ChittyOS service for compliance, debugging, and analytics. It provides full-text search across events, timeline aggregation, entity-scoped audit trail retrieval, and event correlation — backed by Neon PostgreSQL with a tsvector search index. Deployed as a Cloudflare Worker (Hono) at `chronicle.chitty.cc` and also accessible via the ChittyAPI aggregator. + +**Domain**: `chronicle.chitty.cc` From 7e64bae47f7c55e5b443afcb3307827adbb0be63 Mon Sep 17 00:00:00 2001 From: chitcommit <208086304+chitcommit@users.noreply.github.com> Date: Sat, 28 Mar 2026 21:00:37 +0000 Subject: [PATCH 2/2] chore: add chittytrack tail consumer and observability to API worker Adds tail_consumers binding and observability flag to the chronicle API worker, closing the gap identified during wrangler audit. Co-Authored-By: Claude Opus 4.6 (1M context) --- api/wrangler.jsonc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api/wrangler.jsonc b/api/wrangler.jsonc index 1bb0b81..aea26ac 100644 --- a/api/wrangler.jsonc +++ b/api/wrangler.jsonc @@ -13,5 +13,7 @@ ], "vars": { "ENVIRONMENT": "production" - } + }, + "observability": { "enabled": true }, + "tail_consumers": [{ "service": "chittytrack" }] }