@event4u/agent-config 2.13.0 → 2.15.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.
- package/.agent-src/commands/agents/user/accept.md +117 -0
- package/.agent-src/commands/agents/user/init.md +163 -0
- package/.agent-src/commands/agents/user/review.md +107 -0
- package/.agent-src/commands/agents/user/show.md +109 -0
- package/.agent-src/commands/agents/user/update.md +98 -0
- package/.agent-src/commands/agents/user.md +66 -0
- package/.agent-src/commands/agents.md +2 -0
- package/.agent-src/commands/memory/learn-low-impact.md +143 -0
- package/.agent-src/rules/ask-when-uncertain.md +10 -6
- package/.agent-src/rules/copilot-routing.md +1 -1
- package/.agent-src/rules/devcontainer-routing.md +1 -1
- package/.agent-src/rules/external-reference-deep-dive.md +1 -1
- package/.agent-src/rules/fast-path-marker-visibility.md +38 -0
- package/.agent-src/rules/low-impact-corpus-privacy-floor.md +74 -0
- package/.agent-src/rules/symfony-routing.md +1 -1
- package/.agent-src/skills/ai-council/SKILL.md +208 -8
- package/.agent-src/templates/agents/agent-project-settings.example.yml +1 -1
- package/.claude-plugin/marketplace.json +8 -1
- package/CHANGELOG.md +328 -124
- package/README.md +21 -6
- package/config/agent-settings.template.yml +4 -0
- package/config/gitignore-block.txt +17 -0
- package/docs/architecture.md +12 -12
- package/docs/archive/CHANGELOG-pre-2.11.0.md +141 -0
- package/docs/catalog.md +16 -7
- package/docs/contracts/adr-architectural-consensus-mechanism.md +4 -3
- package/docs/contracts/adr-level-6-productization.md +7 -9
- package/docs/contracts/agent-user-schema.md +165 -0
- package/docs/contracts/ai-council-config.md +492 -20
- package/docs/contracts/command-clusters.md +2 -2
- package/docs/contracts/command-surface-tiers.md +3 -2
- package/docs/contracts/cost-profile-defaults.md +5 -0
- package/docs/contracts/decision-engine-gates.md +5 -0
- package/docs/contracts/decision-trace-v1.md +2 -2
- package/docs/contracts/file-ownership-matrix.json +1961 -108
- package/docs/contracts/installed-tools-lockfile.md +2 -1
- package/docs/contracts/low-impact-corpus-format.md +95 -0
- package/docs/contracts/mcp-beta-criteria.md +6 -5
- package/docs/contracts/mcp-cloud-scope.md +5 -4
- package/docs/contracts/multi-tool-projection-fidelity.md +8 -2
- package/docs/contracts/release-trunk-sync.md +4 -3
- package/docs/contracts/tier-3-contrib-plugin.md +5 -6
- package/docs/examples/agent-user.example.md +21 -0
- package/docs/getting-started.md +2 -2
- package/docs/guidelines/agent-infra/installed-tools-manifest.md +2 -1
- package/docs/installation.md +32 -0
- package/package.json +1 -1
- package/scripts/_cli/cmd_doctor.py +134 -0
- package/scripts/ai_council/airgap.py +165 -0
- package/scripts/ai_council/cli_hints.py +123 -0
- package/scripts/ai_council/clients.py +787 -5
- package/scripts/ai_council/compile_corpus.py +178 -0
- package/scripts/ai_council/confidence_gate.py +156 -0
- package/scripts/ai_council/config.py +1007 -11
- package/scripts/ai_council/consensus.py +41 -2
- package/scripts/ai_council/events_log.py +137 -0
- package/scripts/ai_council/learn_low_impact_preview.py +252 -0
- package/scripts/ai_council/low_impact.py +714 -0
- package/scripts/ai_council/low_impact_corpus.py +466 -0
- package/scripts/ai_council/low_impact_intake.py +163 -0
- package/scripts/ai_council/modes.py +6 -1
- package/scripts/ai_council/necessity.py +782 -0
- package/scripts/ai_council/orchestrator.py +252 -14
- package/scripts/ai_council/probation_gate.py +152 -0
- package/scripts/ai_council/redact_low_impact_entry.py +155 -0
- package/scripts/ai_council/replay.py +155 -0
- package/scripts/ai_council/session.py +19 -1
- package/scripts/ai_council/shadow_dispatch.py +235 -0
- package/scripts/ai_council/solo_dispatch.py +226 -0
- package/scripts/audit_cloud_compatibility.py +74 -0
- package/scripts/audit_command_surface.py +363 -0
- package/scripts/check_council_layout.py +11 -0
- package/scripts/council_cli.py +1046 -15
- package/scripts/install.sh +12 -0
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
".agent-src.uncompressed/commands/agents.md": {
|
|
19
19
|
"kind": "command",
|
|
20
|
-
"rule_type":
|
|
20
|
+
"rule_type": "orchestrator",
|
|
21
21
|
"load_context": [],
|
|
22
22
|
"load_context_eager": []
|
|
23
23
|
},
|
|
@@ -39,6 +39,42 @@
|
|
|
39
39
|
"load_context": [],
|
|
40
40
|
"load_context_eager": []
|
|
41
41
|
},
|
|
42
|
+
".agent-src.uncompressed/commands/agents/user.md": {
|
|
43
|
+
"kind": "command",
|
|
44
|
+
"rule_type": "orchestrator",
|
|
45
|
+
"load_context": [],
|
|
46
|
+
"load_context_eager": []
|
|
47
|
+
},
|
|
48
|
+
".agent-src.uncompressed/commands/agents/user/accept.md": {
|
|
49
|
+
"kind": "command",
|
|
50
|
+
"rule_type": null,
|
|
51
|
+
"load_context": [],
|
|
52
|
+
"load_context_eager": []
|
|
53
|
+
},
|
|
54
|
+
".agent-src.uncompressed/commands/agents/user/init.md": {
|
|
55
|
+
"kind": "command",
|
|
56
|
+
"rule_type": null,
|
|
57
|
+
"load_context": [],
|
|
58
|
+
"load_context_eager": []
|
|
59
|
+
},
|
|
60
|
+
".agent-src.uncompressed/commands/agents/user/review.md": {
|
|
61
|
+
"kind": "command",
|
|
62
|
+
"rule_type": null,
|
|
63
|
+
"load_context": [],
|
|
64
|
+
"load_context_eager": []
|
|
65
|
+
},
|
|
66
|
+
".agent-src.uncompressed/commands/agents/user/show.md": {
|
|
67
|
+
"kind": "command",
|
|
68
|
+
"rule_type": null,
|
|
69
|
+
"load_context": [],
|
|
70
|
+
"load_context_eager": []
|
|
71
|
+
},
|
|
72
|
+
".agent-src.uncompressed/commands/agents/user/update.md": {
|
|
73
|
+
"kind": "command",
|
|
74
|
+
"rule_type": null,
|
|
75
|
+
"load_context": [],
|
|
76
|
+
"load_context_eager": []
|
|
77
|
+
},
|
|
42
78
|
".agent-src.uncompressed/commands/analyze-reference-repo.md": {
|
|
43
79
|
"kind": "command",
|
|
44
80
|
"rule_type": null,
|
|
@@ -59,7 +95,7 @@
|
|
|
59
95
|
},
|
|
60
96
|
".agent-src.uncompressed/commands/challenge-me.md": {
|
|
61
97
|
"kind": "command",
|
|
62
|
-
"rule_type":
|
|
98
|
+
"rule_type": "orchestrator",
|
|
63
99
|
"load_context": [],
|
|
64
100
|
"load_context_eager": []
|
|
65
101
|
},
|
|
@@ -77,7 +113,7 @@
|
|
|
77
113
|
},
|
|
78
114
|
".agent-src.uncompressed/commands/chat-history.md": {
|
|
79
115
|
"kind": "command",
|
|
80
|
-
"rule_type":
|
|
116
|
+
"rule_type": "orchestrator",
|
|
81
117
|
"load_context": [],
|
|
82
118
|
"load_context_eager": []
|
|
83
119
|
},
|
|
@@ -125,7 +161,7 @@
|
|
|
125
161
|
},
|
|
126
162
|
".agent-src.uncompressed/commands/context.md": {
|
|
127
163
|
"kind": "command",
|
|
128
|
-
"rule_type":
|
|
164
|
+
"rule_type": "orchestrator",
|
|
129
165
|
"load_context": [],
|
|
130
166
|
"load_context_eager": []
|
|
131
167
|
},
|
|
@@ -148,6 +184,18 @@
|
|
|
148
184
|
"load_context_eager": []
|
|
149
185
|
},
|
|
150
186
|
".agent-src.uncompressed/commands/council.md": {
|
|
187
|
+
"kind": "command",
|
|
188
|
+
"rule_type": "orchestrator",
|
|
189
|
+
"load_context": [],
|
|
190
|
+
"load_context_eager": []
|
|
191
|
+
},
|
|
192
|
+
".agent-src.uncompressed/commands/council/analysis.md": {
|
|
193
|
+
"kind": "command",
|
|
194
|
+
"rule_type": null,
|
|
195
|
+
"load_context": [],
|
|
196
|
+
"load_context_eager": []
|
|
197
|
+
},
|
|
198
|
+
".agent-src.uncompressed/commands/council/debate.md": {
|
|
151
199
|
"kind": "command",
|
|
152
200
|
"rule_type": null,
|
|
153
201
|
"load_context": [],
|
|
@@ -209,7 +257,7 @@
|
|
|
209
257
|
},
|
|
210
258
|
".agent-src.uncompressed/commands/feature.md": {
|
|
211
259
|
"kind": "command",
|
|
212
|
-
"rule_type":
|
|
260
|
+
"rule_type": "orchestrator",
|
|
213
261
|
"load_context": [],
|
|
214
262
|
"load_context_eager": []
|
|
215
263
|
},
|
|
@@ -245,7 +293,7 @@
|
|
|
245
293
|
},
|
|
246
294
|
".agent-src.uncompressed/commands/fix.md": {
|
|
247
295
|
"kind": "command",
|
|
248
|
-
"rule_type":
|
|
296
|
+
"rule_type": "orchestrator",
|
|
249
297
|
"load_context": [],
|
|
250
298
|
"load_context_eager": []
|
|
251
299
|
},
|
|
@@ -293,7 +341,7 @@
|
|
|
293
341
|
},
|
|
294
342
|
".agent-src.uncompressed/commands/grill-me.md": {
|
|
295
343
|
"kind": "command",
|
|
296
|
-
"rule_type":
|
|
344
|
+
"rule_type": "orchestrator",
|
|
297
345
|
"load_context": [],
|
|
298
346
|
"load_context_eager": []
|
|
299
347
|
},
|
|
@@ -311,7 +359,7 @@
|
|
|
311
359
|
},
|
|
312
360
|
".agent-src.uncompressed/commands/judge.md": {
|
|
313
361
|
"kind": "command",
|
|
314
|
-
"rule_type":
|
|
362
|
+
"rule_type": "orchestrator",
|
|
315
363
|
"load_context": [],
|
|
316
364
|
"load_context_eager": []
|
|
317
365
|
},
|
|
@@ -335,7 +383,7 @@
|
|
|
335
383
|
},
|
|
336
384
|
".agent-src.uncompressed/commands/memory.md": {
|
|
337
385
|
"kind": "command",
|
|
338
|
-
"rule_type":
|
|
386
|
+
"rule_type": "orchestrator",
|
|
339
387
|
"load_context": [],
|
|
340
388
|
"load_context_eager": []
|
|
341
389
|
},
|
|
@@ -345,6 +393,12 @@
|
|
|
345
393
|
"load_context": [],
|
|
346
394
|
"load_context_eager": []
|
|
347
395
|
},
|
|
396
|
+
".agent-src.uncompressed/commands/memory/learn-low-impact.md": {
|
|
397
|
+
"kind": "command",
|
|
398
|
+
"rule_type": null,
|
|
399
|
+
"load_context": [],
|
|
400
|
+
"load_context_eager": []
|
|
401
|
+
},
|
|
348
402
|
".agent-src.uncompressed/commands/memory/load.md": {
|
|
349
403
|
"kind": "command",
|
|
350
404
|
"rule_type": null,
|
|
@@ -377,7 +431,7 @@
|
|
|
377
431
|
},
|
|
378
432
|
".agent-src.uncompressed/commands/module.md": {
|
|
379
433
|
"kind": "command",
|
|
380
|
-
"rule_type":
|
|
434
|
+
"rule_type": "orchestrator",
|
|
381
435
|
"load_context": [],
|
|
382
436
|
"load_context_eager": []
|
|
383
437
|
},
|
|
@@ -407,7 +461,7 @@
|
|
|
407
461
|
},
|
|
408
462
|
".agent-src.uncompressed/commands/optimize.md": {
|
|
409
463
|
"kind": "command",
|
|
410
|
-
"rule_type":
|
|
464
|
+
"rule_type": "orchestrator",
|
|
411
465
|
"load_context": [],
|
|
412
466
|
"load_context_eager": []
|
|
413
467
|
},
|
|
@@ -443,7 +497,7 @@
|
|
|
443
497
|
},
|
|
444
498
|
".agent-src.uncompressed/commands/override.md": {
|
|
445
499
|
"kind": "command",
|
|
446
|
-
"rule_type":
|
|
500
|
+
"rule_type": "orchestrator",
|
|
447
501
|
"load_context": [],
|
|
448
502
|
"load_context_eager": []
|
|
449
503
|
},
|
|
@@ -533,7 +587,7 @@
|
|
|
533
587
|
},
|
|
534
588
|
".agent-src.uncompressed/commands/roadmap.md": {
|
|
535
589
|
"kind": "command",
|
|
536
|
-
"rule_type":
|
|
590
|
+
"rule_type": "orchestrator",
|
|
537
591
|
"load_context": [],
|
|
538
592
|
"load_context_eager": []
|
|
539
593
|
},
|
|
@@ -599,7 +653,7 @@
|
|
|
599
653
|
},
|
|
600
654
|
".agent-src.uncompressed/commands/tests.md": {
|
|
601
655
|
"kind": "command",
|
|
602
|
-
"rule_type":
|
|
656
|
+
"rule_type": "orchestrator",
|
|
603
657
|
"load_context": [],
|
|
604
658
|
"load_context_eager": []
|
|
605
659
|
},
|
|
@@ -837,6 +891,36 @@
|
|
|
837
891
|
"load_context": [],
|
|
838
892
|
"load_context_eager": []
|
|
839
893
|
},
|
|
894
|
+
".agent-src.uncompressed/personas/advisors/contrarian.md": {
|
|
895
|
+
"kind": "persona",
|
|
896
|
+
"rule_type": null,
|
|
897
|
+
"load_context": [],
|
|
898
|
+
"load_context_eager": []
|
|
899
|
+
},
|
|
900
|
+
".agent-src.uncompressed/personas/advisors/executor.md": {
|
|
901
|
+
"kind": "persona",
|
|
902
|
+
"rule_type": null,
|
|
903
|
+
"load_context": [],
|
|
904
|
+
"load_context_eager": []
|
|
905
|
+
},
|
|
906
|
+
".agent-src.uncompressed/personas/advisors/expansionist.md": {
|
|
907
|
+
"kind": "persona",
|
|
908
|
+
"rule_type": null,
|
|
909
|
+
"load_context": [],
|
|
910
|
+
"load_context_eager": []
|
|
911
|
+
},
|
|
912
|
+
".agent-src.uncompressed/personas/advisors/first-principles.md": {
|
|
913
|
+
"kind": "persona",
|
|
914
|
+
"rule_type": null,
|
|
915
|
+
"load_context": [],
|
|
916
|
+
"load_context_eager": []
|
|
917
|
+
},
|
|
918
|
+
".agent-src.uncompressed/personas/advisors/outsider.md": {
|
|
919
|
+
"kind": "persona",
|
|
920
|
+
"rule_type": null,
|
|
921
|
+
"load_context": [],
|
|
922
|
+
"load_context_eager": []
|
|
923
|
+
},
|
|
840
924
|
".agent-src.uncompressed/personas/ai-agent.md": {
|
|
841
925
|
"kind": "persona",
|
|
842
926
|
"rule_type": null,
|
|
@@ -849,12 +933,24 @@
|
|
|
849
933
|
"load_context": [],
|
|
850
934
|
"load_context_eager": []
|
|
851
935
|
},
|
|
936
|
+
".agent-src.uncompressed/personas/cmo.md": {
|
|
937
|
+
"kind": "persona",
|
|
938
|
+
"rule_type": null,
|
|
939
|
+
"load_context": [],
|
|
940
|
+
"load_context_eager": []
|
|
941
|
+
},
|
|
852
942
|
".agent-src.uncompressed/personas/critical-challenger.md": {
|
|
853
943
|
"kind": "persona",
|
|
854
944
|
"rule_type": null,
|
|
855
945
|
"load_context": [],
|
|
856
946
|
"load_context_eager": []
|
|
857
947
|
},
|
|
948
|
+
".agent-src.uncompressed/personas/customer-success-lead.md": {
|
|
949
|
+
"kind": "persona",
|
|
950
|
+
"rule_type": null,
|
|
951
|
+
"load_context": [],
|
|
952
|
+
"load_context_eager": []
|
|
953
|
+
},
|
|
858
954
|
".agent-src.uncompressed/personas/developer.md": {
|
|
859
955
|
"kind": "persona",
|
|
860
956
|
"rule_type": null,
|
|
@@ -873,12 +969,36 @@
|
|
|
873
969
|
"load_context": [],
|
|
874
970
|
"load_context_eager": []
|
|
875
971
|
},
|
|
972
|
+
".agent-src.uncompressed/personas/engineering-manager.md": {
|
|
973
|
+
"kind": "persona",
|
|
974
|
+
"rule_type": null,
|
|
975
|
+
"load_context": [],
|
|
976
|
+
"load_context_eager": []
|
|
977
|
+
},
|
|
978
|
+
".agent-src.uncompressed/personas/finance-partner.md": {
|
|
979
|
+
"kind": "persona",
|
|
980
|
+
"rule_type": null,
|
|
981
|
+
"load_context": [],
|
|
982
|
+
"load_context_eager": []
|
|
983
|
+
},
|
|
876
984
|
".agent-src.uncompressed/personas/frontend-engineer.md": {
|
|
877
985
|
"kind": "persona",
|
|
878
986
|
"rule_type": null,
|
|
879
987
|
"load_context": [],
|
|
880
988
|
"load_context_eager": []
|
|
881
989
|
},
|
|
990
|
+
".agent-src.uncompressed/personas/growth-pm.md": {
|
|
991
|
+
"kind": "persona",
|
|
992
|
+
"rule_type": null,
|
|
993
|
+
"load_context": [],
|
|
994
|
+
"load_context_eager": []
|
|
995
|
+
},
|
|
996
|
+
".agent-src.uncompressed/personas/people-strategist.md": {
|
|
997
|
+
"kind": "persona",
|
|
998
|
+
"rule_type": null,
|
|
999
|
+
"load_context": [],
|
|
1000
|
+
"load_context_eager": []
|
|
1001
|
+
},
|
|
882
1002
|
".agent-src.uncompressed/personas/product-owner.md": {
|
|
883
1003
|
"kind": "persona",
|
|
884
1004
|
"rule_type": null,
|
|
@@ -897,6 +1017,12 @@
|
|
|
897
1017
|
"load_context": [],
|
|
898
1018
|
"load_context_eager": []
|
|
899
1019
|
},
|
|
1020
|
+
".agent-src.uncompressed/personas/revops.md": {
|
|
1021
|
+
"kind": "persona",
|
|
1022
|
+
"rule_type": null,
|
|
1023
|
+
"load_context": [],
|
|
1024
|
+
"load_context_eager": []
|
|
1025
|
+
},
|
|
900
1026
|
".agent-src.uncompressed/personas/security-engineer.md": {
|
|
901
1027
|
"kind": "persona",
|
|
902
1028
|
"rule_type": null,
|
|
@@ -915,6 +1041,12 @@
|
|
|
915
1041
|
"load_context": [],
|
|
916
1042
|
"load_context_eager": []
|
|
917
1043
|
},
|
|
1044
|
+
".agent-src.uncompressed/personas/strategist.md": {
|
|
1045
|
+
"kind": "persona",
|
|
1046
|
+
"rule_type": null,
|
|
1047
|
+
"load_context": [],
|
|
1048
|
+
"load_context_eager": []
|
|
1049
|
+
},
|
|
918
1050
|
".agent-src.uncompressed/personas/tech-writer.md": {
|
|
919
1051
|
"kind": "persona",
|
|
920
1052
|
"rule_type": null,
|
|
@@ -1035,6 +1167,18 @@
|
|
|
1035
1167
|
"load_context": [],
|
|
1036
1168
|
"load_context_eager": []
|
|
1037
1169
|
},
|
|
1170
|
+
".agent-src.uncompressed/rules/copilot-routing.md": {
|
|
1171
|
+
"kind": "rule",
|
|
1172
|
+
"rule_type": "auto",
|
|
1173
|
+
"load_context": [],
|
|
1174
|
+
"load_context_eager": []
|
|
1175
|
+
},
|
|
1176
|
+
".agent-src.uncompressed/rules/devcontainer-routing.md": {
|
|
1177
|
+
"kind": "rule",
|
|
1178
|
+
"rule_type": "auto",
|
|
1179
|
+
"load_context": [],
|
|
1180
|
+
"load_context_eager": []
|
|
1181
|
+
},
|
|
1038
1182
|
".agent-src.uncompressed/rules/direct-answers.md": {
|
|
1039
1183
|
"kind": "rule",
|
|
1040
1184
|
"rule_type": "always",
|
|
@@ -1071,6 +1215,18 @@
|
|
|
1071
1215
|
"load_context": [],
|
|
1072
1216
|
"load_context_eager": []
|
|
1073
1217
|
},
|
|
1218
|
+
".agent-src.uncompressed/rules/external-reference-deep-dive.md": {
|
|
1219
|
+
"kind": "rule",
|
|
1220
|
+
"rule_type": "auto",
|
|
1221
|
+
"load_context": [],
|
|
1222
|
+
"load_context_eager": []
|
|
1223
|
+
},
|
|
1224
|
+
".agent-src.uncompressed/rules/fast-path-marker-visibility.md": {
|
|
1225
|
+
"kind": "rule",
|
|
1226
|
+
"rule_type": "auto",
|
|
1227
|
+
"load_context": [],
|
|
1228
|
+
"load_context_eager": []
|
|
1229
|
+
},
|
|
1074
1230
|
".agent-src.uncompressed/rules/guidelines.md": {
|
|
1075
1231
|
"kind": "rule",
|
|
1076
1232
|
"rule_type": "manual",
|
|
@@ -1097,12 +1253,24 @@
|
|
|
1097
1253
|
"load_context": [],
|
|
1098
1254
|
"load_context_eager": []
|
|
1099
1255
|
},
|
|
1256
|
+
".agent-src.uncompressed/rules/laravel-routing.md": {
|
|
1257
|
+
"kind": "rule",
|
|
1258
|
+
"rule_type": "auto",
|
|
1259
|
+
"load_context": [],
|
|
1260
|
+
"load_context_eager": []
|
|
1261
|
+
},
|
|
1100
1262
|
".agent-src.uncompressed/rules/laravel-translations.md": {
|
|
1101
1263
|
"kind": "rule",
|
|
1102
1264
|
"rule_type": "auto",
|
|
1103
1265
|
"load_context": [],
|
|
1104
1266
|
"load_context_eager": []
|
|
1105
1267
|
},
|
|
1268
|
+
".agent-src.uncompressed/rules/low-impact-corpus-privacy-floor.md": {
|
|
1269
|
+
"kind": "rule",
|
|
1270
|
+
"rule_type": "auto",
|
|
1271
|
+
"load_context": [],
|
|
1272
|
+
"load_context_eager": []
|
|
1273
|
+
},
|
|
1106
1274
|
".agent-src.uncompressed/rules/markdown-safe-codeblocks.md": {
|
|
1107
1275
|
"kind": "rule",
|
|
1108
1276
|
"rule_type": "auto",
|
|
@@ -1252,6 +1420,12 @@
|
|
|
1252
1420
|
"load_context": [],
|
|
1253
1421
|
"load_context_eager": []
|
|
1254
1422
|
},
|
|
1423
|
+
".agent-src.uncompressed/rules/symfony-routing.md": {
|
|
1424
|
+
"kind": "rule",
|
|
1425
|
+
"rule_type": "auto",
|
|
1426
|
+
"load_context": [],
|
|
1427
|
+
"load_context_eager": []
|
|
1428
|
+
},
|
|
1255
1429
|
".agent-src.uncompressed/rules/think-before-action.md": {
|
|
1256
1430
|
"kind": "rule",
|
|
1257
1431
|
"rule_type": "auto",
|
|
@@ -1314,6 +1488,12 @@
|
|
|
1314
1488
|
"load_context": [],
|
|
1315
1489
|
"load_context_eager": []
|
|
1316
1490
|
},
|
|
1491
|
+
".agent-src.uncompressed/skills/activation-design/SKILL.md": {
|
|
1492
|
+
"kind": "skill",
|
|
1493
|
+
"rule_type": null,
|
|
1494
|
+
"load_context": [],
|
|
1495
|
+
"load_context_eager": []
|
|
1496
|
+
},
|
|
1317
1497
|
".agent-src.uncompressed/skills/adr-create/SKILL.md": {
|
|
1318
1498
|
"kind": "skill",
|
|
1319
1499
|
"rule_type": null,
|
|
@@ -1422,12 +1602,30 @@
|
|
|
1422
1602
|
"load_context": [],
|
|
1423
1603
|
"load_context_eager": []
|
|
1424
1604
|
},
|
|
1605
|
+
".agent-src.uncompressed/skills/build-buy-partner/SKILL.md": {
|
|
1606
|
+
"kind": "skill",
|
|
1607
|
+
"rule_type": null,
|
|
1608
|
+
"load_context": [],
|
|
1609
|
+
"load_context_eager": []
|
|
1610
|
+
},
|
|
1611
|
+
".agent-src.uncompressed/skills/canvas-design/SKILL.md": {
|
|
1612
|
+
"kind": "skill",
|
|
1613
|
+
"rule_type": null,
|
|
1614
|
+
"load_context": [],
|
|
1615
|
+
"load_context_eager": []
|
|
1616
|
+
},
|
|
1425
1617
|
".agent-src.uncompressed/skills/check-refs/SKILL.md": {
|
|
1426
1618
|
"kind": "skill",
|
|
1427
1619
|
"rule_type": null,
|
|
1428
1620
|
"load_context": [],
|
|
1429
1621
|
"load_context_eager": []
|
|
1430
1622
|
},
|
|
1623
|
+
".agent-src.uncompressed/skills/churn-prevention/SKILL.md": {
|
|
1624
|
+
"kind": "skill",
|
|
1625
|
+
"rule_type": null,
|
|
1626
|
+
"load_context": [],
|
|
1627
|
+
"load_context_eager": []
|
|
1628
|
+
},
|
|
1431
1629
|
".agent-src.uncompressed/skills/code-refactoring/SKILL.md": {
|
|
1432
1630
|
"kind": "skill",
|
|
1433
1631
|
"rule_type": null,
|
|
@@ -1452,6 +1650,18 @@
|
|
|
1452
1650
|
"load_context": [],
|
|
1453
1651
|
"load_context_eager": []
|
|
1454
1652
|
},
|
|
1653
|
+
".agent-src.uncompressed/skills/comp-banding/SKILL.md": {
|
|
1654
|
+
"kind": "skill",
|
|
1655
|
+
"rule_type": null,
|
|
1656
|
+
"load_context": [],
|
|
1657
|
+
"load_context_eager": []
|
|
1658
|
+
},
|
|
1659
|
+
".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md": {
|
|
1660
|
+
"kind": "skill",
|
|
1661
|
+
"rule_type": null,
|
|
1662
|
+
"load_context": [],
|
|
1663
|
+
"load_context_eager": []
|
|
1664
|
+
},
|
|
1455
1665
|
".agent-src.uncompressed/skills/competitive-positioning/SKILL.md": {
|
|
1456
1666
|
"kind": "skill",
|
|
1457
1667
|
"rule_type": null,
|
|
@@ -1464,6 +1674,12 @@
|
|
|
1464
1674
|
"load_context": [],
|
|
1465
1675
|
"load_context_eager": []
|
|
1466
1676
|
},
|
|
1677
|
+
".agent-src.uncompressed/skills/content-funnel-design/SKILL.md": {
|
|
1678
|
+
"kind": "skill",
|
|
1679
|
+
"rule_type": null,
|
|
1680
|
+
"load_context": [],
|
|
1681
|
+
"load_context_eager": []
|
|
1682
|
+
},
|
|
1467
1683
|
".agent-src.uncompressed/skills/context-authoring/SKILL.md": {
|
|
1468
1684
|
"kind": "skill",
|
|
1469
1685
|
"rule_type": null,
|
|
@@ -1476,6 +1692,12 @@
|
|
|
1476
1692
|
"load_context": [],
|
|
1477
1693
|
"load_context_eager": []
|
|
1478
1694
|
},
|
|
1695
|
+
".agent-src.uncompressed/skills/contracts-cognition/SKILL.md": {
|
|
1696
|
+
"kind": "skill",
|
|
1697
|
+
"rule_type": null,
|
|
1698
|
+
"load_context": [],
|
|
1699
|
+
"load_context_eager": []
|
|
1700
|
+
},
|
|
1479
1701
|
".agent-src.uncompressed/skills/conventional-commits-writing/SKILL.md": {
|
|
1480
1702
|
"kind": "skill",
|
|
1481
1703
|
"rule_type": null,
|
|
@@ -1512,6 +1734,12 @@
|
|
|
1512
1734
|
"load_context": [],
|
|
1513
1735
|
"load_context_eager": []
|
|
1514
1736
|
},
|
|
1737
|
+
".agent-src.uncompressed/skills/data-handling-judgment/SKILL.md": {
|
|
1738
|
+
"kind": "skill",
|
|
1739
|
+
"rule_type": null,
|
|
1740
|
+
"load_context": [],
|
|
1741
|
+
"load_context_eager": []
|
|
1742
|
+
},
|
|
1515
1743
|
".agent-src.uncompressed/skills/database/SKILL.md": {
|
|
1516
1744
|
"kind": "skill",
|
|
1517
1745
|
"rule_type": null,
|
|
@@ -1524,6 +1752,12 @@
|
|
|
1524
1752
|
"load_context": [],
|
|
1525
1753
|
"load_context_eager": []
|
|
1526
1754
|
},
|
|
1755
|
+
".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md": {
|
|
1756
|
+
"kind": "skill",
|
|
1757
|
+
"rule_type": null,
|
|
1758
|
+
"load_context": [],
|
|
1759
|
+
"load_context_eager": []
|
|
1760
|
+
},
|
|
1527
1761
|
".agent-src.uncompressed/skills/decision-record/SKILL.md": {
|
|
1528
1762
|
"kind": "skill",
|
|
1529
1763
|
"rule_type": null,
|
|
@@ -1578,6 +1812,12 @@
|
|
|
1578
1812
|
"load_context": [],
|
|
1579
1813
|
"load_context_eager": []
|
|
1580
1814
|
},
|
|
1815
|
+
".agent-src.uncompressed/skills/doc-coauthoring/SKILL.md": {
|
|
1816
|
+
"kind": "skill",
|
|
1817
|
+
"rule_type": null,
|
|
1818
|
+
"load_context": [],
|
|
1819
|
+
"load_context_eager": []
|
|
1820
|
+
},
|
|
1581
1821
|
".agent-src.uncompressed/skills/docker/SKILL.md": {
|
|
1582
1822
|
"kind": "skill",
|
|
1583
1823
|
"rule_type": null,
|
|
@@ -1590,6 +1830,12 @@
|
|
|
1590
1830
|
"load_context": [],
|
|
1591
1831
|
"load_context_eager": []
|
|
1592
1832
|
},
|
|
1833
|
+
".agent-src.uncompressed/skills/editorial-calendar/SKILL.md": {
|
|
1834
|
+
"kind": "skill",
|
|
1835
|
+
"rule_type": null,
|
|
1836
|
+
"load_context": [],
|
|
1837
|
+
"load_context_eager": []
|
|
1838
|
+
},
|
|
1593
1839
|
".agent-src.uncompressed/skills/eloquent/SKILL.md": {
|
|
1594
1840
|
"kind": "skill",
|
|
1595
1841
|
"rule_type": null,
|
|
@@ -1614,6 +1860,12 @@
|
|
|
1614
1860
|
"load_context": [],
|
|
1615
1861
|
"load_context_eager": []
|
|
1616
1862
|
},
|
|
1863
|
+
".agent-src.uncompressed/skills/expansion-playbook/SKILL.md": {
|
|
1864
|
+
"kind": "skill",
|
|
1865
|
+
"rule_type": null,
|
|
1866
|
+
"load_context": [],
|
|
1867
|
+
"load_context_eager": []
|
|
1868
|
+
},
|
|
1617
1869
|
".agent-src.uncompressed/skills/fe-design/SKILL.md": {
|
|
1618
1870
|
"kind": "skill",
|
|
1619
1871
|
"rule_type": null,
|
|
@@ -1644,12 +1896,30 @@
|
|
|
1644
1896
|
"load_context": [],
|
|
1645
1897
|
"load_context_eager": []
|
|
1646
1898
|
},
|
|
1899
|
+
".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md": {
|
|
1900
|
+
"kind": "skill",
|
|
1901
|
+
"rule_type": null,
|
|
1902
|
+
"load_context": [],
|
|
1903
|
+
"load_context_eager": []
|
|
1904
|
+
},
|
|
1905
|
+
".agent-src.uncompressed/skills/forecasting/SKILL.md": {
|
|
1906
|
+
"kind": "skill",
|
|
1907
|
+
"rule_type": null,
|
|
1908
|
+
"load_context": [],
|
|
1909
|
+
"load_context_eager": []
|
|
1910
|
+
},
|
|
1647
1911
|
".agent-src.uncompressed/skills/form-handler/SKILL.md": {
|
|
1648
1912
|
"kind": "skill",
|
|
1649
1913
|
"rule_type": null,
|
|
1650
1914
|
"load_context": [],
|
|
1651
1915
|
"load_context_eager": []
|
|
1652
1916
|
},
|
|
1917
|
+
".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md": {
|
|
1918
|
+
"kind": "skill",
|
|
1919
|
+
"rule_type": null,
|
|
1920
|
+
"load_context": [],
|
|
1921
|
+
"load_context_eager": []
|
|
1922
|
+
},
|
|
1653
1923
|
".agent-src.uncompressed/skills/funnel-analysis/SKILL.md": {
|
|
1654
1924
|
"kind": "skill",
|
|
1655
1925
|
"rule_type": null,
|
|
@@ -1674,12 +1944,24 @@
|
|
|
1674
1944
|
"load_context": [],
|
|
1675
1945
|
"load_context_eager": []
|
|
1676
1946
|
},
|
|
1947
|
+
".agent-src.uncompressed/skills/gtm-launch/SKILL.md": {
|
|
1948
|
+
"kind": "skill",
|
|
1949
|
+
"rule_type": null,
|
|
1950
|
+
"load_context": [],
|
|
1951
|
+
"load_context_eager": []
|
|
1952
|
+
},
|
|
1677
1953
|
".agent-src.uncompressed/skills/guideline-writing/SKILL.md": {
|
|
1678
1954
|
"kind": "skill",
|
|
1679
1955
|
"rule_type": null,
|
|
1680
1956
|
"load_context": [],
|
|
1681
1957
|
"load_context_eager": []
|
|
1682
1958
|
},
|
|
1959
|
+
".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md": {
|
|
1960
|
+
"kind": "skill",
|
|
1961
|
+
"rule_type": null,
|
|
1962
|
+
"load_context": [],
|
|
1963
|
+
"load_context_eager": []
|
|
1964
|
+
},
|
|
1683
1965
|
".agent-src.uncompressed/skills/incident-commander/SKILL.md": {
|
|
1684
1966
|
"kind": "skill",
|
|
1685
1967
|
"rule_type": null,
|
|
@@ -1818,6 +2100,12 @@
|
|
|
1818
2100
|
"load_context": [],
|
|
1819
2101
|
"load_context_eager": []
|
|
1820
2102
|
},
|
|
2103
|
+
".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md": {
|
|
2104
|
+
"kind": "skill",
|
|
2105
|
+
"rule_type": null,
|
|
2106
|
+
"load_context": [],
|
|
2107
|
+
"load_context_eager": []
|
|
2108
|
+
},
|
|
1821
2109
|
".agent-src.uncompressed/skills/markitdown/SKILL.md": {
|
|
1822
2110
|
"kind": "skill",
|
|
1823
2111
|
"rule_type": null,
|
|
@@ -1854,19 +2142,25 @@
|
|
|
1854
2142
|
"load_context": [],
|
|
1855
2143
|
"load_context_eager": []
|
|
1856
2144
|
},
|
|
1857
|
-
".agent-src.uncompressed/skills/
|
|
2145
|
+
".agent-src.uncompressed/skills/messaging-architecture/SKILL.md": {
|
|
1858
2146
|
"kind": "skill",
|
|
1859
2147
|
"rule_type": null,
|
|
1860
2148
|
"load_context": [],
|
|
1861
2149
|
"load_context_eager": []
|
|
1862
2150
|
},
|
|
1863
|
-
".agent-src.uncompressed/skills/migration-
|
|
2151
|
+
".agent-src.uncompressed/skills/migration-architect/SKILL.md": {
|
|
1864
2152
|
"kind": "skill",
|
|
1865
2153
|
"rule_type": null,
|
|
1866
2154
|
"load_context": [],
|
|
1867
2155
|
"load_context_eager": []
|
|
1868
2156
|
},
|
|
1869
|
-
".agent-src.uncompressed/skills/
|
|
2157
|
+
".agent-src.uncompressed/skills/migration-creator/SKILL.md": {
|
|
2158
|
+
"kind": "skill",
|
|
2159
|
+
"rule_type": null,
|
|
2160
|
+
"load_context": [],
|
|
2161
|
+
"load_context_eager": []
|
|
2162
|
+
},
|
|
2163
|
+
".agent-src.uncompressed/skills/mobile-e2e-strategy/SKILL.md": {
|
|
1870
2164
|
"kind": "skill",
|
|
1871
2165
|
"rule_type": null,
|
|
1872
2166
|
"load_context": [],
|
|
@@ -1884,24 +2178,60 @@
|
|
|
1884
2178
|
"load_context": [],
|
|
1885
2179
|
"load_context_eager": []
|
|
1886
2180
|
},
|
|
2181
|
+
".agent-src.uncompressed/skills/nextjs-patterns/SKILL.md": {
|
|
2182
|
+
"kind": "skill",
|
|
2183
|
+
"rule_type": null,
|
|
2184
|
+
"load_context": [],
|
|
2185
|
+
"load_context_eager": []
|
|
2186
|
+
},
|
|
1887
2187
|
".agent-src.uncompressed/skills/okr-tree-modeling/SKILL.md": {
|
|
1888
2188
|
"kind": "skill",
|
|
1889
2189
|
"rule_type": null,
|
|
1890
2190
|
"load_context": [],
|
|
1891
2191
|
"load_context_eager": []
|
|
1892
2192
|
},
|
|
2193
|
+
".agent-src.uncompressed/skills/onboarding-design/SKILL.md": {
|
|
2194
|
+
"kind": "skill",
|
|
2195
|
+
"rule_type": null,
|
|
2196
|
+
"load_context": [],
|
|
2197
|
+
"load_context_eager": []
|
|
2198
|
+
},
|
|
2199
|
+
".agent-src.uncompressed/skills/onboarding-program/SKILL.md": {
|
|
2200
|
+
"kind": "skill",
|
|
2201
|
+
"rule_type": null,
|
|
2202
|
+
"load_context": [],
|
|
2203
|
+
"load_context_eager": []
|
|
2204
|
+
},
|
|
2205
|
+
".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md": {
|
|
2206
|
+
"kind": "skill",
|
|
2207
|
+
"rule_type": null,
|
|
2208
|
+
"load_context": [],
|
|
2209
|
+
"load_context_eager": []
|
|
2210
|
+
},
|
|
1893
2211
|
".agent-src.uncompressed/skills/openapi/SKILL.md": {
|
|
1894
2212
|
"kind": "skill",
|
|
1895
2213
|
"rule_type": null,
|
|
1896
2214
|
"load_context": [],
|
|
1897
2215
|
"load_context_eager": []
|
|
1898
2216
|
},
|
|
2217
|
+
".agent-src.uncompressed/skills/org-design/SKILL.md": {
|
|
2218
|
+
"kind": "skill",
|
|
2219
|
+
"rule_type": null,
|
|
2220
|
+
"load_context": [],
|
|
2221
|
+
"load_context_eager": []
|
|
2222
|
+
},
|
|
1899
2223
|
".agent-src.uncompressed/skills/override-management/SKILL.md": {
|
|
1900
2224
|
"kind": "skill",
|
|
1901
2225
|
"rule_type": null,
|
|
1902
2226
|
"load_context": [],
|
|
1903
2227
|
"load_context_eager": []
|
|
1904
2228
|
},
|
|
2229
|
+
".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md": {
|
|
2230
|
+
"kind": "skill",
|
|
2231
|
+
"rule_type": null,
|
|
2232
|
+
"load_context": [],
|
|
2233
|
+
"load_context_eager": []
|
|
2234
|
+
},
|
|
1905
2235
|
".agent-src.uncompressed/skills/performance-analysis/SKILL.md": {
|
|
1906
2236
|
"kind": "skill",
|
|
1907
2237
|
"rule_type": null,
|
|
@@ -1944,6 +2274,12 @@
|
|
|
1944
2274
|
"load_context": [],
|
|
1945
2275
|
"load_context_eager": []
|
|
1946
2276
|
},
|
|
2277
|
+
".agent-src.uncompressed/skills/pipeline-strategy/SKILL.md": {
|
|
2278
|
+
"kind": "skill",
|
|
2279
|
+
"rule_type": null,
|
|
2280
|
+
"load_context": [],
|
|
2281
|
+
"load_context_eager": []
|
|
2282
|
+
},
|
|
1947
2283
|
".agent-src.uncompressed/skills/playwright-architect/SKILL.md": {
|
|
1948
2284
|
"kind": "skill",
|
|
1949
2285
|
"rule_type": null,
|
|
@@ -1962,6 +2298,18 @@
|
|
|
1962
2298
|
"load_context": [],
|
|
1963
2299
|
"load_context_eager": []
|
|
1964
2300
|
},
|
|
2301
|
+
".agent-src.uncompressed/skills/positioning-strategy/SKILL.md": {
|
|
2302
|
+
"kind": "skill",
|
|
2303
|
+
"rule_type": null,
|
|
2304
|
+
"load_context": [],
|
|
2305
|
+
"load_context_eager": []
|
|
2306
|
+
},
|
|
2307
|
+
".agent-src.uncompressed/skills/privacy-review/SKILL.md": {
|
|
2308
|
+
"kind": "skill",
|
|
2309
|
+
"rule_type": null,
|
|
2310
|
+
"load_context": [],
|
|
2311
|
+
"load_context_eager": []
|
|
2312
|
+
},
|
|
1965
2313
|
".agent-src.uncompressed/skills/project-analysis-core/SKILL.md": {
|
|
1966
2314
|
"kind": "skill",
|
|
1967
2315
|
"rule_type": null,
|
|
@@ -2106,6 +2454,12 @@
|
|
|
2106
2454
|
"load_context": [],
|
|
2107
2455
|
"load_context_eager": []
|
|
2108
2456
|
},
|
|
2457
|
+
".agent-src.uncompressed/skills/retention-loops/SKILL.md": {
|
|
2458
|
+
"kind": "skill",
|
|
2459
|
+
"rule_type": null,
|
|
2460
|
+
"load_context": [],
|
|
2461
|
+
"load_context_eager": []
|
|
2462
|
+
},
|
|
2109
2463
|
".agent-src.uncompressed/skills/review-routing/SKILL.md": {
|
|
2110
2464
|
"kind": "skill",
|
|
2111
2465
|
"rule_type": null,
|
|
@@ -2148,6 +2502,18 @@
|
|
|
2148
2502
|
"load_context": [],
|
|
2149
2503
|
"load_context_eager": []
|
|
2150
2504
|
},
|
|
2505
|
+
".agent-src.uncompressed/skills/runway-cognition/SKILL.md": {
|
|
2506
|
+
"kind": "skill",
|
|
2507
|
+
"rule_type": null,
|
|
2508
|
+
"load_context": [],
|
|
2509
|
+
"load_context_eager": []
|
|
2510
|
+
},
|
|
2511
|
+
".agent-src.uncompressed/skills/scenario-modeling/SKILL.md": {
|
|
2512
|
+
"kind": "skill",
|
|
2513
|
+
"rule_type": null,
|
|
2514
|
+
"load_context": [],
|
|
2515
|
+
"load_context_eager": []
|
|
2516
|
+
},
|
|
2151
2517
|
".agent-src.uncompressed/skills/script-writing/SKILL.md": {
|
|
2152
2518
|
"kind": "skill",
|
|
2153
2519
|
"rule_type": null,
|
|
@@ -2274,6 +2640,12 @@
|
|
|
2274
2640
|
"load_context": [],
|
|
2275
2641
|
"load_context_eager": []
|
|
2276
2642
|
},
|
|
2643
|
+
".agent-src.uncompressed/skills/symfony-workflow/SKILL.md": {
|
|
2644
|
+
"kind": "skill",
|
|
2645
|
+
"rule_type": null,
|
|
2646
|
+
"load_context": [],
|
|
2647
|
+
"load_context_eager": []
|
|
2648
|
+
},
|
|
2277
2649
|
".agent-src.uncompressed/skills/systematic-debugging/SKILL.md": {
|
|
2278
2650
|
"kind": "skill",
|
|
2279
2651
|
"rule_type": null,
|
|
@@ -2340,6 +2712,12 @@
|
|
|
2340
2712
|
"load_context": [],
|
|
2341
2713
|
"load_context_eager": []
|
|
2342
2714
|
},
|
|
2715
|
+
".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md": {
|
|
2716
|
+
"kind": "skill",
|
|
2717
|
+
"rule_type": null,
|
|
2718
|
+
"load_context": [],
|
|
2719
|
+
"load_context_eager": []
|
|
2720
|
+
},
|
|
2343
2721
|
".agent-src.uncompressed/skills/token-optimizer/SKILL.md": {
|
|
2344
2722
|
"kind": "skill",
|
|
2345
2723
|
"rule_type": null,
|
|
@@ -2394,12 +2772,24 @@
|
|
|
2394
2772
|
"load_context": [],
|
|
2395
2773
|
"load_context_eager": []
|
|
2396
2774
|
},
|
|
2775
|
+
".agent-src.uncompressed/skills/vision-articulation/SKILL.md": {
|
|
2776
|
+
"kind": "skill",
|
|
2777
|
+
"rule_type": null,
|
|
2778
|
+
"load_context": [],
|
|
2779
|
+
"load_context_eager": []
|
|
2780
|
+
},
|
|
2397
2781
|
".agent-src.uncompressed/skills/voc-extract/SKILL.md": {
|
|
2398
2782
|
"kind": "skill",
|
|
2399
2783
|
"rule_type": null,
|
|
2400
2784
|
"load_context": [],
|
|
2401
2785
|
"load_context_eager": []
|
|
2402
2786
|
},
|
|
2787
|
+
".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md": {
|
|
2788
|
+
"kind": "skill",
|
|
2789
|
+
"rule_type": null,
|
|
2790
|
+
"load_context": [],
|
|
2791
|
+
"load_context_eager": []
|
|
2792
|
+
},
|
|
2403
2793
|
".agent-src.uncompressed/skills/websocket/SKILL.md": {
|
|
2404
2794
|
"kind": "skill",
|
|
2405
2795
|
"rule_type": null,
|
|
@@ -2548,6 +2938,160 @@
|
|
|
2548
2938
|
"via": "body_link",
|
|
2549
2939
|
"depth": 1
|
|
2550
2940
|
},
|
|
2941
|
+
{
|
|
2942
|
+
"source": ".agent-src.uncompressed/commands/agents/user.md",
|
|
2943
|
+
"target": ".agent-src.uncompressed/commands/agents/init.md",
|
|
2944
|
+
"type": "READ_ONLY",
|
|
2945
|
+
"via": "body_link",
|
|
2946
|
+
"depth": 1
|
|
2947
|
+
},
|
|
2948
|
+
{
|
|
2949
|
+
"source": ".agent-src.uncompressed/commands/agents/user.md",
|
|
2950
|
+
"target": ".agent-src.uncompressed/commands/agents/user.md",
|
|
2951
|
+
"type": "WRITE",
|
|
2952
|
+
"via": "self",
|
|
2953
|
+
"depth": 0
|
|
2954
|
+
},
|
|
2955
|
+
{
|
|
2956
|
+
"source": ".agent-src.uncompressed/commands/agents/user/accept.md",
|
|
2957
|
+
"target": ".agent-src.uncompressed/commands/agents/user.md",
|
|
2958
|
+
"type": "READ_ONLY",
|
|
2959
|
+
"via": "body_link",
|
|
2960
|
+
"depth": 1
|
|
2961
|
+
},
|
|
2962
|
+
{
|
|
2963
|
+
"source": ".agent-src.uncompressed/commands/agents/user/accept.md",
|
|
2964
|
+
"target": ".agent-src.uncompressed/commands/agents/user/accept.md",
|
|
2965
|
+
"type": "WRITE",
|
|
2966
|
+
"via": "self",
|
|
2967
|
+
"depth": 0
|
|
2968
|
+
},
|
|
2969
|
+
{
|
|
2970
|
+
"source": ".agent-src.uncompressed/commands/agents/user/accept.md",
|
|
2971
|
+
"target": ".agent-src.uncompressed/commands/agents/user/review.md",
|
|
2972
|
+
"type": "READ_ONLY",
|
|
2973
|
+
"via": "body_link",
|
|
2974
|
+
"depth": 1
|
|
2975
|
+
},
|
|
2976
|
+
{
|
|
2977
|
+
"source": ".agent-src.uncompressed/commands/agents/user/accept.md",
|
|
2978
|
+
"target": ".agent-src.uncompressed/commands/agents/user/update.md",
|
|
2979
|
+
"type": "READ_ONLY",
|
|
2980
|
+
"via": "body_link",
|
|
2981
|
+
"depth": 1
|
|
2982
|
+
},
|
|
2983
|
+
{
|
|
2984
|
+
"source": ".agent-src.uncompressed/commands/agents/user/init.md",
|
|
2985
|
+
"target": ".agent-src.uncompressed/commands/agents/user.md",
|
|
2986
|
+
"type": "READ_ONLY",
|
|
2987
|
+
"via": "body_link",
|
|
2988
|
+
"depth": 1
|
|
2989
|
+
},
|
|
2990
|
+
{
|
|
2991
|
+
"source": ".agent-src.uncompressed/commands/agents/user/init.md",
|
|
2992
|
+
"target": ".agent-src.uncompressed/commands/agents/user/init.md",
|
|
2993
|
+
"type": "WRITE",
|
|
2994
|
+
"via": "self",
|
|
2995
|
+
"depth": 0
|
|
2996
|
+
},
|
|
2997
|
+
{
|
|
2998
|
+
"source": ".agent-src.uncompressed/commands/agents/user/review.md",
|
|
2999
|
+
"target": ".agent-src.uncompressed/commands/agents/user.md",
|
|
3000
|
+
"type": "READ_ONLY",
|
|
3001
|
+
"via": "body_link",
|
|
3002
|
+
"depth": 1
|
|
3003
|
+
},
|
|
3004
|
+
{
|
|
3005
|
+
"source": ".agent-src.uncompressed/commands/agents/user/review.md",
|
|
3006
|
+
"target": ".agent-src.uncompressed/commands/agents/user/accept.md",
|
|
3007
|
+
"type": "READ_ONLY",
|
|
3008
|
+
"via": "body_link",
|
|
3009
|
+
"depth": 1
|
|
3010
|
+
},
|
|
3011
|
+
{
|
|
3012
|
+
"source": ".agent-src.uncompressed/commands/agents/user/review.md",
|
|
3013
|
+
"target": ".agent-src.uncompressed/commands/agents/user/review.md",
|
|
3014
|
+
"type": "WRITE",
|
|
3015
|
+
"via": "self",
|
|
3016
|
+
"depth": 0
|
|
3017
|
+
},
|
|
3018
|
+
{
|
|
3019
|
+
"source": ".agent-src.uncompressed/commands/agents/user/review.md",
|
|
3020
|
+
"target": ".agent-src.uncompressed/commands/agents/user/update.md",
|
|
3021
|
+
"type": "READ_ONLY",
|
|
3022
|
+
"via": "body_link",
|
|
3023
|
+
"depth": 1
|
|
3024
|
+
},
|
|
3025
|
+
{
|
|
3026
|
+
"source": ".agent-src.uncompressed/commands/agents/user/show.md",
|
|
3027
|
+
"target": ".agent-src.uncompressed/commands/agents/user.md",
|
|
3028
|
+
"type": "READ_ONLY",
|
|
3029
|
+
"via": "body_link",
|
|
3030
|
+
"depth": 1
|
|
3031
|
+
},
|
|
3032
|
+
{
|
|
3033
|
+
"source": ".agent-src.uncompressed/commands/agents/user/show.md",
|
|
3034
|
+
"target": ".agent-src.uncompressed/commands/agents/user/init.md",
|
|
3035
|
+
"type": "READ_ONLY",
|
|
3036
|
+
"via": "body_link",
|
|
3037
|
+
"depth": 1
|
|
3038
|
+
},
|
|
3039
|
+
{
|
|
3040
|
+
"source": ".agent-src.uncompressed/commands/agents/user/show.md",
|
|
3041
|
+
"target": ".agent-src.uncompressed/commands/agents/user/show.md",
|
|
3042
|
+
"type": "WRITE",
|
|
3043
|
+
"via": "self",
|
|
3044
|
+
"depth": 0
|
|
3045
|
+
},
|
|
3046
|
+
{
|
|
3047
|
+
"source": ".agent-src.uncompressed/commands/agents/user/show.md",
|
|
3048
|
+
"target": ".agent-src.uncompressed/commands/agents/user/update.md",
|
|
3049
|
+
"type": "READ_ONLY",
|
|
3050
|
+
"via": "body_link",
|
|
3051
|
+
"depth": 1
|
|
3052
|
+
},
|
|
3053
|
+
{
|
|
3054
|
+
"source": ".agent-src.uncompressed/commands/agents/user/update.md",
|
|
3055
|
+
"target": ".agent-src.uncompressed/commands/agents/user.md",
|
|
3056
|
+
"type": "READ_ONLY",
|
|
3057
|
+
"via": "body_link",
|
|
3058
|
+
"depth": 1
|
|
3059
|
+
},
|
|
3060
|
+
{
|
|
3061
|
+
"source": ".agent-src.uncompressed/commands/agents/user/update.md",
|
|
3062
|
+
"target": ".agent-src.uncompressed/commands/agents/user/accept.md",
|
|
3063
|
+
"type": "READ_ONLY",
|
|
3064
|
+
"via": "body_link",
|
|
3065
|
+
"depth": 1
|
|
3066
|
+
},
|
|
3067
|
+
{
|
|
3068
|
+
"source": ".agent-src.uncompressed/commands/agents/user/update.md",
|
|
3069
|
+
"target": ".agent-src.uncompressed/commands/agents/user/init.md",
|
|
3070
|
+
"type": "READ_ONLY",
|
|
3071
|
+
"via": "body_link",
|
|
3072
|
+
"depth": 1
|
|
3073
|
+
},
|
|
3074
|
+
{
|
|
3075
|
+
"source": ".agent-src.uncompressed/commands/agents/user/update.md",
|
|
3076
|
+
"target": ".agent-src.uncompressed/commands/agents/user/review.md",
|
|
3077
|
+
"type": "READ_ONLY",
|
|
3078
|
+
"via": "body_link",
|
|
3079
|
+
"depth": 1
|
|
3080
|
+
},
|
|
3081
|
+
{
|
|
3082
|
+
"source": ".agent-src.uncompressed/commands/agents/user/update.md",
|
|
3083
|
+
"target": ".agent-src.uncompressed/commands/agents/user/show.md",
|
|
3084
|
+
"type": "READ_ONLY",
|
|
3085
|
+
"via": "body_link",
|
|
3086
|
+
"depth": 1
|
|
3087
|
+
},
|
|
3088
|
+
{
|
|
3089
|
+
"source": ".agent-src.uncompressed/commands/agents/user/update.md",
|
|
3090
|
+
"target": ".agent-src.uncompressed/commands/agents/user/update.md",
|
|
3091
|
+
"type": "WRITE",
|
|
3092
|
+
"via": "self",
|
|
3093
|
+
"depth": 0
|
|
3094
|
+
},
|
|
2551
3095
|
{
|
|
2552
3096
|
"source": ".agent-src.uncompressed/commands/analyze-reference-repo.md",
|
|
2553
3097
|
"target": ".agent-src.uncompressed/commands/analyze-reference-repo.md",
|
|
@@ -2926,6 +3470,27 @@
|
|
|
2926
3470
|
"via": "self",
|
|
2927
3471
|
"depth": 0
|
|
2928
3472
|
},
|
|
3473
|
+
{
|
|
3474
|
+
"source": ".agent-src.uncompressed/commands/council/analysis.md",
|
|
3475
|
+
"target": ".agent-src.uncompressed/commands/council/analysis.md",
|
|
3476
|
+
"type": "WRITE",
|
|
3477
|
+
"via": "self",
|
|
3478
|
+
"depth": 0
|
|
3479
|
+
},
|
|
3480
|
+
{
|
|
3481
|
+
"source": ".agent-src.uncompressed/commands/council/debate.md",
|
|
3482
|
+
"target": ".agent-src.uncompressed/commands/council/debate.md",
|
|
3483
|
+
"type": "WRITE",
|
|
3484
|
+
"via": "self",
|
|
3485
|
+
"depth": 0
|
|
3486
|
+
},
|
|
3487
|
+
{
|
|
3488
|
+
"source": ".agent-src.uncompressed/commands/council/debate.md",
|
|
3489
|
+
"target": ".agent-src.uncompressed/skills/ai-council/SKILL.md",
|
|
3490
|
+
"type": "READ_ONLY",
|
|
3491
|
+
"via": "body_link",
|
|
3492
|
+
"depth": 1
|
|
3493
|
+
},
|
|
2929
3494
|
{
|
|
2930
3495
|
"source": ".agent-src.uncompressed/commands/council/default.md",
|
|
2931
3496
|
"target": ".agent-src.uncompressed/commands/council/default.md",
|
|
@@ -3276,6 +3841,13 @@
|
|
|
3276
3841
|
"via": "self",
|
|
3277
3842
|
"depth": 0
|
|
3278
3843
|
},
|
|
3844
|
+
{
|
|
3845
|
+
"source": ".agent-src.uncompressed/commands/memory/learn-low-impact.md",
|
|
3846
|
+
"target": ".agent-src.uncompressed/commands/memory/learn-low-impact.md",
|
|
3847
|
+
"type": "WRITE",
|
|
3848
|
+
"via": "self",
|
|
3849
|
+
"depth": 0
|
|
3850
|
+
},
|
|
3279
3851
|
{
|
|
3280
3852
|
"source": ".agent-src.uncompressed/commands/memory/load.md",
|
|
3281
3853
|
"target": ".agent-src.uncompressed/commands/memory/load.md",
|
|
@@ -4935,6 +5507,41 @@
|
|
|
4935
5507
|
"via": "self",
|
|
4936
5508
|
"depth": 0
|
|
4937
5509
|
},
|
|
5510
|
+
{
|
|
5511
|
+
"source": ".agent-src.uncompressed/personas/advisors/contrarian.md",
|
|
5512
|
+
"target": ".agent-src.uncompressed/personas/advisors/contrarian.md",
|
|
5513
|
+
"type": "WRITE",
|
|
5514
|
+
"via": "self",
|
|
5515
|
+
"depth": 0
|
|
5516
|
+
},
|
|
5517
|
+
{
|
|
5518
|
+
"source": ".agent-src.uncompressed/personas/advisors/executor.md",
|
|
5519
|
+
"target": ".agent-src.uncompressed/personas/advisors/executor.md",
|
|
5520
|
+
"type": "WRITE",
|
|
5521
|
+
"via": "self",
|
|
5522
|
+
"depth": 0
|
|
5523
|
+
},
|
|
5524
|
+
{
|
|
5525
|
+
"source": ".agent-src.uncompressed/personas/advisors/expansionist.md",
|
|
5526
|
+
"target": ".agent-src.uncompressed/personas/advisors/expansionist.md",
|
|
5527
|
+
"type": "WRITE",
|
|
5528
|
+
"via": "self",
|
|
5529
|
+
"depth": 0
|
|
5530
|
+
},
|
|
5531
|
+
{
|
|
5532
|
+
"source": ".agent-src.uncompressed/personas/advisors/first-principles.md",
|
|
5533
|
+
"target": ".agent-src.uncompressed/personas/advisors/first-principles.md",
|
|
5534
|
+
"type": "WRITE",
|
|
5535
|
+
"via": "self",
|
|
5536
|
+
"depth": 0
|
|
5537
|
+
},
|
|
5538
|
+
{
|
|
5539
|
+
"source": ".agent-src.uncompressed/personas/advisors/outsider.md",
|
|
5540
|
+
"target": ".agent-src.uncompressed/personas/advisors/outsider.md",
|
|
5541
|
+
"type": "WRITE",
|
|
5542
|
+
"via": "self",
|
|
5543
|
+
"depth": 0
|
|
5544
|
+
},
|
|
4938
5545
|
{
|
|
4939
5546
|
"source": ".agent-src.uncompressed/personas/ai-agent.md",
|
|
4940
5547
|
"target": ".agent-src.uncompressed/personas/ai-agent.md",
|
|
@@ -4949,6 +5556,13 @@
|
|
|
4949
5556
|
"via": "self",
|
|
4950
5557
|
"depth": 0
|
|
4951
5558
|
},
|
|
5559
|
+
{
|
|
5560
|
+
"source": ".agent-src.uncompressed/personas/cmo.md",
|
|
5561
|
+
"target": ".agent-src.uncompressed/personas/cmo.md",
|
|
5562
|
+
"type": "WRITE",
|
|
5563
|
+
"via": "self",
|
|
5564
|
+
"depth": 0
|
|
5565
|
+
},
|
|
4952
5566
|
{
|
|
4953
5567
|
"source": ".agent-src.uncompressed/personas/critical-challenger.md",
|
|
4954
5568
|
"target": ".agent-src.uncompressed/personas/critical-challenger.md",
|
|
@@ -4956,6 +5570,13 @@
|
|
|
4956
5570
|
"via": "self",
|
|
4957
5571
|
"depth": 0
|
|
4958
5572
|
},
|
|
5573
|
+
{
|
|
5574
|
+
"source": ".agent-src.uncompressed/personas/customer-success-lead.md",
|
|
5575
|
+
"target": ".agent-src.uncompressed/personas/customer-success-lead.md",
|
|
5576
|
+
"type": "WRITE",
|
|
5577
|
+
"via": "self",
|
|
5578
|
+
"depth": 0
|
|
5579
|
+
},
|
|
4959
5580
|
{
|
|
4960
5581
|
"source": ".agent-src.uncompressed/personas/developer.md",
|
|
4961
5582
|
"target": ".agent-src.uncompressed/personas/developer.md",
|
|
@@ -4978,8 +5599,36 @@
|
|
|
4978
5599
|
"depth": 0
|
|
4979
5600
|
},
|
|
4980
5601
|
{
|
|
4981
|
-
"source": ".agent-src.uncompressed/personas/
|
|
4982
|
-
"target": ".agent-src.uncompressed/personas/
|
|
5602
|
+
"source": ".agent-src.uncompressed/personas/engineering-manager.md",
|
|
5603
|
+
"target": ".agent-src.uncompressed/personas/engineering-manager.md",
|
|
5604
|
+
"type": "WRITE",
|
|
5605
|
+
"via": "self",
|
|
5606
|
+
"depth": 0
|
|
5607
|
+
},
|
|
5608
|
+
{
|
|
5609
|
+
"source": ".agent-src.uncompressed/personas/finance-partner.md",
|
|
5610
|
+
"target": ".agent-src.uncompressed/personas/finance-partner.md",
|
|
5611
|
+
"type": "WRITE",
|
|
5612
|
+
"via": "self",
|
|
5613
|
+
"depth": 0
|
|
5614
|
+
},
|
|
5615
|
+
{
|
|
5616
|
+
"source": ".agent-src.uncompressed/personas/frontend-engineer.md",
|
|
5617
|
+
"target": ".agent-src.uncompressed/personas/frontend-engineer.md",
|
|
5618
|
+
"type": "WRITE",
|
|
5619
|
+
"via": "self",
|
|
5620
|
+
"depth": 0
|
|
5621
|
+
},
|
|
5622
|
+
{
|
|
5623
|
+
"source": ".agent-src.uncompressed/personas/growth-pm.md",
|
|
5624
|
+
"target": ".agent-src.uncompressed/personas/growth-pm.md",
|
|
5625
|
+
"type": "WRITE",
|
|
5626
|
+
"via": "self",
|
|
5627
|
+
"depth": 0
|
|
5628
|
+
},
|
|
5629
|
+
{
|
|
5630
|
+
"source": ".agent-src.uncompressed/personas/people-strategist.md",
|
|
5631
|
+
"target": ".agent-src.uncompressed/personas/people-strategist.md",
|
|
4983
5632
|
"type": "WRITE",
|
|
4984
5633
|
"via": "self",
|
|
4985
5634
|
"depth": 0
|
|
@@ -5019,6 +5668,13 @@
|
|
|
5019
5668
|
"via": "self",
|
|
5020
5669
|
"depth": 0
|
|
5021
5670
|
},
|
|
5671
|
+
{
|
|
5672
|
+
"source": ".agent-src.uncompressed/personas/revops.md",
|
|
5673
|
+
"target": ".agent-src.uncompressed/personas/revops.md",
|
|
5674
|
+
"type": "WRITE",
|
|
5675
|
+
"via": "self",
|
|
5676
|
+
"depth": 0
|
|
5677
|
+
},
|
|
5022
5678
|
{
|
|
5023
5679
|
"source": ".agent-src.uncompressed/personas/security-engineer.md",
|
|
5024
5680
|
"target": ".agent-src.uncompressed/personas/security-engineer.md",
|
|
@@ -5040,6 +5696,13 @@
|
|
|
5040
5696
|
"via": "self",
|
|
5041
5697
|
"depth": 0
|
|
5042
5698
|
},
|
|
5699
|
+
{
|
|
5700
|
+
"source": ".agent-src.uncompressed/personas/strategist.md",
|
|
5701
|
+
"target": ".agent-src.uncompressed/personas/strategist.md",
|
|
5702
|
+
"type": "WRITE",
|
|
5703
|
+
"via": "self",
|
|
5704
|
+
"depth": 0
|
|
5705
|
+
},
|
|
5043
5706
|
{
|
|
5044
5707
|
"source": ".agent-src.uncompressed/personas/tech-writer.md",
|
|
5045
5708
|
"target": ".agent-src.uncompressed/personas/tech-writer.md",
|
|
@@ -5453,6 +6116,20 @@
|
|
|
5453
6116
|
"via": "self",
|
|
5454
6117
|
"depth": 0
|
|
5455
6118
|
},
|
|
6119
|
+
{
|
|
6120
|
+
"source": ".agent-src.uncompressed/rules/copilot-routing.md",
|
|
6121
|
+
"target": ".agent-src.uncompressed/rules/copilot-routing.md",
|
|
6122
|
+
"type": "WRITE",
|
|
6123
|
+
"via": "self",
|
|
6124
|
+
"depth": 0
|
|
6125
|
+
},
|
|
6126
|
+
{
|
|
6127
|
+
"source": ".agent-src.uncompressed/rules/devcontainer-routing.md",
|
|
6128
|
+
"target": ".agent-src.uncompressed/rules/devcontainer-routing.md",
|
|
6129
|
+
"type": "WRITE",
|
|
6130
|
+
"via": "self",
|
|
6131
|
+
"depth": 0
|
|
6132
|
+
},
|
|
5456
6133
|
{
|
|
5457
6134
|
"source": ".agent-src.uncompressed/rules/direct-answers.md",
|
|
5458
6135
|
"target": ".agent-src.uncompressed/contexts/contracts/frugality-charter.md",
|
|
@@ -5537,6 +6214,55 @@
|
|
|
5537
6214
|
"via": "self",
|
|
5538
6215
|
"depth": 0
|
|
5539
6216
|
},
|
|
6217
|
+
{
|
|
6218
|
+
"source": ".agent-src.uncompressed/rules/external-reference-deep-dive.md",
|
|
6219
|
+
"target": ".agent-src.uncompressed/commands/analyze-reference-repo.md",
|
|
6220
|
+
"type": "READ_ONLY",
|
|
6221
|
+
"via": "body_link",
|
|
6222
|
+
"depth": 1
|
|
6223
|
+
},
|
|
6224
|
+
{
|
|
6225
|
+
"source": ".agent-src.uncompressed/rules/external-reference-deep-dive.md",
|
|
6226
|
+
"target": ".agent-src.uncompressed/rules/ask-when-uncertain.md",
|
|
6227
|
+
"type": "READ_ONLY",
|
|
6228
|
+
"via": "body_link",
|
|
6229
|
+
"depth": 1
|
|
6230
|
+
},
|
|
6231
|
+
{
|
|
6232
|
+
"source": ".agent-src.uncompressed/rules/external-reference-deep-dive.md",
|
|
6233
|
+
"target": ".agent-src.uncompressed/rules/external-reference-deep-dive.md",
|
|
6234
|
+
"type": "WRITE",
|
|
6235
|
+
"via": "self",
|
|
6236
|
+
"depth": 0
|
|
6237
|
+
},
|
|
6238
|
+
{
|
|
6239
|
+
"source": ".agent-src.uncompressed/rules/external-reference-deep-dive.md",
|
|
6240
|
+
"target": ".agent-src.uncompressed/rules/think-before-action.md",
|
|
6241
|
+
"type": "READ_ONLY",
|
|
6242
|
+
"via": "body_link",
|
|
6243
|
+
"depth": 1
|
|
6244
|
+
},
|
|
6245
|
+
{
|
|
6246
|
+
"source": ".agent-src.uncompressed/rules/external-reference-deep-dive.md",
|
|
6247
|
+
"target": ".agent-src.uncompressed/skills/markitdown/SKILL.md",
|
|
6248
|
+
"type": "READ_ONLY",
|
|
6249
|
+
"via": "body_link",
|
|
6250
|
+
"depth": 1
|
|
6251
|
+
},
|
|
6252
|
+
{
|
|
6253
|
+
"source": ".agent-src.uncompressed/rules/fast-path-marker-visibility.md",
|
|
6254
|
+
"target": ".agent-src.uncompressed/rules/direct-answers.md",
|
|
6255
|
+
"type": "READ_ONLY",
|
|
6256
|
+
"via": "body_link",
|
|
6257
|
+
"depth": 1
|
|
6258
|
+
},
|
|
6259
|
+
{
|
|
6260
|
+
"source": ".agent-src.uncompressed/rules/fast-path-marker-visibility.md",
|
|
6261
|
+
"target": ".agent-src.uncompressed/rules/fast-path-marker-visibility.md",
|
|
6262
|
+
"type": "WRITE",
|
|
6263
|
+
"via": "self",
|
|
6264
|
+
"depth": 0
|
|
6265
|
+
},
|
|
5540
6266
|
{
|
|
5541
6267
|
"source": ".agent-src.uncompressed/rules/guidelines.md",
|
|
5542
6268
|
"target": ".agent-src.uncompressed/contexts/communication/rules-auto/guidelines-mechanics.md",
|
|
@@ -5635,6 +6361,13 @@
|
|
|
5635
6361
|
"via": "body_link",
|
|
5636
6362
|
"depth": 1
|
|
5637
6363
|
},
|
|
6364
|
+
{
|
|
6365
|
+
"source": ".agent-src.uncompressed/rules/laravel-routing.md",
|
|
6366
|
+
"target": ".agent-src.uncompressed/rules/laravel-routing.md",
|
|
6367
|
+
"type": "WRITE",
|
|
6368
|
+
"via": "self",
|
|
6369
|
+
"depth": 0
|
|
6370
|
+
},
|
|
5638
6371
|
{
|
|
5639
6372
|
"source": ".agent-src.uncompressed/rules/laravel-translations.md",
|
|
5640
6373
|
"target": ".agent-src.uncompressed/rules/laravel-translations.md",
|
|
@@ -5642,6 +6375,13 @@
|
|
|
5642
6375
|
"via": "self",
|
|
5643
6376
|
"depth": 0
|
|
5644
6377
|
},
|
|
6378
|
+
{
|
|
6379
|
+
"source": ".agent-src.uncompressed/rules/low-impact-corpus-privacy-floor.md",
|
|
6380
|
+
"target": ".agent-src.uncompressed/rules/low-impact-corpus-privacy-floor.md",
|
|
6381
|
+
"type": "WRITE",
|
|
6382
|
+
"via": "self",
|
|
6383
|
+
"depth": 0
|
|
6384
|
+
},
|
|
5645
6385
|
{
|
|
5646
6386
|
"source": ".agent-src.uncompressed/rules/markdown-safe-codeblocks.md",
|
|
5647
6387
|
"target": ".agent-src.uncompressed/rules/markdown-safe-codeblocks.md",
|
|
@@ -5712,13 +6452,6 @@
|
|
|
5712
6452
|
"via": "body_link",
|
|
5713
6453
|
"depth": 1
|
|
5714
6454
|
},
|
|
5715
|
-
{
|
|
5716
|
-
"source": ".agent-src.uncompressed/rules/no-cheap-questions.md",
|
|
5717
|
-
"target": ".agent-src.uncompressed/rules/commit-policy.md",
|
|
5718
|
-
"type": "READ_ONLY",
|
|
5719
|
-
"via": "body_link",
|
|
5720
|
-
"depth": 1
|
|
5721
|
-
},
|
|
5722
6455
|
{
|
|
5723
6456
|
"source": ".agent-src.uncompressed/rules/no-cheap-questions.md",
|
|
5724
6457
|
"target": ".agent-src.uncompressed/rules/no-cheap-questions.md",
|
|
@@ -5733,13 +6466,6 @@
|
|
|
5733
6466
|
"via": "body_link",
|
|
5734
6467
|
"depth": 1
|
|
5735
6468
|
},
|
|
5736
|
-
{
|
|
5737
|
-
"source": ".agent-src.uncompressed/rules/no-cheap-questions.md",
|
|
5738
|
-
"target": ".agent-src.uncompressed/rules/scope-control.md",
|
|
5739
|
-
"type": "READ_ONLY",
|
|
5740
|
-
"via": "body_link",
|
|
5741
|
-
"depth": 1
|
|
5742
|
-
},
|
|
5743
6469
|
{
|
|
5744
6470
|
"source": ".agent-src.uncompressed/rules/no-cheap-questions.md",
|
|
5745
6471
|
"target": ".agent-src.uncompressed/rules/security-sensitive-stop.md",
|
|
@@ -5747,13 +6473,6 @@
|
|
|
5747
6473
|
"via": "body_link",
|
|
5748
6474
|
"depth": 1
|
|
5749
6475
|
},
|
|
5750
|
-
{
|
|
5751
|
-
"source": ".agent-src.uncompressed/rules/no-cheap-questions.md",
|
|
5752
|
-
"target": ".agent-src.uncompressed/rules/verify-before-complete.md",
|
|
5753
|
-
"type": "READ_ONLY",
|
|
5754
|
-
"via": "body_link",
|
|
5755
|
-
"depth": 1
|
|
5756
|
-
},
|
|
5757
6476
|
{
|
|
5758
6477
|
"source": ".agent-src.uncompressed/rules/no-roadmap-references.md",
|
|
5759
6478
|
"target": ".agent-src.uncompressed/rules/agent-docs.md",
|
|
@@ -6048,6 +6767,13 @@
|
|
|
6048
6767
|
"via": "self",
|
|
6049
6768
|
"depth": 0
|
|
6050
6769
|
},
|
|
6770
|
+
{
|
|
6771
|
+
"source": ".agent-src.uncompressed/rules/symfony-routing.md",
|
|
6772
|
+
"target": ".agent-src.uncompressed/rules/symfony-routing.md",
|
|
6773
|
+
"type": "WRITE",
|
|
6774
|
+
"via": "self",
|
|
6775
|
+
"depth": 0
|
|
6776
|
+
},
|
|
6051
6777
|
{
|
|
6052
6778
|
"source": ".agent-src.uncompressed/rules/think-before-action.md",
|
|
6053
6779
|
"target": ".agent-src.uncompressed/contexts/communication/rules-auto/think-before-action-mechanics.md",
|
|
@@ -6202,6 +6928,34 @@
|
|
|
6202
6928
|
"via": "body_link",
|
|
6203
6929
|
"depth": 1
|
|
6204
6930
|
},
|
|
6931
|
+
{
|
|
6932
|
+
"source": ".agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
6933
|
+
"target": ".agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
6934
|
+
"type": "WRITE",
|
|
6935
|
+
"via": "self",
|
|
6936
|
+
"depth": 0
|
|
6937
|
+
},
|
|
6938
|
+
{
|
|
6939
|
+
"source": ".agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
6940
|
+
"target": ".agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
6941
|
+
"type": "READ_ONLY",
|
|
6942
|
+
"via": "body_link",
|
|
6943
|
+
"depth": 1
|
|
6944
|
+
},
|
|
6945
|
+
{
|
|
6946
|
+
"source": ".agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
6947
|
+
"target": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
6948
|
+
"type": "READ_ONLY",
|
|
6949
|
+
"via": "body_link",
|
|
6950
|
+
"depth": 1
|
|
6951
|
+
},
|
|
6952
|
+
{
|
|
6953
|
+
"source": ".agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
6954
|
+
"target": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
6955
|
+
"type": "READ_ONLY",
|
|
6956
|
+
"via": "body_link",
|
|
6957
|
+
"depth": 1
|
|
6958
|
+
},
|
|
6205
6959
|
{
|
|
6206
6960
|
"source": ".agent-src.uncompressed/skills/adr-create/SKILL.md",
|
|
6207
6961
|
"target": ".agent-src.uncompressed/contexts/contracts/frugality-charter.md",
|
|
@@ -6559,6 +7313,55 @@
|
|
|
6559
7313
|
"via": "body_link",
|
|
6560
7314
|
"depth": 1
|
|
6561
7315
|
},
|
|
7316
|
+
{
|
|
7317
|
+
"source": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
7318
|
+
"target": ".agent-src.uncompressed/skills/adr-create/SKILL.md",
|
|
7319
|
+
"type": "READ_ONLY",
|
|
7320
|
+
"via": "body_link",
|
|
7321
|
+
"depth": 1
|
|
7322
|
+
},
|
|
7323
|
+
{
|
|
7324
|
+
"source": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
7325
|
+
"target": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
7326
|
+
"type": "WRITE",
|
|
7327
|
+
"via": "self",
|
|
7328
|
+
"depth": 0
|
|
7329
|
+
},
|
|
7330
|
+
{
|
|
7331
|
+
"source": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
7332
|
+
"target": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
7333
|
+
"type": "READ_ONLY",
|
|
7334
|
+
"via": "body_link",
|
|
7335
|
+
"depth": 1
|
|
7336
|
+
},
|
|
7337
|
+
{
|
|
7338
|
+
"source": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
7339
|
+
"target": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
7340
|
+
"type": "READ_ONLY",
|
|
7341
|
+
"via": "body_link",
|
|
7342
|
+
"depth": 1
|
|
7343
|
+
},
|
|
7344
|
+
{
|
|
7345
|
+
"source": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
7346
|
+
"target": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
7347
|
+
"type": "READ_ONLY",
|
|
7348
|
+
"via": "body_link",
|
|
7349
|
+
"depth": 1
|
|
7350
|
+
},
|
|
7351
|
+
{
|
|
7352
|
+
"source": ".agent-src.uncompressed/skills/canvas-design/SKILL.md",
|
|
7353
|
+
"target": ".agent-src.uncompressed/contexts/contracts/frugality-charter.md",
|
|
7354
|
+
"type": "READ_ONLY",
|
|
7355
|
+
"via": "body_link",
|
|
7356
|
+
"depth": 1
|
|
7357
|
+
},
|
|
7358
|
+
{
|
|
7359
|
+
"source": ".agent-src.uncompressed/skills/canvas-design/SKILL.md",
|
|
7360
|
+
"target": ".agent-src.uncompressed/skills/canvas-design/SKILL.md",
|
|
7361
|
+
"type": "WRITE",
|
|
7362
|
+
"via": "self",
|
|
7363
|
+
"depth": 0
|
|
7364
|
+
},
|
|
6562
7365
|
{
|
|
6563
7366
|
"source": ".agent-src.uncompressed/skills/check-refs/SKILL.md",
|
|
6564
7367
|
"target": ".agent-src.uncompressed/skills/check-refs/SKILL.md",
|
|
@@ -6566,6 +7369,34 @@
|
|
|
6566
7369
|
"via": "self",
|
|
6567
7370
|
"depth": 0
|
|
6568
7371
|
},
|
|
7372
|
+
{
|
|
7373
|
+
"source": ".agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
7374
|
+
"target": ".agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
7375
|
+
"type": "WRITE",
|
|
7376
|
+
"via": "self",
|
|
7377
|
+
"depth": 0
|
|
7378
|
+
},
|
|
7379
|
+
{
|
|
7380
|
+
"source": ".agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
7381
|
+
"target": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
7382
|
+
"type": "READ_ONLY",
|
|
7383
|
+
"via": "body_link",
|
|
7384
|
+
"depth": 1
|
|
7385
|
+
},
|
|
7386
|
+
{
|
|
7387
|
+
"source": ".agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
7388
|
+
"target": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
7389
|
+
"type": "READ_ONLY",
|
|
7390
|
+
"via": "body_link",
|
|
7391
|
+
"depth": 1
|
|
7392
|
+
},
|
|
7393
|
+
{
|
|
7394
|
+
"source": ".agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
7395
|
+
"target": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
7396
|
+
"type": "READ_ONLY",
|
|
7397
|
+
"via": "body_link",
|
|
7398
|
+
"depth": 1
|
|
7399
|
+
},
|
|
6569
7400
|
{
|
|
6570
7401
|
"source": ".agent-src.uncompressed/skills/code-refactoring/SKILL.md",
|
|
6571
7402
|
"target": ".agent-src.uncompressed/skills/code-refactoring/SKILL.md",
|
|
@@ -6623,112 +7454,238 @@
|
|
|
6623
7454
|
"depth": 1
|
|
6624
7455
|
},
|
|
6625
7456
|
{
|
|
6626
|
-
"source": ".agent-src.uncompressed/skills/
|
|
6627
|
-
"target": ".agent-src.uncompressed/skills/
|
|
7457
|
+
"source": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
7458
|
+
"target": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
6628
7459
|
"type": "WRITE",
|
|
6629
7460
|
"via": "self",
|
|
6630
7461
|
"depth": 0
|
|
6631
7462
|
},
|
|
6632
7463
|
{
|
|
6633
|
-
"source": ".agent-src.uncompressed/skills/
|
|
6634
|
-
"target": ".agent-src.uncompressed/skills/
|
|
7464
|
+
"source": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
7465
|
+
"target": ".agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
6635
7466
|
"type": "READ_ONLY",
|
|
6636
7467
|
"via": "body_link",
|
|
6637
7468
|
"depth": 1
|
|
6638
7469
|
},
|
|
6639
7470
|
{
|
|
6640
|
-
"source": ".agent-src.uncompressed/skills/
|
|
6641
|
-
"target": ".agent-src.uncompressed/skills/
|
|
7471
|
+
"source": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
7472
|
+
"target": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
6642
7473
|
"type": "READ_ONLY",
|
|
6643
7474
|
"via": "body_link",
|
|
6644
7475
|
"depth": 1
|
|
6645
7476
|
},
|
|
6646
7477
|
{
|
|
6647
|
-
"source": ".agent-src.uncompressed/skills/
|
|
6648
|
-
"target": ".agent-src.uncompressed/skills/
|
|
7478
|
+
"source": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
7479
|
+
"target": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
6649
7480
|
"type": "READ_ONLY",
|
|
6650
7481
|
"via": "body_link",
|
|
6651
7482
|
"depth": 1
|
|
6652
7483
|
},
|
|
6653
7484
|
{
|
|
6654
|
-
"source": ".agent-src.uncompressed/skills/competitive-
|
|
6655
|
-
"target": ".agent-src.uncompressed/skills/
|
|
7485
|
+
"source": ".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
7486
|
+
"target": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
6656
7487
|
"type": "READ_ONLY",
|
|
6657
7488
|
"via": "body_link",
|
|
6658
7489
|
"depth": 1
|
|
6659
7490
|
},
|
|
6660
7491
|
{
|
|
6661
|
-
"source": ".agent-src.uncompressed/skills/
|
|
6662
|
-
"target": ".agent-src.uncompressed/skills/
|
|
7492
|
+
"source": ".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
7493
|
+
"target": ".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
6663
7494
|
"type": "WRITE",
|
|
6664
7495
|
"via": "self",
|
|
6665
7496
|
"depth": 0
|
|
6666
7497
|
},
|
|
6667
7498
|
{
|
|
6668
|
-
"source": ".agent-src.uncompressed/skills/
|
|
6669
|
-
"target": ".agent-src.uncompressed/
|
|
7499
|
+
"source": ".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
7500
|
+
"target": ".agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
6670
7501
|
"type": "READ_ONLY",
|
|
6671
7502
|
"via": "body_link",
|
|
6672
7503
|
"depth": 1
|
|
6673
7504
|
},
|
|
6674
7505
|
{
|
|
6675
|
-
"source": ".agent-src.uncompressed/skills/
|
|
6676
|
-
"target": ".agent-src.uncompressed/skills/
|
|
6677
|
-
"type": "WRITE",
|
|
6678
|
-
"via": "self",
|
|
6679
|
-
"depth": 0
|
|
6680
|
-
},
|
|
6681
|
-
{
|
|
6682
|
-
"source": ".agent-src.uncompressed/skills/context-document/SKILL.md",
|
|
6683
|
-
"target": ".agent-src.uncompressed/skills/context-document/SKILL.md",
|
|
6684
|
-
"type": "WRITE",
|
|
6685
|
-
"via": "self",
|
|
6686
|
-
"depth": 0
|
|
6687
|
-
},
|
|
6688
|
-
{
|
|
6689
|
-
"source": ".agent-src.uncompressed/skills/conventional-commits-writing/SKILL.md",
|
|
6690
|
-
"target": ".agent-src.uncompressed/contexts/contracts/frugality-charter.md",
|
|
7506
|
+
"source": ".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
7507
|
+
"target": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
6691
7508
|
"type": "READ_ONLY",
|
|
6692
7509
|
"via": "body_link",
|
|
6693
7510
|
"depth": 1
|
|
6694
7511
|
},
|
|
6695
7512
|
{
|
|
6696
|
-
"source": ".agent-src.uncompressed/skills/
|
|
6697
|
-
"target": ".agent-src.uncompressed/
|
|
7513
|
+
"source": ".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
7514
|
+
"target": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
6698
7515
|
"type": "READ_ONLY",
|
|
6699
7516
|
"via": "body_link",
|
|
6700
7517
|
"depth": 1
|
|
6701
7518
|
},
|
|
6702
7519
|
{
|
|
6703
|
-
"source": ".agent-src.uncompressed/skills/
|
|
6704
|
-
"target": ".agent-src.uncompressed/skills/
|
|
6705
|
-
"type": "
|
|
6706
|
-
"via": "
|
|
6707
|
-
"depth":
|
|
7520
|
+
"source": ".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
7521
|
+
"target": ".agent-src.uncompressed/skills/vision-articulation/SKILL.md",
|
|
7522
|
+
"type": "READ_ONLY",
|
|
7523
|
+
"via": "body_link",
|
|
7524
|
+
"depth": 1
|
|
6708
7525
|
},
|
|
6709
7526
|
{
|
|
6710
|
-
"source": ".agent-src.uncompressed/skills/
|
|
6711
|
-
"target": ".agent-src.uncompressed/skills/
|
|
7527
|
+
"source": ".agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
7528
|
+
"target": ".agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
6712
7529
|
"type": "WRITE",
|
|
6713
7530
|
"via": "self",
|
|
6714
7531
|
"depth": 0
|
|
6715
7532
|
},
|
|
6716
7533
|
{
|
|
6717
|
-
"source": ".agent-src.uncompressed/skills/
|
|
6718
|
-
"target": ".agent-src.uncompressed/skills/
|
|
6719
|
-
"type": "
|
|
6720
|
-
"via": "
|
|
6721
|
-
"depth":
|
|
7534
|
+
"source": ".agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
7535
|
+
"target": ".agent-src.uncompressed/skills/dcf-modeling/SKILL.md",
|
|
7536
|
+
"type": "READ_ONLY",
|
|
7537
|
+
"via": "body_link",
|
|
7538
|
+
"depth": 1
|
|
6722
7539
|
},
|
|
6723
7540
|
{
|
|
6724
|
-
"source": ".agent-src.uncompressed/skills/
|
|
6725
|
-
"target": ".agent-src.uncompressed/
|
|
7541
|
+
"source": ".agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
7542
|
+
"target": ".agent-src.uncompressed/skills/decision-record/SKILL.md",
|
|
6726
7543
|
"type": "READ_ONLY",
|
|
6727
7544
|
"via": "body_link",
|
|
6728
7545
|
"depth": 1
|
|
6729
7546
|
},
|
|
6730
7547
|
{
|
|
6731
|
-
"source": ".agent-src.uncompressed/skills/
|
|
7548
|
+
"source": ".agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
7549
|
+
"target": ".agent-src.uncompressed/skills/stakeholder-tradeoff/SKILL.md",
|
|
7550
|
+
"type": "READ_ONLY",
|
|
7551
|
+
"via": "body_link",
|
|
7552
|
+
"depth": 1
|
|
7553
|
+
},
|
|
7554
|
+
{
|
|
7555
|
+
"source": ".agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
7556
|
+
"target": ".agent-src.uncompressed/skills/upstream-contribute/SKILL.md",
|
|
7557
|
+
"type": "READ_ONLY",
|
|
7558
|
+
"via": "body_link",
|
|
7559
|
+
"depth": 1
|
|
7560
|
+
},
|
|
7561
|
+
{
|
|
7562
|
+
"source": ".agent-src.uncompressed/skills/composer-packages/SKILL.md",
|
|
7563
|
+
"target": ".agent-src.uncompressed/skills/composer-packages/SKILL.md",
|
|
7564
|
+
"type": "WRITE",
|
|
7565
|
+
"via": "self",
|
|
7566
|
+
"depth": 0
|
|
7567
|
+
},
|
|
7568
|
+
{
|
|
7569
|
+
"source": ".agent-src.uncompressed/skills/content-funnel-design/SKILL.md",
|
|
7570
|
+
"target": ".agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
7571
|
+
"type": "READ_ONLY",
|
|
7572
|
+
"via": "body_link",
|
|
7573
|
+
"depth": 1
|
|
7574
|
+
},
|
|
7575
|
+
{
|
|
7576
|
+
"source": ".agent-src.uncompressed/skills/content-funnel-design/SKILL.md",
|
|
7577
|
+
"target": ".agent-src.uncompressed/skills/content-funnel-design/SKILL.md",
|
|
7578
|
+
"type": "WRITE",
|
|
7579
|
+
"via": "self",
|
|
7580
|
+
"depth": 0
|
|
7581
|
+
},
|
|
7582
|
+
{
|
|
7583
|
+
"source": ".agent-src.uncompressed/skills/content-funnel-design/SKILL.md",
|
|
7584
|
+
"target": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
7585
|
+
"type": "READ_ONLY",
|
|
7586
|
+
"via": "body_link",
|
|
7587
|
+
"depth": 1
|
|
7588
|
+
},
|
|
7589
|
+
{
|
|
7590
|
+
"source": ".agent-src.uncompressed/skills/content-funnel-design/SKILL.md",
|
|
7591
|
+
"target": ".agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
7592
|
+
"type": "READ_ONLY",
|
|
7593
|
+
"via": "body_link",
|
|
7594
|
+
"depth": 1
|
|
7595
|
+
},
|
|
7596
|
+
{
|
|
7597
|
+
"source": ".agent-src.uncompressed/skills/context-authoring/SKILL.md",
|
|
7598
|
+
"target": ".agent-src.uncompressed/contexts/contracts/frugality-charter.md",
|
|
7599
|
+
"type": "READ_ONLY",
|
|
7600
|
+
"via": "body_link",
|
|
7601
|
+
"depth": 1
|
|
7602
|
+
},
|
|
7603
|
+
{
|
|
7604
|
+
"source": ".agent-src.uncompressed/skills/context-authoring/SKILL.md",
|
|
7605
|
+
"target": ".agent-src.uncompressed/skills/context-authoring/SKILL.md",
|
|
7606
|
+
"type": "WRITE",
|
|
7607
|
+
"via": "self",
|
|
7608
|
+
"depth": 0
|
|
7609
|
+
},
|
|
7610
|
+
{
|
|
7611
|
+
"source": ".agent-src.uncompressed/skills/context-document/SKILL.md",
|
|
7612
|
+
"target": ".agent-src.uncompressed/skills/context-document/SKILL.md",
|
|
7613
|
+
"type": "WRITE",
|
|
7614
|
+
"via": "self",
|
|
7615
|
+
"depth": 0
|
|
7616
|
+
},
|
|
7617
|
+
{
|
|
7618
|
+
"source": ".agent-src.uncompressed/skills/contracts-cognition/SKILL.md",
|
|
7619
|
+
"target": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
7620
|
+
"type": "READ_ONLY",
|
|
7621
|
+
"via": "body_link",
|
|
7622
|
+
"depth": 1
|
|
7623
|
+
},
|
|
7624
|
+
{
|
|
7625
|
+
"source": ".agent-src.uncompressed/skills/contracts-cognition/SKILL.md",
|
|
7626
|
+
"target": ".agent-src.uncompressed/skills/contracts-cognition/SKILL.md",
|
|
7627
|
+
"type": "WRITE",
|
|
7628
|
+
"via": "self",
|
|
7629
|
+
"depth": 0
|
|
7630
|
+
},
|
|
7631
|
+
{
|
|
7632
|
+
"source": ".agent-src.uncompressed/skills/contracts-cognition/SKILL.md",
|
|
7633
|
+
"target": ".agent-src.uncompressed/skills/data-handling-judgment/SKILL.md",
|
|
7634
|
+
"type": "READ_ONLY",
|
|
7635
|
+
"via": "body_link",
|
|
7636
|
+
"depth": 1
|
|
7637
|
+
},
|
|
7638
|
+
{
|
|
7639
|
+
"source": ".agent-src.uncompressed/skills/contracts-cognition/SKILL.md",
|
|
7640
|
+
"target": ".agent-src.uncompressed/skills/privacy-review/SKILL.md",
|
|
7641
|
+
"type": "READ_ONLY",
|
|
7642
|
+
"via": "body_link",
|
|
7643
|
+
"depth": 1
|
|
7644
|
+
},
|
|
7645
|
+
{
|
|
7646
|
+
"source": ".agent-src.uncompressed/skills/conventional-commits-writing/SKILL.md",
|
|
7647
|
+
"target": ".agent-src.uncompressed/contexts/contracts/frugality-charter.md",
|
|
7648
|
+
"type": "READ_ONLY",
|
|
7649
|
+
"via": "body_link",
|
|
7650
|
+
"depth": 1
|
|
7651
|
+
},
|
|
7652
|
+
{
|
|
7653
|
+
"source": ".agent-src.uncompressed/skills/conventional-commits-writing/SKILL.md",
|
|
7654
|
+
"target": ".agent-src.uncompressed/rules/no-attribution-footers.md",
|
|
7655
|
+
"type": "READ_ONLY",
|
|
7656
|
+
"via": "body_link",
|
|
7657
|
+
"depth": 1
|
|
7658
|
+
},
|
|
7659
|
+
{
|
|
7660
|
+
"source": ".agent-src.uncompressed/skills/conventional-commits-writing/SKILL.md",
|
|
7661
|
+
"target": ".agent-src.uncompressed/skills/conventional-commits-writing/SKILL.md",
|
|
7662
|
+
"type": "WRITE",
|
|
7663
|
+
"via": "self",
|
|
7664
|
+
"depth": 0
|
|
7665
|
+
},
|
|
7666
|
+
{
|
|
7667
|
+
"source": ".agent-src.uncompressed/skills/copilot-agents-optimization/SKILL.md",
|
|
7668
|
+
"target": ".agent-src.uncompressed/skills/copilot-agents-optimization/SKILL.md",
|
|
7669
|
+
"type": "WRITE",
|
|
7670
|
+
"via": "self",
|
|
7671
|
+
"depth": 0
|
|
7672
|
+
},
|
|
7673
|
+
{
|
|
7674
|
+
"source": ".agent-src.uncompressed/skills/copilot-config/SKILL.md",
|
|
7675
|
+
"target": ".agent-src.uncompressed/skills/copilot-config/SKILL.md",
|
|
7676
|
+
"type": "WRITE",
|
|
7677
|
+
"via": "self",
|
|
7678
|
+
"depth": 0
|
|
7679
|
+
},
|
|
7680
|
+
{
|
|
7681
|
+
"source": ".agent-src.uncompressed/skills/customer-research/SKILL.md",
|
|
7682
|
+
"target": ".agent-src.uncompressed/personas/product-owner.md",
|
|
7683
|
+
"type": "READ_ONLY",
|
|
7684
|
+
"via": "body_link",
|
|
7685
|
+
"depth": 1
|
|
7686
|
+
},
|
|
7687
|
+
{
|
|
7688
|
+
"source": ".agent-src.uncompressed/skills/customer-research/SKILL.md",
|
|
6732
7689
|
"target": ".agent-src.uncompressed/skills/customer-research/SKILL.md",
|
|
6733
7690
|
"type": "WRITE",
|
|
6734
7691
|
"via": "self",
|
|
@@ -6804,6 +7761,27 @@
|
|
|
6804
7761
|
"via": "body_link",
|
|
6805
7762
|
"depth": 1
|
|
6806
7763
|
},
|
|
7764
|
+
{
|
|
7765
|
+
"source": ".agent-src.uncompressed/skills/data-handling-judgment/SKILL.md",
|
|
7766
|
+
"target": ".agent-src.uncompressed/skills/contracts-cognition/SKILL.md",
|
|
7767
|
+
"type": "READ_ONLY",
|
|
7768
|
+
"via": "body_link",
|
|
7769
|
+
"depth": 1
|
|
7770
|
+
},
|
|
7771
|
+
{
|
|
7772
|
+
"source": ".agent-src.uncompressed/skills/data-handling-judgment/SKILL.md",
|
|
7773
|
+
"target": ".agent-src.uncompressed/skills/data-handling-judgment/SKILL.md",
|
|
7774
|
+
"type": "WRITE",
|
|
7775
|
+
"via": "self",
|
|
7776
|
+
"depth": 0
|
|
7777
|
+
},
|
|
7778
|
+
{
|
|
7779
|
+
"source": ".agent-src.uncompressed/skills/data-handling-judgment/SKILL.md",
|
|
7780
|
+
"target": ".agent-src.uncompressed/skills/privacy-review/SKILL.md",
|
|
7781
|
+
"type": "READ_ONLY",
|
|
7782
|
+
"via": "body_link",
|
|
7783
|
+
"depth": 1
|
|
7784
|
+
},
|
|
6807
7785
|
{
|
|
6808
7786
|
"source": ".agent-src.uncompressed/skills/database/SKILL.md",
|
|
6809
7787
|
"target": ".agent-src.uncompressed/skills/database/SKILL.md",
|
|
@@ -6839,6 +7817,34 @@
|
|
|
6839
7817
|
"via": "body_link",
|
|
6840
7818
|
"depth": 1
|
|
6841
7819
|
},
|
|
7820
|
+
{
|
|
7821
|
+
"source": ".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
7822
|
+
"target": ".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
7823
|
+
"type": "WRITE",
|
|
7824
|
+
"via": "self",
|
|
7825
|
+
"depth": 0
|
|
7826
|
+
},
|
|
7827
|
+
{
|
|
7828
|
+
"source": ".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
7829
|
+
"target": ".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
7830
|
+
"type": "READ_ONLY",
|
|
7831
|
+
"via": "body_link",
|
|
7832
|
+
"depth": 1
|
|
7833
|
+
},
|
|
7834
|
+
{
|
|
7835
|
+
"source": ".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
7836
|
+
"target": ".agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
7837
|
+
"type": "READ_ONLY",
|
|
7838
|
+
"via": "body_link",
|
|
7839
|
+
"depth": 1
|
|
7840
|
+
},
|
|
7841
|
+
{
|
|
7842
|
+
"source": ".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
7843
|
+
"target": ".agent-src.uncompressed/skills/pipeline-strategy/SKILL.md",
|
|
7844
|
+
"type": "READ_ONLY",
|
|
7845
|
+
"via": "body_link",
|
|
7846
|
+
"depth": 1
|
|
7847
|
+
},
|
|
6842
7848
|
{
|
|
6843
7849
|
"source": ".agent-src.uncompressed/skills/decision-record/SKILL.md",
|
|
6844
7850
|
"target": ".agent-src.uncompressed/skills/adr-create/SKILL.md",
|
|
@@ -6972,6 +7978,20 @@
|
|
|
6972
7978
|
"via": "body_link",
|
|
6973
7979
|
"depth": 1
|
|
6974
7980
|
},
|
|
7981
|
+
{
|
|
7982
|
+
"source": ".agent-src.uncompressed/skills/doc-coauthoring/SKILL.md",
|
|
7983
|
+
"target": ".agent-src.uncompressed/contexts/contracts/frugality-charter.md",
|
|
7984
|
+
"type": "READ_ONLY",
|
|
7985
|
+
"via": "body_link",
|
|
7986
|
+
"depth": 1
|
|
7987
|
+
},
|
|
7988
|
+
{
|
|
7989
|
+
"source": ".agent-src.uncompressed/skills/doc-coauthoring/SKILL.md",
|
|
7990
|
+
"target": ".agent-src.uncompressed/skills/doc-coauthoring/SKILL.md",
|
|
7991
|
+
"type": "WRITE",
|
|
7992
|
+
"via": "self",
|
|
7993
|
+
"depth": 0
|
|
7994
|
+
},
|
|
6975
7995
|
{
|
|
6976
7996
|
"source": ".agent-src.uncompressed/skills/docker/SKILL.md",
|
|
6977
7997
|
"target": ".agent-src.uncompressed/skills/docker/SKILL.md",
|
|
@@ -6986,6 +8006,48 @@
|
|
|
6986
8006
|
"via": "self",
|
|
6987
8007
|
"depth": 0
|
|
6988
8008
|
},
|
|
8009
|
+
{
|
|
8010
|
+
"source": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
8011
|
+
"target": ".agent-src.uncompressed/skills/content-funnel-design/SKILL.md",
|
|
8012
|
+
"type": "READ_ONLY",
|
|
8013
|
+
"via": "body_link",
|
|
8014
|
+
"depth": 1
|
|
8015
|
+
},
|
|
8016
|
+
{
|
|
8017
|
+
"source": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
8018
|
+
"target": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
8019
|
+
"type": "WRITE",
|
|
8020
|
+
"via": "self",
|
|
8021
|
+
"depth": 0
|
|
8022
|
+
},
|
|
8023
|
+
{
|
|
8024
|
+
"source": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
8025
|
+
"target": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
8026
|
+
"type": "READ_ONLY",
|
|
8027
|
+
"via": "body_link",
|
|
8028
|
+
"depth": 1
|
|
8029
|
+
},
|
|
8030
|
+
{
|
|
8031
|
+
"source": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
8032
|
+
"target": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
8033
|
+
"type": "READ_ONLY",
|
|
8034
|
+
"via": "body_link",
|
|
8035
|
+
"depth": 1
|
|
8036
|
+
},
|
|
8037
|
+
{
|
|
8038
|
+
"source": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
8039
|
+
"target": ".agent-src.uncompressed/skills/release-comms/SKILL.md",
|
|
8040
|
+
"type": "READ_ONLY",
|
|
8041
|
+
"via": "body_link",
|
|
8042
|
+
"depth": 1
|
|
8043
|
+
},
|
|
8044
|
+
{
|
|
8045
|
+
"source": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
8046
|
+
"target": ".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md",
|
|
8047
|
+
"type": "READ_ONLY",
|
|
8048
|
+
"via": "body_link",
|
|
8049
|
+
"depth": 1
|
|
8050
|
+
},
|
|
6989
8051
|
{
|
|
6990
8052
|
"source": ".agent-src.uncompressed/skills/eloquent/SKILL.md",
|
|
6991
8053
|
"target": ".agent-src.uncompressed/skills/eloquent/SKILL.md",
|
|
@@ -7063,6 +8125,41 @@
|
|
|
7063
8125
|
"via": "self",
|
|
7064
8126
|
"depth": 0
|
|
7065
8127
|
},
|
|
8128
|
+
{
|
|
8129
|
+
"source": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
8130
|
+
"target": ".agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
8131
|
+
"type": "READ_ONLY",
|
|
8132
|
+
"via": "body_link",
|
|
8133
|
+
"depth": 1
|
|
8134
|
+
},
|
|
8135
|
+
{
|
|
8136
|
+
"source": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
8137
|
+
"target": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
8138
|
+
"type": "WRITE",
|
|
8139
|
+
"via": "self",
|
|
8140
|
+
"depth": 0
|
|
8141
|
+
},
|
|
8142
|
+
{
|
|
8143
|
+
"source": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
8144
|
+
"target": ".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
8145
|
+
"type": "READ_ONLY",
|
|
8146
|
+
"via": "body_link",
|
|
8147
|
+
"depth": 1
|
|
8148
|
+
},
|
|
8149
|
+
{
|
|
8150
|
+
"source": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
8151
|
+
"target": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
8152
|
+
"type": "READ_ONLY",
|
|
8153
|
+
"via": "body_link",
|
|
8154
|
+
"depth": 1
|
|
8155
|
+
},
|
|
8156
|
+
{
|
|
8157
|
+
"source": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
8158
|
+
"target": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
8159
|
+
"type": "READ_ONLY",
|
|
8160
|
+
"via": "body_link",
|
|
8161
|
+
"depth": 1
|
|
8162
|
+
},
|
|
7066
8163
|
{
|
|
7067
8164
|
"source": ".agent-src.uncompressed/skills/fe-design/SKILL.md",
|
|
7068
8165
|
"target": ".agent-src.uncompressed/skills/blade-ui/SKILL.md",
|
|
@@ -7224,6 +8321,62 @@
|
|
|
7224
8321
|
"via": "body_link",
|
|
7225
8322
|
"depth": 1
|
|
7226
8323
|
},
|
|
8324
|
+
{
|
|
8325
|
+
"source": ".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
8326
|
+
"target": ".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
8327
|
+
"type": "READ_ONLY",
|
|
8328
|
+
"via": "body_link",
|
|
8329
|
+
"depth": 1
|
|
8330
|
+
},
|
|
8331
|
+
{
|
|
8332
|
+
"source": ".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
8333
|
+
"target": ".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
8334
|
+
"type": "WRITE",
|
|
8335
|
+
"via": "self",
|
|
8336
|
+
"depth": 0
|
|
8337
|
+
},
|
|
8338
|
+
{
|
|
8339
|
+
"source": ".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
8340
|
+
"target": ".agent-src.uncompressed/skills/pipeline-strategy/SKILL.md",
|
|
8341
|
+
"type": "READ_ONLY",
|
|
8342
|
+
"via": "body_link",
|
|
8343
|
+
"depth": 1
|
|
8344
|
+
},
|
|
8345
|
+
{
|
|
8346
|
+
"source": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
8347
|
+
"target": ".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
8348
|
+
"type": "READ_ONLY",
|
|
8349
|
+
"via": "body_link",
|
|
8350
|
+
"depth": 1
|
|
8351
|
+
},
|
|
8352
|
+
{
|
|
8353
|
+
"source": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
8354
|
+
"target": ".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
8355
|
+
"type": "READ_ONLY",
|
|
8356
|
+
"via": "body_link",
|
|
8357
|
+
"depth": 1
|
|
8358
|
+
},
|
|
8359
|
+
{
|
|
8360
|
+
"source": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
8361
|
+
"target": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
8362
|
+
"type": "WRITE",
|
|
8363
|
+
"via": "self",
|
|
8364
|
+
"depth": 0
|
|
8365
|
+
},
|
|
8366
|
+
{
|
|
8367
|
+
"source": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
8368
|
+
"target": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
8369
|
+
"type": "READ_ONLY",
|
|
8370
|
+
"via": "body_link",
|
|
8371
|
+
"depth": 1
|
|
8372
|
+
},
|
|
8373
|
+
{
|
|
8374
|
+
"source": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
8375
|
+
"target": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
8376
|
+
"type": "READ_ONLY",
|
|
8377
|
+
"via": "body_link",
|
|
8378
|
+
"depth": 1
|
|
8379
|
+
},
|
|
7227
8380
|
{
|
|
7228
8381
|
"source": ".agent-src.uncompressed/skills/form-handler/SKILL.md",
|
|
7229
8382
|
"target": ".agent-src.uncompressed/skills/accessibility-auditor/SKILL.md",
|
|
@@ -7259,6 +8412,27 @@
|
|
|
7259
8412
|
"via": "body_link",
|
|
7260
8413
|
"depth": 1
|
|
7261
8414
|
},
|
|
8415
|
+
{
|
|
8416
|
+
"source": ".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
8417
|
+
"target": ".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
8418
|
+
"type": "WRITE",
|
|
8419
|
+
"via": "self",
|
|
8420
|
+
"depth": 0
|
|
8421
|
+
},
|
|
8422
|
+
{
|
|
8423
|
+
"source": ".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
8424
|
+
"target": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
8425
|
+
"type": "READ_ONLY",
|
|
8426
|
+
"via": "body_link",
|
|
8427
|
+
"depth": 1
|
|
8428
|
+
},
|
|
8429
|
+
{
|
|
8430
|
+
"source": ".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
8431
|
+
"target": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
8432
|
+
"type": "READ_ONLY",
|
|
8433
|
+
"via": "body_link",
|
|
8434
|
+
"depth": 1
|
|
8435
|
+
},
|
|
7262
8436
|
{
|
|
7263
8437
|
"source": ".agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
7264
8438
|
"target": ".agent-src.uncompressed/skills/dcf-modeling/SKILL.md",
|
|
@@ -7309,11 +8483,53 @@
|
|
|
7309
8483
|
"depth": 0
|
|
7310
8484
|
},
|
|
7311
8485
|
{
|
|
7312
|
-
"source": ".agent-src.uncompressed/skills/grafana/SKILL.md",
|
|
7313
|
-
"target": ".agent-src.uncompressed/skills/grafana/SKILL.md",
|
|
7314
|
-
"type": "WRITE",
|
|
7315
|
-
"via": "self",
|
|
7316
|
-
"depth": 0
|
|
8486
|
+
"source": ".agent-src.uncompressed/skills/grafana/SKILL.md",
|
|
8487
|
+
"target": ".agent-src.uncompressed/skills/grafana/SKILL.md",
|
|
8488
|
+
"type": "WRITE",
|
|
8489
|
+
"via": "self",
|
|
8490
|
+
"depth": 0
|
|
8491
|
+
},
|
|
8492
|
+
{
|
|
8493
|
+
"source": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
8494
|
+
"target": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
8495
|
+
"type": "READ_ONLY",
|
|
8496
|
+
"via": "body_link",
|
|
8497
|
+
"depth": 1
|
|
8498
|
+
},
|
|
8499
|
+
{
|
|
8500
|
+
"source": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
8501
|
+
"target": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
8502
|
+
"type": "WRITE",
|
|
8503
|
+
"via": "self",
|
|
8504
|
+
"depth": 0
|
|
8505
|
+
},
|
|
8506
|
+
{
|
|
8507
|
+
"source": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
8508
|
+
"target": ".agent-src.uncompressed/skills/launch-readiness/SKILL.md",
|
|
8509
|
+
"type": "READ_ONLY",
|
|
8510
|
+
"via": "body_link",
|
|
8511
|
+
"depth": 1
|
|
8512
|
+
},
|
|
8513
|
+
{
|
|
8514
|
+
"source": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
8515
|
+
"target": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
8516
|
+
"type": "READ_ONLY",
|
|
8517
|
+
"via": "body_link",
|
|
8518
|
+
"depth": 1
|
|
8519
|
+
},
|
|
8520
|
+
{
|
|
8521
|
+
"source": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
8522
|
+
"target": ".agent-src.uncompressed/skills/release-comms/SKILL.md",
|
|
8523
|
+
"type": "READ_ONLY",
|
|
8524
|
+
"via": "body_link",
|
|
8525
|
+
"depth": 1
|
|
8526
|
+
},
|
|
8527
|
+
{
|
|
8528
|
+
"source": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
8529
|
+
"target": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
8530
|
+
"type": "READ_ONLY",
|
|
8531
|
+
"via": "body_link",
|
|
8532
|
+
"depth": 1
|
|
7317
8533
|
},
|
|
7318
8534
|
{
|
|
7319
8535
|
"source": ".agent-src.uncompressed/skills/guideline-writing/SKILL.md",
|
|
@@ -7350,6 +8566,34 @@
|
|
|
7350
8566
|
"via": "self",
|
|
7351
8567
|
"depth": 0
|
|
7352
8568
|
},
|
|
8569
|
+
{
|
|
8570
|
+
"source": ".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
8571
|
+
"target": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
8572
|
+
"type": "READ_ONLY",
|
|
8573
|
+
"via": "body_link",
|
|
8574
|
+
"depth": 1
|
|
8575
|
+
},
|
|
8576
|
+
{
|
|
8577
|
+
"source": ".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
8578
|
+
"target": ".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
8579
|
+
"type": "WRITE",
|
|
8580
|
+
"via": "self",
|
|
8581
|
+
"depth": 0
|
|
8582
|
+
},
|
|
8583
|
+
{
|
|
8584
|
+
"source": ".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
8585
|
+
"target": ".agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
8586
|
+
"type": "READ_ONLY",
|
|
8587
|
+
"via": "body_link",
|
|
8588
|
+
"depth": 1
|
|
8589
|
+
},
|
|
8590
|
+
{
|
|
8591
|
+
"source": ".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
8592
|
+
"target": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
8593
|
+
"type": "READ_ONLY",
|
|
8594
|
+
"via": "body_link",
|
|
8595
|
+
"depth": 1
|
|
8596
|
+
},
|
|
7353
8597
|
{
|
|
7354
8598
|
"source": ".agent-src.uncompressed/skills/incident-commander/SKILL.md",
|
|
7355
8599
|
"target": ".agent-src.uncompressed/skills/incident-commander/SKILL.md",
|
|
@@ -7798,6 +9042,48 @@
|
|
|
7798
9042
|
"via": "self",
|
|
7799
9043
|
"depth": 0
|
|
7800
9044
|
},
|
|
9045
|
+
{
|
|
9046
|
+
"source": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
9047
|
+
"target": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
9048
|
+
"type": "READ_ONLY",
|
|
9049
|
+
"via": "body_link",
|
|
9050
|
+
"depth": 1
|
|
9051
|
+
},
|
|
9052
|
+
{
|
|
9053
|
+
"source": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
9054
|
+
"target": ".agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
9055
|
+
"type": "READ_ONLY",
|
|
9056
|
+
"via": "body_link",
|
|
9057
|
+
"depth": 1
|
|
9058
|
+
},
|
|
9059
|
+
{
|
|
9060
|
+
"source": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
9061
|
+
"target": ".agent-src.uncompressed/skills/content-funnel-design/SKILL.md",
|
|
9062
|
+
"type": "READ_ONLY",
|
|
9063
|
+
"via": "body_link",
|
|
9064
|
+
"depth": 1
|
|
9065
|
+
},
|
|
9066
|
+
{
|
|
9067
|
+
"source": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
9068
|
+
"target": ".agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
9069
|
+
"type": "READ_ONLY",
|
|
9070
|
+
"via": "body_link",
|
|
9071
|
+
"depth": 1
|
|
9072
|
+
},
|
|
9073
|
+
{
|
|
9074
|
+
"source": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
9075
|
+
"target": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
9076
|
+
"type": "WRITE",
|
|
9077
|
+
"via": "self",
|
|
9078
|
+
"depth": 0
|
|
9079
|
+
},
|
|
9080
|
+
{
|
|
9081
|
+
"source": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
9082
|
+
"target": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
9083
|
+
"type": "READ_ONLY",
|
|
9084
|
+
"via": "body_link",
|
|
9085
|
+
"depth": 1
|
|
9086
|
+
},
|
|
7801
9087
|
{
|
|
7802
9088
|
"source": ".agent-src.uncompressed/skills/markitdown/SKILL.md",
|
|
7803
9089
|
"target": ".agent-src.uncompressed/commands/analyze-reference-repo.md",
|
|
@@ -7882,6 +9168,55 @@
|
|
|
7882
9168
|
"via": "self",
|
|
7883
9169
|
"depth": 0
|
|
7884
9170
|
},
|
|
9171
|
+
{
|
|
9172
|
+
"source": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
9173
|
+
"target": ".agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
9174
|
+
"type": "READ_ONLY",
|
|
9175
|
+
"via": "body_link",
|
|
9176
|
+
"depth": 1
|
|
9177
|
+
},
|
|
9178
|
+
{
|
|
9179
|
+
"source": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
9180
|
+
"target": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
9181
|
+
"type": "READ_ONLY",
|
|
9182
|
+
"via": "body_link",
|
|
9183
|
+
"depth": 1
|
|
9184
|
+
},
|
|
9185
|
+
{
|
|
9186
|
+
"source": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
9187
|
+
"target": ".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
9188
|
+
"type": "READ_ONLY",
|
|
9189
|
+
"via": "body_link",
|
|
9190
|
+
"depth": 1
|
|
9191
|
+
},
|
|
9192
|
+
{
|
|
9193
|
+
"source": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
9194
|
+
"target": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
9195
|
+
"type": "READ_ONLY",
|
|
9196
|
+
"via": "body_link",
|
|
9197
|
+
"depth": 1
|
|
9198
|
+
},
|
|
9199
|
+
{
|
|
9200
|
+
"source": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
9201
|
+
"target": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
9202
|
+
"type": "WRITE",
|
|
9203
|
+
"via": "self",
|
|
9204
|
+
"depth": 0
|
|
9205
|
+
},
|
|
9206
|
+
{
|
|
9207
|
+
"source": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
9208
|
+
"target": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
9209
|
+
"type": "READ_ONLY",
|
|
9210
|
+
"via": "body_link",
|
|
9211
|
+
"depth": 1
|
|
9212
|
+
},
|
|
9213
|
+
{
|
|
9214
|
+
"source": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
9215
|
+
"target": ".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md",
|
|
9216
|
+
"type": "READ_ONLY",
|
|
9217
|
+
"via": "body_link",
|
|
9218
|
+
"depth": 1
|
|
9219
|
+
},
|
|
7885
9220
|
{
|
|
7886
9221
|
"source": ".agent-src.uncompressed/skills/migration-architect/SKILL.md",
|
|
7887
9222
|
"target": ".agent-src.uncompressed/skills/data-flow-mapper/SKILL.md",
|
|
@@ -7938,6 +9273,13 @@
|
|
|
7938
9273
|
"via": "self",
|
|
7939
9274
|
"depth": 0
|
|
7940
9275
|
},
|
|
9276
|
+
{
|
|
9277
|
+
"source": ".agent-src.uncompressed/skills/nextjs-patterns/SKILL.md",
|
|
9278
|
+
"target": ".agent-src.uncompressed/skills/nextjs-patterns/SKILL.md",
|
|
9279
|
+
"type": "WRITE",
|
|
9280
|
+
"via": "self",
|
|
9281
|
+
"depth": 0
|
|
9282
|
+
},
|
|
7941
9283
|
{
|
|
7942
9284
|
"source": ".agent-src.uncompressed/skills/okr-tree-modeling/SKILL.md",
|
|
7943
9285
|
"target": ".agent-src.uncompressed/skills/dcf-modeling/SKILL.md",
|
|
@@ -7966,6 +9308,111 @@
|
|
|
7966
9308
|
"via": "body_link",
|
|
7967
9309
|
"depth": 1
|
|
7968
9310
|
},
|
|
9311
|
+
{
|
|
9312
|
+
"source": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
9313
|
+
"target": ".agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
9314
|
+
"type": "READ_ONLY",
|
|
9315
|
+
"via": "body_link",
|
|
9316
|
+
"depth": 1
|
|
9317
|
+
},
|
|
9318
|
+
{
|
|
9319
|
+
"source": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
9320
|
+
"target": ".agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
9321
|
+
"type": "READ_ONLY",
|
|
9322
|
+
"via": "body_link",
|
|
9323
|
+
"depth": 1
|
|
9324
|
+
},
|
|
9325
|
+
{
|
|
9326
|
+
"source": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
9327
|
+
"target": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
9328
|
+
"type": "READ_ONLY",
|
|
9329
|
+
"via": "body_link",
|
|
9330
|
+
"depth": 1
|
|
9331
|
+
},
|
|
9332
|
+
{
|
|
9333
|
+
"source": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
9334
|
+
"target": ".agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
9335
|
+
"type": "READ_ONLY",
|
|
9336
|
+
"via": "body_link",
|
|
9337
|
+
"depth": 1
|
|
9338
|
+
},
|
|
9339
|
+
{
|
|
9340
|
+
"source": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
9341
|
+
"target": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
9342
|
+
"type": "WRITE",
|
|
9343
|
+
"via": "self",
|
|
9344
|
+
"depth": 0
|
|
9345
|
+
},
|
|
9346
|
+
{
|
|
9347
|
+
"source": ".agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
9348
|
+
"target": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
9349
|
+
"type": "READ_ONLY",
|
|
9350
|
+
"via": "body_link",
|
|
9351
|
+
"depth": 1
|
|
9352
|
+
},
|
|
9353
|
+
{
|
|
9354
|
+
"source": ".agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
9355
|
+
"target": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
9356
|
+
"type": "READ_ONLY",
|
|
9357
|
+
"via": "body_link",
|
|
9358
|
+
"depth": 1
|
|
9359
|
+
},
|
|
9360
|
+
{
|
|
9361
|
+
"source": ".agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
9362
|
+
"target": ".agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
9363
|
+
"type": "WRITE",
|
|
9364
|
+
"via": "self",
|
|
9365
|
+
"depth": 0
|
|
9366
|
+
},
|
|
9367
|
+
{
|
|
9368
|
+
"source": ".agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
9369
|
+
"target": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
9370
|
+
"type": "READ_ONLY",
|
|
9371
|
+
"via": "body_link",
|
|
9372
|
+
"depth": 1
|
|
9373
|
+
},
|
|
9374
|
+
{
|
|
9375
|
+
"source": ".agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
9376
|
+
"target": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9377
|
+
"type": "READ_ONLY",
|
|
9378
|
+
"via": "body_link",
|
|
9379
|
+
"depth": 1
|
|
9380
|
+
},
|
|
9381
|
+
{
|
|
9382
|
+
"source": ".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
9383
|
+
"target": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
9384
|
+
"type": "READ_ONLY",
|
|
9385
|
+
"via": "body_link",
|
|
9386
|
+
"depth": 1
|
|
9387
|
+
},
|
|
9388
|
+
{
|
|
9389
|
+
"source": ".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
9390
|
+
"target": ".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
9391
|
+
"type": "READ_ONLY",
|
|
9392
|
+
"via": "body_link",
|
|
9393
|
+
"depth": 1
|
|
9394
|
+
},
|
|
9395
|
+
{
|
|
9396
|
+
"source": ".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
9397
|
+
"target": ".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
9398
|
+
"type": "WRITE",
|
|
9399
|
+
"via": "self",
|
|
9400
|
+
"depth": 0
|
|
9401
|
+
},
|
|
9402
|
+
{
|
|
9403
|
+
"source": ".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
9404
|
+
"target": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9405
|
+
"type": "READ_ONLY",
|
|
9406
|
+
"via": "body_link",
|
|
9407
|
+
"depth": 1
|
|
9408
|
+
},
|
|
9409
|
+
{
|
|
9410
|
+
"source": ".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
9411
|
+
"target": ".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md",
|
|
9412
|
+
"type": "READ_ONLY",
|
|
9413
|
+
"via": "body_link",
|
|
9414
|
+
"depth": 1
|
|
9415
|
+
},
|
|
7969
9416
|
{
|
|
7970
9417
|
"source": ".agent-src.uncompressed/skills/openapi/SKILL.md",
|
|
7971
9418
|
"target": ".agent-src.uncompressed/skills/openapi/SKILL.md",
|
|
@@ -7973,6 +9420,27 @@
|
|
|
7973
9420
|
"via": "self",
|
|
7974
9421
|
"depth": 0
|
|
7975
9422
|
},
|
|
9423
|
+
{
|
|
9424
|
+
"source": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
9425
|
+
"target": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
9426
|
+
"type": "READ_ONLY",
|
|
9427
|
+
"via": "body_link",
|
|
9428
|
+
"depth": 1
|
|
9429
|
+
},
|
|
9430
|
+
{
|
|
9431
|
+
"source": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
9432
|
+
"target": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
9433
|
+
"type": "WRITE",
|
|
9434
|
+
"via": "self",
|
|
9435
|
+
"depth": 0
|
|
9436
|
+
},
|
|
9437
|
+
{
|
|
9438
|
+
"source": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
9439
|
+
"target": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9440
|
+
"type": "READ_ONLY",
|
|
9441
|
+
"via": "body_link",
|
|
9442
|
+
"depth": 1
|
|
9443
|
+
},
|
|
7976
9444
|
{
|
|
7977
9445
|
"source": ".agent-src.uncompressed/skills/override-management/SKILL.md",
|
|
7978
9446
|
"target": ".agent-src.uncompressed/skills/override-management/SKILL.md",
|
|
@@ -7980,6 +9448,41 @@
|
|
|
7980
9448
|
"via": "self",
|
|
7981
9449
|
"depth": 0
|
|
7982
9450
|
},
|
|
9451
|
+
{
|
|
9452
|
+
"source": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9453
|
+
"target": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
9454
|
+
"type": "READ_ONLY",
|
|
9455
|
+
"via": "body_link",
|
|
9456
|
+
"depth": 1
|
|
9457
|
+
},
|
|
9458
|
+
{
|
|
9459
|
+
"source": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9460
|
+
"target": ".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
9461
|
+
"type": "READ_ONLY",
|
|
9462
|
+
"via": "body_link",
|
|
9463
|
+
"depth": 1
|
|
9464
|
+
},
|
|
9465
|
+
{
|
|
9466
|
+
"source": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9467
|
+
"target": ".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
9468
|
+
"type": "READ_ONLY",
|
|
9469
|
+
"via": "body_link",
|
|
9470
|
+
"depth": 1
|
|
9471
|
+
},
|
|
9472
|
+
{
|
|
9473
|
+
"source": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9474
|
+
"target": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
9475
|
+
"type": "READ_ONLY",
|
|
9476
|
+
"via": "body_link",
|
|
9477
|
+
"depth": 1
|
|
9478
|
+
},
|
|
9479
|
+
{
|
|
9480
|
+
"source": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9481
|
+
"target": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9482
|
+
"type": "WRITE",
|
|
9483
|
+
"via": "self",
|
|
9484
|
+
"depth": 0
|
|
9485
|
+
},
|
|
7983
9486
|
{
|
|
7984
9487
|
"source": ".agent-src.uncompressed/skills/performance-analysis/SKILL.md",
|
|
7985
9488
|
"target": ".agent-src.uncompressed/skills/performance-analysis/SKILL.md",
|
|
@@ -8058,22 +9561,50 @@
|
|
|
8058
9561
|
"depth": 1
|
|
8059
9562
|
},
|
|
8060
9563
|
{
|
|
8061
|
-
"source": ".agent-src.uncompressed/skills/php-coder/SKILL.md",
|
|
8062
|
-
"target": ".agent-src.uncompressed/skills/php-coder/SKILL.md",
|
|
8063
|
-
"type": "WRITE",
|
|
8064
|
-
"via": "self",
|
|
8065
|
-
"depth": 0
|
|
8066
|
-
},
|
|
8067
|
-
{
|
|
8068
|
-
"source": ".agent-src.uncompressed/skills/php-debugging/SKILL.md",
|
|
8069
|
-
"target": ".agent-src.uncompressed/skills/php-debugging/SKILL.md",
|
|
8070
|
-
"type": "WRITE",
|
|
8071
|
-
"via": "self",
|
|
8072
|
-
"depth": 0
|
|
8073
|
-
},
|
|
8074
|
-
{
|
|
8075
|
-
"source": ".agent-src.uncompressed/skills/php-service/SKILL.md",
|
|
8076
|
-
"target": ".agent-src.uncompressed/skills/php-service/SKILL.md",
|
|
9564
|
+
"source": ".agent-src.uncompressed/skills/php-coder/SKILL.md",
|
|
9565
|
+
"target": ".agent-src.uncompressed/skills/php-coder/SKILL.md",
|
|
9566
|
+
"type": "WRITE",
|
|
9567
|
+
"via": "self",
|
|
9568
|
+
"depth": 0
|
|
9569
|
+
},
|
|
9570
|
+
{
|
|
9571
|
+
"source": ".agent-src.uncompressed/skills/php-debugging/SKILL.md",
|
|
9572
|
+
"target": ".agent-src.uncompressed/skills/php-debugging/SKILL.md",
|
|
9573
|
+
"type": "WRITE",
|
|
9574
|
+
"via": "self",
|
|
9575
|
+
"depth": 0
|
|
9576
|
+
},
|
|
9577
|
+
{
|
|
9578
|
+
"source": ".agent-src.uncompressed/skills/php-service/SKILL.md",
|
|
9579
|
+
"target": ".agent-src.uncompressed/skills/php-service/SKILL.md",
|
|
9580
|
+
"type": "WRITE",
|
|
9581
|
+
"via": "self",
|
|
9582
|
+
"depth": 0
|
|
9583
|
+
},
|
|
9584
|
+
{
|
|
9585
|
+
"source": ".agent-src.uncompressed/skills/pipeline-strategy/SKILL.md",
|
|
9586
|
+
"target": ".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
9587
|
+
"type": "READ_ONLY",
|
|
9588
|
+
"via": "body_link",
|
|
9589
|
+
"depth": 1
|
|
9590
|
+
},
|
|
9591
|
+
{
|
|
9592
|
+
"source": ".agent-src.uncompressed/skills/pipeline-strategy/SKILL.md",
|
|
9593
|
+
"target": ".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
9594
|
+
"type": "READ_ONLY",
|
|
9595
|
+
"via": "body_link",
|
|
9596
|
+
"depth": 1
|
|
9597
|
+
},
|
|
9598
|
+
{
|
|
9599
|
+
"source": ".agent-src.uncompressed/skills/pipeline-strategy/SKILL.md",
|
|
9600
|
+
"target": ".agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
9601
|
+
"type": "READ_ONLY",
|
|
9602
|
+
"via": "body_link",
|
|
9603
|
+
"depth": 1
|
|
9604
|
+
},
|
|
9605
|
+
{
|
|
9606
|
+
"source": ".agent-src.uncompressed/skills/pipeline-strategy/SKILL.md",
|
|
9607
|
+
"target": ".agent-src.uncompressed/skills/pipeline-strategy/SKILL.md",
|
|
8077
9608
|
"type": "WRITE",
|
|
8078
9609
|
"via": "self",
|
|
8079
9610
|
"depth": 0
|
|
@@ -8120,6 +9651,69 @@
|
|
|
8120
9651
|
"via": "body_link",
|
|
8121
9652
|
"depth": 1
|
|
8122
9653
|
},
|
|
9654
|
+
{
|
|
9655
|
+
"source": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
9656
|
+
"target": ".agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
9657
|
+
"type": "READ_ONLY",
|
|
9658
|
+
"via": "body_link",
|
|
9659
|
+
"depth": 1
|
|
9660
|
+
},
|
|
9661
|
+
{
|
|
9662
|
+
"source": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
9663
|
+
"target": ".agent-src.uncompressed/skills/customer-research/SKILL.md",
|
|
9664
|
+
"type": "READ_ONLY",
|
|
9665
|
+
"via": "body_link",
|
|
9666
|
+
"depth": 1
|
|
9667
|
+
},
|
|
9668
|
+
{
|
|
9669
|
+
"source": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
9670
|
+
"target": ".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
9671
|
+
"type": "READ_ONLY",
|
|
9672
|
+
"via": "body_link",
|
|
9673
|
+
"depth": 1
|
|
9674
|
+
},
|
|
9675
|
+
{
|
|
9676
|
+
"source": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
9677
|
+
"target": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
9678
|
+
"type": "READ_ONLY",
|
|
9679
|
+
"via": "body_link",
|
|
9680
|
+
"depth": 1
|
|
9681
|
+
},
|
|
9682
|
+
{
|
|
9683
|
+
"source": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
9684
|
+
"target": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
9685
|
+
"type": "WRITE",
|
|
9686
|
+
"via": "self",
|
|
9687
|
+
"depth": 0
|
|
9688
|
+
},
|
|
9689
|
+
{
|
|
9690
|
+
"source": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
9691
|
+
"target": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
9692
|
+
"type": "READ_ONLY",
|
|
9693
|
+
"via": "body_link",
|
|
9694
|
+
"depth": 1
|
|
9695
|
+
},
|
|
9696
|
+
{
|
|
9697
|
+
"source": ".agent-src.uncompressed/skills/privacy-review/SKILL.md",
|
|
9698
|
+
"target": ".agent-src.uncompressed/skills/contracts-cognition/SKILL.md",
|
|
9699
|
+
"type": "READ_ONLY",
|
|
9700
|
+
"via": "body_link",
|
|
9701
|
+
"depth": 1
|
|
9702
|
+
},
|
|
9703
|
+
{
|
|
9704
|
+
"source": ".agent-src.uncompressed/skills/privacy-review/SKILL.md",
|
|
9705
|
+
"target": ".agent-src.uncompressed/skills/data-handling-judgment/SKILL.md",
|
|
9706
|
+
"type": "READ_ONLY",
|
|
9707
|
+
"via": "body_link",
|
|
9708
|
+
"depth": 1
|
|
9709
|
+
},
|
|
9710
|
+
{
|
|
9711
|
+
"source": ".agent-src.uncompressed/skills/privacy-review/SKILL.md",
|
|
9712
|
+
"target": ".agent-src.uncompressed/skills/privacy-review/SKILL.md",
|
|
9713
|
+
"type": "WRITE",
|
|
9714
|
+
"via": "self",
|
|
9715
|
+
"depth": 0
|
|
9716
|
+
},
|
|
8123
9717
|
{
|
|
8124
9718
|
"source": ".agent-src.uncompressed/skills/project-analysis-core/SKILL.md",
|
|
8125
9719
|
"target": ".agent-src.uncompressed/skills/project-analysis-core/SKILL.md",
|
|
@@ -8561,6 +10155,41 @@
|
|
|
8561
10155
|
"via": "self",
|
|
8562
10156
|
"depth": 0
|
|
8563
10157
|
},
|
|
10158
|
+
{
|
|
10159
|
+
"source": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
10160
|
+
"target": ".agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
10161
|
+
"type": "READ_ONLY",
|
|
10162
|
+
"via": "body_link",
|
|
10163
|
+
"depth": 1
|
|
10164
|
+
},
|
|
10165
|
+
{
|
|
10166
|
+
"source": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
10167
|
+
"target": ".agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
10168
|
+
"type": "READ_ONLY",
|
|
10169
|
+
"via": "body_link",
|
|
10170
|
+
"depth": 1
|
|
10171
|
+
},
|
|
10172
|
+
{
|
|
10173
|
+
"source": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
10174
|
+
"target": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
10175
|
+
"type": "READ_ONLY",
|
|
10176
|
+
"via": "body_link",
|
|
10177
|
+
"depth": 1
|
|
10178
|
+
},
|
|
10179
|
+
{
|
|
10180
|
+
"source": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
10181
|
+
"target": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
10182
|
+
"type": "READ_ONLY",
|
|
10183
|
+
"via": "body_link",
|
|
10184
|
+
"depth": 1
|
|
10185
|
+
},
|
|
10186
|
+
{
|
|
10187
|
+
"source": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
10188
|
+
"target": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
10189
|
+
"type": "WRITE",
|
|
10190
|
+
"via": "self",
|
|
10191
|
+
"depth": 0
|
|
10192
|
+
},
|
|
8564
10193
|
{
|
|
8565
10194
|
"source": ".agent-src.uncompressed/skills/review-routing/SKILL.md",
|
|
8566
10195
|
"target": ".agent-src.uncompressed/rules/reviewer-awareness.md",
|
|
@@ -8792,6 +10421,90 @@
|
|
|
8792
10421
|
"via": "self",
|
|
8793
10422
|
"depth": 0
|
|
8794
10423
|
},
|
|
10424
|
+
{
|
|
10425
|
+
"source": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
10426
|
+
"target": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
10427
|
+
"type": "READ_ONLY",
|
|
10428
|
+
"via": "body_link",
|
|
10429
|
+
"depth": 1
|
|
10430
|
+
},
|
|
10431
|
+
{
|
|
10432
|
+
"source": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
10433
|
+
"target": ".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
10434
|
+
"type": "READ_ONLY",
|
|
10435
|
+
"via": "body_link",
|
|
10436
|
+
"depth": 1
|
|
10437
|
+
},
|
|
10438
|
+
{
|
|
10439
|
+
"source": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
10440
|
+
"target": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
10441
|
+
"type": "READ_ONLY",
|
|
10442
|
+
"via": "body_link",
|
|
10443
|
+
"depth": 1
|
|
10444
|
+
},
|
|
10445
|
+
{
|
|
10446
|
+
"source": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
10447
|
+
"target": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
10448
|
+
"type": "WRITE",
|
|
10449
|
+
"via": "self",
|
|
10450
|
+
"depth": 0
|
|
10451
|
+
},
|
|
10452
|
+
{
|
|
10453
|
+
"source": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
10454
|
+
"target": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
10455
|
+
"type": "READ_ONLY",
|
|
10456
|
+
"via": "body_link",
|
|
10457
|
+
"depth": 1
|
|
10458
|
+
},
|
|
10459
|
+
{
|
|
10460
|
+
"source": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
10461
|
+
"target": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
10462
|
+
"type": "READ_ONLY",
|
|
10463
|
+
"via": "body_link",
|
|
10464
|
+
"depth": 1
|
|
10465
|
+
},
|
|
10466
|
+
{
|
|
10467
|
+
"source": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
10468
|
+
"target": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
10469
|
+
"type": "READ_ONLY",
|
|
10470
|
+
"via": "body_link",
|
|
10471
|
+
"depth": 1
|
|
10472
|
+
},
|
|
10473
|
+
{
|
|
10474
|
+
"source": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
10475
|
+
"target": ".agent-src.uncompressed/skills/dcf-modeling/SKILL.md",
|
|
10476
|
+
"type": "READ_ONLY",
|
|
10477
|
+
"via": "body_link",
|
|
10478
|
+
"depth": 1
|
|
10479
|
+
},
|
|
10480
|
+
{
|
|
10481
|
+
"source": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
10482
|
+
"target": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
10483
|
+
"type": "READ_ONLY",
|
|
10484
|
+
"via": "body_link",
|
|
10485
|
+
"depth": 1
|
|
10486
|
+
},
|
|
10487
|
+
{
|
|
10488
|
+
"source": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
10489
|
+
"target": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
10490
|
+
"type": "READ_ONLY",
|
|
10491
|
+
"via": "body_link",
|
|
10492
|
+
"depth": 1
|
|
10493
|
+
},
|
|
10494
|
+
{
|
|
10495
|
+
"source": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
10496
|
+
"target": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
10497
|
+
"type": "WRITE",
|
|
10498
|
+
"via": "self",
|
|
10499
|
+
"depth": 0
|
|
10500
|
+
},
|
|
10501
|
+
{
|
|
10502
|
+
"source": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
10503
|
+
"target": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
10504
|
+
"type": "READ_ONLY",
|
|
10505
|
+
"via": "body_link",
|
|
10506
|
+
"depth": 1
|
|
10507
|
+
},
|
|
8795
10508
|
{
|
|
8796
10509
|
"source": ".agent-src.uncompressed/skills/script-writing/SKILL.md",
|
|
8797
10510
|
"target": ".agent-src.uncompressed/contexts/contracts/frugality-charter.md",
|
|
@@ -9247,6 +10960,13 @@
|
|
|
9247
10960
|
"via": "self",
|
|
9248
10961
|
"depth": 0
|
|
9249
10962
|
},
|
|
10963
|
+
{
|
|
10964
|
+
"source": ".agent-src.uncompressed/skills/symfony-workflow/SKILL.md",
|
|
10965
|
+
"target": ".agent-src.uncompressed/skills/symfony-workflow/SKILL.md",
|
|
10966
|
+
"type": "WRITE",
|
|
10967
|
+
"via": "self",
|
|
10968
|
+
"depth": 0
|
|
10969
|
+
},
|
|
9250
10970
|
{
|
|
9251
10971
|
"source": ".agent-src.uncompressed/skills/systematic-debugging/SKILL.md",
|
|
9252
10972
|
"target": ".agent-src.uncompressed/skills/blast-radius-analyzer/SKILL.md",
|
|
@@ -9548,6 +11268,48 @@
|
|
|
9548
11268
|
"via": "self",
|
|
9549
11269
|
"depth": 0
|
|
9550
11270
|
},
|
|
11271
|
+
{
|
|
11272
|
+
"source": ".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md",
|
|
11273
|
+
"target": ".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
11274
|
+
"type": "READ_ONLY",
|
|
11275
|
+
"via": "body_link",
|
|
11276
|
+
"depth": 1
|
|
11277
|
+
},
|
|
11278
|
+
{
|
|
11279
|
+
"source": ".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md",
|
|
11280
|
+
"target": ".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
11281
|
+
"type": "READ_ONLY",
|
|
11282
|
+
"via": "body_link",
|
|
11283
|
+
"depth": 1
|
|
11284
|
+
},
|
|
11285
|
+
{
|
|
11286
|
+
"source": ".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md",
|
|
11287
|
+
"target": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
11288
|
+
"type": "READ_ONLY",
|
|
11289
|
+
"via": "body_link",
|
|
11290
|
+
"depth": 1
|
|
11291
|
+
},
|
|
11292
|
+
{
|
|
11293
|
+
"source": ".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md",
|
|
11294
|
+
"target": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
11295
|
+
"type": "READ_ONLY",
|
|
11296
|
+
"via": "body_link",
|
|
11297
|
+
"depth": 1
|
|
11298
|
+
},
|
|
11299
|
+
{
|
|
11300
|
+
"source": ".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md",
|
|
11301
|
+
"target": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
11302
|
+
"type": "READ_ONLY",
|
|
11303
|
+
"via": "body_link",
|
|
11304
|
+
"depth": 1
|
|
11305
|
+
},
|
|
11306
|
+
{
|
|
11307
|
+
"source": ".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md",
|
|
11308
|
+
"target": ".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md",
|
|
11309
|
+
"type": "WRITE",
|
|
11310
|
+
"via": "self",
|
|
11311
|
+
"depth": 0
|
|
11312
|
+
},
|
|
9551
11313
|
{
|
|
9552
11314
|
"source": ".agent-src.uncompressed/skills/token-optimizer/SKILL.md",
|
|
9553
11315
|
"target": ".agent-src.uncompressed/rules/cli-output-handling.md",
|
|
@@ -9625,6 +11387,13 @@
|
|
|
9625
11387
|
"via": "body_link",
|
|
9626
11388
|
"depth": 1
|
|
9627
11389
|
},
|
|
11390
|
+
{
|
|
11391
|
+
"source": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
11392
|
+
"target": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
11393
|
+
"type": "READ_ONLY",
|
|
11394
|
+
"via": "body_link",
|
|
11395
|
+
"depth": 1
|
|
11396
|
+
},
|
|
9628
11397
|
{
|
|
9629
11398
|
"source": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
9630
11399
|
"target": ".agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
@@ -9646,6 +11415,20 @@
|
|
|
9646
11415
|
"via": "body_link",
|
|
9647
11416
|
"depth": 1
|
|
9648
11417
|
},
|
|
11418
|
+
{
|
|
11419
|
+
"source": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
11420
|
+
"target": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
11421
|
+
"type": "READ_ONLY",
|
|
11422
|
+
"via": "body_link",
|
|
11423
|
+
"depth": 1
|
|
11424
|
+
},
|
|
11425
|
+
{
|
|
11426
|
+
"source": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
11427
|
+
"target": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
11428
|
+
"type": "READ_ONLY",
|
|
11429
|
+
"via": "body_link",
|
|
11430
|
+
"depth": 1
|
|
11431
|
+
},
|
|
9649
11432
|
{
|
|
9650
11433
|
"source": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
9651
11434
|
"target": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
@@ -9723,6 +11506,41 @@
|
|
|
9723
11506
|
"via": "self",
|
|
9724
11507
|
"depth": 0
|
|
9725
11508
|
},
|
|
11509
|
+
{
|
|
11510
|
+
"source": ".agent-src.uncompressed/skills/vision-articulation/SKILL.md",
|
|
11511
|
+
"target": ".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
11512
|
+
"type": "READ_ONLY",
|
|
11513
|
+
"via": "body_link",
|
|
11514
|
+
"depth": 1
|
|
11515
|
+
},
|
|
11516
|
+
{
|
|
11517
|
+
"source": ".agent-src.uncompressed/skills/vision-articulation/SKILL.md",
|
|
11518
|
+
"target": ".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
11519
|
+
"type": "READ_ONLY",
|
|
11520
|
+
"via": "body_link",
|
|
11521
|
+
"depth": 1
|
|
11522
|
+
},
|
|
11523
|
+
{
|
|
11524
|
+
"source": ".agent-src.uncompressed/skills/vision-articulation/SKILL.md",
|
|
11525
|
+
"target": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
11526
|
+
"type": "READ_ONLY",
|
|
11527
|
+
"via": "body_link",
|
|
11528
|
+
"depth": 1
|
|
11529
|
+
},
|
|
11530
|
+
{
|
|
11531
|
+
"source": ".agent-src.uncompressed/skills/vision-articulation/SKILL.md",
|
|
11532
|
+
"target": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
11533
|
+
"type": "READ_ONLY",
|
|
11534
|
+
"via": "body_link",
|
|
11535
|
+
"depth": 1
|
|
11536
|
+
},
|
|
11537
|
+
{
|
|
11538
|
+
"source": ".agent-src.uncompressed/skills/vision-articulation/SKILL.md",
|
|
11539
|
+
"target": ".agent-src.uncompressed/skills/vision-articulation/SKILL.md",
|
|
11540
|
+
"type": "WRITE",
|
|
11541
|
+
"via": "self",
|
|
11542
|
+
"depth": 0
|
|
11543
|
+
},
|
|
9726
11544
|
{
|
|
9727
11545
|
"source": ".agent-src.uncompressed/skills/voc-extract/SKILL.md",
|
|
9728
11546
|
"target": ".agent-src.uncompressed/skills/discovery-interview/SKILL.md",
|
|
@@ -9751,6 +11569,41 @@
|
|
|
9751
11569
|
"via": "self",
|
|
9752
11570
|
"depth": 0
|
|
9753
11571
|
},
|
|
11572
|
+
{
|
|
11573
|
+
"source": ".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md",
|
|
11574
|
+
"target": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
11575
|
+
"type": "READ_ONLY",
|
|
11576
|
+
"via": "body_link",
|
|
11577
|
+
"depth": 1
|
|
11578
|
+
},
|
|
11579
|
+
{
|
|
11580
|
+
"source": ".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md",
|
|
11581
|
+
"target": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
11582
|
+
"type": "READ_ONLY",
|
|
11583
|
+
"via": "body_link",
|
|
11584
|
+
"depth": 1
|
|
11585
|
+
},
|
|
11586
|
+
{
|
|
11587
|
+
"source": ".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md",
|
|
11588
|
+
"target": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
11589
|
+
"type": "READ_ONLY",
|
|
11590
|
+
"via": "body_link",
|
|
11591
|
+
"depth": 1
|
|
11592
|
+
},
|
|
11593
|
+
{
|
|
11594
|
+
"source": ".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md",
|
|
11595
|
+
"target": ".agent-src.uncompressed/skills/release-comms/SKILL.md",
|
|
11596
|
+
"type": "READ_ONLY",
|
|
11597
|
+
"via": "body_link",
|
|
11598
|
+
"depth": 1
|
|
11599
|
+
},
|
|
11600
|
+
{
|
|
11601
|
+
"source": ".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md",
|
|
11602
|
+
"target": ".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md",
|
|
11603
|
+
"type": "WRITE",
|
|
11604
|
+
"via": "self",
|
|
11605
|
+
"depth": 0
|
|
11606
|
+
},
|
|
9754
11607
|
{
|
|
9755
11608
|
"source": ".agent-src.uncompressed/skills/websocket/SKILL.md",
|
|
9756
11609
|
"target": ".agent-src.uncompressed/skills/websocket/SKILL.md",
|