Cai
2026-08-14 8ca003d034ab4142e718b4737ebbeef85052af40
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
schema_version: '1.0'
project:
  id: project-info
  name: info
  root: .
  goal: 专门用来分析股市信息,包括研报、K线、网上公开信息等,并沉淀可审计的案例、实验、证据和结论。
  background: 面向股市信息研究与证据化分析的长期项目,数据来源包括本地/全局K线数据、研报材料、公开网络信息和后续登记的数据包。
  period: 长期持续维护
  project_admin: project.admin
  initial_ai:
  - infoadmin
  - laoyan
  - laoshen
  initial_roles:
  - project.admin
  - case_analysis.analyst:laoyan
  - dev.developer.ana:laoyan
  - experiment.experimenter:laoyan
  - dev.developer.exp:laoyan
  - case_analysis.reviewer:laoshen
  - dev.reviewer.ana:laoshen
  - experiment.reviewer:laoshen
  - dev.reviewer.exp:laoshen
  git_policy: independent
  creation_mode: formal
  missing_required_fields: []
  readiness: pending_audit
  status: active
roles:
- id: project.admin
  system_id: project
  role_key: admin
  name: project-info 项目管理员
  provider: codex
  workdir: .
  ai_id: infoadmin
  ai_name: infoadmin
  ai_display_name: project-info 项目管理员
  private_dir: ai-infoadmin
  docs_to_read:
  - 项目总览.md
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  - 项目事项计划.md
  - 项目执行日志.md
  - 项目事项审计报告.md
  - 项目问题记录.md
  - 项目变更记录.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019fbb4d-2ccb-7bd2-93bc-f57332d484a9
    status: active
    created_at: '2026-08-01T13:43:11+08:00'
    updated_at: '2026-08-01T13:43:11+08:00'
    created_by: human
    provider: codex
    delivery_mode: codex_app_native_thread
    thread_id: 019fbb4d-2ccb-7bd2-93bc-f57332d484a9
  status: active
  assigned_by: human
  assignment_reason: 用户已手动创建 project-info 项目管理员任务,要求按体系纳管并承担单一项目的配置、角色、事项和边界决策。
  required_skills:
  - mbx-governance
  - mbx-project-setup
  - mbx-ai-workspace
  - mbx-file-governance
  - mbx-human-workflow
  - mbx-role-runtime
- id: case_analysis.analyst
  system_id: case_analysis
  role_key: analyst
  name: 案例分析员
  provider: codex
  workdir: .
  ai_id: laoyan
  ai_name: laoyan
  ai_display_name: 案例分析员
  private_dir: ai-laoyan
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019ef54e-6978-76d3-bb78-081fa2c4b188
    status: active
    created_at: '2026-06-24T00:28:58+08:00'
    updated_at: '2026-06-27T00:08:23+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 39512
    session_file: C:\Users\Administrator\.codex3\sessions\2026\06\24\rollout-2026-06-24T00-26-57-019ef54e-6978-76d3-bb78-081fa2c4b188.jsonl
    thread_id: 019ef54e-6978-76d3-bb78-081fa2c4b188
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 39512
  status: active
  assigned_by: management.admin
  assignment_reason: project-info 初始化:laoyan 负责股市信息案例分析执行与对应开发。
  target_scopes:
  - ana-doc
  - ana-data
  required_skills:
  - mbx-governance
  - mbx-case-analysis
  - mbx-human-workflow
  - mbx-role-runtime
  - mbx-interaction-router
  - mbx-file-governance
  - mbx-inbox-watch
  - fp
- id: experiment.reviewer
  system_id: experiment
  role_key: reviewer
  name: 实验审核员
  provider: codex
  workdir: .
  ai_id: laoshen
  ai_name: laoshen
  ai_display_name: 实验审核员
  private_dir: ai-laoshen
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019ef550-45ac-7b43-aa24-2731d01dba9b
    status: active
    created_at: '2026-06-24T00:30:59+08:00'
    updated_at: '2026-06-27T01:05:00+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 22056
    session_file: C:\Users\Administrator\.codex3\sessions\2026\06\24\rollout-2026-06-24T00-28-59-019ef550-45ac-7b43-aa24-2731d01dba9b.jsonl
    thread_id: 019ef550-45ac-7b43-aa24-2731d01dba9b
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 22056
  status: active
  audit_entry: exp-doc/实验审计报告.md
  assigned_by: management.admin
  assignment_reason: project-info 初始化:laoshen 负责股市信息实验审核与对应开发审核。
  target_scopes:
  - exp-doc
  - exp-data
  reviewed_systems:
  - experiment
  required_skills:
  - mbx-governance
  - mbx-experiment-review
  - mbx-human-workflow
  - mbx-role-runtime
  - mbx-interaction-router
  - mbx-file-governance
  - mbx-inbox-watch
  - fp
- id: case_analysis.reviewer
  system_id: case_analysis
  role_key: reviewer
  name: 案例审核员
  provider: codex
  workdir: .
  ai_id: laoshen
  ai_name: laoshen
  ai_display_name: 案例审核员
  private_dir: ai-laoshen
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019ef550-45ac-7b43-aa24-2731d01dba9b
    status: active
    created_at: '2026-06-24T00:30:59+08:00'
    updated_at: '2026-06-27T01:05:00+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 22056
    session_file: C:\Users\Administrator\.codex3\sessions\2026\06\24\rollout-2026-06-24T00-28-59-019ef550-45ac-7b43-aa24-2731d01dba9b.jsonl
    thread_id: 019ef550-45ac-7b43-aa24-2731d01dba9b
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 22056
  status: active
  audit_entry: ana-doc/案例审计报告.md
  assigned_by: management.admin
  assignment_reason: project-info 初始化:laoshen 负责股市信息案例分析审核与对应开发审核。
  target_scopes:
  - ana-doc
  - ana-data
  reviewed_systems:
  - case_analysis
  required_skills:
  - mbx-governance
  - mbx-case-review
  - mbx-human-workflow
  - mbx-role-runtime
  - mbx-interaction-router
  - mbx-file-governance
  - mbx-inbox-watch
  - fp
