@event4u/agent-config 2.16.0 → 2.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (96) hide show
  1. package/.agent-src/commands/ghostwriter/delete.md +118 -0
  2. package/.agent-src/commands/ghostwriter/fetch.md +185 -0
  3. package/.agent-src/commands/ghostwriter/list.md +102 -0
  4. package/.agent-src/commands/ghostwriter/show.md +113 -0
  5. package/.agent-src/commands/ghostwriter/write.md +160 -0
  6. package/.agent-src/commands/ghostwriter.md +96 -0
  7. package/.agent-src/commands/post-as/ghostwriter.md +66 -0
  8. package/.agent-src/commands/post-as/me.md +124 -0
  9. package/.agent-src/commands/post-as.md +58 -0
  10. package/.agent-src/ghostwriter/README.md +61 -0
  11. package/.agent-src/ghostwriter/fictional-fixture-v1.md +94 -0
  12. package/.agent-src/personas/README.md +8 -0
  13. package/.agent-src/rules/domain-safety-disclaimer-consulting.md +52 -0
  14. package/.agent-src/rules/domain-safety-disclaimer-financial.md +54 -0
  15. package/.agent-src/rules/domain-safety-disclaimer-legal.md +49 -0
  16. package/.agent-src/rules/domain-safety-disclaimer-medical.md +56 -0
  17. package/.agent-src/rules/domain-safety-export-redact.md +65 -0
  18. package/.agent-src/rules/domain-safety-logging-pii-floor.md +55 -0
  19. package/.agent-src/rules/domain-safety-pii-finance.md +57 -0
  20. package/.agent-src/rules/domain-safety-pii-marketing.md +60 -0
  21. package/.agent-src/rules/domain-safety-pii-recruiting.md +56 -0
  22. package/.agent-src/rules/domain-safety-pii-support.md +57 -0
  23. package/.agent-src/rules/domain-safety-retention-finance.md +48 -0
  24. package/.agent-src/rules/domain-safety-retention-support.md +55 -0
  25. package/.agent-src/skills/api-design/SKILL.md +3 -0
  26. package/.agent-src/skills/authz-review/SKILL.md +3 -0
  27. package/.agent-src/skills/competitive-moat-analysis/SKILL.md +3 -0
  28. package/.agent-src/skills/competitive-positioning/SKILL.md +3 -0
  29. package/.agent-src/skills/content-funnel-design/SKILL.md +3 -0
  30. package/.agent-src/skills/contracts-cognition/SKILL.md +3 -0
  31. package/.agent-src/skills/dashboard-design/SKILL.md +3 -0
  32. package/.agent-src/skills/data-handling-judgment/SKILL.md +3 -0
  33. package/.agent-src/skills/dcf-modeling/SKILL.md +3 -0
  34. package/.agent-src/skills/deal-qualification-meddic/SKILL.md +3 -0
  35. package/.agent-src/skills/discovery-interview/SKILL.md +3 -0
  36. package/.agent-src/skills/editorial-calendar/SKILL.md +3 -0
  37. package/.agent-src/skills/forecast-accuracy/SKILL.md +3 -0
  38. package/.agent-src/skills/forecasting/SKILL.md +3 -0
  39. package/.agent-src/skills/fundraising-narrative/SKILL.md +3 -0
  40. package/.agent-src/skills/gtm-launch/SKILL.md +3 -0
  41. package/.agent-src/skills/incident-commander/SKILL.md +3 -0
  42. package/.agent-src/skills/launch-readiness/SKILL.md +3 -0
  43. package/.agent-src/skills/messaging-architecture/SKILL.md +3 -0
  44. package/.agent-src/skills/okr-tree-modeling/SKILL.md +3 -0
  45. package/.agent-src/skills/pipeline-strategy/SKILL.md +3 -0
  46. package/.agent-src/skills/playwright-architect/SKILL.md +3 -0
  47. package/.agent-src/skills/privacy-review/SKILL.md +4 -1
  48. package/.agent-src/skills/quality-tools/SKILL.md +3 -0
  49. package/.agent-src/skills/release-comms/SKILL.md +3 -0
  50. package/.agent-src/skills/runway-cognition/SKILL.md +3 -0
  51. package/.agent-src/skills/scenario-modeling/SKILL.md +3 -0
  52. package/.agent-src/skills/secrets-management/SKILL.md +3 -0
  53. package/.agent-src/skills/tech-debt-tracker/SKILL.md +3 -0
  54. package/.agent-src/skills/unit-economics-modeling/SKILL.md +3 -0
  55. package/.agent-src/skills/voc-extract/SKILL.md +3 -0
  56. package/.agent-src/skills/voice-and-tone-design/SKILL.md +3 -0
  57. package/.agent-src/templates/agents/agent-project-settings.example.yml +16 -1
  58. package/.claude-plugin/marketplace.json +10 -1
  59. package/CHANGELOG.md +98 -0
  60. package/README.md +44 -23
  61. package/config/agent-settings.template.yml +7 -0
  62. package/config/gitignore-block.txt +8 -0
  63. package/docs/announcements/2026-05-non-dev-launch.md +79 -0
  64. package/docs/architecture.md +2 -2
  65. package/docs/case-studies/_template.md +60 -0
  66. package/docs/catalog.md +25 -4
  67. package/docs/contracts/adr-install-user-type-axis.md +107 -0
  68. package/docs/contracts/agent-user-schema.md +1 -0
  69. package/docs/contracts/command-clusters.md +2 -0
  70. package/docs/contracts/file-ownership-matrix.json +490 -0
  71. package/docs/contracts/ghostwriter-schema.md +337 -0
  72. package/docs/contracts/init-telemetry.md +132 -0
  73. package/docs/contracts/router-blending.md +71 -0
  74. package/docs/contracts/universal-skills.md +92 -0
  75. package/docs/contracts/write-engine.md +142 -0
  76. package/docs/getting-started-by-role.md +89 -0
  77. package/docs/getting-started-laravel.md +72 -0
  78. package/docs/getting-started.md +2 -2
  79. package/docs/safety.md +30 -0
  80. package/package.json +1 -1
  81. package/scripts/audit_user_type_axis.py +140 -0
  82. package/scripts/bench_runner.py +158 -0
  83. package/scripts/check_role_doc_links.py +110 -0
  84. package/scripts/compress.py +11 -0
  85. package/scripts/ghostwriter_fixture_allowlist.txt +16 -0
  86. package/scripts/install +9 -1
  87. package/scripts/install.py +214 -8
  88. package/scripts/install.sh +7 -0
  89. package/scripts/lint_ghostwriter_source.py +240 -0
  90. package/scripts/mcp_server/prompts.py +134 -2
  91. package/scripts/measure_skill_reduction.py +102 -0
  92. package/scripts/schemas/rule.schema.json +5 -0
  93. package/scripts/schemas/skill.schema.json +6 -0
  94. package/scripts/schemas/user-type-axis.schema.json +56 -0
  95. package/scripts/sync_agent_settings.py +6 -0
  96. package/scripts/update-github-metadata.sh +84 -0
