microsoft/hve-core
Publicmirrored from https://github.com/microsoft/hve-coreAvailable
.github/instructions/experimental/mural/destinations/registry.yml
55lines · modecode
| 1 | # Mural destination registry (Decision D1). |
| 2 | # Open registry of named adapters for extractor writeback. Layer B agents read this file |
| 3 | # at invocation time. Adding a new destination is an entry here plus a Slot 2 handoff |
| 4 | # wiring change; the extractor core does not change. |
| 5 | # |
| 6 | # Schema: |
| 7 | # destinations: list |
| 8 | # - id: string # adapter id; becomes the `destination:<id>` reserved tag value |
| 9 | # intent: enum # one of: capture, synthesize, action, archive |
| 10 | # target: string # glob describing the artifact the adapter writes to |
| 11 | # loop_closure: string # how items committed via this adapter return to source |
| 12 | # v1_retro: bool # true if enabled in the v1 retro wedge |
| 13 | --- |
| 14 | destinations: |
| 15 | - id: backlog-item |
| 16 | intent: action |
| 17 | target: '**/{ado,jira,github}/work-items/**' |
| 18 | loop_closure: 'State transition observed (e.g., Closed / Done / closed) on the linked work item.' |
| 19 | v1_retro: true |
| 20 | |
| 21 | - id: instructions-file |
| 22 | intent: synthesize |
| 23 | target: '**/.github/instructions/**/*.instructions.md' |
| 24 | loop_closure: 'Manual or sample-based confirmation that downstream code follows the instruction.' |
| 25 | v1_retro: true |
| 26 | |
| 27 | - id: adr |
| 28 | intent: synthesize |
| 29 | target: 'docs/architecture/decisions/**/*.md' |
| 30 | loop_closure: 'ADR status check: Accepted and not Superseded.' |
| 31 | v1_retro: true |
| 32 | |
| 33 | - id: living-document |
| 34 | intent: capture |
| 35 | target: '**/{problem-statements,journey-maps,risk-registers}/**/*.md' |
| 36 | loop_closure: 'Last-updated within the configured freshness window for the document type.' |
| 37 | v1_retro: false |
| 38 | |
| 39 | - id: powerpoint-deck |
| 40 | intent: synthesize |
| 41 | target: '**/.copilot-tracking/ppt/**' |
| 42 | loop_closure: 'Export confirmation; downstream stakeholder-distribution telemetry deferred.' |
| 43 | v1_retro: false |
| 44 | |
| 45 | - id: next-workshop-seed |
| 46 | intent: capture |
| 47 | target: '**/.copilot-tracking/mural/seeds/**' |
| 48 | loop_closure: 'Seed bundle observed in the downstream workshop''s outbound (Slot 1) input.' |
| 49 | v1_retro: false |
| 50 | |
| 51 | - id: unactioned |
| 52 | intent: archive |
| 53 | target: '**/.copilot-tracking/mural/unactioned/**' |
| 54 | loop_closure: 'Rationale survived review (no-op with audit; reviewer attestation).' |
| 55 | v1_retro: true |
| 56 | |