- id: experiment.experimenter
  system_id: experiment
  role_key: experimenter
  name: 实验员
  provider: codex
  workdir: .
  ai_id: laoyan
  ai_name: laoyan
  ai_display_name: 实验员
  private_dir: ai-laoyan
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019ef54e-6978-76d3-bb78-081fa2c4b188
    status: active
    created_at: '2026-06-24T00:28:58+08:00'
    updated_at: '2026-06-27T00:08:23+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 39512
    session_file: C:\Users\Administrator\.codex3\sessions\2026\06\24\rollout-2026-06-24T00-26-57-019ef54e-6978-76d3-bb78-081fa2c4b188.jsonl
    thread_id: 019ef54e-6978-76d3-bb78-081fa2c4b188
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 39512
  status: active
  assigned_by: management.admin
  assignment_reason: project-info 初始化:laoyan 负责股市信息实验执行与对应开发。
  target_scopes:
  - exp-doc
  - exp-data
  required_skills:
  - mbx-governance
  - mbx-experiment
  - mbx-human-workflow
  - mbx-role-runtime
  - mbx-interaction-router
  - mbx-file-governance
  - mbx-inbox-watch
  - fp
- id: dev.developer.ana
  system_id: dev
  role_key: developer.ana
  name: 案例分析开发员
  provider: codex
  workdir: .
  ai_id: laoyan
  ai_name: laoyan
  ai_display_name: 案例分析开发员
  private_dir: ai-laoyan
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019ef54e-6978-76d3-bb78-081fa2c4b188
    status: active
    created_at: '2026-06-24T00:28:58+08:00'
    updated_at: '2026-06-27T00:08:23+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 39512
    session_file: C:\Users\Administrator\.codex3\sessions\2026\06\24\rollout-2026-06-24T00-26-57-019ef54e-6978-76d3-bb78-081fa2c4b188.jsonl
    thread_id: 019ef54e-6978-76d3-bb78-081fa2c4b188
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 39512
  status: active
  dev_target: ana
  assigned_by: management.admin
  assignment_reason: project-info 初始化:laoyan 负责案例分析体系配套开发。
  target_scopes:
  - dev/ana-dev
  - dev-doc/ana-doc
  - ana-doc
  - ana-data
  required_skills:
  - mbx-governance
  - mbx-coding
  - mbx-case-analysis
  - mbx-human-workflow
  - mbx-role-runtime
  - mbx-interaction-router
  - mbx-file-governance
  - mbx-inbox-watch
  - fp
- id: dev.reviewer.ana
  system_id: dev
  role_key: reviewer.ana
  name: 案例分析开发审核员
  provider: codex
  workdir: .
  ai_id: laoshen
  ai_name: laoshen
  ai_display_name: 案例分析开发审核员
  private_dir: ai-laoshen
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019ef550-45ac-7b43-aa24-2731d01dba9b
    status: active
    created_at: '2026-06-24T00:30:59+08:00'
    updated_at: '2026-06-27T01:05:00+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 22056
    session_file: C:\Users\Administrator\.codex3\sessions\2026\06\24\rollout-2026-06-24T00-28-59-019ef550-45ac-7b43-aa24-2731d01dba9b.jsonl
    thread_id: 019ef550-45ac-7b43-aa24-2731d01dba9b
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 22056
  status: active
  dev_target: ana
  audit_entry: ana-doc/案例审计报告.md
  assigned_by: management.admin
  assignment_reason: project-info 初始化:laoshen 负责案例分析体系配套开发审核。
  target_scopes:
  - dev/ana-dev
  - dev-doc/ana-doc
  - ana-doc
  - ana-data
  reviewed_systems:
  - dev
  - case_analysis
  required_skills:
  - mbx-governance
  - mbx-code-review
  - mbx-case-review
  - mbx-human-workflow
  - mbx-role-runtime
  - mbx-interaction-router
  - mbx-file-governance
  - mbx-inbox-watch
  - fp
- id: dev.developer.exp
  system_id: dev
  role_key: developer.exp
  name: 实验开发员
  provider: codex
  workdir: .
  ai_id: laoyan
  ai_name: laoyan
  ai_display_name: 实验开发员
  private_dir: ai-laoyan
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019ef54e-6978-76d3-bb78-081fa2c4b188
    status: active
    created_at: '2026-06-24T00:28:58+08:00'
    updated_at: '2026-06-27T00:08:23+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 39512
    session_file: C:\Users\Administrator\.codex3\sessions\2026\06\24\rollout-2026-06-24T00-26-57-019ef54e-6978-76d3-bb78-081fa2c4b188.jsonl
    thread_id: 019ef54e-6978-76d3-bb78-081fa2c4b188
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 39512
  status: active
  dev_target: exp
  assigned_by: management.admin
  assignment_reason: project-info 初始化:laoyan 负责实验体系配套开发。
  target_scopes:
  - dev/exp-dev
  - dev-doc/exp-doc
  - exp-doc
  - exp-data
  required_skills:
  - mbx-governance
  - mbx-coding
  - mbx-experiment
  - mbx-human-workflow
  - mbx-role-runtime
  - mbx-interaction-router
  - mbx-file-governance
  - mbx-inbox-watch
  - fp
- id: dev.reviewer.exp
  system_id: dev
  role_key: reviewer.exp
  name: 实验开发审核员
  provider: codex
  workdir: .
  ai_id: laoshen
  ai_name: laoshen
  ai_display_name: 实验开发审核员
  private_dir: ai-laoshen
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019ef550-45ac-7b43-aa24-2731d01dba9b
    status: active
    created_at: '2026-06-24T00:30:59+08:00'
    updated_at: '2026-06-27T01:05:00+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 22056
    session_file: C:\Users\Administrator\.codex3\sessions\2026\06\24\rollout-2026-06-24T00-28-59-019ef550-45ac-7b43-aa24-2731d01dba9b.jsonl
    thread_id: 019ef550-45ac-7b43-aa24-2731d01dba9b
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 22056
  status: active
  dev_target: exp
  audit_entry: exp-doc/实验审计报告.md
  assigned_by: management.admin
  assignment_reason: project-info 初始化:laoshen 负责实验体系配套开发审核。
  target_scopes:
  - dev/exp-dev
  - dev-doc/exp-doc
  - exp-doc
  - exp-data
  reviewed_systems:
  - dev
  - experiment
  required_skills:
  - mbx-governance
  - mbx-code-review
  - mbx-experiment-review
  - mbx-human-workflow
  - mbx-role-runtime
  - mbx-interaction-router
  - mbx-file-governance
  - mbx-inbox-watch
  - fp