@@ -339,6 +339,42 @@
339
339
  "load_context": [],
340
340
  "load_context_eager": []
341
341
  },
342
+ ".agent-src.uncompressed/commands/ghostwriter.md": {
343
+ "kind": "command",
344
+ "rule_type": "orchestrator",
345
+ "load_context": [],
346
+ "load_context_eager": []
347
+ },
348
+ ".agent-src.uncompressed/commands/ghostwriter/delete.md": {
349
+ "kind": "command",
350
+ "rule_type": null,
351
+ "load_context": [],
352
+ "load_context_eager": []
353
+ },
354
+ ".agent-src.uncompressed/commands/ghostwriter/fetch.md": {
355
+ "kind": "command",
356
+ "rule_type": null,
357
+ "load_context": [],
358
+ "load_context_eager": []
359
+ },
360
+ ".agent-src.uncompressed/commands/ghostwriter/list.md": {
361
+ "kind": "command",
362
+ "rule_type": null,
363
+ "load_context": [],
364
+ "load_context_eager": []
365
+ },
366
+ ".agent-src.uncompressed/commands/ghostwriter/show.md": {
367
+ "kind": "command",
368
+ "rule_type": null,
369
+ "load_context": [],
370
+ "load_context_eager": []
371
+ },
372
+ ".agent-src.uncompressed/commands/ghostwriter/write.md": {
373
+ "kind": "command",
374
+ "rule_type": null,
375
+ "load_context": [],
376
+ "load_context_eager": []
377
+ },
342
378
  ".agent-src.uncompressed/commands/grill-me.md": {
343
379
  "kind": "command",
344
380
  "rule_type": "orchestrator",
@@ -525,6 +561,24 @@
525
561
  "load_context": [],
526
562
  "load_context_eager": []
527
563
  },
