-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkflow.toml
More file actions
556 lines (499 loc) · 22.4 KB
/
Copy pathworkflow.toml
File metadata and controls
556 lines (499 loc) · 22.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
schema_version = 1
project = "rpc-plugin-system"
repository = "agents/rpc-plugin-system"
worktree_root = "/tank/development/linus/rpc-plugin-system-worktrees"
active = ""
[coverage]
map = "workflow/artifacts/global-coverage-map.md"
profile = "strict"
relevant_target = "100% relevant"
require_gap_record = true
block_unrecorded_gaps = true
line_coverage_is_not_completion = true
[[root_features]]
id = "plugin-contracts"
branch = "workflow/root/plugin-contracts"
path = "workflow/root/plugin-contracts"
source_path = "docs"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/root/plugin-contracts"
features = [
"plugin-contracts.standard-v0",
"plugin-contracts.api-surface",
"plugin-contracts.abi-startup",
"plugin-contracts.compatibility-versioning",
"plugin-contracts.secure-rpc-contract",
]
[[root_features]]
id = "secure-bootstrap-transport"
branch = "workflow/root/secure-bootstrap-transport"
path = "workflow/root/secure-bootstrap-transport"
source_path = "src/internal/auth"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/root/secure-bootstrap-transport"
features = [
"secure-bootstrap-transport.startup-handshake",
"secure-bootstrap-transport.session-identity",
"secure-bootstrap-transport.key-derivation",
"secure-bootstrap-transport.secure-framing",
"secure-bootstrap-transport.rekey-policy",
"secure-bootstrap-transport.posix-transport",
"secure-bootstrap-transport.windows-transport",
]
[[root_features]]
id = "kernel-runtime-supervision"
branch = "workflow/root/kernel-runtime-supervision"
path = "workflow/root/kernel-runtime-supervision"
source_path = "src/internal/kernel"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/root/kernel-runtime-supervision"
features = [
"kernel-runtime-supervision.daemon-entrypoint",
"kernel-runtime-supervision.manager-lifecycle",
"kernel-runtime-supervision.multi-plugin-registry",
"kernel-runtime-supervision.routing",
"kernel-runtime-supervision.monitoring",
"kernel-runtime-supervision.failure-isolation",
"kernel-runtime-supervision.env-hardening",
"kernel-runtime-supervision.peercred-runtime",
]
[[root_features]]
id = "control-plane-ops"
branch = "workflow/root/control-plane-ops"
path = "workflow/root/control-plane-ops"
source_path = "src/internal/adminrpc"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/root/control-plane-ops"
features = [
"control-plane-ops.admin-rpc",
"control-plane-ops.cli-argument-model",
"control-plane-ops.cli-status-control",
"control-plane-ops.event-log-write",
"control-plane-ops.event-log-read",
"control-plane-ops.local-observability",
]
[[root_features]]
id = "plugin-authoring-sdk"
branch = "workflow/root/plugin-authoring-sdk"
path = "workflow/root/plugin-authoring-sdk"
source_path = "src/pkg/plugin"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/root/plugin-authoring-sdk"
features = [
"plugin-authoring-sdk.go-runtime",
"plugin-authoring-sdk.logging",
"plugin-authoring-sdk.template-minimal",
"plugin-authoring-sdk.test-plugin-api",
"plugin-authoring-sdk.echo-example",
"plugin-authoring-sdk.failure-example",
]
[[root_features]]
id = "release-packaging-governance"
branch = "workflow/root/release-packaging-governance"
path = "workflow/root/release-packaging-governance"
source_path = "docs"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/root/release-packaging-governance"
features = [
"release-packaging-governance.install-layout",
"release-packaging-governance.packaging-policy",
"release-packaging-governance.branch-promotion",
"release-packaging-governance.v0-baseline",
"release-packaging-governance.v1-freeze",
"release-packaging-governance.roadmap",
"release-packaging-governance.go-build-deps",
]
[[features]]
id = "plugin-contracts.standard-v0"
root = "plugin-contracts"
state = "ready"
branch = "workflow/feature/plugin-contracts.standard-v0"
path = "workflow/features/plugin-contracts.standard-v0"
source_path = "docs"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/plugin-contracts.standard-v0"
[[features]]
id = "plugin-contracts.api-surface"
root = "plugin-contracts"
state = "ready"
branch = "workflow/feature/plugin-contracts.api-surface"
path = "workflow/features/plugin-contracts.api-surface"
source_path = "docs"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/plugin-contracts.api-surface"
[[features]]
id = "plugin-contracts.abi-startup"
root = "plugin-contracts"
state = "ready"
branch = "workflow/feature/plugin-contracts.abi-startup"
path = "workflow/features/plugin-contracts.abi-startup"
source_path = "docs"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/plugin-contracts.abi-startup"
[[features]]
id = "plugin-contracts.compatibility-versioning"
root = "plugin-contracts"
state = "ready"
branch = "workflow/feature/plugin-contracts.compatibility-versioning"
path = "workflow/features/plugin-contracts.compatibility-versioning"
source_path = "docs"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/plugin-contracts.compatibility-versioning"
[[features]]
id = "plugin-contracts.secure-rpc-contract"
root = "plugin-contracts"
state = "ready"
branch = "workflow/feature/plugin-contracts.secure-rpc-contract"
path = "workflow/features/plugin-contracts.secure-rpc-contract"
source_path = "docs"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/plugin-contracts.secure-rpc-contract"
[[features]]
id = "secure-bootstrap-transport.startup-handshake"
root = "secure-bootstrap-transport"
state = "ready"
branch = "workflow/feature/secure-bootstrap-transport.startup-handshake"
path = "workflow/features/secure-bootstrap-transport.startup-handshake"
source_path = "src/internal/auth"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/secure-bootstrap-transport.startup-handshake"
[[features]]
id = "secure-bootstrap-transport.session-identity"
root = "secure-bootstrap-transport"
state = "ready"
branch = "workflow/feature/secure-bootstrap-transport.session-identity"
path = "workflow/features/secure-bootstrap-transport.session-identity"
source_path = "src/internal/auth"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/secure-bootstrap-transport.session-identity"
[[features]]
id = "secure-bootstrap-transport.key-derivation"
root = "secure-bootstrap-transport"
state = "ready"
branch = "workflow/feature/secure-bootstrap-transport.key-derivation"
path = "workflow/features/secure-bootstrap-transport.key-derivation"
source_path = "src/internal/auth"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/secure-bootstrap-transport.key-derivation"
[[features]]
id = "secure-bootstrap-transport.secure-framing"
root = "secure-bootstrap-transport"
state = "ready"
branch = "workflow/feature/secure-bootstrap-transport.secure-framing"
path = "workflow/features/secure-bootstrap-transport.secure-framing"
source_path = "docs"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/secure-bootstrap-transport.secure-framing"
[[features]]
id = "secure-bootstrap-transport.rekey-policy"
root = "secure-bootstrap-transport"
state = "ready"
branch = "workflow/feature/secure-bootstrap-transport.rekey-policy"
path = "workflow/features/secure-bootstrap-transport.rekey-policy"
source_path = "docs"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/secure-bootstrap-transport.rekey-policy"
[[features]]
id = "secure-bootstrap-transport.posix-transport"
root = "secure-bootstrap-transport"
state = "ready"
branch = "workflow/feature/secure-bootstrap-transport.posix-transport"
path = "workflow/features/secure-bootstrap-transport.posix-transport"
source_path = "src/internal/runtime"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/secure-bootstrap-transport.posix-transport"
[[features]]
id = "secure-bootstrap-transport.windows-transport"
root = "secure-bootstrap-transport"
state = "ready"
branch = "workflow/feature/secure-bootstrap-transport.windows-transport"
path = "workflow/features/secure-bootstrap-transport.windows-transport"
source_path = "docs"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/secure-bootstrap-transport.windows-transport"
[[features]]
id = "kernel-runtime-supervision.daemon-entrypoint"
root = "kernel-runtime-supervision"
state = "ready"
branch = "workflow/feature/kernel-runtime-supervision.daemon-entrypoint"
path = "workflow/features/kernel-runtime-supervision.daemon-entrypoint"
source_path = "src/cmd/rpcplugind"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/kernel-runtime-supervision.daemon-entrypoint"
[[features]]
id = "kernel-runtime-supervision.manager-lifecycle"
root = "kernel-runtime-supervision"
state = "ready"
branch = "workflow/feature/kernel-runtime-supervision.manager-lifecycle"
path = "workflow/features/kernel-runtime-supervision.manager-lifecycle"
source_path = "src/internal/kernel"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/kernel-runtime-supervision.manager-lifecycle"
[[features]]
id = "kernel-runtime-supervision.multi-plugin-registry"
root = "kernel-runtime-supervision"
state = "ready"
branch = "workflow/feature/kernel-runtime-supervision.multi-plugin-registry"
path = "workflow/features/kernel-runtime-supervision.multi-plugin-registry"
source_path = "src/internal/kernel"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/kernel-runtime-supervision.multi-plugin-registry"
[[features]]
id = "kernel-runtime-supervision.routing"
root = "kernel-runtime-supervision"
state = "ready"
branch = "workflow/feature/kernel-runtime-supervision.routing"
path = "workflow/features/kernel-runtime-supervision.routing"
source_path = "src/internal/kernel"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/kernel-runtime-supervision.routing"
[[features]]
id = "kernel-runtime-supervision.monitoring"
root = "kernel-runtime-supervision"
state = "ready"
branch = "workflow/feature/kernel-runtime-supervision.monitoring"
path = "workflow/features/kernel-runtime-supervision.monitoring"
source_path = "src/internal/kernel"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/kernel-runtime-supervision.monitoring"
[[features]]
id = "kernel-runtime-supervision.failure-isolation"
root = "kernel-runtime-supervision"
state = "ready"
branch = "workflow/feature/kernel-runtime-supervision.failure-isolation"
path = "workflow/features/kernel-runtime-supervision.failure-isolation"
source_path = "src/internal/kernel"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/kernel-runtime-supervision.failure-isolation"
[[features]]
id = "kernel-runtime-supervision.env-hardening"
root = "kernel-runtime-supervision"
state = "ready"
branch = "workflow/feature/kernel-runtime-supervision.env-hardening"
path = "workflow/features/kernel-runtime-supervision.env-hardening"
source_path = "src/cmd/rpcplugind"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/kernel-runtime-supervision.env-hardening"
[[features]]
id = "kernel-runtime-supervision.peercred-runtime"
root = "kernel-runtime-supervision"
state = "ready"
branch = "workflow/feature/kernel-runtime-supervision.peercred-runtime"
path = "workflow/features/kernel-runtime-supervision.peercred-runtime"
source_path = "src/internal/runtime"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/kernel-runtime-supervision.peercred-runtime"
[[features]]
id = "control-plane-ops.admin-rpc"
root = "control-plane-ops"
state = "ready"
branch = "workflow/feature/control-plane-ops.admin-rpc"
path = "workflow/features/control-plane-ops.admin-rpc"
source_path = "src/internal/adminrpc"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/control-plane-ops.admin-rpc"
[[features]]
id = "control-plane-ops.cli-argument-model"
root = "control-plane-ops"
state = "ready"
branch = "workflow/feature/control-plane-ops.cli-argument-model"
path = "workflow/features/control-plane-ops.cli-argument-model"
source_path = "src/cmd/rpcpluginctl"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/control-plane-ops.cli-argument-model"
[[features]]
id = "control-plane-ops.cli-status-control"
root = "control-plane-ops"
state = "ready"
branch = "workflow/feature/control-plane-ops.cli-status-control"
path = "workflow/features/control-plane-ops.cli-status-control"
source_path = "src/cmd/rpcpluginctl"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/control-plane-ops.cli-status-control"
[[features]]
id = "control-plane-ops.event-log-write"
root = "control-plane-ops"
state = "ready"
branch = "workflow/feature/control-plane-ops.event-log-write"
path = "workflow/features/control-plane-ops.event-log-write"
source_path = "src/internal/eventlog"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/control-plane-ops.event-log-write"
[[features]]
id = "control-plane-ops.event-log-read"
root = "control-plane-ops"
state = "ready"
branch = "workflow/feature/control-plane-ops.event-log-read"
path = "workflow/features/control-plane-ops.event-log-read"
source_path = "src/internal/eventlog"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/control-plane-ops.event-log-read"
[[features]]
id = "control-plane-ops.local-observability"
root = "control-plane-ops"
state = "ready"
branch = "workflow/feature/control-plane-ops.local-observability"
path = "workflow/features/control-plane-ops.local-observability"
source_path = "src/internal/eventlog"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/control-plane-ops.local-observability"
[[features]]
id = "plugin-authoring-sdk.go-runtime"
root = "plugin-authoring-sdk"
state = "ready"
branch = "workflow/feature/plugin-authoring-sdk.go-runtime"
path = "workflow/features/plugin-authoring-sdk.go-runtime"
source_path = "src/pkg/plugin"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/plugin-authoring-sdk.go-runtime"
[[features]]
id = "plugin-authoring-sdk.logging"
root = "plugin-authoring-sdk"
state = "ready"
branch = "workflow/feature/plugin-authoring-sdk.logging"
path = "workflow/features/plugin-authoring-sdk.logging"
source_path = "src/pkg/plugin"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/plugin-authoring-sdk.logging"
[[features]]
id = "plugin-authoring-sdk.template-minimal"
root = "plugin-authoring-sdk"
state = "ready"
branch = "workflow/feature/plugin-authoring-sdk.template-minimal"
path = "workflow/features/plugin-authoring-sdk.template-minimal"
source_path = "src/pkg/plugin"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/plugin-authoring-sdk.template-minimal"
[[features]]
id = "plugin-authoring-sdk.test-plugin-api"
root = "plugin-authoring-sdk"
state = "ready"
branch = "workflow/feature/plugin-authoring-sdk.test-plugin-api"
path = "workflow/features/plugin-authoring-sdk.test-plugin-api"
source_path = "src/test/testpluginapi"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/plugin-authoring-sdk.test-plugin-api"
[[features]]
id = "plugin-authoring-sdk.echo-example"
root = "plugin-authoring-sdk"
state = "ready"
branch = "workflow/feature/plugin-authoring-sdk.echo-example"
path = "workflow/features/plugin-authoring-sdk.echo-example"
source_path = "src/examples/rpcplugin-echo"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/plugin-authoring-sdk.echo-example"
[[features]]
id = "plugin-authoring-sdk.failure-example"
root = "plugin-authoring-sdk"
state = "ready"
branch = "workflow/feature/plugin-authoring-sdk.failure-example"
path = "workflow/features/plugin-authoring-sdk.failure-example"
source_path = "src/examples/rpcplugin-failure"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/plugin-authoring-sdk.failure-example"
[[features]]
id = "release-packaging-governance.install-layout"
root = "release-packaging-governance"
state = "ready"
branch = "workflow/feature/release-packaging-governance.install-layout"
path = "workflow/features/release-packaging-governance.install-layout"
source_path = "docs"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/release-packaging-governance.install-layout"
[[features]]
id = "release-packaging-governance.packaging-policy"
root = "release-packaging-governance"
state = "ready"
branch = "workflow/feature/release-packaging-governance.packaging-policy"
path = "workflow/features/release-packaging-governance.packaging-policy"
source_path = "docs"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/release-packaging-governance.packaging-policy"
[[features]]
id = "release-packaging-governance.branch-promotion"
root = "release-packaging-governance"
state = "ready"
branch = "workflow/feature/release-packaging-governance.branch-promotion"
path = "workflow/features/release-packaging-governance.branch-promotion"
source_path = "docs"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/release-packaging-governance.branch-promotion"
[[features]]
id = "release-packaging-governance.v0-baseline"
root = "release-packaging-governance"
state = "ready"
branch = "workflow/feature/release-packaging-governance.v0-baseline"
path = "workflow/features/release-packaging-governance.v0-baseline"
source_path = "docs"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/release-packaging-governance.v0-baseline"
[[features]]
id = "release-packaging-governance.v1-freeze"
root = "release-packaging-governance"
state = "ready"
branch = "workflow/feature/release-packaging-governance.v1-freeze"
path = "workflow/features/release-packaging-governance.v1-freeze"
source_path = "docs"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/release-packaging-governance.v1-freeze"
[[features]]
id = "release-packaging-governance.roadmap"
root = "release-packaging-governance"
state = "ready"
branch = "workflow/feature/release-packaging-governance.roadmap"
path = "workflow/features/release-packaging-governance.roadmap"
source_path = "docs"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/release-packaging-governance.roadmap"
[[features]]
id = "release-packaging-governance.go-build-deps"
root = "release-packaging-governance"
state = "ready"
branch = "workflow/feature/release-packaging-governance.go-build-deps"
path = "workflow/features/release-packaging-governance.go-build-deps"
source_path = "src/test/testroot"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/release-packaging-governance.go-build-deps"
[[root_features]]
id = "provider-bundle-substrate"
branch = "workflow/root/provider-bundle-substrate"
path = "workflow/root/provider-bundle-substrate"
source_path = "src/internal"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/root/provider-bundle-substrate"
features = [
"provider-bundle-substrate.metadata-contracts",
"provider-bundle-substrate.bundle-loading",
"provider-bundle-substrate.admin-core-surfaces",
"provider-bundle-substrate.restart-invalidation",
]
[[features]]
id = "provider-bundle-substrate.metadata-contracts"
root = "provider-bundle-substrate"
state = "done"
branch = "workflow/feature/provider-bundle-substrate.metadata-contracts"
path = "workflow/features/provider-bundle-substrate.metadata-contracts"
source_path = "src/internal"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/provider-bundle-substrate.metadata-contracts"
[[features]]
id = "provider-bundle-substrate.bundle-loading"
root = "provider-bundle-substrate"
state = "done"
branch = "workflow/feature/provider-bundle-substrate.bundle-loading"
path = "workflow/features/provider-bundle-substrate.bundle-loading"
source_path = "src/internal"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/provider-bundle-substrate.bundle-loading"
[[features]]
id = "provider-bundle-substrate.admin-core-surfaces"
root = "provider-bundle-substrate"
state = "done"
branch = "workflow/feature/provider-bundle-substrate.admin-core-surfaces"
path = "workflow/features/provider-bundle-substrate.admin-core-surfaces"
source_path = "src/internal"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/provider-bundle-substrate.admin-core-surfaces"
[[features]]
id = "provider-bundle-substrate.restart-invalidation"
root = "provider-bundle-substrate"
state = "done"
branch = "workflow/feature/provider-bundle-substrate.restart-invalidation"
path = "workflow/features/provider-bundle-substrate.restart-invalidation"
source_path = "src/internal"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/provider-bundle-substrate.restart-invalidation"
[[root_features]]
id = "provider-observability"
branch = "workflow/root/provider-observability"
path = "workflow/root/provider-observability"
source_path = "src/internal/eventlog"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/root/provider-observability"
features = [
"provider-observability.event-schema",
"provider-observability.sdk-emission",
"provider-observability.admin-read",
"provider-observability.redaction-contracts",
]
[[features]]
id = "provider-observability.event-schema"
root = "provider-observability"
state = "done"
branch = "workflow/feature/provider-observability.event-schema"
path = "workflow/features/provider-observability.event-schema"
source_path = "src/internal/eventlog"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/provider-observability.event-schema"
[[features]]
id = "provider-observability.sdk-emission"
root = "provider-observability"
state = "done"
branch = "workflow/feature/provider-observability.sdk-emission"
path = "workflow/features/provider-observability.sdk-emission"
source_path = "src/pkg/plugin"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/provider-observability.sdk-emission"
[[features]]
id = "provider-observability.admin-read"
root = "provider-observability"
state = "done"
branch = "workflow/feature/provider-observability.admin-read"
path = "workflow/features/provider-observability.admin-read"
source_path = "src/internal/adminrpc"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/provider-observability.admin-read"
[[features]]
id = "provider-observability.redaction-contracts"
root = "provider-observability"
state = "done"
branch = "workflow/feature/provider-observability.redaction-contracts"
path = "workflow/features/provider-observability.redaction-contracts"
source_path = "src/internal/eventlog"
worktree = "/tank/development/linus/rpc-plugin-system-worktrees/features/provider-observability.redaction-contracts"