- id: case_analysis.analyst.cai
  system_id: case_analysis
  role_key: analyst.cai
  name: 案例分析员 cai
  provider: codex
  workdir: .
  ai_id: laoyan-cai
  ai_name: laoyan-cai
  ai_display_name: 案例分析员 cai
  private_dir: ai-laoyan-cai
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  - ana-doc/目录导读.md
  - ana-doc/案例分析规范.md
  - ana-doc/案例审核规范.md
  - ana-doc/案例总纲.md
  - ana-doc/案例分析设计.md
  - ana-doc/案例执行日志.md
  - ana-doc/案例审计报告.md
  - ana-doc/案例问题记录.md
  - ana-doc/案例存储体系.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019f26b8-a58a-72c0-9a03-4046a41e37b1
    status: active
    created_at: '2026-07-03T14:46:23+08:00'
    updated_at: '2026-07-17T11:20:51+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 52768
    session_file: C:\Users\Administrator\.codex\sessions\2026\07\03\rollout-2026-07-03T14-44-23-019f26b8-a58a-72c0-9a03-4046a41e37b1.jsonl
    thread_id: 019f26b8-a58a-72c0-9a03-4046a41e37b1
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 52768
  status: active
  assigned_by: management.admin
  assignment_reason: PROJECT-INFO-CAI-PARALLEL-ROLES-20260703-001:为当前用户创建与 laoyan
    同职责但独立的 cai 案例分析执行角色。
  target_scopes:
  - ana-doc
  - ana-data
  required_skills:
  - mbx-governance
  - mbx-case-analysis
  - mbx-human-workflow
  - mbx-role-runtime
  - mbx-interaction-router
  - mbx-file-governance
  - mbx-inbox-watch
  - fp
- id: experiment.experimenter.cai
  system_id: experiment
  role_key: experimenter.cai
  name: 实验员 cai
  provider: codex
  workdir: .
  ai_id: laoyan-cai
  ai_name: laoyan-cai
  ai_display_name: 实验员 cai
  private_dir: ai-laoyan-cai
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  - exp-doc/目录导读.md
  - exp-doc/实验规范.md
  - exp-doc/实验审核规范.md
  - exp-doc/实验审计规范.md
  - exp-doc/实验存储体系.md
  - exp-doc/实验总纲.md
  - exp-doc/实验设计.md
  - exp-doc/实验执行日志.md
  - exp-doc/实验审计报告.md
  - exp-doc/实验问题记录.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019f26b8-a58a-72c0-9a03-4046a41e37b1
    status: active
    created_at: '2026-07-03T14:46:23+08:00'
    updated_at: '2026-07-17T11:20:51+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 52768
    session_file: C:\Users\Administrator\.codex\sessions\2026\07\03\rollout-2026-07-03T14-44-23-019f26b8-a58a-72c0-9a03-4046a41e37b1.jsonl
    thread_id: 019f26b8-a58a-72c0-9a03-4046a41e37b1
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 52768
  status: active
  assigned_by: management.admin
  assignment_reason: PROJECT-INFO-CAI-PARALLEL-ROLES-20260703-001:为当前用户创建与 laoyan
    同职责但独立的 cai 实验执行角色。
  target_scopes:
  - exp-doc
  - exp-data
  required_skills:
  - mbx-governance
  - mbx-experiment
  - mbx-human-workflow
  - mbx-role-runtime
  - mbx-interaction-router
  - mbx-file-governance
  - mbx-inbox-watch
  - fp
- id: case_analysis.reviewer.cai
  system_id: case_analysis
  role_key: reviewer.cai
  name: 案例审核员 cai
  provider: codex
  workdir: .
  ai_id: laoshen-cai
  ai_name: laoshen-cai
  ai_display_name: 案例审核员 cai
  private_dir: ai-laoshen-cai
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  - ana-doc/目录导读.md
  - ana-doc/案例分析规范.md
  - ana-doc/案例审核规范.md
  - ana-doc/案例总纲.md
  - ana-doc/案例分析设计.md
  - ana-doc/案例执行日志.md
  - ana-doc/案例审计报告.md
  - ana-doc/案例问题记录.md
  - ana-doc/案例存储体系.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019f26ba-dfe4-7802-aaa3-3a1c5f0b8245
    status: active
    created_at: '2026-07-03T14:48:52+08:00'
    updated_at: '2026-07-04T11:04:37+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 19772
    session_file: C:\Users\Administrator\.codex\sessions\2026\07\03\rollout-2026-07-03T14-46-49-019f26ba-dfe4-7802-aaa3-3a1c5f0b8245.jsonl
    thread_id: 019f26ba-dfe4-7802-aaa3-3a1c5f0b8245
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 19772
  status: active
  audit_entry: ana-doc/案例审计报告.md
  assigned_by: management.admin
  assignment_reason: PROJECT-INFO-CAI-PARALLEL-ROLES-20260703-001:为当前用户创建与 laoshen
    同职责但独立的 cai 案例审核角色。
  target_scopes:
  - ana-doc
  - ana-data
  reviewed_systems:
  - case_analysis
  required_skills:
  - mbx-governance
  - mbx-case-review
  - mbx-human-workflow
  - mbx-role-runtime
  - mbx-interaction-router
  - mbx-file-governance
  - mbx-inbox-watch
  - fp
- id: experiment.reviewer.cai
  system_id: experiment
  role_key: reviewer.cai
  name: 实验审核员 cai
  provider: codex
  workdir: .
  ai_id: laoshen-cai
  ai_name: laoshen-cai
  ai_display_name: 实验审核员 cai
  private_dir: ai-laoshen-cai
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  - exp-doc/目录导读.md
  - exp-doc/实验规范.md
  - exp-doc/实验审核规范.md
  - exp-doc/实验审计规范.md
  - exp-doc/实验存储体系.md
  - exp-doc/实验总纲.md
  - exp-doc/实验设计.md
  - exp-doc/实验执行日志.md
  - exp-doc/实验审计报告.md
  - exp-doc/实验问题记录.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019f26ba-dfe4-7802-aaa3-3a1c5f0b8245
    status: active
    created_at: '2026-07-03T14:48:52+08:00'
    updated_at: '2026-07-04T11:04:37+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 19772
    session_file: C:\Users\Administrator\.codex\sessions\2026\07\03\rollout-2026-07-03T14-46-49-019f26ba-dfe4-7802-aaa3-3a1c5f0b8245.jsonl
    thread_id: 019f26ba-dfe4-7802-aaa3-3a1c5f0b8245
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 19772
  status: active
  audit_entry: exp-doc/实验审计报告.md
  assigned_by: management.admin
  assignment_reason: PROJECT-INFO-CAI-PARALLEL-ROLES-20260703-001:为当前用户创建与 laoshen
    同职责但独立的 cai 实验审核角色。
  target_scopes:
  - exp-doc
  - exp-data
  reviewed_systems:
  - experiment
  required_skills:
  - mbx-governance
  - mbx-experiment-review
  - mbx-human-workflow
  - mbx-role-runtime
  - mbx-interaction-router
  - mbx-file-governance
  - mbx-inbox-watch
  - fp