564
+ ".agent-src.uncompressed/commands/post-as.md": {
565
+ "kind": "command",
566
+ "rule_type": "orchestrator",
567
+ "load_context": [],
568
+ "load_context_eager": []
569
+ },
570
+ ".agent-src.uncompressed/commands/post-as/ghostwriter.md": {
571
+ "kind": "command",
572
+ "rule_type": null,
573
+ "load_context": [],
574
+ "load_context_eager": []
575
+ },
576
+ ".agent-src.uncompressed/commands/post-as/me.md": {
577
+ "kind": "command",
578
+ "rule_type": null,
579
+ "load_context": [],
580
+ "load_context_eager": []
581
+ },
528
582
  ".agent-src.uncompressed/commands/prepare-for-review.md": {
529
583
  "kind": "command",
530
584
  "rule_type": null,
@@ -1203,6 +1257,78 @@
1203
1257
  "load_context": [],
1204
1258
  "load_context_eager": []
1205
1259
  },
1260
+ ".agent-src.uncompressed/rules/domain-safety-disclaimer-consulting.md": {
1261
+ "kind": "rule",
1262
+ "rule_type": "auto",
1263
+ "load_context": [],
1264
+ "load_context_eager": []
1265
+ },
1266
+ ".agent-src.uncompressed/rules/domain-safety-disclaimer-financial.md": {
1267
+ "kind": "rule",
1268
+ "rule_type": "auto",
1269
+ "load_context": [],
1270
+ "load_context_eager": []
1271
+ },
1272
+ ".agent-src.uncompressed/rules/domain-safety-disclaimer-legal.md": {
1273
+ "kind": "rule",
1274
+ "rule_type": "auto",
1275
+ "load_context": [],
1276
+ "load_context_eager": []
1277
+ },
1278
+ ".agent-src.uncompressed/rules/domain-safety-disclaimer-medical.md": {
1279
+ "kind": "rule",
1280
+ "rule_type": "auto",
1281
+ "load_context": [],
1282
+ "load_context_eager": []
1283
+ },
1284
+ ".agent-src.uncompressed/rules/domain-safety-export-redact.md": {
1285
+ "kind": "rule",
1286
+ "rule_type": "auto",
1287
+ "load_context": [],
1288
+ "load_context_eager": []
1289
+ },
1290
+ ".agent-src.uncompressed/rules/domain-safety-logging-pii-floor.md": {
1291
+ "kind": "rule",
1292
+ "rule_type": "auto",
1293
+ "load_context": [],
1294
+ "load_context_eager": []
1295
+ },
1296
+ ".agent-src.uncompressed/rules/domain-safety-pii-finance.md": {
1297
+ "kind": "rule",
1298
+ "rule_type": "auto",
1299
+ "load_context": [],
1300
+ "load_context_eager": []
1301
+ },
1302
+ ".agent-src.uncompressed/rules/domain-safety-pii-marketing.md": {
1303
+ "kind": "rule",
1304
+ "rule_type": "auto",
1305
+ "load_context": [],
1306
+ "load_context_eager": []
1307
+ },
1308
+ ".agent-src.uncompressed/rules/domain-safety-pii-recruiting.md": {
1309
+ "kind": "rule",
1310
+ "rule_type": "auto",
1311
+ "load_context": [],
1312
+ "load_context_eager": []
1313
+ },
1314
+ ".agent-src.uncompressed/rules/domain-safety-pii-support.md": {
1315
+ "kind": "rule",
1316
+ "rule_type": "auto",
1317
+ "load_context": [],
1318
+ "load_context_eager": []
1319
+ },
1320
+ ".agent-src.uncompressed/rules/domain-safety-retention-finance.md": {
1321
+ "kind": "rule",
1322
+ "rule_type": "auto",
1323
+ "load_context": [],
1324
+ "load_context_eager": []
1325
+ },
1326
+ ".agent-src.uncompressed/rules/domain-safety-retention-support.md": {
1327
+ "kind": "rule",
1328
+ "rule_type": "auto",
1329
+ "load_context": [],
1330
+ "load_context_eager": []
1331
+ },
1206
1332
  ".agent-src.uncompressed/rules/downstream-changes.md": {
1207
1333
  "kind": "rule",
1208
1334
  "rule_type": "auto",
@@ -3687,6 +3813,202 @@
3687
3813
  "via": "self",
3688
3814
  "depth": 0
3689
3815
  },
