-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstate.json
More file actions
1260 lines (1260 loc) · 43.1 KB
/
Copy pathstate.json
File metadata and controls
1260 lines (1260 loc) · 43.1 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
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"schema_version": 1,
"roadmap_id": "filecoin-ecosystem-security-evaluation",
"goal": "Provide secure, repeatable, and effective GitHub-based security evaluation for supported Filecoin ecosystem projects without representing incomplete evaluation as safety.",
"updated_at": "2026-07-29T15:51:54Z",
"current_task_id": "BASE-01",
"canonical_decision_map": "docs/ECOSYSTEM-SECURITY-DECISION-MAP.md",
"contract_command": "bash scripts/roadmap.sh validate",
"status_semantics": {
"pending": "Not started; dependencies may or may not be complete.",
"in_progress": "Claimed as the single active task.",
"blocked": "Work began but cannot continue without an external decision or state change.",
"done": "Acceptance criteria and verification are complete.",
"cancelled": "Intentionally removed from the active roadmap with rationale recorded in the decision map."
},
"release_gates": [
{
"id": "G0",
"name": "Trustworthy foundation",
"exit_task": "G0-11"
},
{
"id": "G1",
"name": "Internal alpha",
"exit_task": "BASE-03"
},
{
"id": "G2",
"name": "Multi-profile pilot",
"exit_task": "VERIFY-01"
},
{
"id": "G3",
"name": "Public v1",
"exit_task": "REL-01"
},
{
"id": "G4",
"name": "Ecosystem scale",
"exit_task": "SCALE-01"
}
],
"tasks": [
{
"id": "FOUND-01",
"order": 1,
"phase": "foundation",
"priority": "P0",
"kind": "implementation",
"status": "done",
"title": "Establish navigable documentation foundation",
"objective": "Give consumers, maintainers, and rollout operators tested paths into the platform.",
"blocked_by": [],
"decision_refs": [
"documentation-system",
"product-contract"
],
"acceptance_criteria": [
"The root README routes all three audiences.",
"Consumer, maintainer, operator, architecture, and current-contract pages are indexed and link-checked."
],
"verification": [
"bash scripts/check-docs.sh"
],
"artifacts": [
"README.md",
"docs/README.md",
"docs/DOCUMENTATION-ARCHITECTURE.md"
],
"started_at": "2026-07-24T00:00:00Z",
"completed_at": "2026-07-24T00:00:00Z"
},
{
"id": "STATE-01",
"order": 2,
"phase": "foundation",
"priority": "P0",
"kind": "implementation",
"status": "done",
"title": "Create canonical machine-readable roadmap state",
"objective": "Make roadmap order, dependencies, status, acceptance criteria, and verification queryable by people and automation.",
"blocked_by": [
"FOUND-01"
],
"decision_refs": [
"documentation-system"
],
"acceptance_criteria": [
"One JSON state file contains every implementation task in dependency order.",
"A checked-in command validates, queries, and deliberately updates task status."
],
"verification": [
"bash scripts/roadmap.sh validate",
"bash scripts/roadmap.sh next"
],
"artifacts": [
"roadmap/state.json",
"scripts/roadmap.sh"
],
"started_at": "2026-07-28T00:00:00Z",
"completed_at": "2026-07-28T00:00:00Z"
},
{
"id": "G0-01",
"order": 3,
"phase": "g0-trust",
"priority": "P0",
"kind": "decision",
"status": "done",
"title": "Define execution trust tiers",
"objective": "Classify every evaluation as inspection-only or code-executing and define its token, secret, network, runner, cache, and OIDC boundary.",
"blocked_by": [
"STATE-01"
],
"decision_refs": [
"execution-trust"
],
"acceptance_criteria": [
"Every existing workflow is assigned to the Ecosystem Baseline or a named Privileged Analysis tier.",
"The baseline is specified as read-only, secretless, and non-executing on untrusted pull requests."
],
"verification": [
"A contract test compares workflow behavior with the recorded trust classification."
],
"artifacts": [
"docs/reference/execution-trust.md",
"security/execution-trust.json",
"scripts/check-execution-trust.sh",
"threat-model/execution-trust/threat-model-report.md"
],
"started_at": "2026-07-28T20:37:46Z",
"completed_at": "2026-07-28T20:57:58Z"
},
{
"id": "G0-02",
"order": 4,
"phase": "g0-trust",
"priority": "P0",
"kind": "implementation",
"status": "done",
"title": "Enforce least privilege and safe checkout",
"objective": "Give each workflow only its documented permissions and prevent checkout credentials from persisting.",
"blocked_by": [
"G0-01"
],
"decision_refs": [
"known-blockers",
"execution-trust"
],
"acceptance_criteria": [
"Every job has explicit permissions and every checkout sets persist-credentials to false.",
"OIDC, PR write, and security-event write permissions exist only in jobs that need them."
],
"verification": [
"A workflow-security test fails on implicit permissions, persisted credentials, or excessive authority."
],
"artifacts": [
".github/workflows/",
"security/workflow-policy.json",
"scripts/check-workflow-security.sh",
"scripts/test-workflow-security.sh"
],
"started_at": "2026-07-28T23:33:31Z",
"completed_at": "2026-07-28T23:45:51Z"
},
{
"id": "G0-03",
"order": 5,
"phase": "g0-trust",
"priority": "P0",
"kind": "implementation",
"status": "done",
"title": "Remove package lifecycle execution from inspection workflows",
"objective": "Inspect manifests, lockfiles, licenses, and SBOM inputs without running consumer installation hooks.",
"blocked_by": [
"G0-01"
],
"decision_refs": [
"known-blockers",
"execution-trust"
],
"acceptance_criteria": [
"Baseline dependency, license, and SBOM workflows do not run npm, pnpm, Cargo, Go, or other project hooks.",
"Build-dependent completeness is isolated behind explicit opt-in and reported as such."
],
"verification": [
"A malicious-install-hook fixture proves baseline jobs do not execute repository code."
],
"artifacts": [
".github/workflows/sec-dependencies.yml",
".github/workflows/sec-licenses.yml",
".github/workflows/sec-sbom.yml",
"security/baseline-policy.json",
"scripts/check-baseline-no-exec.sh",
"scripts/test-baseline-no-exec.sh"
],
"started_at": "2026-07-28T23:46:57Z",
"completed_at": "2026-07-28T23:52:25Z"
},
{
"id": "G0-04",
"order": 6,
"phase": "g0-trust",
"priority": "P0",
"kind": "implementation",
"status": "done",
"title": "Make scanner exit and gate semantics honest",
"objective": "Prevent findings and operational failures from being hidden by unconditional advisory execution.",
"blocked_by": [
"G0-01"
],
"decision_refs": [
"known-blockers",
"evaluation-contract"
],
"acceptance_criteria": [
"Every scanner distinguishes finding thresholds from tool failure.",
"Every supported gate input is exposed and forwarded through the umbrella surface."
],
"verification": [
"Fixtures separately assert no findings, gated findings, tool error, and malformed output behavior."
],
"artifacts": [
".github/workflows/security-pipeline.yml",
".github/workflows/sec-*.yml",
"actions/scanner-outcome/action.yml",
"actions/scanner-outcome/scanner-outcome.sh",
"security/scanner-gates.json",
"scripts/check-scanner-gates.sh",
"scripts/test-scanner-outcome.sh"
],
"started_at": "2026-07-28T23:52:38Z",
"completed_at": "2026-07-29T00:03:54Z"
},
{
"id": "G0-05",
"order": 7,
"phase": "g0-trust",
"priority": "P0",
"kind": "implementation",
"status": "done",
"title": "Add completion status to existing evaluations",
"objective": "Represent complete, incomplete, skipped, and error independently from finding severity.",
"blocked_by": [
"G0-04"
],
"decision_refs": [
"evaluation-contract",
"known-blockers"
],
"acceptance_criteria": [
"Each existing evaluation emits a machine-readable completion status.",
"AI refusal, truncation, missing secrets, event skips, and tool outages cannot appear as zero-findings completion."
],
"verification": [
"Contract fixtures cover all four completion statuses for scanner and AI surfaces."
],
"artifacts": [
"schemas/evaluation-result.schema.json"
],
"started_at": "2026-07-29T00:04:59Z",
"completed_at": "2026-07-29T00:14:40Z"
},
{
"id": "G0-06",
"order": 8,
"phase": "g0-trust",
"priority": "P0",
"kind": "implementation",
"status": "done",
"title": "Provide secretless secret scanning",
"objective": "Run useful secret detection for organization repositories and fork pull requests without a required license secret.",
"blocked_by": [
"G0-01"
],
"decision_refs": [
"execution-trust",
"fork-pr-model"
],
"acceptance_criteria": [
"The default secret scanner works without repository or organization secrets.",
"PR-diff and scheduled full-history scopes are explicit and independently testable."
],
"verification": [
"Fork and full-history fixtures detect planted secrets with no configured secrets."
],
"artifacts": [
".github/workflows/sec-secrets.yml"
],
"started_at": "2026-07-29T00:15:32Z",
"completed_at": "2026-07-29T00:21:57Z"
},
{
"id": "G0-07",
"order": 9,
"phase": "g0-trust",
"priority": "P0",
"kind": "implementation",
"status": "done",
"title": "Add consumer GitHub Actions security evaluation",
"objective": "Detect mutable references, excessive permissions, dangerous triggers, expression injection, persisted credentials, and OIDC exposure in consumer workflows.",
"blocked_by": [
"G0-01"
],
"decision_refs": [
"scanner-runtime",
"execution-trust"
],
"acceptance_criteria": [
"The baseline includes pinned workflow syntax and security analyzers.",
"High-confidence workflow supply-chain defects produce actionable locations and remediation."
],
"verification": [
"Fixtures cover mutable refs, pwn-request triggers, shell injection, and overbroad permissions."
],
"artifacts": [
".github/workflows/sec-actions.yml"
],
"started_at": "2026-07-29T00:22:22Z",
"completed_at": "2026-07-29T00:28:29Z"
},
{
"id": "G0-08",
"order": 10,
"phase": "g0-trust",
"priority": "P0",
"kind": "decision",
"status": "done",
"title": "Choose the cross-organization distribution model",
"objective": "Confirm whether immutable public reusable workflows are sufficient for initial self-service delivery and define when a GitHub App becomes justified.",
"blocked_by": [
"STATE-01"
],
"decision_refs": [
"distribution-model"
],
"acceptance_criteria": [
"The initial delivery mechanism, access assumptions, and escalation criteria are recorded.",
"The decision covers independent organizations, public/private repositories, forks, updates, and rollback."
],
"verification": [
"A sandbox consumer in another organization can install the selected delivery model."
],
"artifacts": [
"docs/decisions/distribution-model.md"
],
"started_at": "2026-07-29T00:28:56Z",
"completed_at": "2026-07-29T00:31:23Z"
},
{
"id": "G0-09",
"order": 11,
"phase": "g0-trust",
"priority": "P0",
"kind": "implementation",
"status": "done",
"title": "Make consumer pins cover the complete execution graph",
"objective": "Ensure one reviewed consumer SHA immutably selects nested workflows, actions, containers, prompts, rules, and third-party dependencies.",
"blocked_by": [
"G0-08"
],
"decision_refs": [
"release-integrity"
],
"acceptance_criteria": [
"No released execution path resolves mutable main, branch, floating tag, or unpinned container references.",
"Consumers can upgrade and roll back by changing one reviewed reference."
],
"verification": [
"A release-graph test recursively rejects mutable references and verifies all expected assets."
],
"artifacts": [
"scripts/check-release-graph.sh",
".github/workflows/security-pipeline.yml"
],
"started_at": "2026-07-29T00:31:57Z",
"completed_at": "2026-07-29T00:48:03Z"
},
{
"id": "G0-10",
"order": 12,
"phase": "g0-trust",
"priority": "P0",
"kind": "verification",
"status": "done",
"title": "Prove fork-safe baseline behavior",
"objective": "Give external contributions deterministic baseline evaluation without secrets or privileged triggers.",
"blocked_by": [
"G0-02",
"G0-03",
"G0-05",
"G0-06",
"G0-07"
],
"decision_refs": [
"fork-pr-model",
"execution-trust"
],
"acceptance_criteria": [
"Ordinary pull_request events from forks run every declared baseline evaluation or report an explicit skip.",
"No pull_request_target path checks out or executes untrusted fork content."
],
"verification": [
"An end-to-end fork fixture probes token, secret, checkout, cache, and OIDC boundaries."
],
"artifacts": [
"test/fixtures/fork-pr/"
],
"started_at": "2026-07-29T00:50:21Z",
"completed_at": "2026-07-29T00:58:59Z"
},
{
"id": "G0-11",
"order": 13,
"phase": "g0-trust",
"priority": "P0",
"kind": "verification",
"status": "done",
"title": "Enforce the G0 trustworthy-foundation gate",
"objective": "Turn every G0 trust claim into a required regression test and block release when one fails.",
"blocked_by": [
"G0-09",
"G0-10"
],
"decision_refs": [
"known-blockers",
"verification-system"
],
"acceptance_criteria": [
"Permissions, no-execution, gate semantics, completion, fork behavior, and release integrity are CI requirements.",
"The current consumer examples pass the same checks as released surfaces."
],
"verification": [
"The G0 suite passes cleanly and each control has a demonstrated failing fixture."
],
"artifacts": [
".github/workflows/g0-contract.yml"
],
"started_at": "2026-07-29T01:00:07Z",
"completed_at": "2026-07-29T01:03:11Z"
},
{
"id": "EVAL-01",
"order": 14,
"phase": "evaluation-platform",
"priority": "P0",
"kind": "decision",
"status": "done",
"title": "Finalize the Evaluation Result contract",
"objective": "Version one schema for tool identity, scope, completion, coverage, findings, suppressions, timing, and evidence.",
"blocked_by": [
"G0-11"
],
"decision_refs": [
"evaluation-contract"
],
"acceptance_criteria": [
"Completion, findings, and Merge Gate policy are separate fields with explicit semantics.",
"Schema evolution and unknown-field behavior are documented."
],
"verification": [
"Valid and invalid fixture results are checked against the schema."
],
"artifacts": [
"schemas/evaluation-result.schema.json",
"docs/reference/evaluation-result.md"
],
"started_at": "2026-07-29T01:05:37Z",
"completed_at": "2026-07-29T01:11:58Z"
},
{
"id": "EVAL-02",
"order": 15,
"phase": "evaluation-platform",
"priority": "P0",
"kind": "implementation",
"status": "done",
"title": "Implement the scanner adapter contract",
"objective": "Give every evaluation the same lifecycle for immutable invocation, raw evidence, normalization, and exit handling.",
"blocked_by": [
"EVAL-01"
],
"decision_refs": [
"scanner-runtime",
"evaluation-contract"
],
"acceptance_criteria": [
"One vertical scanner slice implements the entire adapter contract without tool-specific policy leakage.",
"Operational errors and malformed output cannot be normalized as clean findings."
],
"verification": [
"Adapter contract tests run against success, findings, timeout, crash, and malformed-output fixtures."
],
"artifacts": [
"actions/evaluation-adapter/"
],
"started_at": "2026-07-29T01:13:18Z",
"completed_at": "2026-07-29T01:18:13Z"
},
{
"id": "EVAL-03",
"order": 16,
"phase": "evaluation-platform",
"priority": "P0",
"kind": "implementation",
"status": "done",
"title": "Aggregate one Evidence Bundle and profile conclusion",
"objective": "Present humans and automation with one authoritative completion, findings, coverage, and policy surface.",
"blocked_by": [
"EVAL-02"
],
"decision_refs": [
"evidence-interface"
],
"acceptance_criteria": [
"The pipeline emits a versioned JSON Evidence Bundle and readable job summary.",
"One stable required check evaluates completion and the consumer-selected Merge Gate."
],
"verification": [
"Aggregation fixtures cover mixed findings, skipped jobs, errors, suppressions, and duplicate evidence."
],
"artifacts": [
"schemas/evidence-bundle.schema.json",
"actions/aggregate-results/"
],
"started_at": "2026-07-29T01:19:41Z",
"completed_at": "2026-07-29T01:26:14Z"
},
{
"id": "BASE-01",
"order": 17,
"phase": "ecosystem-baseline",
"priority": "P0",
"kind": "implementation",
"status": "in_progress",
"title": "Release the secretless Ecosystem Baseline",
"objective": "Combine workflow security, secret detection, recursive lockfile vulnerabilities, IaC, and conservative static analysis without executing project code.",
"blocked_by": [
"EVAL-03"
],
"decision_refs": [
"scanner-runtime",
"execution-trust"
],
"acceptance_criteria": [
"The baseline is useful for supported Go, Rust, JavaScript, Solidity, infrastructure, and monorepo repositories without secrets.",
"Unsupported or unavailable coverage is visible in the Evidence Bundle.",
"Every evaluation maps findings to source locations, remediation guidance, gate reasons, and durable evidence through the Consumable Output Contract."
],
"verification": [
"Cross-language fixtures pass the baseline and detect planted high-confidence defects.",
"bash scripts/check-output-contract.sh && bash scripts/test-output-contract.sh",
"bash scripts/test-consumer-alpha.sh",
"The hosted Consumer Alpha Canary completes from the published optimization branch and produces ecosystem-baseline-evidence."
],
"artifacts": [
".github/workflows/consumer-alpha-canary.yml",
".github/workflows/ecosystem-baseline.yml",
"actions/zizmor-scan/",
"docs/consumers/quickstart.md",
"examples/consumer-ecosystem-baseline.yml"
],
"started_at": "2026-07-29T01:28:10Z",
"completed_at": null
},
{
"id": "BASE-02",
"order": 18,
"phase": "ecosystem-baseline",
"priority": "P1",
"kind": "implementation",
"status": "pending",
"title": "Split fast PR and deep scheduled evaluation lanes",
"objective": "Keep pull-request feedback timely while retaining full-history and whole-repository coverage on trusted events.",
"blocked_by": [
"BASE-01"
],
"decision_refs": [
"scanner-runtime",
"fork-pr-model"
],
"acceptance_criteria": [
"PR evaluation is change-aware and stays within a documented runtime budget.",
"Push and schedule evaluation covers full history or repository scope where required."
],
"verification": [
"Event-matrix tests assert the declared scope and completion status for each lane."
],
"artifacts": [
".github/workflows/ecosystem-baseline.yml"
],
"started_at": null,
"completed_at": null
},
{
"id": "PROF-01",
"order": 19,
"phase": "security-profiles",
"priority": "P0",
"kind": "decision",
"status": "pending",
"title": "Finalize the supported Security Profile taxonomy",
"objective": "Define required, optional, unsupported, and privileged evaluations for real Filecoin project classes.",
"blocked_by": [
"EVAL-01"
],
"decision_refs": [
"profile-taxonomy"
],
"acceptance_criteria": [
"Go node, Rust/FVM actor, service, Solidity/FEVM, and infrastructure profiles have owners and coverage statements.",
"Consensus-critical and funds-moving projects have explicit human-review requirements."
],
"verification": [
"Representative repositories map to one or more profiles without an unreported component."
],
"artifacts": [
"profiles/"
],
"started_at": null,
"completed_at": null
},
{
"id": "PROF-02",
"order": 20,
"phase": "security-profiles",
"priority": "P0",
"kind": "implementation",
"status": "pending",
"title": "Implement profile detection and composition",
"objective": "Select profiles from repository signals and compose them by path for monorepos without hiding ambiguity.",
"blocked_by": [
"PROF-01"
],
"decision_refs": [
"profile-taxonomy",
"scanner-runtime"
],
"acceptance_criteria": [
"Detection recognizes supported manifests, build files, infrastructure, and Filecoin-specific signals.",
"Ambiguous and unsupported components produce explicit coverage gaps rather than guesses."
],
"verification": [
"Repository-shape fixtures cover single-language, polyglot, nested, and ambiguous layouts."
],
"artifacts": [
"actions/detect-profiles/"
],
"started_at": null,
"completed_at": null
},
{
"id": "PROF-03",
"order": 21,
"phase": "security-profiles",
"priority": "P0",
"kind": "implementation",
"status": "pending",
"title": "Ship the Go node and service profile",
"objective": "Add low-noise Go dependency reachability, static analysis, and a separately trusted build tier suitable for node and service repositories.",
"blocked_by": [
"PROF-02",
"BASE-01"
],
"decision_refs": [
"profile-taxonomy",
"scanner-runtime"
],
"acceptance_criteria": [
"The profile includes pinned govulncheck and appropriate CodeQL/static analysis with documented build requirements.",
"Fork-safe inspection and trusted build-dependent coverage remain separate."
],
"verification": [
"Go fixtures cover reachable/unreachable advisories, build failure, and representative node code."
],
"artifacts": [
"profiles/go.yml",
"examples/consumer-go-profile.yml"
],
"started_at": null,
"completed_at": null
},
{
"id": "BASE-03",
"order": 22,
"phase": "ecosystem-baseline",
"priority": "P0",
"kind": "verification",
"status": "pending",
"title": "Pass the G1 internal-alpha gate",
"objective": "Prove the immutable baseline and one vertical profile can be adopted end to end by a new consumer.",
"blocked_by": [
"BASE-02",
"PROF-03"
],
"decision_refs": [
"verification-system",
"consumer-migration"
],
"acceptance_criteria": [
"A sandbox consumer installs through the documented quickstart without source assistance.",
"Upgrade, rollback, findings, incomplete execution, and required-check behavior are exercised."
],
"verification": [
"A recorded sandbox run and acceptance checklist satisfy every G1 criterion."
],
"artifacts": [
"test/acceptance/g1/"
],
"started_at": null,
"completed_at": null
},
{
"id": "PROF-04",
"order": 23,
"phase": "security-profiles",
"priority": "P0",
"kind": "implementation",
"status": "pending",
"title": "Ship the Rust and FVM actor profile",
"objective": "Add RustSec or OSV dependency analysis, dependency policy, no-build static analysis, and actor-aware controls.",
"blocked_by": [
"PROF-02",
"BASE-01"
],
"decision_refs": [
"profile-taxonomy",
"scanner-runtime"
],
"acceptance_criteria": [
"The profile covers advisories, licenses, sources, unsafe-code evidence, and supported static analysis.",
"Actor-specific limitations and trusted WASM/build analysis are explicit."
],
"verification": [
"Rust fixtures cover vulnerable crates, policy violations, unsafe usage, and actor code."
],
"artifacts": [
"profiles/rust-fvm.yml",
"examples/consumer-rust-fvm-profile.yml"
],
"started_at": null,
"completed_at": null
},
{
"id": "PROF-05",
"order": 24,
"phase": "security-profiles",
"priority": "P1",
"kind": "implementation",
"status": "pending",
"title": "Ship the JavaScript and TypeScript service profile",
"objective": "Turn the current strongest generic coverage into a deterministic service profile with no-install and trusted-build tiers.",
"blocked_by": [
"PROF-02",
"BASE-01"
],
"decision_refs": [
"profile-taxonomy",
"scanner-runtime"
],
"acceptance_criteria": [
"Semgrep, CodeQL, lockfile vulnerabilities, dependency review, and IaC defaults are versioned and tested.",
"npm and pnpm install hooks are never required for baseline coverage."
],
"verification": [
"Service fixtures cover vulnerable dependencies, injection, authentication, workflow, and IaC defects."
],
"artifacts": [
"profiles/service.yml",
"examples/consumer-service-profile.yml"
],
"started_at": null,
"completed_at": null
},
{
"id": "PROF-06",
"order": 25,
"phase": "security-profiles",
"priority": "P1",
"kind": "implementation",
"status": "pending",
"title": "Ship the Solidity and FEVM profile",
"objective": "Combine safe source inspection with an explicit trusted Foundry, Slither, fuzz, and invariant-testing tier.",
"blocked_by": [
"PROF-02",
"BASE-01"
],
"decision_refs": [
"profile-taxonomy",
"execution-trust"
],
"acceptance_criteria": [
"Slither configuration and compiler resolution are deterministic and path-aware.",
"Build, fuzz, and invariant execution has no secrets, persisted credentials, write token, or OIDC."
],
"verification": [
"FEVM fixtures cover standard Solidity defects and Filecoin-specific address, epoch, gas, and actor-call behavior."
],
"artifacts": [
"profiles/solidity-fevm.yml",
"examples/consumer-solidity-fevm-profile.yml"
],
"started_at": null,
"completed_at": null
},
{
"id": "PROF-07",
"order": 26,
"phase": "security-profiles",
"priority": "P1",
"kind": "implementation",
"status": "pending",
"title": "Ship the infrastructure and container profile",
"objective": "Evaluate IaC, Kubernetes, Dockerfiles, container images, and build provenance with deployable policy defaults.",
"blocked_by": [
"PROF-02",
"BASE-01"
],
"decision_refs": [
"profile-taxonomy",
"scanner-runtime"
],
"acceptance_criteria": [
"Source configuration and built-image evaluation are distinct trust tiers.",
"The profile reports misconfiguration, vulnerable image content, and missing or invalid provenance."
],
"verification": [
"Infrastructure fixtures cover Terraform, Kubernetes, Dockerfile, image, and provenance failures."
],
"artifacts": [
"profiles/infrastructure.yml",
"examples/consumer-infrastructure-profile.yml"
],
"started_at": null,
"completed_at": null
},
{
"id": "PROF-08",
"order": 27,
"phase": "security-profiles",
"priority": "P1",
"kind": "implementation",
"status": "pending",
"title": "Support composed monorepo evaluation",
"objective": "Run multiple profiles by path while preserving scope, deduplication, runtime limits, and a single repository conclusion.",
"blocked_by": [
"PROF-03",
"PROF-04",
"PROF-05",
"PROF-06",
"PROF-07"
],
"decision_refs": [
"profile-taxonomy",
"evidence-interface"
],
"acceptance_criteria": [
"Each component has an explicit profile, path scope, completion status, and findings set.",
"Shared dependencies and findings are deduplicated without hiding component-specific impact."
],
"verification": [
"Polyglot monorepo fixtures exercise nested and overlapping project boundaries."
],
"artifacts": [
"profiles/monorepo.yml"
],
"started_at": null,
"completed_at": null
},
{
"id": "FILE-01",
"order": 28,
"phase": "filecoin-assurance",
"priority": "P0",
"kind": "implementation",
"status": "pending",
"title": "Convert Filecoin invariants into deterministic controls",
"objective": "Move high-confidence consensus, actor, FEVM, node-liveness, RPC, and storage-provider checks from prompt guidance into testable rules and invariants.",
"blocked_by": [
"PROF-03",
"PROF-04",
"PROF-06"
],
"decision_refs": [
"scanner-runtime",
"verification-system"
],
"acceptance_criteria": [
"Each rule names its supported scope, failure scenario, severity, precision expectation, and owner.",
"Rules with unacceptable false positives remain advisory or are excluded from Merge Gates."
],
"verification": [
"Planted Filecoin defect fixtures measure recall and precision for every released rule."
],
"artifacts": [
"rules/filecoin/",
"test/corpus/filecoin/"
],
"started_at": null,
"completed_at": null
},
{
"id": "VERIFY-01",
"order": 29,
"phase": "verification",
"priority": "P0",
"kind": "verification",
"status": "pending",
"title": "Pass the multi-profile effectiveness gate",
"objective": "Demonstrate safety, portability, completion reliability, useful detection, and acceptable noise across representative profiles.",
"blocked_by": [
"PROF-08",
"FILE-01",
"BASE-03"
],
"decision_refs": [
"verification-system"
],
"acceptance_criteria": [
"Go, Rust, service, Solidity, infrastructure, and monorepo fixtures meet declared recall, precision, runtime, and completion thresholds.",
"Upgrade, rollback, outage, malformed evidence, and suppression behavior are exercised."
],
"verification": [
"The versioned corpus produces a published G2 effectiveness report."
],
"artifacts": [
"test/corpus/",
"docs/reports/g2-effectiveness.md"
],
"started_at": null,
"completed_at": null
},
{
"id": "PRIV-01",
"order": 30,
"phase": "privileged-analysis",
"priority": "P1",
"kind": "decision",
"status": "pending",
"title": "Choose safe privileged-analysis behavior for forks",
"objective": "Define no-checkout, maintainer-approved, or app-mediated paths for analyses requiring secrets or write access.",
"blocked_by": [
"G0-10",
"EVAL-01"
],
"decision_refs": [
"fork-pr-model",
"distribution-model"
],
"acceptance_criteria": [
"Every fork receives evaluated, skipped, pending, or incomplete status for each privileged analysis.",
"No design combines untrusted checkout or execution with secrets or write authority."
],
"verification": [
"Fork threat-model fixtures demonstrate the selected approval and token flow."
],
"artifacts": [
"docs/decisions/privileged-fork-model.md"
],
"started_at": null,
"completed_at": null
},
{
"id": "PRIV-02",
"order": 31,
"phase": "privileged-analysis",
"priority": "P1",
"kind": "implementation",
"status": "pending",
"title": "Make AI review bounded and completion-aware",
"objective": "Partition large diffs, collect deterministic context, handle refusal and truncation honestly, and emit the Evaluation Result contract.",
"blocked_by": [
"PRIV-01",
"EVAL-02"
],
"decision_refs": [
"ai-assurance",
"evaluation-contract"
],
"acceptance_criteria": [
"Large changes are partitioned with a coverage manifest instead of byte-truncated mid-diff.",
"Refusal, partial output, missing secrets, invalid schema, and provider outage produce explicit non-complete status."
],
"verification": [
"AI fixtures cover prompt injection, truncation, refusal, malformed output, and provider failure."
],
"artifacts": [
"actions/ai-code-review/"
],
"started_at": null,
"completed_at": null
},
{
"id": "PRIV-03",
"order": 32,
"phase": "privileged-analysis",
"priority": "P1",
"kind": "verification",
"status": "pending",
"title": "Validate AI findings, privacy, and cost",