- id: dev.developer.ana.cai
  system_id: dev
  role_key: developer.ana.cai
  name: 案例分析开发员 cai
  provider: codex
  workdir: .
  ai_id: laoyan-cai
  ai_name: laoyan-cai
  ai_display_name: 案例分析开发员 cai
  private_dir: ai-laoyan-cai
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019f26b8-a58a-72c0-9a03-4046a41e37b1
    status: active
    created_at: '2026-07-03T14:46:23+08:00'
    updated_at: '2026-07-17T11:20:51+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 52768
    session_file: C:\Users\Administrator\.codex\sessions\2026\07\03\rollout-2026-07-03T14-44-23-019f26b8-a58a-72c0-9a03-4046a41e37b1.jsonl
    thread_id: 019f26b8-a58a-72c0-9a03-4046a41e37b1
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 52768
  status: active
  dev_target: ana
  assigned_by: management.admin
  assignment_reason: PROJECT-INFO-CAI-PARALLEL-ROLES-20260703-001:为当前用户创建与 laoyan
    同职责但独立的 cai 案例分析开发角色,绑定 dev_target=ana。
  target_scopes:
  - dev/ana-dev
  - dev-doc/ana-doc
  - ana-doc
  - ana-data
  required_skills:
  - mbx-governance
  - mbx-coding
  - mbx-case-analysis
  - mbx-human-workflow
  - mbx-role-runtime
  - mbx-interaction-router
  - mbx-file-governance
  - mbx-inbox-watch
  - fp
- id: dev.developer.exp.cai
  system_id: dev
  role_key: developer.exp.cai
  name: 实验开发员 cai
  provider: codex
  workdir: .
  ai_id: laoyan-cai
  ai_name: laoyan-cai
  ai_display_name: 实验开发员 cai
  private_dir: ai-laoyan-cai
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019f26b8-a58a-72c0-9a03-4046a41e37b1
    status: active
    created_at: '2026-07-03T14:46:23+08:00'
    updated_at: '2026-07-17T11:20:51+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 52768
    session_file: C:\Users\Administrator\.codex\sessions\2026\07\03\rollout-2026-07-03T14-44-23-019f26b8-a58a-72c0-9a03-4046a41e37b1.jsonl
    thread_id: 019f26b8-a58a-72c0-9a03-4046a41e37b1
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 52768
  status: active
  dev_target: exp
  assigned_by: management.admin
  assignment_reason: PROJECT-INFO-CAI-PARALLEL-ROLES-20260703-001:为当前用户创建与 laoyan
    同职责但独立的 cai 实验开发角色,绑定 dev_target=exp。
  target_scopes:
  - dev/exp-dev
  - dev-doc/exp-doc
  - exp-doc
  - exp-data
  required_skills:
  - mbx-governance
  - mbx-coding
  - mbx-experiment
  - mbx-human-workflow
  - mbx-role-runtime
  - mbx-interaction-router
  - mbx-file-governance
  - mbx-inbox-watch
  - fp
- id: dev.reviewer.ana.cai
  system_id: dev
  role_key: reviewer.ana.cai
  name: 案例分析开发审核员 cai
  provider: codex
  workdir: .
  ai_id: laoshen-cai
  ai_name: laoshen-cai
  ai_display_name: 案例分析开发审核员 cai
  private_dir: ai-laoshen-cai
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019f26ba-dfe4-7802-aaa3-3a1c5f0b8245
    status: active
    created_at: '2026-07-03T14:48:52+08:00'
    updated_at: '2026-07-04T11:04:37+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 19772
    session_file: C:\Users\Administrator\.codex\sessions\2026\07\03\rollout-2026-07-03T14-46-49-019f26ba-dfe4-7802-aaa3-3a1c5f0b8245.jsonl
    thread_id: 019f26ba-dfe4-7802-aaa3-3a1c5f0b8245
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 19772
  status: active
  dev_target: ana
  audit_entry: ana-doc/案例审计报告.md
  assigned_by: management.admin
  assignment_reason: PROJECT-INFO-CAI-PARALLEL-ROLES-20260703-001:为当前用户创建与 laoshen
    同职责但独立的 cai 案例分析开发审核角色,绑定 dev_target=ana。
  target_scopes:
  - dev/ana-dev
  - dev-doc/ana-doc
  - ana-doc
  - ana-data
  reviewed_systems:
  - dev
  - case_analysis
  required_skills:
  - mbx-governance
  - mbx-code-review
  - mbx-case-review
  - mbx-human-workflow
  - mbx-role-runtime
  - mbx-interaction-router
  - mbx-file-governance
  - mbx-inbox-watch
  - fp
- id: dev.reviewer.exp.cai
  system_id: dev
  role_key: reviewer.exp.cai
  name: 实验开发审核员 cai
  provider: codex
  workdir: .
  ai_id: laoshen-cai
  ai_name: laoshen-cai
  ai_display_name: 实验开发审核员 cai
  private_dir: ai-laoshen-cai
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019f26ba-dfe4-7802-aaa3-3a1c5f0b8245
    status: active
    created_at: '2026-07-03T14:48:52+08:00'
    updated_at: '2026-07-04T11:04:37+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 19772
    session_file: C:\Users\Administrator\.codex\sessions\2026\07\03\rollout-2026-07-03T14-46-49-019f26ba-dfe4-7802-aaa3-3a1c5f0b8245.jsonl
    thread_id: 019f26ba-dfe4-7802-aaa3-3a1c5f0b8245
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 19772
  status: active
  dev_target: exp
  audit_entry: exp-doc/实验审计报告.md
  assigned_by: management.admin
  assignment_reason: PROJECT-INFO-CAI-PARALLEL-ROLES-20260703-001:为当前用户创建与 laoshen
    同职责但独立的 cai 实验开发审核角色,绑定 dev_target=exp。
  target_scopes:
  - dev/exp-dev
  - dev-doc/exp-doc
  - exp-doc
  - exp-data
  reviewed_systems:
  - dev
  - experiment
  required_skills:
  - mbx-governance
  - mbx-code-review
  - mbx-experiment-review
  - mbx-human-workflow
  - mbx-role-runtime
  - mbx-interaction-router
  - mbx-file-governance
  - mbx-inbox-watch
  - fp