3816
+ {
3817
+ "source": ".agent-src.uncompressed/commands/ghostwriter.md",
3818
+ "target": ".agent-src.uncompressed/commands/ghostwriter.md",
3819
+ "type": "WRITE",
3820
+ "via": "self",
3821
+ "depth": 0
3822
+ },
3823
+ {
3824
+ "source": ".agent-src.uncompressed/commands/ghostwriter.md",
3825
+ "target": ".agent-src.uncompressed/commands/post-as/ghostwriter.md",
3826
+ "type": "READ_ONLY",
3827
+ "via": "body_link",
3828
+ "depth": 1
3829
+ },
3830
+ {
3831
+ "source": ".agent-src.uncompressed/commands/ghostwriter.md",
3832
+ "target": ".agent-src.uncompressed/commands/post-as/me.md",
3833
+ "type": "READ_ONLY",
3834
+ "via": "body_link",
3835
+ "depth": 1
3836
+ },
3837
+ {
3838
+ "source": ".agent-src.uncompressed/commands/ghostwriter/delete.md",
3839
+ "target": ".agent-src.uncompressed/commands/ghostwriter.md",
3840
+ "type": "READ_ONLY",
3841
+ "via": "body_link",
3842
+ "depth": 1
3843
+ },
3844
+ {
3845
+ "source": ".agent-src.uncompressed/commands/ghostwriter/delete.md",
3846
+ "target": ".agent-src.uncompressed/commands/ghostwriter/delete.md",
3847
+ "type": "WRITE",
3848
+ "via": "self",
3849
+ "depth": 0
3850
+ },
3851
+ {
3852
+ "source": ".agent-src.uncompressed/commands/ghostwriter/delete.md",
3853
+ "target": ".agent-src.uncompressed/commands/ghostwriter/fetch.md",
3854
+ "type": "READ_ONLY",
3855
+ "via": "body_link",
3856
+ "depth": 1
3857
+ },
3858
+ {
3859
+ "source": ".agent-src.uncompressed/commands/ghostwriter/delete.md",
3860
+ "target": ".agent-src.uncompressed/commands/ghostwriter/list.md",
3861
+ "type": "READ_ONLY",
3862
+ "via": "body_link",
3863
+ "depth": 1
3864
+ },
3865
+ {
3866
+ "source": ".agent-src.uncompressed/commands/ghostwriter/delete.md",
3867
+ "target": ".agent-src.uncompressed/commands/ghostwriter/show.md",
3868
+ "type": "READ_ONLY",
3869
+ "via": "body_link",
3870
+ "depth": 1
3871
+ },
3872
+ {
3873
+ "source": ".agent-src.uncompressed/commands/ghostwriter/fetch.md",
3874
+ "target": ".agent-src.uncompressed/commands/agents/user/accept.md",
3875
+ "type": "READ_ONLY",
3876
+ "via": "body_link",
3877
+ "depth": 1
3878
+ },
3879
+ {
3880
+ "source": ".agent-src.uncompressed/commands/ghostwriter/fetch.md",
3881
+ "target": ".agent-src.uncompressed/commands/ghostwriter.md",
3882
+ "type": "READ_ONLY",
3883
+ "via": "body_link",
3884
+ "depth": 1
3885
+ },
3886
+ {
3887
+ "source": ".agent-src.uncompressed/commands/ghostwriter/fetch.md",
3888
+ "target": ".agent-src.uncompressed/commands/ghostwriter/fetch.md",
3889
+ "type": "WRITE",
3890
+ "via": "self",
3891
+ "depth": 0
3892
+ },
3893
+ {
3894
+ "source": ".agent-src.uncompressed/commands/ghostwriter/fetch.md",
3895
+ "target": ".agent-src.uncompressed/commands/ghostwriter/write.md",
3896
+ "type": "READ_ONLY",
3897
+ "via": "body_link",
3898
+ "depth": 1
3899
+ },
3900
+ {
3901
+ "source": ".agent-src.uncompressed/commands/ghostwriter/list.md",
3902
+ "target": ".agent-src.uncompressed/commands/ghostwriter.md",
3903
+ "type": "READ_ONLY",
3904
+ "via": "body_link",
3905
+ "depth": 1
3906
+ },
3907
+ {
3908
+ "source": ".agent-src.uncompressed/commands/ghostwriter/list.md",
3909
+ "target": ".agent-src.uncompressed/commands/ghostwriter/fetch.md",
3910
+ "type": "READ_ONLY",
3911
+ "via": "body_link",
3912
+ "depth": 1
3913
+ },
3914
+ {
3915
+ "source": ".agent-src.uncompressed/commands/ghostwriter/list.md",
3916
+ "target": ".agent-src.uncompressed/commands/ghostwriter/list.md",
3917
+ "type": "WRITE",
3918
+ "via": "self",
3919
+ "depth": 0
3920
+ },
3921
+ {
3922
+ "source": ".agent-src.uncompressed/commands/ghostwriter/list.md",
3923
+ "target": ".agent-src.uncompressed/commands/ghostwriter/show.md",
3924
+ "type": "READ_ONLY",
3925
+ "via": "body_link",
3926
+ "depth": 1
3927
+ },
3928
+ {
3929
+ "source": ".agent-src.uncompressed/commands/ghostwriter/list.md",
3930
+ "target": ".agent-src.uncompressed/commands/ghostwriter/write.md",
3931
+ "type": "READ_ONLY",
3932
+ "via": "body_link",
3933
+ "depth": 1
3934
+ },
3935
+ {
3936
+ "source": ".agent-src.uncompressed/commands/ghostwriter/show.md",
3937
+ "target": ".agent-src.uncompressed/commands/ghostwriter.md",
3938
+ "type": "READ_ONLY",
3939
+ "via": "body_link",
3940
+ "depth": 1
3941
+ },
3942
+ {
3943
+ "source": ".agent-src.uncompressed/commands/ghostwriter/show.md",
3944
+ "target": ".agent-src.uncompressed/commands/ghostwriter/delete.md",
3945
+ "type": "READ_ONLY",
3946
+ "via": "body_link",
3947
+ "depth": 1
3948
+ },
3949
+ {
3950
+ "source": ".agent-src.uncompressed/commands/ghostwriter/show.md",
3951
+ "target": ".agent-src.uncompressed/commands/ghostwriter/fetch.md",
3952
+ "type": "READ_ONLY",
3953
+ "via": "body_link",
3954
+ "depth": 1
3955
+ },
3956
+ {
3957
+ "source": ".agent-src.uncompressed/commands/ghostwriter/show.md",
3958
+ "target": ".agent-src.uncompressed/commands/ghostwriter/list.md",
3959
+ "type": "READ_ONLY",
3960
+ "via": "body_link",
3961
+ "depth": 1
3962
+ },
3963
+ {
3964
+ "source": ".agent-src.uncompressed/commands/ghostwriter/show.md",
3965
+ "target": ".agent-src.uncompressed/commands/ghostwriter/show.md",
3966
+ "type": "WRITE",
3967
+ "via": "self",
3968
+ "depth": 0
3969
+ },
3970
+ {
3971
+ "source": ".agent-src.uncompressed/commands/ghostwriter/show.md",
3972
+ "target": ".agent-src.uncompressed/commands/ghostwriter/write.md",
3973
+ "type": "READ_ONLY",
3974
+ "via": "body_link",
3975
+ "depth": 1
3976
+ },
3977
+ {
3978
+ "source": ".agent-src.uncompressed/commands/ghostwriter/write.md",
3979
+ "target": ".agent-src.uncompressed/commands/ghostwriter.md",
3980
+ "type": "READ_ONLY",
3981
+ "via": "body_link",
3982
+ "depth": 1
3983
+ },
3984
+ {
3985
+ "source": ".agent-src.uncompressed/commands/ghostwriter/write.md",
3986
+ "target": ".agent-src.uncompressed/commands/ghostwriter/fetch.md",
3987
+ "type": "READ_ONLY",
3988
+ "via": "body_link",
3989
+ "depth": 1
3990
+ },
3991
+ {
3992
+ "source": ".agent-src.uncompressed/commands/ghostwriter/write.md",
3993
+ "target": ".agent-src.uncompressed/commands/ghostwriter/write.md",
3994
+ "type": "WRITE",
3995
+ "via": "self",
3996
+ "depth": 0
3997
+ },
3998
+ {
3999
+ "source": ".agent-src.uncompressed/commands/ghostwriter/write.md",
4000
+ "target": ".agent-src.uncompressed/commands/post-as/ghostwriter.md",
4001
+ "type": "READ_ONLY",
4002
+ "via": "body_link",
4003
+ "depth": 1
4004
+ },
4005
+ {
4006
+ "source": ".agent-src.uncompressed/commands/ghostwriter/write.md",
4007
+ "target": ".agent-src.uncompressed/commands/post-as/me.md",
4008
+ "type": "READ_ONLY",
4009
+ "via": "body_link",
4010
+ "depth": 1
4011
+ },
3690
4012
  {
3691
4013
  "source": ".agent-src.uncompressed/commands/grill-me.md",
3692
4014
  "target": ".agent-src.uncompressed/commands/challenge-me.md",
@@ -4128,6 +4450,90 @@
4128
4450
  "via": "self",
4129
4451
  "depth": 0
4130
4452
  },
