feat: SIMOVI agent reference layer#6
Open
dotjae wants to merge 19 commits into
Open
Conversation
Signed-off-by: Kroenenn <gabrielps200325@gmail.com>
Signed-off-by: Kroenenn <gabrielps200325@gmail.com>
…ted respective processes references (/docs) and made sure they match with the references.
Signed-off-by: Kroenenn <gabrielps200325@gmail.com>
…ltime (json and spec)
- Create reference/, skills/, templates/ directory trees - Stub every file with one-liner description and target PR - Move 8 top-level docs into reference/principles/ with kebab-case renames - Write functional root AGENTS.md (cross-tool universal entry point) - Rewrite README.md as human entry point
feat: scaffold agent reference layer
feat: vendor SIMOVI skills
feat: fill reference content
feat: templates + downstream AGENTS.md proposals
Update the databus skill, canonical reference, AGENTS template, domain glossary, and behavior FSM specs to match the system as built (verified 2026-06-19 against backend/runs/domain/, realtime_engine/, schedule_engine/, and databus/celery.py). Where ARCHITECTURE.md/AGENTS.md/MODEL.md disagreed with source, source wins. Key corrections: - Celery beat schedule lives in code (databus/celery.py), not django_celery_beat admin - Services are Django apps in backend/ + Celery workers, not separate projects - MQTT consumer is a Celery bootstep gated by MQTT_CONSUMER_ENABLED - Progression is computed server-side (run:<id>:vehicle_stop_status); no vehicle:<id>:progression key — canonical keys from runs/domain/telemetry/keys.py - GTFS via gtfs-django uv workspace package (gtfs app), not a submodule - AMQP publisher (messages/publisher.py) is a stub; alerts builder is a stub - run_completed is a detected fact, not a command; lifecycle uses Cancelled - stale-run thresholds: grace 60s, expiry 600s - real compose service names and REST run-command endpoints - behavior FSM docs/yaml: added as-built notes, fixed stale Redis key references
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Transforms
context/from a thin documentation collection into the canonical, cross-tool, org-wide reference layer for any AI agent (Copilot, Warp, Claude Code, Cursor, etc.) working on SIMOVI systems.What changed
AGENTS.md(new) — universal entry point; any agent in any tool reads this first.README.md(rewritten) — human entry point with quick-start per tool.reference/(new directory):systems/databus.md— canonical Databús overview (role, monorepo structure, compose services, key models, telemetry→GTFS-RT flow, run lifecycle, FSM cross-links). Last verified 2026-05-17.systems/infobus.md— canonical Infobús overview sourced from current repo state (FastMCPcontext/, Jena Fusekiknowledge/, Nuxt frontend, WebSocket/SSE display pipeline). Last verified 2026-05-17.domain/naming.md— naming-convention table (services, processes, states, events, actions, messages).domain/gtfs.md— GTFS Schedule file/field reference, GTFS-RT protobuf structure, common mistakes.domain/transit-concepts.md— glossary: run, trip, route, stop, vehicle, telemetry, dispatcher, operator, lifecycle.principles/— 8 existing top-level docs moved here with kebab-case renames (system_design_principles.md→system-design.md, etc.).skills/(new directory) — vendored Claude Code skills:databus,infobus(trimmed, pointer toreference/),gtfs(trimmed),fsm2ref,src2fsm(verbatim workflow skills). Install instructions inskills/README.md.templates/(new directory) — genericAGENTS.mdstarter,.mcp.jsonskeleton, proposed slim replacements fordatabus/AGENTS.md(~133 lines, down from ~275) andinfobus/AGENTS.md(~135 lines, reality-checked against current repo).This branch also carries the earlier
docs/processescommits (run-lifecycle FSM + process specs) which were in-flight on the base branch. Those are docs-only and land naturally here.Migration note
The following paths changed and any external links to the old locations will break:
architecture.mdreference/principles/architecture.mdsystem_design_principles.mdreference/principles/system-design.mddata_principles.mdreference/principles/data.mdmethods.mdreference/principles/methods.mdtech_stack.mdreference/principles/tech-stack.mdroadmap.mdreference/principles/roadmap.mdsoftware.mdreference/principles/software.mdtrl.mdreference/principles/trl.mdTest plan
AGENTS.mdlinks all resolve (reference/, skills/, templates/, behavior/).> **Stub.**markers anywhere in the repo.reference/systems/*.mdboth carry "Last verified: 2026-05-17".templates/infobus-AGENTS.mddoes NOT mentiondjango-app-gtfsas a submodule.skills/README.mdinstall instructions are runnable.