- id: case_analysis.report_collector
  system_id: case_analysis
  role_key: report_collector
  name: 研报采集员
  provider: codex
  workdir: .
  ai_id: yanbao-collector
  ai_name: yanbao-collector
  ai_display_name: 研报采集员
  private_dir: ai-yanbao-collector
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  - ana-doc/案例分析规范.md
  - ana-doc/案例存储体系.md
  - ana-doc/数据抓取脚本说明.md
  - ana-doc/研报体系导读.md
  - ana-doc/研报体系/研报解析架构.md
  - ana-doc/研报体系/研报采集角色说明.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
    write_paths:
    - ana-data/cases
    - ana-data/tmp
    - ai-yanbao-collector
  session:
    mode: existing
    id: 019fa8b1-ba04-74a0-883a-e4451bc24503
    status: active
    created_at: '2026-07-28T20:30:07+08:00'
    updated_at: '2026-07-28T20:30:07+08:00'
    created_by: management.admin
    provider: codex
    delivery_mode: codex_app_native_thread
    thread_id: 019fa8b1-ba04-74a0-883a-e4451bc24503
  status: active
  role_family: collector
  assigned_by: management.admin
  assignment_reason: 按用户 2026-07-28 决定建立通用研报下载角色:不限定行业;公开互联网下载无需逐次审批;接到谁的下载安排即执行下载并生成
    manifest,由安排者审核。
  target_scopes:
  - ana-data/cases
  - ana-data/tmp
  - ai-yanbao-collector
  required_skills:
  - mbx-governance
  - mbx-case-analysis
  - mbx-file-governance
- id: dev.developer.project
  system_id: dev
  role_key: developer.project
  name: 项目日常开发员
  provider: codex
  workdir: .
  ai_id: infodev
  ai_name: infodev
  ai_display_name: 项目日常开发员
  private_dir: ai-infodev
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  - dev-doc/编码规范.md
  - dev-doc/开发审计规范.md
  - dev-doc/开发事项总纲.md
  - dev-doc/开发事项计划.md
  - dev-doc/开发执行日志.md
  - dev-doc/project-doc/开发工作区说明.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019fb7c5-b721-7332-b5c3-7120176fe016
    status: active
    created_at: '2026-07-31T18:49:00+08:00'
    updated_at: '2026-07-31T18:49:00+08:00'
    created_by: management.admin
    provider: codex
    delivery_mode: codex_app_native_thread
    thread_id: 019fb7c5-b721-7332-b5c3-7120176fe016
  status: active
  dev_target: project
  assigned_by: management.admin
  assignment_reason: 用户要求将project-info日常开发从调研会话拆分,建立独立开发任务以便并行处理开发工作。
  target_scopes:
  - dev/project-dev
  - dev-doc/project-doc
  - dev/test
  - dev/tmp
  required_skills:
  - mbx-governance
  - mbx-coding
  - mbx-file-governance
  - mbx-role-runtime
- id: dev.reviewer.project
  system_id: dev
  role_key: reviewer.project
  name: 项目日常开发审核员
  provider: codex
  workdir: .
  ai_id: inforev
  ai_name: inforev
  ai_display_name: 项目日常开发审核员
  private_dir: ai-inforev
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  - dev-doc/编码规范.md
  - dev-doc/开发审计规范.md
  - dev-doc/开发事项总纲.md
  - dev-doc/开发事项计划.md
  - dev-doc/开发执行日志.md
  - dev-doc/开发审计报告.md
  - dev-doc/开发问题记录.md
  - dev-doc/project-doc/开发工作区说明.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019fb7c5-e1fd-7df0-8ec9-c87edea4215d
    status: active
    created_at: '2026-07-31T18:49:00+08:00'
    updated_at: '2026-07-31T18:49:00+08:00'
    created_by: management.admin
    provider: codex
    delivery_mode: codex_app_native_thread
    thread_id: 019fb7c5-e1fd-7df0-8ec9-c87edea4215d
  status: active
  dev_target: project
  audit_entry: dev-doc/开发审计报告.md
  assigned_by: management.admin
  assignment_reason: 用户要求为project-info日常开发建立独立审核任务,与开发执行任务分离并只做必要阶段审核。
  target_scopes:
  - dev/project-dev
  - dev-doc/project-doc
  reviewed_systems:
  - dev
  - project
  required_skills:
  - mbx-governance
  - mbx-code-review
  - mbx-file-governance
  - mbx-role-runtime
- id: case_analysis.media_processor
  system_id: case_analysis
  role_key: media_processor
  name: 视频处理员
  provider: codex
  workdir: .
  ai_id: media-processor
  ai_name: media-processor
  ai_display_name: 视频处理员
  private_dir: ai-media-processor
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  - ana-doc/案例分析规范.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
  session:
    mode: existing
    id: 019fb7a4-bdfd-79f2-bd6b-e67e2b7d8efd
    status: active
    created_at: '2026-07-31T18:07:35+08:00'
    updated_at: '2026-07-31T18:52:16+08:00'
    created_by: management.admin
    provider: codex
    delivery_mode: codex_app_native_thread
    thread_id: 019fb7a4-bdfd-79f2-bd6b-e67e2b7d8efd
  status: active
  assigned_by: management.admin
  assignment_reason: 用户已手动创建视频处理员任务,要求纳入project-info体系,负责本地视频、音频、字幕与文本转换工作。
  target_scopes:
  - ana-data/tmp
  - ana-data/cases
  - ai-media-processor
  required_skills:
  - mbx-governance
  - mbx-file-governance
  - mbx-role-runtime