4453
+ {
4454
+ "source": ".agent-src.uncompressed/commands/post-as.md",
4455
+ "target": ".agent-src.uncompressed/commands/ghostwriter.md",
4456
+ "type": "READ_ONLY",
4457
+ "via": "body_link",
4458
+ "depth": 1
4459
+ },
4460
+ {
4461
+ "source": ".agent-src.uncompressed/commands/post-as.md",
4462
+ "target": ".agent-src.uncompressed/commands/post-as.md",
4463
+ "type": "WRITE",
4464
+ "via": "self",
4465
+ "depth": 0
4466
+ },
4467
+ {
4468
+ "source": ".agent-src.uncompressed/commands/post-as/ghostwriter.md",
4469
+ "target": ".agent-src.uncompressed/commands/ghostwriter/write.md",
4470
+ "type": "READ_ONLY",
4471
+ "via": "body_link",
4472
+ "depth": 1
4473
+ },
4474
+ {
4475
+ "source": ".agent-src.uncompressed/commands/post-as/ghostwriter.md",
4476
+ "target": ".agent-src.uncompressed/commands/post-as.md",
4477
+ "type": "READ_ONLY",
4478
+ "via": "body_link",
4479
+ "depth": 1
4480
+ },
4481
+ {
4482
+ "source": ".agent-src.uncompressed/commands/post-as/ghostwriter.md",
4483
+ "target": ".agent-src.uncompressed/commands/post-as/ghostwriter.md",
4484
+ "type": "WRITE",
4485
+ "via": "self",
4486
+ "depth": 0
4487
+ },
4488
+ {
4489
+ "source": ".agent-src.uncompressed/commands/post-as/ghostwriter.md",
4490
+ "target": ".agent-src.uncompressed/commands/post-as/me.md",
4491
+ "type": "READ_ONLY",
4492
+ "via": "body_link",
4493
+ "depth": 1
4494
+ },
4495
+ {
4496
+ "source": ".agent-src.uncompressed/commands/post-as/me.md",
4497
+ "target": ".agent-src.uncompressed/commands/agents/user/init.md",
4498
+ "type": "READ_ONLY",
4499
+ "via": "body_link",
4500
+ "depth": 1
4501
+ },
4502
+ {
4503
+ "source": ".agent-src.uncompressed/commands/post-as/me.md",
4504
+ "target": ".agent-src.uncompressed/commands/agents/user/update.md",
4505
+ "type": "READ_ONLY",
4506
+ "via": "body_link",
4507
+ "depth": 1
4508
+ },
4509
+ {
4510
+ "source": ".agent-src.uncompressed/commands/post-as/me.md",
4511
+ "target": ".agent-src.uncompressed/commands/ghostwriter/write.md",
4512
+ "type": "READ_ONLY",
4513
+ "via": "body_link",
4514
+ "depth": 1
4515
+ },
4516
+ {
4517
+ "source": ".agent-src.uncompressed/commands/post-as/me.md",
4518
+ "target": ".agent-src.uncompressed/commands/post-as.md",
4519
+ "type": "READ_ONLY",
4520
+ "via": "body_link",
4521
+ "depth": 1
4522
+ },
4523
+ {
4524
+ "source": ".agent-src.uncompressed/commands/post-as/me.md",
4525
+ "target": ".agent-src.uncompressed/commands/post-as/ghostwriter.md",
4526
+ "type": "READ_ONLY",
4527
+ "via": "body_link",
4528
+ "depth": 1
4529
+ },
4530
+ {
4531
+ "source": ".agent-src.uncompressed/commands/post-as/me.md",
4532
+ "target": ".agent-src.uncompressed/commands/post-as/me.md",
4533
+ "type": "WRITE",
4534
+ "via": "self",
4535
+ "depth": 0
4536
+ },
4131
4537
  {
4132
4538
  "source": ".agent-src.uncompressed/commands/prepare-for-review.md",
4133
4539
  "target": ".agent-src.uncompressed/commands/prepare-for-review.md",
@@ -6200,6 +6606,90 @@
6200
6606
  "via": "body_link",
6201
6607
  "depth": 1
6202
6608
  },
