Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 53s
The trigger declaration layer (fed-sx-triggers-loop.md Phase 1): bind an
activity-type to a durable flow so an arriving activity can fan out into
a business flow.
- next/genesis/activity-types/define_trigger.sx — the DefineTrigger verb
(DefineActivity form, nested-get schema). :object carries
:activity-type, :flow-name, optional :guard / :actor-scope.
- next/kernel/trigger_registry.erl — pure core + registered gen_server,
mirroring peer_actors/peer_types. Keyed by activity-type, multiple
specs per type fire independently. Spec = {TriggerCid, FlowName,
Guard, ActorScope}. Hydrates on start from a fold over DefineTrigger
activities (restart-safe, same content-addressing as define_registry).
Manifest activity-types 7->8 (total bundle 38->39); the four bootstrap
count suites + genesis_parse bumped, and bootstrap_load's internal
timeout raised (the larger bundle's double cid:to_string was truncating).
Tests: define_trigger.sh (6), trigger_registry.sh (17). lib/erlang
771/771 + next/flow 34/34 untouched.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
55 lines
2.1 KiB
Plaintext
55 lines
2.1 KiB
Plaintext
;; next/genesis/manifest.sx
|
|
;;
|
|
;; Genesis bundle root per design §12.2. Lists every definition file
|
|
;; that gets packed into the bundle. The bundler (bootstrap.erl)
|
|
;; walks this manifest, reads each referenced file, parses its
|
|
;; top-level form, and inserts it into the bundle dict at the
|
|
;; appropriate section path.
|
|
;;
|
|
;; The bundle CID is the content-address of the resulting dag-cbor
|
|
;; (or v1 stand-in) blob over the assembled dict. That CID is
|
|
;; baked into the kernel at build time and re-verified on startup
|
|
;; per design §12.3.
|
|
;;
|
|
;; Section values are bare parenthesised paths (data lists, not
|
|
;; function calls) — the manifest is consumed by `parse`, not
|
|
;; `eval`. Empty sections are written as `()`.
|
|
|
|
(GenesisManifest
|
|
:version "0.0.1"
|
|
:kernel-version "1.0.0-m1"
|
|
:activity-types ("activity-types/create.sx"
|
|
"activity-types/update.sx"
|
|
"activity-types/delete.sx"
|
|
"activity-types/announce.sx"
|
|
"activity-types/endorse.sx"
|
|
"activity-types/define_type.sx"
|
|
"activity-types/subtype_of.sx"
|
|
"activity-types/define_trigger.sx")
|
|
:object-types ("object-types/sx-artifact.sx"
|
|
"object-types/note.sx"
|
|
"object-types/tombstone.sx"
|
|
"object-types/person.sx"
|
|
"object-types/service.sx"
|
|
"object-types/group.sx"
|
|
"object-types/define-activity.sx"
|
|
"object-types/define-object.sx"
|
|
"object-types/define-projection.sx"
|
|
"object-types/define-validator.sx"
|
|
"object-types/define-codec.sx"
|
|
"object-types/define-sig-suite.sx"
|
|
"object-types/snapshot.sx")
|
|
:projections ("projections/activity-log.sx"
|
|
"projections/by-type.sx"
|
|
"projections/by-actor.sx"
|
|
"projections/by-object.sx"
|
|
"projections/actor-state.sx"
|
|
"projections/define-registry.sx"
|
|
"projections/audience-graph.sx")
|
|
:validators ("validators/envelope-shape.sx"
|
|
"validators/signature.sx"
|
|
"validators/type-schema.sx")
|
|
:codecs ("codecs/dag-cbor.sx" "codecs/raw.sx" "codecs/dag-json.sx")
|
|
:sig-suites ("sig-suites/rsa-sha256-2018.sx" "sig-suites/ed25519-2020.sx")
|
|
:audience ("audience/public.sx" "audience/followers.sx" "audience/direct.sx"))
|