- id: case_analysis.analyst.defense
  system_id: case_analysis
  role_key: analyst.defense
  name: 军工调研员
  provider: codex
  workdir: .
  ai_id: junyan
  ai_name: junyan
  ai_display_name: 军工调研员
  private_dir: ai-junyan
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  - ana-doc/目录导读.md
  - ana-doc/案例分析规范.md
  - ana-doc/案例审核规范.md
  - ana-doc/案例存储体系.md
  - ana-doc/军工案例/目录导读.md
  - ana-doc/军工案例/案例分析规范.md
  - ana-doc/军工案例/案例审核规范.md
  - ana-doc/军工案例/案例存储体系.md
  - ana-doc/军工案例/案例分析设计.md
  - ana-doc/军工案例/案例执行日志.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
    write_paths:
    - ana-doc/军工案例
    - ana-data/cases/军工案例
    - ana-data/result/军工案例
    - ana-data/img/军工案例
    - ana-data/tmp/军工案例
    - ai-junyan
  session:
    mode: existing
    id: 019fb93f-6f92-7ce3-a596-560767ce444d
    status: active
    created_at: '2026-08-01T01:37:00+08:00'
    updated_at: '2026-08-01T01:38:37+08:00'
    created_by: management.admin
    provider: codex
    delivery_mode: codex_app_native_thread
    thread_id: 019fb93f-6f92-7ce3-a596-560767ce444d
  status: active
  assigned_by: management.admin
  assignment_reason: 用户要求快速建立独立军工案例分析体系和军工调研会话;本角色负责军工行业研究执行,不兼任审核。
  target_scopes:
  - ana-doc/军工案例
  - ana-data/cases/军工案例
  - ana-data/result/军工案例
  - ana-data/img/军工案例
  - ana-data/tmp/军工案例
  required_skills:
  - mbx-governance
  - mbx-case-analysis
  - mbx-file-governance
  - mbx-human-workflow
  - mbx-role-runtime
- id: case_analysis.reviewer.defense
  system_id: case_analysis
  role_key: reviewer.defense
  name: 军工审核员
  provider: codex
  workdir: .
  ai_id: junshen
  ai_name: junshen
  ai_display_name: 军工审核员
  private_dir: ai-junshen
  docs_to_read:
  - 项目规范.md
  - 项目配置清单.md
  - 项目事项总纲.md
  - ana-doc/目录导读.md
  - ana-doc/案例分析规范.md
  - ana-doc/案例审核规范.md
  - ana-doc/案例存储体系.md
  - ana-doc/军工案例/目录导读.md
  - ana-doc/军工案例/案例分析规范.md
  - ana-doc/军工案例/案例审核规范.md
  - ana-doc/军工案例/案例存储体系.md
  - ana-doc/军工案例/案例分析设计.md
  - ana-doc/军工案例/案例执行日志.md
  - ana-doc/军工案例/案例审计报告.md
  - ana-doc/军工案例/案例问题记录.md
  permission:
    mode: full_control
    sandbox: danger-full-access
    approval: never
    bypass_sandbox_and_approvals: true
    write_paths:
    - ana-doc/军工案例/案例审计报告.md
    - ana-doc/军工案例/案例问题记录.md
    - ai-junshen
  session:
    mode: existing
    id: 019fb93f-899c-77a1-b0ea-a50d7eb5f2a4
    status: active
    created_at: '2026-08-01T01:37:00+08:00'
    updated_at: '2026-08-01T01:38:37+08:00'
    created_by: management.admin
    provider: codex
    delivery_mode: codex_app_native_thread
    thread_id: 019fb93f-899c-77a1-b0ea-a50d7eb5f2a4
  status: active
  audit_entry: ana-doc/军工案例/案例审计报告.md
  assigned_by: management.admin
  assignment_reason: 用户要求快速建立与军工调研分离的独立军工审核会话;本角色只审核军工案例产物,不执行研究。
  target_scopes:
  - ana-doc/军工案例
  - ana-data/cases/军工案例
  - ana-data/result/军工案例
  reviewed_systems:
  - case_analysis
  required_skills:
  - mbx-governance
  - mbx-case-review
  - mbx-file-governance
  - mbx-human-workflow
  - mbx-role-runtime
systems:
- id: project
  name: 项目体系
  template: project-doc
  status: enabled
  dirs: []
  docs: {}
  roles:
  - project.admin
- id: case_analysis
  name: 案例分析体系
  template: ana-doc
  status: enabled
  dirs:
  - ana-doc
  - ana-data
  - ana-data/cases
  - ana-data/result
  - ana-data/img
  - ana-data/tmp
  docs:
    guide: ana-doc/目录导读.md
    spec: ana-doc/案例分析规范.md
    review_spec: ana-doc/案例审核规范.md
    overview: ana-doc/案例总纲.md
    design: ana-doc/案例分析设计.md
    log: ana-doc/案例执行日志.md
    audit: ana-doc/案例审计报告.md
    issues: ana-doc/案例问题记录.md
    storage: ana-doc/案例存储体系.md
  roles:
  - case_analysis.analyst
  - case_analysis.reviewer
  - case_analysis.analyst.cai
  - case_analysis.reviewer.cai
  - case_analysis.report_collector
  - case_analysis.media_processor
  - case_analysis.analyst.defense
  - case_analysis.reviewer.defense
- id: experiment
  name: 实验体系
  template: exp-doc
  status: enabled
  dirs:
  - exp-doc
  - exp-data
  - exp-data/raw
  - exp-data/result
  - exp-data/img
  - exp-data/tmp
  docs:
    guide: exp-doc/目录导读.md
    spec: exp-doc/实验规范.md
    review_spec: exp-doc/实验审核规范.md
    audit_spec: exp-doc/实验审计规范.md
    storage: exp-doc/实验存储体系.md
    overview: exp-doc/实验总纲.md
    design: exp-doc/实验设计.md
    log: exp-doc/实验执行日志.md
    audit: exp-doc/实验审计报告.md
    issues: exp-doc/实验问题记录.md
  roles:
  - experiment.reviewer
  - experiment.experimenter
  - experiment.experimenter.cai
  - experiment.reviewer.cai
