chore: initial public release#1
Open
jadb wants to merge 1 commit into
Open
Conversation
5eeac43 to
772efec
Compare
Polyglot AI agent runtime: Go reference runtime + envelope SDKs for TypeScript, Python, Rust, PHP. Implements crtx v0.1 spec (envelope.md, events.md) for portable conversation envelopes, multi-agent provenance, and dispatch nests. Surface (all 5 SDKs): - Envelope, Turn, ContentPart wire types matching crtx v0.1 schemas - Turn.agent_id, Turn.in_reply_to_call_id (multi-agent attribution + mid-flight messaging into open tool_calls; §3.1, §3.2) - tool_call.parent_call_id (in-band nested dispatch; §6.2) - tool_result.child_envelope_id (parent -> dispatch-nest link; §6.3) - Envelope.dispatched_from (dispatch-nest signal, mutually exclusive with parent_id/fork_point; §7.2) - Envelope.injected_turns (append-only foreign Turn slice refs; §7.3) - Validate() enforcing structural invariants + open-call lifetime tracking - Strict-decode boundary (DisallowUnknownFields / deny_unknown_fields / allow-list) - Three canonical spec example fixtures vendored per SDK - Round-trip + provenance tests covering all new surface Go-specific: - Runtime orchestrator with provider + tool dispatch + persistence - Session.Fork (what-if) and Session.Dispatch (dispatch nest) - Session.ReturnDispatch folds nest result back onto parent - RuntimeWithAgentID stamps producer attribution - Event topics in 4-part crtx.<category>.<object>.<action> shape; stem-private topics in x.io.jadb.stem.* extension namespace - Spec-shaped event payloads per events.md §3
772efec to
eb667b1
Compare
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.
Initial public release
Polyglot AI agent runtime: Go reference runtime + envelope SDKs for TypeScript, Python, Rust, PHP. Implements crtx v0.1 (envelope.md, events.md) — portable conversation envelopes, multi-agent provenance, dispatch nests.
Wire surface (all 5 SDKs)
Envelope,Turn,ContentPartmatching crtx v0.1 schemasTurn.agent_id,Turn.in_reply_to_call_idtool_call.parent_call_id,tool_result.child_envelope_id,Envelope.dispatched_fromEnvelope.injected_turnsGo runtime
Runtimeorchestrator with provider + tool dispatch + persistenceSession.Fork(what-if) andSession.Dispatch(dispatch nest)Session.ReturnDispatchfolds nest result back onto parentRuntimeWithAgentIDstamps producer attributioncrtx.<category>.<object>.<action>canonical shape; stem-private topics inx.io.jadb.stem.*extension namespaceevents.md §3Tests
Test plan