6609
+ {
6610
+ "source": ".agent-src.uncompressed/rules/domain-safety-disclaimer-consulting.md",
6611
+ "target": ".agent-src.uncompressed/rules/domain-safety-disclaimer-consulting.md",
6612
+ "type": "WRITE",
6613
+ "via": "self",
6614
+ "depth": 0
6615
+ },
6616
+ {
6617
+ "source": ".agent-src.uncompressed/rules/domain-safety-disclaimer-financial.md",
6618
+ "target": ".agent-src.uncompressed/rules/domain-safety-disclaimer-financial.md",
6619
+ "type": "WRITE",
6620
+ "via": "self",
6621
+ "depth": 0
6622
+ },
6623
+ {
6624
+ "source": ".agent-src.uncompressed/rules/domain-safety-disclaimer-legal.md",
6625
+ "target": ".agent-src.uncompressed/rules/domain-safety-disclaimer-legal.md",
6626
+ "type": "WRITE",
6627
+ "via": "self",
6628
+ "depth": 0
6629
+ },
6630
+ {
6631
+ "source": ".agent-src.uncompressed/rules/domain-safety-disclaimer-medical.md",
6632
+ "target": ".agent-src.uncompressed/rules/domain-safety-disclaimer-medical.md",
6633
+ "type": "WRITE",
6634
+ "via": "self",
6635
+ "depth": 0
6636
+ },
6637
+ {
6638
+ "source": ".agent-src.uncompressed/rules/domain-safety-export-redact.md",
6639
+ "target": ".agent-src.uncompressed/rules/domain-safety-export-redact.md",
6640
+ "type": "WRITE",
6641
+ "via": "self",
6642
+ "depth": 0
6643
+ },
6644
+ {
6645
+ "source": ".agent-src.uncompressed/rules/domain-safety-logging-pii-floor.md",
6646
+ "target": ".agent-src.uncompressed/rules/domain-safety-logging-pii-floor.md",
6647
+ "type": "WRITE",
6648
+ "via": "self",
6649
+ "depth": 0
6650
+ },
6651
+ {
6652
+ "source": ".agent-src.uncompressed/rules/domain-safety-pii-finance.md",
6653
+ "target": ".agent-src.uncompressed/rules/domain-safety-pii-finance.md",
6654
+ "type": "WRITE",
6655
+ "via": "self",
6656
+ "depth": 0
6657
+ },
6658
+ {
6659
+ "source": ".agent-src.uncompressed/rules/domain-safety-pii-marketing.md",
6660
+ "target": ".agent-src.uncompressed/rules/domain-safety-pii-marketing.md",
6661
+ "type": "WRITE",
6662
+ "via": "self",
6663
+ "depth": 0
6664
+ },
6665
+ {
6666
+ "source": ".agent-src.uncompressed/rules/domain-safety-pii-recruiting.md",
6667
+ "target": ".agent-src.uncompressed/rules/domain-safety-pii-recruiting.md",
6668
+ "type": "WRITE",
6669
+ "via": "self",
6670
+ "depth": 0
6671
+ },
6672
+ {
6673
+ "source": ".agent-src.uncompressed/rules/domain-safety-pii-support.md",
6674
+ "target": ".agent-src.uncompressed/rules/domain-safety-pii-support.md",
6675
+ "type": "WRITE",
6676
+ "via": "self",
6677
+ "depth": 0
6678
+ },
6679
+ {
6680
+ "source": ".agent-src.uncompressed/rules/domain-safety-retention-finance.md",
6681
+ "target": ".agent-src.uncompressed/rules/domain-safety-retention-finance.md",
6682
+ "type": "WRITE",
6683
+ "via": "self",
6684
+ "depth": 0
6685
+ },
6686
+ {
6687
+ "source": ".agent-src.uncompressed/rules/domain-safety-retention-support.md",
6688
+ "target": ".agent-src.uncompressed/rules/domain-safety-retention-support.md",
6689
+ "type": "WRITE",
6690
+ "via": "self",
6691
+ "depth": 0
6692
+ },
6203
6693
  {
6204
6694
  "source": ".agent-src.uncompressed/rules/downstream-changes.md",
6205
6695
  "target": ".agent-src.uncompressed/rules/downstream-changes.md",