- id: dev
  name: 编码体系
  template: dev-doc
  status: enabled
  dirs:
  - dev
  - dev/test
  - dev/tmp
  - dev-doc
  docs:
    catalog_doc: dev-doc/目录导读.md
    coding_norm_doc: dev-doc/编码规范.md
    audit_norm_doc: dev-doc/开发审计规范.md
    matter_index_doc: dev-doc/开发事项总纲.md
    plan_doc: dev-doc/开发事项计划.md
    execution_log_doc: dev-doc/开发执行日志.md
    audit_report_doc: dev-doc/开发审计报告.md
    issue_record_doc: dev-doc/开发问题记录.md
  roles:
  - dev.developer.ana
  - dev.reviewer.ana
  - dev.developer.exp
  - dev.reviewer.exp
  - dev.developer.ana.cai
  - dev.developer.exp.cai
  - dev.reviewer.ana.cai
  - dev.reviewer.exp.cai
  - dev.developer.project
  - dev.reviewer.project
dev_targets:
- id: ana
  target_system: case_analysis
  code_dir: dev/ana-dev
  test_dir: dev/ana-dev/test
  tmp_dir: dev/ana-dev/tmp
  doc_dir: dev-doc/ana-doc
  catalog_doc: dev-doc/ana-doc/目录导读.md
  workspace_doc: dev-doc/ana-doc/开发工作区说明.md
  audit_report_doc: ana-doc/案例审计报告.md
  owner_role: dev.developer.ana.cai
  reviewer_role: dev.reviewer.ana.cai
  status: active
  created_at: '2026-06-24T00:23:43+08:00'
  updated_at: '2026-07-24T17:19:29.0000900+08:00'
- id: exp
  target_system: experiment
  code_dir: dev/exp-dev
  test_dir: dev/exp-dev/test
  tmp_dir: dev/exp-dev/tmp
  doc_dir: dev-doc/exp-doc
  catalog_doc: dev-doc/exp-doc/目录导读.md
  workspace_doc: dev-doc/exp-doc/开发工作区说明.md
  audit_report_doc: exp-doc/实验审计报告.md
  owner_role: dev.developer.exp.cai
  reviewer_role: dev.reviewer.exp.cai
  status: active
  created_at: '2026-06-24T00:23:58+08:00'
  updated_at: '2026-07-24T17:19:29.0000900+08:00'
- id: project
  target_system: project
  code_dir: dev/project-dev
  test_dir: dev/project-dev/test
  tmp_dir: dev/project-dev/tmp
  doc_dir: dev-doc/project-doc
  catalog_doc: dev-doc/project-doc/目录导读.md
  workspace_doc: dev-doc/project-doc/开发工作区说明.md
  audit_report_doc: dev-doc/开发审计报告.md
  owner_role: dev.developer.project
  reviewer_role: dev.reviewer.project
  status: active
  created_at: '2026-07-31T18:49:37+08:00'
  updated_at: '2026-07-31T18:49:37+08:00'
governance:
  model: mb-ms-doc
  overview_doc: 项目总览.md
  config_doc: 项目配置清单.md
  norm_doc: 项目规范.md
  matter_index_doc: 项目事项总纲.md
  plan_doc: 项目事项计划.md
  execution_log_doc: 项目执行日志.md
  audit_report_doc: 项目事项审计报告.md
  issue_record_doc: 项目问题记录.md
  change_record_doc: 项目变更记录.md
workflow:
  entry: 项目事项计划.md
daemon:
  enabled: true
  roles: []
  mode: sequential
  terminal_roles: []
  terminal_ack_policy: require_human_or_note
  max_action_depth: 8
  max_repeated_message_fingerprint: 2
ai_agents:
- id: infoadmin
  name: project-info 项目管理员
  provider: codex
  private_dir: ai-infoadmin
  role_instance_ids:
  - project.admin
  target_scopes: []
  permission_policy: role_union
  session:
    mode: existing
    id: 019fbb4d-2ccb-7bd2-93bc-f57332d484a9
    status: active
    created_at: '2026-08-01T13:43:11+08:00'
    updated_at: '2026-08-01T13:43:11+08:00'
    created_by: human
    provider: codex
    delivery_mode: codex_app_native_thread
    thread_id: 019fbb4d-2ccb-7bd2-93bc-f57332d484a9
  status: active
- id: laoyan
  name: 案例分析员
  provider: codex
  private_dir: ai-laoyan
  role_instance_ids:
  - case_analysis.analyst
  - experiment.experimenter
  - dev.developer.ana
  - dev.developer.exp
  target_scopes:
  - ana-doc
  - ana-data
  - exp-doc
  - exp-data
  - dev/ana-dev
  - dev-doc/ana-doc
  - dev/exp-dev
  - dev-doc/exp-doc
  permission_policy: role_union
  session:
    mode: existing
    id: 019ef54e-6978-76d3-bb78-081fa2c4b188
    status: active
    created_at: '2026-06-24T00:28:58+08:00'
    updated_at: '2026-06-27T00:08:23+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 39512
    session_file: C:\Users\Administrator\.codex3\sessions\2026\06\24\rollout-2026-06-24T00-26-57-019ef54e-6978-76d3-bb78-081fa2c4b188.jsonl
    thread_id: 019ef54e-6978-76d3-bb78-081fa2c4b188
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 39512
  status: active
- id: laoshen
  name: 案例与实验审核员
  provider: codex
  private_dir: ai-laoshen
  role_instance_ids:
  - experiment.reviewer
  - case_analysis.reviewer
  - dev.reviewer.ana
  - dev.reviewer.exp
  target_scopes:
  - exp-doc
  - exp-data
  - ana-doc
  - ana-data
  - dev/ana-dev
  - dev-doc/ana-doc
  - dev/exp-dev
  - dev-doc/exp-doc
  permission_policy: role_union
  session:
    mode: existing
    id: 019ef550-45ac-7b43-aa24-2731d01dba9b
    status: active
    created_at: '2026-06-24T00:30:59+08:00'
    updated_at: '2026-06-27T01:05:00+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 22056
    session_file: C:\Users\Administrator\.codex3\sessions\2026\06\24\rollout-2026-06-24T00-28-59-019ef550-45ac-7b43-aa24-2731d01dba9b.jsonl
    thread_id: 019ef550-45ac-7b43-aa24-2731d01dba9b
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 22056
  status: active
- id: laoyan-cai
  name: 案例分析员 cai
  provider: codex
  private_dir: ai-laoyan-cai
  role_instance_ids:
  - case_analysis.analyst.cai
  - experiment.experimenter.cai
  - dev.developer.ana.cai
  - dev.developer.exp.cai
  target_scopes:
  - ana-doc
  - ana-data
  - exp-doc
  - exp-data
  - dev/ana-dev
  - dev-doc/ana-doc
  - dev/exp-dev
  - dev-doc/exp-doc
  permission_policy: role_union
  session:
    mode: existing
    id: 019f26b8-a58a-72c0-9a03-4046a41e37b1
    status: active
    created_at: '2026-07-03T14:46:23+08:00'
    updated_at: '2026-07-17T11:20:51+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 52768
    session_file: C:\Users\Administrator\.codex\sessions\2026\07\03\rollout-2026-07-03T14-44-23-019f26b8-a58a-72c0-9a03-4046a41e37b1.jsonl
    thread_id: 019f26b8-a58a-72c0-9a03-4046a41e37b1
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 52768
  status: active
- id: laoshen-cai
  name: 案例审核员 cai
  provider: codex
  private_dir: ai-laoshen-cai
  role_instance_ids:
  - case_analysis.reviewer.cai
  - experiment.reviewer.cai
  - dev.reviewer.ana.cai
  - dev.reviewer.exp.cai
  target_scopes:
  - ana-doc
  - ana-data
  - exp-doc
  - exp-data
  - dev/ana-dev
  - dev-doc/ana-doc
  - dev/exp-dev
  - dev-doc/exp-doc
  permission_policy: role_union
  session:
    mode: existing
    id: 019f26ba-dfe4-7802-aaa3-3a1c5f0b8245
    status: active
    created_at: '2026-07-03T14:48:52+08:00'
    updated_at: '2026-07-04T11:04:37+08:00'
    created_by: workspace-admin
    provider: codex
    delivery_mode: codex_app_server_remote_tui
    process_id: 19772
    session_file: C:\Users\Administrator\.codex\sessions\2026\07\03\rollout-2026-07-03T14-46-49-019f26ba-dfe4-7802-aaa3-3a1c5f0b8245.jsonl
    thread_id: 019f26ba-dfe4-7802-aaa3-3a1c5f0b8245
    app_server_url: ws://127.0.0.1:4570
    remote_tui_pid: 19772
  status: active
- id: yanbao-collector
  name: 研报采集员
  provider: codex
  private_dir: ai-yanbao-collector
  role_instance_ids:
  - case_analysis.report_collector
  target_scopes:
  - ana-data/cases
  - ana-data/tmp
  - ai-yanbao-collector
  permission_policy: role_union
  session:
    mode: existing
    id: 019fa8b1-ba04-74a0-883a-e4451bc24503
    status: active
    created_at: '2026-07-28T20:30:07+08:00'
    updated_at: '2026-07-28T20:30:07+08:00'
    created_by: management.admin
    provider: codex
    delivery_mode: codex_app_native_thread
    thread_id: 019fa8b1-ba04-74a0-883a-e4451bc24503
  status: active
- id: infodev
  name: 项目日常开发员
  provider: codex
  private_dir: ai-infodev
  role_instance_ids:
  - dev.developer.project
  target_scopes:
  - dev/project-dev
  - dev-doc/project-doc
  - dev/test
  - dev/tmp
  permission_policy: role_union
  session:
    mode: existing
    id: 019fb7c5-b721-7332-b5c3-7120176fe016
    status: active
    created_at: '2026-07-31T18:49:00+08:00'
    updated_at: '2026-07-31T18:49:00+08:00'
    created_by: management.admin
    provider: codex
    delivery_mode: codex_app_native_thread
    thread_id: 019fb7c5-b721-7332-b5c3-7120176fe016
  status: active
- id: inforev
  name: 项目日常开发审核员
  provider: codex
  private_dir: ai-inforev
  role_instance_ids:
  - dev.reviewer.project
  target_scopes:
  - dev/project-dev
  - dev-doc/project-doc
  permission_policy: role_union
  session:
    mode: existing
    id: 019fb7c5-e1fd-7df0-8ec9-c87edea4215d
    status: active
    created_at: '2026-07-31T18:49:00+08:00'
    updated_at: '2026-07-31T18:49:00+08:00'
    created_by: management.admin
    provider: codex
    delivery_mode: codex_app_native_thread
    thread_id: 019fb7c5-e1fd-7df0-8ec9-c87edea4215d
  status: active
- id: media-processor
  name: 视频处理员
  provider: codex
  private_dir: ai-media-processor
  role_instance_ids:
  - case_analysis.media_processor
  target_scopes:
  - ana-data/tmp
  - ana-data/cases
  - ai-media-processor
  permission_policy: role_union
  session:
    mode: existing
    id: 019fb7a4-bdfd-79f2-bd6b-e67e2b7d8efd
    status: active
    created_at: '2026-07-31T18:07:35+08:00'
    updated_at: '2026-07-31T18:52:16+08:00'
    created_by: management.admin
    provider: codex
    delivery_mode: codex_app_native_thread
    thread_id: 019fb7a4-bdfd-79f2-bd6b-e67e2b7d8efd
  status: active
- id: junyan
  name: 军工调研员
  provider: codex
  private_dir: ai-junyan
  role_instance_ids:
  - case_analysis.analyst.defense
  target_scopes:
  - ana-doc/军工案例
  - ana-data/cases/军工案例
  - ana-data/result/军工案例
  - ana-data/img/军工案例
  - ana-data/tmp/军工案例
  permission_policy: role_union
  session:
    mode: existing
    id: 019fb93f-6f92-7ce3-a596-560767ce444d
    status: active
    created_at: '2026-08-01T01:37:00+08:00'
    updated_at: '2026-08-01T01:38:37+08:00'
    created_by: management.admin
    provider: codex
    delivery_mode: codex_app_native_thread
    thread_id: 019fb93f-6f92-7ce3-a596-560767ce444d
  status: active
- id: junshen
  name: 军工审核员
  provider: codex
  private_dir: ai-junshen
  role_instance_ids:
  - case_analysis.reviewer.defense
  target_scopes:
  - ana-doc/军工案例
  - ana-data/cases/军工案例
  - ana-data/result/军工案例
  permission_policy: role_union
  session:
    mode: existing
    id: 019fb93f-899c-77a1-b0ea-a50d7eb5f2a4
    status: active
    created_at: '2026-08-01T01:37:00+08:00'
    updated_at: '2026-08-01T01:38:37+08:00'
    created_by: management.admin
    provider: codex
    delivery_mode: codex_app_native_thread
    thread_id: 019fb93f-899c-77a1-b0ea-a50d7eb5f2a4
  status: active