@event4u/agent-config 2.12.0 → 2.14.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/council/analysis.md +142 -0
- package/.agent-src/commands/council/debate.md +129 -0
- package/.agent-src/commands/council/default.md +8 -0
- package/.agent-src/commands/council/design.md +16 -12
- package/.agent-src/commands/council/optimize.md +16 -15
- package/.agent-src/commands/council/pr.md +12 -12
- package/.agent-src/commands/council.md +48 -2
- package/.agent-src/commands/memory/learn-low-impact.md +143 -0
- package/.agent-src/personas/advisors/contrarian.md +95 -0
- package/.agent-src/personas/advisors/executor.md +99 -0
- package/.agent-src/personas/advisors/expansionist.md +98 -0
- package/.agent-src/personas/advisors/first-principles.md +98 -0
- package/.agent-src/personas/advisors/outsider.md +102 -0
- package/.agent-src/rules/ask-when-uncertain.md +10 -6
- package/.agent-src/rules/copilot-routing.md +19 -0
- package/.agent-src/rules/devcontainer-routing.md +20 -0
- 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/laravel-routing.md +20 -0
- package/.agent-src/rules/low-impact-corpus-privacy-floor.md +74 -0
- package/.agent-src/rules/symfony-routing.md +20 -0
- package/.agent-src/skills/ai-council/SKILL.md +388 -10
- package/.agent-src/skills/copilot-config/SKILL.md +1 -1
- package/.agent-src/skills/devcontainer/SKILL.md +1 -1
- package/.agent-src/skills/laravel/SKILL.md +1 -1
- package/.agent-src/skills/project-analysis-core/SKILL.md +1 -1
- package/.agent-src/skills/project-analyzer/SKILL.md +1 -1
- package/.agent-src/skills/symfony-workflow/SKILL.md +1 -1
- package/.agent-src/skills/universal-project-analysis/SKILL.md +1 -1
- package/.agent-src/templates/agents/agent-project-settings.example.yml +1 -1
- package/.claude-plugin/marketplace.json +4 -1
- package/AGENTS.md +1 -1
- package/CHANGELOG.md +346 -124
- package/CONTRIBUTING.md +5 -0
- package/README.md +6 -6
- package/config/agent-settings.template.yml +5 -93
- package/config/gitignore-block.txt +6 -0
- package/docs/architecture/multi-tool-projection.md +53 -0
- package/docs/architecture/{compression.md → source-projection.md} +21 -3
- package/docs/architecture.md +15 -15
- package/docs/archive/CHANGELOG-pre-2.11.0.md +141 -0
- package/docs/catalog.md +25 -12
- package/docs/contracts/adr-architectural-consensus-mechanism.md +68 -0
- package/docs/contracts/adr-level-6-productization.md +7 -9
- package/docs/contracts/ai-council-config.md +658 -0
- package/docs/contracts/command-clusters.md +58 -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 +1735 -72
- 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 +115 -0
- package/docs/contracts/release-trunk-sync.md +4 -3
- package/docs/contracts/tier-3-contrib-plugin.md +5 -6
- 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/_archive/README.md +59 -0
- package/scripts/_cli/cmd_doctor.py +134 -0
- package/scripts/ai_council/_default_prices.py +10 -1
- package/scripts/ai_council/advisors.py +148 -0
- package/scripts/ai_council/airgap.py +165 -0
- package/scripts/ai_council/cli_hints.py +123 -0
- package/scripts/ai_council/clients.py +959 -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 +1364 -0
- package/scripts/ai_council/consensus.py +329 -0
- 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 +872 -20
- package/scripts/ai_council/probation_gate.py +152 -0
- package/scripts/ai_council/prompts.py +335 -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_compressed_paths.py +6 -1
- package/scripts/check_council_layout.py +11 -0
- package/scripts/ci_time_ratio.py +168 -0
- package/scripts/council_cli.py +2005 -30
- package/scripts/install.sh +12 -0
- package/scripts/measure_projection_bytes.py +159 -0
- package/scripts/measure_roadmap_trajectory.py +112 -0
- package/scripts/probe_projection_fidelity.py +202 -0
- package/scripts/score_skill_selection.py +198 -0
- package/scripts/skill_collision_clusters.py +162 -0
- /package/scripts/{_backfill_skill_domains.py → _archive/_backfill_skill_domains.py} +0 -0
- /package/scripts/{_bootstrap_tier_frontmatter.py → _archive/_bootstrap_tier_frontmatter.py} +0 -0
- /package/scripts/{_p43_bodies.py → _archive/_p43_bodies.py} +0 -0
- /package/scripts/{_p43_compress.py → _archive/_p43_compress.py} +0 -0
- /package/scripts/{_p4_migrate.py → _archive/_p4_migrate.py} +0 -0
- /package/scripts/{_phase2_shim_helper.py → _archive/_phase2_shim_helper.py} +0 -0
- /package/scripts/{_pilot_council_question.py → _archive/_pilot_council_question.py} +0 -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
|
},
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
},
|
|
60
60
|
".agent-src.uncompressed/commands/challenge-me.md": {
|
|
61
61
|
"kind": "command",
|
|
62
|
-
"rule_type":
|
|
62
|
+
"rule_type": "orchestrator",
|
|
63
63
|
"load_context": [],
|
|
64
64
|
"load_context_eager": []
|
|
65
65
|
},
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
},
|
|
78
78
|
".agent-src.uncompressed/commands/chat-history.md": {
|
|
79
79
|
"kind": "command",
|
|
80
|
-
"rule_type":
|
|
80
|
+
"rule_type": "orchestrator",
|
|
81
81
|
"load_context": [],
|
|
82
82
|
"load_context_eager": []
|
|
83
83
|
},
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
},
|
|
126
126
|
".agent-src.uncompressed/commands/context.md": {
|
|
127
127
|
"kind": "command",
|
|
128
|
-
"rule_type":
|
|
128
|
+
"rule_type": "orchestrator",
|
|
129
129
|
"load_context": [],
|
|
130
130
|
"load_context_eager": []
|
|
131
131
|
},
|
|
@@ -148,6 +148,18 @@
|
|
|
148
148
|
"load_context_eager": []
|
|
149
149
|
},
|
|
150
150
|
".agent-src.uncompressed/commands/council.md": {
|
|
151
|
+
"kind": "command",
|
|
152
|
+
"rule_type": "orchestrator",
|
|
153
|
+
"load_context": [],
|
|
154
|
+
"load_context_eager": []
|
|
155
|
+
},
|
|
156
|
+
".agent-src.uncompressed/commands/council/analysis.md": {
|
|
157
|
+
"kind": "command",
|
|
158
|
+
"rule_type": null,
|
|
159
|
+
"load_context": [],
|
|
160
|
+
"load_context_eager": []
|
|
161
|
+
},
|
|
162
|
+
".agent-src.uncompressed/commands/council/debate.md": {
|
|
151
163
|
"kind": "command",
|
|
152
164
|
"rule_type": null,
|
|
153
165
|
"load_context": [],
|
|
@@ -209,7 +221,7 @@
|
|
|
209
221
|
},
|
|
210
222
|
".agent-src.uncompressed/commands/feature.md": {
|
|
211
223
|
"kind": "command",
|
|
212
|
-
"rule_type":
|
|
224
|
+
"rule_type": "orchestrator",
|
|
213
225
|
"load_context": [],
|
|
214
226
|
"load_context_eager": []
|
|
215
227
|
},
|
|
@@ -245,7 +257,7 @@
|
|
|
245
257
|
},
|
|
246
258
|
".agent-src.uncompressed/commands/fix.md": {
|
|
247
259
|
"kind": "command",
|
|
248
|
-
"rule_type":
|
|
260
|
+
"rule_type": "orchestrator",
|
|
249
261
|
"load_context": [],
|
|
250
262
|
"load_context_eager": []
|
|
251
263
|
},
|
|
@@ -293,7 +305,7 @@
|
|
|
293
305
|
},
|
|
294
306
|
".agent-src.uncompressed/commands/grill-me.md": {
|
|
295
307
|
"kind": "command",
|
|
296
|
-
"rule_type":
|
|
308
|
+
"rule_type": "orchestrator",
|
|
297
309
|
"load_context": [],
|
|
298
310
|
"load_context_eager": []
|
|
299
311
|
},
|
|
@@ -311,7 +323,7 @@
|
|
|
311
323
|
},
|
|
312
324
|
".agent-src.uncompressed/commands/judge.md": {
|
|
313
325
|
"kind": "command",
|
|
314
|
-
"rule_type":
|
|
326
|
+
"rule_type": "orchestrator",
|
|
315
327
|
"load_context": [],
|
|
316
328
|
"load_context_eager": []
|
|
317
329
|
},
|
|
@@ -335,7 +347,7 @@
|
|
|
335
347
|
},
|
|
336
348
|
".agent-src.uncompressed/commands/memory.md": {
|
|
337
349
|
"kind": "command",
|
|
338
|
-
"rule_type":
|
|
350
|
+
"rule_type": "orchestrator",
|
|
339
351
|
"load_context": [],
|
|
340
352
|
"load_context_eager": []
|
|
341
353
|
},
|
|
@@ -345,6 +357,12 @@
|
|
|
345
357
|
"load_context": [],
|
|
346
358
|
"load_context_eager": []
|
|
347
359
|
},
|
|
360
|
+
".agent-src.uncompressed/commands/memory/learn-low-impact.md": {
|
|
361
|
+
"kind": "command",
|
|
362
|
+
"rule_type": null,
|
|
363
|
+
"load_context": [],
|
|
364
|
+
"load_context_eager": []
|
|
365
|
+
},
|
|
348
366
|
".agent-src.uncompressed/commands/memory/load.md": {
|
|
349
367
|
"kind": "command",
|
|
350
368
|
"rule_type": null,
|
|
@@ -377,7 +395,7 @@
|
|
|
377
395
|
},
|
|
378
396
|
".agent-src.uncompressed/commands/module.md": {
|
|
379
397
|
"kind": "command",
|
|
380
|
-
"rule_type":
|
|
398
|
+
"rule_type": "orchestrator",
|
|
381
399
|
"load_context": [],
|
|
382
400
|
"load_context_eager": []
|
|
383
401
|
},
|
|
@@ -407,7 +425,7 @@
|
|
|
407
425
|
},
|
|
408
426
|
".agent-src.uncompressed/commands/optimize.md": {
|
|
409
427
|
"kind": "command",
|
|
410
|
-
"rule_type":
|
|
428
|
+
"rule_type": "orchestrator",
|
|
411
429
|
"load_context": [],
|
|
412
430
|
"load_context_eager": []
|
|
413
431
|
},
|
|
@@ -443,7 +461,7 @@
|
|
|
443
461
|
},
|
|
444
462
|
".agent-src.uncompressed/commands/override.md": {
|
|
445
463
|
"kind": "command",
|
|
446
|
-
"rule_type":
|
|
464
|
+
"rule_type": "orchestrator",
|
|
447
465
|
"load_context": [],
|
|
448
466
|
"load_context_eager": []
|
|
449
467
|
},
|
|
@@ -533,7 +551,7 @@
|
|
|
533
551
|
},
|
|
534
552
|
".agent-src.uncompressed/commands/roadmap.md": {
|
|
535
553
|
"kind": "command",
|
|
536
|
-
"rule_type":
|
|
554
|
+
"rule_type": "orchestrator",
|
|
537
555
|
"load_context": [],
|
|
538
556
|
"load_context_eager": []
|
|
539
557
|
},
|
|
@@ -599,7 +617,7 @@
|
|
|
599
617
|
},
|
|
600
618
|
".agent-src.uncompressed/commands/tests.md": {
|
|
601
619
|
"kind": "command",
|
|
602
|
-
"rule_type":
|
|
620
|
+
"rule_type": "orchestrator",
|
|
603
621
|
"load_context": [],
|
|
604
622
|
"load_context_eager": []
|
|
605
623
|
},
|
|
@@ -837,6 +855,36 @@
|
|
|
837
855
|
"load_context": [],
|
|
838
856
|
"load_context_eager": []
|
|
839
857
|
},
|
|
858
|
+
".agent-src.uncompressed/personas/advisors/contrarian.md": {
|
|
859
|
+
"kind": "persona",
|
|
860
|
+
"rule_type": null,
|
|
861
|
+
"load_context": [],
|
|
862
|
+
"load_context_eager": []
|
|
863
|
+
},
|
|
864
|
+
".agent-src.uncompressed/personas/advisors/executor.md": {
|
|
865
|
+
"kind": "persona",
|
|
866
|
+
"rule_type": null,
|
|
867
|
+
"load_context": [],
|
|
868
|
+
"load_context_eager": []
|
|
869
|
+
},
|
|
870
|
+
".agent-src.uncompressed/personas/advisors/expansionist.md": {
|
|
871
|
+
"kind": "persona",
|
|
872
|
+
"rule_type": null,
|
|
873
|
+
"load_context": [],
|
|
874
|
+
"load_context_eager": []
|
|
875
|
+
},
|
|
876
|
+
".agent-src.uncompressed/personas/advisors/first-principles.md": {
|
|
877
|
+
"kind": "persona",
|
|
878
|
+
"rule_type": null,
|
|
879
|
+
"load_context": [],
|
|
880
|
+
"load_context_eager": []
|
|
881
|
+
},
|
|
882
|
+
".agent-src.uncompressed/personas/advisors/outsider.md": {
|
|
883
|
+
"kind": "persona",
|
|
884
|
+
"rule_type": null,
|
|
885
|
+
"load_context": [],
|
|
886
|
+
"load_context_eager": []
|
|
887
|
+
},
|
|
840
888
|
".agent-src.uncompressed/personas/ai-agent.md": {
|
|
841
889
|
"kind": "persona",
|
|
842
890
|
"rule_type": null,
|
|
@@ -849,12 +897,24 @@
|
|
|
849
897
|
"load_context": [],
|
|
850
898
|
"load_context_eager": []
|
|
851
899
|
},
|
|
900
|
+
".agent-src.uncompressed/personas/cmo.md": {
|
|
901
|
+
"kind": "persona",
|
|
902
|
+
"rule_type": null,
|
|
903
|
+
"load_context": [],
|
|
904
|
+
"load_context_eager": []
|
|
905
|
+
},
|
|
852
906
|
".agent-src.uncompressed/personas/critical-challenger.md": {
|
|
853
907
|
"kind": "persona",
|
|
854
908
|
"rule_type": null,
|
|
855
909
|
"load_context": [],
|
|
856
910
|
"load_context_eager": []
|
|
857
911
|
},
|
|
912
|
+
".agent-src.uncompressed/personas/customer-success-lead.md": {
|
|
913
|
+
"kind": "persona",
|
|
914
|
+
"rule_type": null,
|
|
915
|
+
"load_context": [],
|
|
916
|
+
"load_context_eager": []
|
|
917
|
+
},
|
|
858
918
|
".agent-src.uncompressed/personas/developer.md": {
|
|
859
919
|
"kind": "persona",
|
|
860
920
|
"rule_type": null,
|
|
@@ -873,12 +933,36 @@
|
|
|
873
933
|
"load_context": [],
|
|
874
934
|
"load_context_eager": []
|
|
875
935
|
},
|
|
936
|
+
".agent-src.uncompressed/personas/engineering-manager.md": {
|
|
937
|
+
"kind": "persona",
|
|
938
|
+
"rule_type": null,
|
|
939
|
+
"load_context": [],
|
|
940
|
+
"load_context_eager": []
|
|
941
|
+
},
|
|
942
|
+
".agent-src.uncompressed/personas/finance-partner.md": {
|
|
943
|
+
"kind": "persona",
|
|
944
|
+
"rule_type": null,
|
|
945
|
+
"load_context": [],
|
|
946
|
+
"load_context_eager": []
|
|
947
|
+
},
|
|
876
948
|
".agent-src.uncompressed/personas/frontend-engineer.md": {
|
|
877
949
|
"kind": "persona",
|
|
878
950
|
"rule_type": null,
|
|
879
951
|
"load_context": [],
|
|
880
952
|
"load_context_eager": []
|
|
881
953
|
},
|
|
954
|
+
".agent-src.uncompressed/personas/growth-pm.md": {
|
|
955
|
+
"kind": "persona",
|
|
956
|
+
"rule_type": null,
|
|
957
|
+
"load_context": [],
|
|
958
|
+
"load_context_eager": []
|
|
959
|
+
},
|
|
960
|
+
".agent-src.uncompressed/personas/people-strategist.md": {
|
|
961
|
+
"kind": "persona",
|
|
962
|
+
"rule_type": null,
|
|
963
|
+
"load_context": [],
|
|
964
|
+
"load_context_eager": []
|
|
965
|
+
},
|
|
882
966
|
".agent-src.uncompressed/personas/product-owner.md": {
|
|
883
967
|
"kind": "persona",
|
|
884
968
|
"rule_type": null,
|
|
@@ -897,6 +981,12 @@
|
|
|
897
981
|
"load_context": [],
|
|
898
982
|
"load_context_eager": []
|
|
899
983
|
},
|
|
984
|
+
".agent-src.uncompressed/personas/revops.md": {
|
|
985
|
+
"kind": "persona",
|
|
986
|
+
"rule_type": null,
|
|
987
|
+
"load_context": [],
|
|
988
|
+
"load_context_eager": []
|
|
989
|
+
},
|
|
900
990
|
".agent-src.uncompressed/personas/security-engineer.md": {
|
|
901
991
|
"kind": "persona",
|
|
902
992
|
"rule_type": null,
|
|
@@ -915,6 +1005,12 @@
|
|
|
915
1005
|
"load_context": [],
|
|
916
1006
|
"load_context_eager": []
|
|
917
1007
|
},
|
|
1008
|
+
".agent-src.uncompressed/personas/strategist.md": {
|
|
1009
|
+
"kind": "persona",
|
|
1010
|
+
"rule_type": null,
|
|
1011
|
+
"load_context": [],
|
|
1012
|
+
"load_context_eager": []
|
|
1013
|
+
},
|
|
918
1014
|
".agent-src.uncompressed/personas/tech-writer.md": {
|
|
919
1015
|
"kind": "persona",
|
|
920
1016
|
"rule_type": null,
|
|
@@ -1035,6 +1131,18 @@
|
|
|
1035
1131
|
"load_context": [],
|
|
1036
1132
|
"load_context_eager": []
|
|
1037
1133
|
},
|
|
1134
|
+
".agent-src.uncompressed/rules/copilot-routing.md": {
|
|
1135
|
+
"kind": "rule",
|
|
1136
|
+
"rule_type": "auto",
|
|
1137
|
+
"load_context": [],
|
|
1138
|
+
"load_context_eager": []
|
|
1139
|
+
},
|
|
1140
|
+
".agent-src.uncompressed/rules/devcontainer-routing.md": {
|
|
1141
|
+
"kind": "rule",
|
|
1142
|
+
"rule_type": "auto",
|
|
1143
|
+
"load_context": [],
|
|
1144
|
+
"load_context_eager": []
|
|
1145
|
+
},
|
|
1038
1146
|
".agent-src.uncompressed/rules/direct-answers.md": {
|
|
1039
1147
|
"kind": "rule",
|
|
1040
1148
|
"rule_type": "always",
|
|
@@ -1071,6 +1179,18 @@
|
|
|
1071
1179
|
"load_context": [],
|
|
1072
1180
|
"load_context_eager": []
|
|
1073
1181
|
},
|
|
1182
|
+
".agent-src.uncompressed/rules/external-reference-deep-dive.md": {
|
|
1183
|
+
"kind": "rule",
|
|
1184
|
+
"rule_type": "auto",
|
|
1185
|
+
"load_context": [],
|
|
1186
|
+
"load_context_eager": []
|
|
1187
|
+
},
|
|
1188
|
+
".agent-src.uncompressed/rules/fast-path-marker-visibility.md": {
|
|
1189
|
+
"kind": "rule",
|
|
1190
|
+
"rule_type": "auto",
|
|
1191
|
+
"load_context": [],
|
|
1192
|
+
"load_context_eager": []
|
|
1193
|
+
},
|
|
1074
1194
|
".agent-src.uncompressed/rules/guidelines.md": {
|
|
1075
1195
|
"kind": "rule",
|
|
1076
1196
|
"rule_type": "manual",
|
|
@@ -1097,12 +1217,24 @@
|
|
|
1097
1217
|
"load_context": [],
|
|
1098
1218
|
"load_context_eager": []
|
|
1099
1219
|
},
|
|
1220
|
+
".agent-src.uncompressed/rules/laravel-routing.md": {
|
|
1221
|
+
"kind": "rule",
|
|
1222
|
+
"rule_type": "auto",
|
|
1223
|
+
"load_context": [],
|
|
1224
|
+
"load_context_eager": []
|
|
1225
|
+
},
|
|
1100
1226
|
".agent-src.uncompressed/rules/laravel-translations.md": {
|
|
1101
1227
|
"kind": "rule",
|
|
1102
1228
|
"rule_type": "auto",
|
|
1103
1229
|
"load_context": [],
|
|
1104
1230
|
"load_context_eager": []
|
|
1105
1231
|
},
|
|
1232
|
+
".agent-src.uncompressed/rules/low-impact-corpus-privacy-floor.md": {
|
|
1233
|
+
"kind": "rule",
|
|
1234
|
+
"rule_type": "auto",
|
|
1235
|
+
"load_context": [],
|
|
1236
|
+
"load_context_eager": []
|
|
1237
|
+
},
|
|
1106
1238
|
".agent-src.uncompressed/rules/markdown-safe-codeblocks.md": {
|
|
1107
1239
|
"kind": "rule",
|
|
1108
1240
|
"rule_type": "auto",
|
|
@@ -1252,6 +1384,12 @@
|
|
|
1252
1384
|
"load_context": [],
|
|
1253
1385
|
"load_context_eager": []
|
|
1254
1386
|
},
|
|
1387
|
+
".agent-src.uncompressed/rules/symfony-routing.md": {
|
|
1388
|
+
"kind": "rule",
|
|
1389
|
+
"rule_type": "auto",
|
|
1390
|
+
"load_context": [],
|
|
1391
|
+
"load_context_eager": []
|
|
1392
|
+
},
|
|
1255
1393
|
".agent-src.uncompressed/rules/think-before-action.md": {
|
|
1256
1394
|
"kind": "rule",
|
|
1257
1395
|
"rule_type": "auto",
|
|
@@ -1314,6 +1452,12 @@
|
|
|
1314
1452
|
"load_context": [],
|
|
1315
1453
|
"load_context_eager": []
|
|
1316
1454
|
},
|
|
1455
|
+
".agent-src.uncompressed/skills/activation-design/SKILL.md": {
|
|
1456
|
+
"kind": "skill",
|
|
1457
|
+
"rule_type": null,
|
|
1458
|
+
"load_context": [],
|
|
1459
|
+
"load_context_eager": []
|
|
1460
|
+
},
|
|
1317
1461
|
".agent-src.uncompressed/skills/adr-create/SKILL.md": {
|
|
1318
1462
|
"kind": "skill",
|
|
1319
1463
|
"rule_type": null,
|
|
@@ -1422,12 +1566,30 @@
|
|
|
1422
1566
|
"load_context": [],
|
|
1423
1567
|
"load_context_eager": []
|
|
1424
1568
|
},
|
|
1569
|
+
".agent-src.uncompressed/skills/build-buy-partner/SKILL.md": {
|
|
1570
|
+
"kind": "skill",
|
|
1571
|
+
"rule_type": null,
|
|
1572
|
+
"load_context": [],
|
|
1573
|
+
"load_context_eager": []
|
|
1574
|
+
},
|
|
1575
|
+
".agent-src.uncompressed/skills/canvas-design/SKILL.md": {
|
|
1576
|
+
"kind": "skill",
|
|
1577
|
+
"rule_type": null,
|
|
1578
|
+
"load_context": [],
|
|
1579
|
+
"load_context_eager": []
|
|
1580
|
+
},
|
|
1425
1581
|
".agent-src.uncompressed/skills/check-refs/SKILL.md": {
|
|
1426
1582
|
"kind": "skill",
|
|
1427
1583
|
"rule_type": null,
|
|
1428
1584
|
"load_context": [],
|
|
1429
1585
|
"load_context_eager": []
|
|
1430
1586
|
},
|
|
1587
|
+
".agent-src.uncompressed/skills/churn-prevention/SKILL.md": {
|
|
1588
|
+
"kind": "skill",
|
|
1589
|
+
"rule_type": null,
|
|
1590
|
+
"load_context": [],
|
|
1591
|
+
"load_context_eager": []
|
|
1592
|
+
},
|
|
1431
1593
|
".agent-src.uncompressed/skills/code-refactoring/SKILL.md": {
|
|
1432
1594
|
"kind": "skill",
|
|
1433
1595
|
"rule_type": null,
|
|
@@ -1452,6 +1614,18 @@
|
|
|
1452
1614
|
"load_context": [],
|
|
1453
1615
|
"load_context_eager": []
|
|
1454
1616
|
},
|
|
1617
|
+
".agent-src.uncompressed/skills/comp-banding/SKILL.md": {
|
|
1618
|
+
"kind": "skill",
|
|
1619
|
+
"rule_type": null,
|
|
1620
|
+
"load_context": [],
|
|
1621
|
+
"load_context_eager": []
|
|
1622
|
+
},
|
|
1623
|
+
".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md": {
|
|
1624
|
+
"kind": "skill",
|
|
1625
|
+
"rule_type": null,
|
|
1626
|
+
"load_context": [],
|
|
1627
|
+
"load_context_eager": []
|
|
1628
|
+
},
|
|
1455
1629
|
".agent-src.uncompressed/skills/competitive-positioning/SKILL.md": {
|
|
1456
1630
|
"kind": "skill",
|
|
1457
1631
|
"rule_type": null,
|
|
@@ -1464,6 +1638,12 @@
|
|
|
1464
1638
|
"load_context": [],
|
|
1465
1639
|
"load_context_eager": []
|
|
1466
1640
|
},
|
|
1641
|
+
".agent-src.uncompressed/skills/content-funnel-design/SKILL.md": {
|
|
1642
|
+
"kind": "skill",
|
|
1643
|
+
"rule_type": null,
|
|
1644
|
+
"load_context": [],
|
|
1645
|
+
"load_context_eager": []
|
|
1646
|
+
},
|
|
1467
1647
|
".agent-src.uncompressed/skills/context-authoring/SKILL.md": {
|
|
1468
1648
|
"kind": "skill",
|
|
1469
1649
|
"rule_type": null,
|
|
@@ -1476,6 +1656,12 @@
|
|
|
1476
1656
|
"load_context": [],
|
|
1477
1657
|
"load_context_eager": []
|
|
1478
1658
|
},
|
|
1659
|
+
".agent-src.uncompressed/skills/contracts-cognition/SKILL.md": {
|
|
1660
|
+
"kind": "skill",
|
|
1661
|
+
"rule_type": null,
|
|
1662
|
+
"load_context": [],
|
|
1663
|
+
"load_context_eager": []
|
|
1664
|
+
},
|
|
1479
1665
|
".agent-src.uncompressed/skills/conventional-commits-writing/SKILL.md": {
|
|
1480
1666
|
"kind": "skill",
|
|
1481
1667
|
"rule_type": null,
|
|
@@ -1512,6 +1698,12 @@
|
|
|
1512
1698
|
"load_context": [],
|
|
1513
1699
|
"load_context_eager": []
|
|
1514
1700
|
},
|
|
1701
|
+
".agent-src.uncompressed/skills/data-handling-judgment/SKILL.md": {
|
|
1702
|
+
"kind": "skill",
|
|
1703
|
+
"rule_type": null,
|
|
1704
|
+
"load_context": [],
|
|
1705
|
+
"load_context_eager": []
|
|
1706
|
+
},
|
|
1515
1707
|
".agent-src.uncompressed/skills/database/SKILL.md": {
|
|
1516
1708
|
"kind": "skill",
|
|
1517
1709
|
"rule_type": null,
|
|
@@ -1524,6 +1716,12 @@
|
|
|
1524
1716
|
"load_context": [],
|
|
1525
1717
|
"load_context_eager": []
|
|
1526
1718
|
},
|
|
1719
|
+
".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md": {
|
|
1720
|
+
"kind": "skill",
|
|
1721
|
+
"rule_type": null,
|
|
1722
|
+
"load_context": [],
|
|
1723
|
+
"load_context_eager": []
|
|
1724
|
+
},
|
|
1527
1725
|
".agent-src.uncompressed/skills/decision-record/SKILL.md": {
|
|
1528
1726
|
"kind": "skill",
|
|
1529
1727
|
"rule_type": null,
|
|
@@ -1578,6 +1776,12 @@
|
|
|
1578
1776
|
"load_context": [],
|
|
1579
1777
|
"load_context_eager": []
|
|
1580
1778
|
},
|
|
1779
|
+
".agent-src.uncompressed/skills/doc-coauthoring/SKILL.md": {
|
|
1780
|
+
"kind": "skill",
|
|
1781
|
+
"rule_type": null,
|
|
1782
|
+
"load_context": [],
|
|
1783
|
+
"load_context_eager": []
|
|
1784
|
+
},
|
|
1581
1785
|
".agent-src.uncompressed/skills/docker/SKILL.md": {
|
|
1582
1786
|
"kind": "skill",
|
|
1583
1787
|
"rule_type": null,
|
|
@@ -1590,6 +1794,12 @@
|
|
|
1590
1794
|
"load_context": [],
|
|
1591
1795
|
"load_context_eager": []
|
|
1592
1796
|
},
|
|
1797
|
+
".agent-src.uncompressed/skills/editorial-calendar/SKILL.md": {
|
|
1798
|
+
"kind": "skill",
|
|
1799
|
+
"rule_type": null,
|
|
1800
|
+
"load_context": [],
|
|
1801
|
+
"load_context_eager": []
|
|
1802
|
+
},
|
|
1593
1803
|
".agent-src.uncompressed/skills/eloquent/SKILL.md": {
|
|
1594
1804
|
"kind": "skill",
|
|
1595
1805
|
"rule_type": null,
|
|
@@ -1614,6 +1824,12 @@
|
|
|
1614
1824
|
"load_context": [],
|
|
1615
1825
|
"load_context_eager": []
|
|
1616
1826
|
},
|
|
1827
|
+
".agent-src.uncompressed/skills/expansion-playbook/SKILL.md": {
|
|
1828
|
+
"kind": "skill",
|
|
1829
|
+
"rule_type": null,
|
|
1830
|
+
"load_context": [],
|
|
1831
|
+
"load_context_eager": []
|
|
1832
|
+
},
|
|
1617
1833
|
".agent-src.uncompressed/skills/fe-design/SKILL.md": {
|
|
1618
1834
|
"kind": "skill",
|
|
1619
1835
|
"rule_type": null,
|
|
@@ -1644,12 +1860,30 @@
|
|
|
1644
1860
|
"load_context": [],
|
|
1645
1861
|
"load_context_eager": []
|
|
1646
1862
|
},
|
|
1863
|
+
".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md": {
|
|
1864
|
+
"kind": "skill",
|
|
1865
|
+
"rule_type": null,
|
|
1866
|
+
"load_context": [],
|
|
1867
|
+
"load_context_eager": []
|
|
1868
|
+
},
|
|
1869
|
+
".agent-src.uncompressed/skills/forecasting/SKILL.md": {
|
|
1870
|
+
"kind": "skill",
|
|
1871
|
+
"rule_type": null,
|
|
1872
|
+
"load_context": [],
|
|
1873
|
+
"load_context_eager": []
|
|
1874
|
+
},
|
|
1647
1875
|
".agent-src.uncompressed/skills/form-handler/SKILL.md": {
|
|
1648
1876
|
"kind": "skill",
|
|
1649
1877
|
"rule_type": null,
|
|
1650
1878
|
"load_context": [],
|
|
1651
1879
|
"load_context_eager": []
|
|
1652
1880
|
},
|
|
1881
|
+
".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md": {
|
|
1882
|
+
"kind": "skill",
|
|
1883
|
+
"rule_type": null,
|
|
1884
|
+
"load_context": [],
|
|
1885
|
+
"load_context_eager": []
|
|
1886
|
+
},
|
|
1653
1887
|
".agent-src.uncompressed/skills/funnel-analysis/SKILL.md": {
|
|
1654
1888
|
"kind": "skill",
|
|
1655
1889
|
"rule_type": null,
|
|
@@ -1674,12 +1908,24 @@
|
|
|
1674
1908
|
"load_context": [],
|
|
1675
1909
|
"load_context_eager": []
|
|
1676
1910
|
},
|
|
1911
|
+
".agent-src.uncompressed/skills/gtm-launch/SKILL.md": {
|
|
1912
|
+
"kind": "skill",
|
|
1913
|
+
"rule_type": null,
|
|
1914
|
+
"load_context": [],
|
|
1915
|
+
"load_context_eager": []
|
|
1916
|
+
},
|
|
1677
1917
|
".agent-src.uncompressed/skills/guideline-writing/SKILL.md": {
|
|
1678
1918
|
"kind": "skill",
|
|
1679
1919
|
"rule_type": null,
|
|
1680
1920
|
"load_context": [],
|
|
1681
1921
|
"load_context_eager": []
|
|
1682
1922
|
},
|
|
1923
|
+
".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md": {
|
|
1924
|
+
"kind": "skill",
|
|
1925
|
+
"rule_type": null,
|
|
1926
|
+
"load_context": [],
|
|
1927
|
+
"load_context_eager": []
|
|
1928
|
+
},
|
|
1683
1929
|
".agent-src.uncompressed/skills/incident-commander/SKILL.md": {
|
|
1684
1930
|
"kind": "skill",
|
|
1685
1931
|
"rule_type": null,
|
|
@@ -1818,6 +2064,12 @@
|
|
|
1818
2064
|
"load_context": [],
|
|
1819
2065
|
"load_context_eager": []
|
|
1820
2066
|
},
|
|
2067
|
+
".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md": {
|
|
2068
|
+
"kind": "skill",
|
|
2069
|
+
"rule_type": null,
|
|
2070
|
+
"load_context": [],
|
|
2071
|
+
"load_context_eager": []
|
|
2072
|
+
},
|
|
1821
2073
|
".agent-src.uncompressed/skills/markitdown/SKILL.md": {
|
|
1822
2074
|
"kind": "skill",
|
|
1823
2075
|
"rule_type": null,
|
|
@@ -1854,6 +2106,12 @@
|
|
|
1854
2106
|
"load_context": [],
|
|
1855
2107
|
"load_context_eager": []
|
|
1856
2108
|
},
|
|
2109
|
+
".agent-src.uncompressed/skills/messaging-architecture/SKILL.md": {
|
|
2110
|
+
"kind": "skill",
|
|
2111
|
+
"rule_type": null,
|
|
2112
|
+
"load_context": [],
|
|
2113
|
+
"load_context_eager": []
|
|
2114
|
+
},
|
|
1857
2115
|
".agent-src.uncompressed/skills/migration-architect/SKILL.md": {
|
|
1858
2116
|
"kind": "skill",
|
|
1859
2117
|
"rule_type": null,
|
|
@@ -1884,109 +2142,163 @@
|
|
|
1884
2142
|
"load_context": [],
|
|
1885
2143
|
"load_context_eager": []
|
|
1886
2144
|
},
|
|
1887
|
-
".agent-src.uncompressed/skills/
|
|
2145
|
+
".agent-src.uncompressed/skills/nextjs-patterns/SKILL.md": {
|
|
1888
2146
|
"kind": "skill",
|
|
1889
2147
|
"rule_type": null,
|
|
1890
2148
|
"load_context": [],
|
|
1891
2149
|
"load_context_eager": []
|
|
1892
2150
|
},
|
|
1893
|
-
".agent-src.uncompressed/skills/
|
|
2151
|
+
".agent-src.uncompressed/skills/okr-tree-modeling/SKILL.md": {
|
|
1894
2152
|
"kind": "skill",
|
|
1895
2153
|
"rule_type": null,
|
|
1896
2154
|
"load_context": [],
|
|
1897
2155
|
"load_context_eager": []
|
|
1898
2156
|
},
|
|
1899
|
-
".agent-src.uncompressed/skills/
|
|
2157
|
+
".agent-src.uncompressed/skills/onboarding-design/SKILL.md": {
|
|
1900
2158
|
"kind": "skill",
|
|
1901
2159
|
"rule_type": null,
|
|
1902
2160
|
"load_context": [],
|
|
1903
2161
|
"load_context_eager": []
|
|
1904
2162
|
},
|
|
1905
|
-
".agent-src.uncompressed/skills/
|
|
2163
|
+
".agent-src.uncompressed/skills/onboarding-program/SKILL.md": {
|
|
1906
2164
|
"kind": "skill",
|
|
1907
2165
|
"rule_type": null,
|
|
1908
2166
|
"load_context": [],
|
|
1909
2167
|
"load_context_eager": []
|
|
1910
2168
|
},
|
|
1911
|
-
".agent-src.uncompressed/skills/
|
|
2169
|
+
".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md": {
|
|
1912
2170
|
"kind": "skill",
|
|
1913
2171
|
"rule_type": null,
|
|
1914
2172
|
"load_context": [],
|
|
1915
2173
|
"load_context_eager": []
|
|
1916
2174
|
},
|
|
1917
|
-
".agent-src.uncompressed/skills/
|
|
2175
|
+
".agent-src.uncompressed/skills/openapi/SKILL.md": {
|
|
1918
2176
|
"kind": "skill",
|
|
1919
2177
|
"rule_type": null,
|
|
1920
2178
|
"load_context": [],
|
|
1921
2179
|
"load_context_eager": []
|
|
1922
2180
|
},
|
|
1923
|
-
".agent-src.uncompressed/skills/
|
|
2181
|
+
".agent-src.uncompressed/skills/org-design/SKILL.md": {
|
|
1924
2182
|
"kind": "skill",
|
|
1925
2183
|
"rule_type": null,
|
|
1926
2184
|
"load_context": [],
|
|
1927
2185
|
"load_context_eager": []
|
|
1928
2186
|
},
|
|
1929
|
-
".agent-src.uncompressed/skills/
|
|
2187
|
+
".agent-src.uncompressed/skills/override-management/SKILL.md": {
|
|
1930
2188
|
"kind": "skill",
|
|
1931
2189
|
"rule_type": null,
|
|
1932
2190
|
"load_context": [],
|
|
1933
2191
|
"load_context_eager": []
|
|
1934
2192
|
},
|
|
1935
|
-
".agent-src.uncompressed/skills/
|
|
2193
|
+
".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md": {
|
|
1936
2194
|
"kind": "skill",
|
|
1937
2195
|
"rule_type": null,
|
|
1938
2196
|
"load_context": [],
|
|
1939
2197
|
"load_context_eager": []
|
|
1940
2198
|
},
|
|
1941
|
-
".agent-src.uncompressed/skills/
|
|
2199
|
+
".agent-src.uncompressed/skills/performance-analysis/SKILL.md": {
|
|
1942
2200
|
"kind": "skill",
|
|
1943
2201
|
"rule_type": null,
|
|
1944
2202
|
"load_context": [],
|
|
1945
2203
|
"load_context_eager": []
|
|
1946
2204
|
},
|
|
1947
|
-
".agent-src.uncompressed/skills/
|
|
2205
|
+
".agent-src.uncompressed/skills/performance/SKILL.md": {
|
|
1948
2206
|
"kind": "skill",
|
|
1949
2207
|
"rule_type": null,
|
|
1950
2208
|
"load_context": [],
|
|
1951
2209
|
"load_context_eager": []
|
|
1952
2210
|
},
|
|
1953
|
-
".agent-src.uncompressed/skills/
|
|
2211
|
+
".agent-src.uncompressed/skills/persona-writing/SKILL.md": {
|
|
1954
2212
|
"kind": "skill",
|
|
1955
2213
|
"rule_type": null,
|
|
1956
2214
|
"load_context": [],
|
|
1957
2215
|
"load_context_eager": []
|
|
1958
2216
|
},
|
|
1959
|
-
".agent-src.uncompressed/skills/
|
|
2217
|
+
".agent-src.uncompressed/skills/pest-testing/SKILL.md": {
|
|
1960
2218
|
"kind": "skill",
|
|
1961
2219
|
"rule_type": null,
|
|
1962
2220
|
"load_context": [],
|
|
1963
2221
|
"load_context_eager": []
|
|
1964
2222
|
},
|
|
1965
|
-
".agent-src.uncompressed/skills/
|
|
2223
|
+
".agent-src.uncompressed/skills/php-coder/SKILL.md": {
|
|
1966
2224
|
"kind": "skill",
|
|
1967
2225
|
"rule_type": null,
|
|
1968
2226
|
"load_context": [],
|
|
1969
2227
|
"load_context_eager": []
|
|
1970
2228
|
},
|
|
1971
|
-
".agent-src.uncompressed/skills/
|
|
2229
|
+
".agent-src.uncompressed/skills/php-debugging/SKILL.md": {
|
|
1972
2230
|
"kind": "skill",
|
|
1973
2231
|
"rule_type": null,
|
|
1974
2232
|
"load_context": [],
|
|
1975
2233
|
"load_context_eager": []
|
|
1976
2234
|
},
|
|
1977
|
-
".agent-src.uncompressed/skills/
|
|
2235
|
+
".agent-src.uncompressed/skills/php-service/SKILL.md": {
|
|
1978
2236
|
"kind": "skill",
|
|
1979
2237
|
"rule_type": null,
|
|
1980
2238
|
"load_context": [],
|
|
1981
2239
|
"load_context_eager": []
|
|
1982
2240
|
},
|
|
1983
|
-
".agent-src.uncompressed/skills/
|
|
2241
|
+
".agent-src.uncompressed/skills/pipeline-strategy/SKILL.md": {
|
|
1984
2242
|
"kind": "skill",
|
|
1985
2243
|
"rule_type": null,
|
|
1986
2244
|
"load_context": [],
|
|
1987
2245
|
"load_context_eager": []
|
|
1988
2246
|
},
|
|
1989
|
-
".agent-src.uncompressed/skills/
|
|
2247
|
+
".agent-src.uncompressed/skills/playwright-architect/SKILL.md": {
|
|
2248
|
+
"kind": "skill",
|
|
2249
|
+
"rule_type": null,
|
|
2250
|
+
"load_context": [],
|
|
2251
|
+
"load_context_eager": []
|
|
2252
|
+
},
|
|
2253
|
+
".agent-src.uncompressed/skills/playwright-testing/SKILL.md": {
|
|
2254
|
+
"kind": "skill",
|
|
2255
|
+
"rule_type": null,
|
|
2256
|
+
"load_context": [],
|
|
2257
|
+
"load_context_eager": []
|
|
2258
|
+
},
|
|
2259
|
+
".agent-src.uncompressed/skills/po-discovery/SKILL.md": {
|
|
2260
|
+
"kind": "skill",
|
|
2261
|
+
"rule_type": null,
|
|
2262
|
+
"load_context": [],
|
|
2263
|
+
"load_context_eager": []
|
|
2264
|
+
},
|
|
2265
|
+
".agent-src.uncompressed/skills/positioning-strategy/SKILL.md": {
|
|
2266
|
+
"kind": "skill",
|
|
2267
|
+
"rule_type": null,
|
|
2268
|
+
"load_context": [],
|
|
2269
|
+
"load_context_eager": []
|
|
2270
|
+
},
|
|
2271
|
+
".agent-src.uncompressed/skills/privacy-review/SKILL.md": {
|
|
2272
|
+
"kind": "skill",
|
|
2273
|
+
"rule_type": null,
|
|
2274
|
+
"load_context": [],
|
|
2275
|
+
"load_context_eager": []
|
|
2276
|
+
},
|
|
2277
|
+
".agent-src.uncompressed/skills/project-analysis-core/SKILL.md": {
|
|
2278
|
+
"kind": "skill",
|
|
2279
|
+
"rule_type": null,
|
|
2280
|
+
"load_context": [],
|
|
2281
|
+
"load_context_eager": []
|
|
2282
|
+
},
|
|
2283
|
+
".agent-src.uncompressed/skills/project-analysis-hypothesis-driven/SKILL.md": {
|
|
2284
|
+
"kind": "skill",
|
|
2285
|
+
"rule_type": null,
|
|
2286
|
+
"load_context": [],
|
|
2287
|
+
"load_context_eager": []
|
|
2288
|
+
},
|
|
2289
|
+
".agent-src.uncompressed/skills/project-analysis-laravel/SKILL.md": {
|
|
2290
|
+
"kind": "skill",
|
|
2291
|
+
"rule_type": null,
|
|
2292
|
+
"load_context": [],
|
|
2293
|
+
"load_context_eager": []
|
|
2294
|
+
},
|
|
2295
|
+
".agent-src.uncompressed/skills/project-analysis-nextjs/SKILL.md": {
|
|
2296
|
+
"kind": "skill",
|
|
2297
|
+
"rule_type": null,
|
|
2298
|
+
"load_context": [],
|
|
2299
|
+
"load_context_eager": []
|
|
2300
|
+
},
|
|
2301
|
+
".agent-src.uncompressed/skills/project-analysis-node-express/SKILL.md": {
|
|
1990
2302
|
"kind": "skill",
|
|
1991
2303
|
"rule_type": null,
|
|
1992
2304
|
"load_context": [],
|
|
@@ -2106,6 +2418,12 @@
|
|
|
2106
2418
|
"load_context": [],
|
|
2107
2419
|
"load_context_eager": []
|
|
2108
2420
|
},
|
|
2421
|
+
".agent-src.uncompressed/skills/retention-loops/SKILL.md": {
|
|
2422
|
+
"kind": "skill",
|
|
2423
|
+
"rule_type": null,
|
|
2424
|
+
"load_context": [],
|
|
2425
|
+
"load_context_eager": []
|
|
2426
|
+
},
|
|
2109
2427
|
".agent-src.uncompressed/skills/review-routing/SKILL.md": {
|
|
2110
2428
|
"kind": "skill",
|
|
2111
2429
|
"rule_type": null,
|
|
@@ -2148,6 +2466,18 @@
|
|
|
2148
2466
|
"load_context": [],
|
|
2149
2467
|
"load_context_eager": []
|
|
2150
2468
|
},
|
|
2469
|
+
".agent-src.uncompressed/skills/runway-cognition/SKILL.md": {
|
|
2470
|
+
"kind": "skill",
|
|
2471
|
+
"rule_type": null,
|
|
2472
|
+
"load_context": [],
|
|
2473
|
+
"load_context_eager": []
|
|
2474
|
+
},
|
|
2475
|
+
".agent-src.uncompressed/skills/scenario-modeling/SKILL.md": {
|
|
2476
|
+
"kind": "skill",
|
|
2477
|
+
"rule_type": null,
|
|
2478
|
+
"load_context": [],
|
|
2479
|
+
"load_context_eager": []
|
|
2480
|
+
},
|
|
2151
2481
|
".agent-src.uncompressed/skills/script-writing/SKILL.md": {
|
|
2152
2482
|
"kind": "skill",
|
|
2153
2483
|
"rule_type": null,
|
|
@@ -2274,6 +2604,12 @@
|
|
|
2274
2604
|
"load_context": [],
|
|
2275
2605
|
"load_context_eager": []
|
|
2276
2606
|
},
|
|
2607
|
+
".agent-src.uncompressed/skills/symfony-workflow/SKILL.md": {
|
|
2608
|
+
"kind": "skill",
|
|
2609
|
+
"rule_type": null,
|
|
2610
|
+
"load_context": [],
|
|
2611
|
+
"load_context_eager": []
|
|
2612
|
+
},
|
|
2277
2613
|
".agent-src.uncompressed/skills/systematic-debugging/SKILL.md": {
|
|
2278
2614
|
"kind": "skill",
|
|
2279
2615
|
"rule_type": null,
|
|
@@ -2340,6 +2676,12 @@
|
|
|
2340
2676
|
"load_context": [],
|
|
2341
2677
|
"load_context_eager": []
|
|
2342
2678
|
},
|
|
2679
|
+
".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md": {
|
|
2680
|
+
"kind": "skill",
|
|
2681
|
+
"rule_type": null,
|
|
2682
|
+
"load_context": [],
|
|
2683
|
+
"load_context_eager": []
|
|
2684
|
+
},
|
|
2343
2685
|
".agent-src.uncompressed/skills/token-optimizer/SKILL.md": {
|
|
2344
2686
|
"kind": "skill",
|
|
2345
2687
|
"rule_type": null,
|
|
@@ -2394,12 +2736,24 @@
|
|
|
2394
2736
|
"load_context": [],
|
|
2395
2737
|
"load_context_eager": []
|
|
2396
2738
|
},
|
|
2739
|
+
".agent-src.uncompressed/skills/vision-articulation/SKILL.md": {
|
|
2740
|
+
"kind": "skill",
|
|
2741
|
+
"rule_type": null,
|
|
2742
|
+
"load_context": [],
|
|
2743
|
+
"load_context_eager": []
|
|
2744
|
+
},
|
|
2397
2745
|
".agent-src.uncompressed/skills/voc-extract/SKILL.md": {
|
|
2398
2746
|
"kind": "skill",
|
|
2399
2747
|
"rule_type": null,
|
|
2400
2748
|
"load_context": [],
|
|
2401
2749
|
"load_context_eager": []
|
|
2402
2750
|
},
|
|
2751
|
+
".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md": {
|
|
2752
|
+
"kind": "skill",
|
|
2753
|
+
"rule_type": null,
|
|
2754
|
+
"load_context": [],
|
|
2755
|
+
"load_context_eager": []
|
|
2756
|
+
},
|
|
2403
2757
|
".agent-src.uncompressed/skills/websocket/SKILL.md": {
|
|
2404
2758
|
"kind": "skill",
|
|
2405
2759
|
"rule_type": null,
|
|
@@ -2926,6 +3280,27 @@
|
|
|
2926
3280
|
"via": "self",
|
|
2927
3281
|
"depth": 0
|
|
2928
3282
|
},
|
|
3283
|
+
{
|
|
3284
|
+
"source": ".agent-src.uncompressed/commands/council/analysis.md",
|
|
3285
|
+
"target": ".agent-src.uncompressed/commands/council/analysis.md",
|
|
3286
|
+
"type": "WRITE",
|
|
3287
|
+
"via": "self",
|
|
3288
|
+
"depth": 0
|
|
3289
|
+
},
|
|
3290
|
+
{
|
|
3291
|
+
"source": ".agent-src.uncompressed/commands/council/debate.md",
|
|
3292
|
+
"target": ".agent-src.uncompressed/commands/council/debate.md",
|
|
3293
|
+
"type": "WRITE",
|
|
3294
|
+
"via": "self",
|
|
3295
|
+
"depth": 0
|
|
3296
|
+
},
|
|
3297
|
+
{
|
|
3298
|
+
"source": ".agent-src.uncompressed/commands/council/debate.md",
|
|
3299
|
+
"target": ".agent-src.uncompressed/skills/ai-council/SKILL.md",
|
|
3300
|
+
"type": "READ_ONLY",
|
|
3301
|
+
"via": "body_link",
|
|
3302
|
+
"depth": 1
|
|
3303
|
+
},
|
|
2929
3304
|
{
|
|
2930
3305
|
"source": ".agent-src.uncompressed/commands/council/default.md",
|
|
2931
3306
|
"target": ".agent-src.uncompressed/commands/council/default.md",
|
|
@@ -3276,6 +3651,13 @@
|
|
|
3276
3651
|
"via": "self",
|
|
3277
3652
|
"depth": 0
|
|
3278
3653
|
},
|
|
3654
|
+
{
|
|
3655
|
+
"source": ".agent-src.uncompressed/commands/memory/learn-low-impact.md",
|
|
3656
|
+
"target": ".agent-src.uncompressed/commands/memory/learn-low-impact.md",
|
|
3657
|
+
"type": "WRITE",
|
|
3658
|
+
"via": "self",
|
|
3659
|
+
"depth": 0
|
|
3660
|
+
},
|
|
3279
3661
|
{
|
|
3280
3662
|
"source": ".agent-src.uncompressed/commands/memory/load.md",
|
|
3281
3663
|
"target": ".agent-src.uncompressed/commands/memory/load.md",
|
|
@@ -4935,6 +5317,41 @@
|
|
|
4935
5317
|
"via": "self",
|
|
4936
5318
|
"depth": 0
|
|
4937
5319
|
},
|
|
5320
|
+
{
|
|
5321
|
+
"source": ".agent-src.uncompressed/personas/advisors/contrarian.md",
|
|
5322
|
+
"target": ".agent-src.uncompressed/personas/advisors/contrarian.md",
|
|
5323
|
+
"type": "WRITE",
|
|
5324
|
+
"via": "self",
|
|
5325
|
+
"depth": 0
|
|
5326
|
+
},
|
|
5327
|
+
{
|
|
5328
|
+
"source": ".agent-src.uncompressed/personas/advisors/executor.md",
|
|
5329
|
+
"target": ".agent-src.uncompressed/personas/advisors/executor.md",
|
|
5330
|
+
"type": "WRITE",
|
|
5331
|
+
"via": "self",
|
|
5332
|
+
"depth": 0
|
|
5333
|
+
},
|
|
5334
|
+
{
|
|
5335
|
+
"source": ".agent-src.uncompressed/personas/advisors/expansionist.md",
|
|
5336
|
+
"target": ".agent-src.uncompressed/personas/advisors/expansionist.md",
|
|
5337
|
+
"type": "WRITE",
|
|
5338
|
+
"via": "self",
|
|
5339
|
+
"depth": 0
|
|
5340
|
+
},
|
|
5341
|
+
{
|
|
5342
|
+
"source": ".agent-src.uncompressed/personas/advisors/first-principles.md",
|
|
5343
|
+
"target": ".agent-src.uncompressed/personas/advisors/first-principles.md",
|
|
5344
|
+
"type": "WRITE",
|
|
5345
|
+
"via": "self",
|
|
5346
|
+
"depth": 0
|
|
5347
|
+
},
|
|
5348
|
+
{
|
|
5349
|
+
"source": ".agent-src.uncompressed/personas/advisors/outsider.md",
|
|
5350
|
+
"target": ".agent-src.uncompressed/personas/advisors/outsider.md",
|
|
5351
|
+
"type": "WRITE",
|
|
5352
|
+
"via": "self",
|
|
5353
|
+
"depth": 0
|
|
5354
|
+
},
|
|
4938
5355
|
{
|
|
4939
5356
|
"source": ".agent-src.uncompressed/personas/ai-agent.md",
|
|
4940
5357
|
"target": ".agent-src.uncompressed/personas/ai-agent.md",
|
|
@@ -4949,6 +5366,13 @@
|
|
|
4949
5366
|
"via": "self",
|
|
4950
5367
|
"depth": 0
|
|
4951
5368
|
},
|
|
5369
|
+
{
|
|
5370
|
+
"source": ".agent-src.uncompressed/personas/cmo.md",
|
|
5371
|
+
"target": ".agent-src.uncompressed/personas/cmo.md",
|
|
5372
|
+
"type": "WRITE",
|
|
5373
|
+
"via": "self",
|
|
5374
|
+
"depth": 0
|
|
5375
|
+
},
|
|
4952
5376
|
{
|
|
4953
5377
|
"source": ".agent-src.uncompressed/personas/critical-challenger.md",
|
|
4954
5378
|
"target": ".agent-src.uncompressed/personas/critical-challenger.md",
|
|
@@ -4956,6 +5380,13 @@
|
|
|
4956
5380
|
"via": "self",
|
|
4957
5381
|
"depth": 0
|
|
4958
5382
|
},
|
|
5383
|
+
{
|
|
5384
|
+
"source": ".agent-src.uncompressed/personas/customer-success-lead.md",
|
|
5385
|
+
"target": ".agent-src.uncompressed/personas/customer-success-lead.md",
|
|
5386
|
+
"type": "WRITE",
|
|
5387
|
+
"via": "self",
|
|
5388
|
+
"depth": 0
|
|
5389
|
+
},
|
|
4959
5390
|
{
|
|
4960
5391
|
"source": ".agent-src.uncompressed/personas/developer.md",
|
|
4961
5392
|
"target": ".agent-src.uncompressed/personas/developer.md",
|
|
@@ -4977,6 +5408,20 @@
|
|
|
4977
5408
|
"via": "self",
|
|
4978
5409
|
"depth": 0
|
|
4979
5410
|
},
|
|
5411
|
+
{
|
|
5412
|
+
"source": ".agent-src.uncompressed/personas/engineering-manager.md",
|
|
5413
|
+
"target": ".agent-src.uncompressed/personas/engineering-manager.md",
|
|
5414
|
+
"type": "WRITE",
|
|
5415
|
+
"via": "self",
|
|
5416
|
+
"depth": 0
|
|
5417
|
+
},
|
|
5418
|
+
{
|
|
5419
|
+
"source": ".agent-src.uncompressed/personas/finance-partner.md",
|
|
5420
|
+
"target": ".agent-src.uncompressed/personas/finance-partner.md",
|
|
5421
|
+
"type": "WRITE",
|
|
5422
|
+
"via": "self",
|
|
5423
|
+
"depth": 0
|
|
5424
|
+
},
|
|
4980
5425
|
{
|
|
4981
5426
|
"source": ".agent-src.uncompressed/personas/frontend-engineer.md",
|
|
4982
5427
|
"target": ".agent-src.uncompressed/personas/frontend-engineer.md",
|
|
@@ -4984,6 +5429,20 @@
|
|
|
4984
5429
|
"via": "self",
|
|
4985
5430
|
"depth": 0
|
|
4986
5431
|
},
|
|
5432
|
+
{
|
|
5433
|
+
"source": ".agent-src.uncompressed/personas/growth-pm.md",
|
|
5434
|
+
"target": ".agent-src.uncompressed/personas/growth-pm.md",
|
|
5435
|
+
"type": "WRITE",
|
|
5436
|
+
"via": "self",
|
|
5437
|
+
"depth": 0
|
|
5438
|
+
},
|
|
5439
|
+
{
|
|
5440
|
+
"source": ".agent-src.uncompressed/personas/people-strategist.md",
|
|
5441
|
+
"target": ".agent-src.uncompressed/personas/people-strategist.md",
|
|
5442
|
+
"type": "WRITE",
|
|
5443
|
+
"via": "self",
|
|
5444
|
+
"depth": 0
|
|
5445
|
+
},
|
|
4987
5446
|
{
|
|
4988
5447
|
"source": ".agent-src.uncompressed/personas/product-owner.md",
|
|
4989
5448
|
"target": ".agent-src.uncompressed/personas/product-owner.md",
|
|
@@ -5019,6 +5478,13 @@
|
|
|
5019
5478
|
"via": "self",
|
|
5020
5479
|
"depth": 0
|
|
5021
5480
|
},
|
|
5481
|
+
{
|
|
5482
|
+
"source": ".agent-src.uncompressed/personas/revops.md",
|
|
5483
|
+
"target": ".agent-src.uncompressed/personas/revops.md",
|
|
5484
|
+
"type": "WRITE",
|
|
5485
|
+
"via": "self",
|
|
5486
|
+
"depth": 0
|
|
5487
|
+
},
|
|
5022
5488
|
{
|
|
5023
5489
|
"source": ".agent-src.uncompressed/personas/security-engineer.md",
|
|
5024
5490
|
"target": ".agent-src.uncompressed/personas/security-engineer.md",
|
|
@@ -5040,6 +5506,13 @@
|
|
|
5040
5506
|
"via": "self",
|
|
5041
5507
|
"depth": 0
|
|
5042
5508
|
},
|
|
5509
|
+
{
|
|
5510
|
+
"source": ".agent-src.uncompressed/personas/strategist.md",
|
|
5511
|
+
"target": ".agent-src.uncompressed/personas/strategist.md",
|
|
5512
|
+
"type": "WRITE",
|
|
5513
|
+
"via": "self",
|
|
5514
|
+
"depth": 0
|
|
5515
|
+
},
|
|
5043
5516
|
{
|
|
5044
5517
|
"source": ".agent-src.uncompressed/personas/tech-writer.md",
|
|
5045
5518
|
"target": ".agent-src.uncompressed/personas/tech-writer.md",
|
|
@@ -5453,6 +5926,20 @@
|
|
|
5453
5926
|
"via": "self",
|
|
5454
5927
|
"depth": 0
|
|
5455
5928
|
},
|
|
5929
|
+
{
|
|
5930
|
+
"source": ".agent-src.uncompressed/rules/copilot-routing.md",
|
|
5931
|
+
"target": ".agent-src.uncompressed/rules/copilot-routing.md",
|
|
5932
|
+
"type": "WRITE",
|
|
5933
|
+
"via": "self",
|
|
5934
|
+
"depth": 0
|
|
5935
|
+
},
|
|
5936
|
+
{
|
|
5937
|
+
"source": ".agent-src.uncompressed/rules/devcontainer-routing.md",
|
|
5938
|
+
"target": ".agent-src.uncompressed/rules/devcontainer-routing.md",
|
|
5939
|
+
"type": "WRITE",
|
|
5940
|
+
"via": "self",
|
|
5941
|
+
"depth": 0
|
|
5942
|
+
},
|
|
5456
5943
|
{
|
|
5457
5944
|
"source": ".agent-src.uncompressed/rules/direct-answers.md",
|
|
5458
5945
|
"target": ".agent-src.uncompressed/contexts/contracts/frugality-charter.md",
|
|
@@ -5537,6 +6024,55 @@
|
|
|
5537
6024
|
"via": "self",
|
|
5538
6025
|
"depth": 0
|
|
5539
6026
|
},
|
|
6027
|
+
{
|
|
6028
|
+
"source": ".agent-src.uncompressed/rules/external-reference-deep-dive.md",
|
|
6029
|
+
"target": ".agent-src.uncompressed/commands/analyze-reference-repo.md",
|
|
6030
|
+
"type": "READ_ONLY",
|
|
6031
|
+
"via": "body_link",
|
|
6032
|
+
"depth": 1
|
|
6033
|
+
},
|
|
6034
|
+
{
|
|
6035
|
+
"source": ".agent-src.uncompressed/rules/external-reference-deep-dive.md",
|
|
6036
|
+
"target": ".agent-src.uncompressed/rules/ask-when-uncertain.md",
|
|
6037
|
+
"type": "READ_ONLY",
|
|
6038
|
+
"via": "body_link",
|
|
6039
|
+
"depth": 1
|
|
6040
|
+
},
|
|
6041
|
+
{
|
|
6042
|
+
"source": ".agent-src.uncompressed/rules/external-reference-deep-dive.md",
|
|
6043
|
+
"target": ".agent-src.uncompressed/rules/external-reference-deep-dive.md",
|
|
6044
|
+
"type": "WRITE",
|
|
6045
|
+
"via": "self",
|
|
6046
|
+
"depth": 0
|
|
6047
|
+
},
|
|
6048
|
+
{
|
|
6049
|
+
"source": ".agent-src.uncompressed/rules/external-reference-deep-dive.md",
|
|
6050
|
+
"target": ".agent-src.uncompressed/rules/think-before-action.md",
|
|
6051
|
+
"type": "READ_ONLY",
|
|
6052
|
+
"via": "body_link",
|
|
6053
|
+
"depth": 1
|
|
6054
|
+
},
|
|
6055
|
+
{
|
|
6056
|
+
"source": ".agent-src.uncompressed/rules/external-reference-deep-dive.md",
|
|
6057
|
+
"target": ".agent-src.uncompressed/skills/markitdown/SKILL.md",
|
|
6058
|
+
"type": "READ_ONLY",
|
|
6059
|
+
"via": "body_link",
|
|
6060
|
+
"depth": 1
|
|
6061
|
+
},
|
|
6062
|
+
{
|
|
6063
|
+
"source": ".agent-src.uncompressed/rules/fast-path-marker-visibility.md",
|
|
6064
|
+
"target": ".agent-src.uncompressed/rules/direct-answers.md",
|
|
6065
|
+
"type": "READ_ONLY",
|
|
6066
|
+
"via": "body_link",
|
|
6067
|
+
"depth": 1
|
|
6068
|
+
},
|
|
6069
|
+
{
|
|
6070
|
+
"source": ".agent-src.uncompressed/rules/fast-path-marker-visibility.md",
|
|
6071
|
+
"target": ".agent-src.uncompressed/rules/fast-path-marker-visibility.md",
|
|
6072
|
+
"type": "WRITE",
|
|
6073
|
+
"via": "self",
|
|
6074
|
+
"depth": 0
|
|
6075
|
+
},
|
|
5540
6076
|
{
|
|
5541
6077
|
"source": ".agent-src.uncompressed/rules/guidelines.md",
|
|
5542
6078
|
"target": ".agent-src.uncompressed/contexts/communication/rules-auto/guidelines-mechanics.md",
|
|
@@ -5635,6 +6171,13 @@
|
|
|
5635
6171
|
"via": "body_link",
|
|
5636
6172
|
"depth": 1
|
|
5637
6173
|
},
|
|
6174
|
+
{
|
|
6175
|
+
"source": ".agent-src.uncompressed/rules/laravel-routing.md",
|
|
6176
|
+
"target": ".agent-src.uncompressed/rules/laravel-routing.md",
|
|
6177
|
+
"type": "WRITE",
|
|
6178
|
+
"via": "self",
|
|
6179
|
+
"depth": 0
|
|
6180
|
+
},
|
|
5638
6181
|
{
|
|
5639
6182
|
"source": ".agent-src.uncompressed/rules/laravel-translations.md",
|
|
5640
6183
|
"target": ".agent-src.uncompressed/rules/laravel-translations.md",
|
|
@@ -5642,6 +6185,13 @@
|
|
|
5642
6185
|
"via": "self",
|
|
5643
6186
|
"depth": 0
|
|
5644
6187
|
},
|
|
6188
|
+
{
|
|
6189
|
+
"source": ".agent-src.uncompressed/rules/low-impact-corpus-privacy-floor.md",
|
|
6190
|
+
"target": ".agent-src.uncompressed/rules/low-impact-corpus-privacy-floor.md",
|
|
6191
|
+
"type": "WRITE",
|
|
6192
|
+
"via": "self",
|
|
6193
|
+
"depth": 0
|
|
6194
|
+
},
|
|
5645
6195
|
{
|
|
5646
6196
|
"source": ".agent-src.uncompressed/rules/markdown-safe-codeblocks.md",
|
|
5647
6197
|
"target": ".agent-src.uncompressed/rules/markdown-safe-codeblocks.md",
|
|
@@ -5712,13 +6262,6 @@
|
|
|
5712
6262
|
"via": "body_link",
|
|
5713
6263
|
"depth": 1
|
|
5714
6264
|
},
|
|
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
6265
|
{
|
|
5723
6266
|
"source": ".agent-src.uncompressed/rules/no-cheap-questions.md",
|
|
5724
6267
|
"target": ".agent-src.uncompressed/rules/no-cheap-questions.md",
|
|
@@ -5733,13 +6276,6 @@
|
|
|
5733
6276
|
"via": "body_link",
|
|
5734
6277
|
"depth": 1
|
|
5735
6278
|
},
|
|
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
6279
|
{
|
|
5744
6280
|
"source": ".agent-src.uncompressed/rules/no-cheap-questions.md",
|
|
5745
6281
|
"target": ".agent-src.uncompressed/rules/security-sensitive-stop.md",
|
|
@@ -5747,13 +6283,6 @@
|
|
|
5747
6283
|
"via": "body_link",
|
|
5748
6284
|
"depth": 1
|
|
5749
6285
|
},
|
|
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
6286
|
{
|
|
5758
6287
|
"source": ".agent-src.uncompressed/rules/no-roadmap-references.md",
|
|
5759
6288
|
"target": ".agent-src.uncompressed/rules/agent-docs.md",
|
|
@@ -6049,7 +6578,14 @@
|
|
|
6049
6578
|
"depth": 0
|
|
6050
6579
|
},
|
|
6051
6580
|
{
|
|
6052
|
-
"source": ".agent-src.uncompressed/rules/
|
|
6581
|
+
"source": ".agent-src.uncompressed/rules/symfony-routing.md",
|
|
6582
|
+
"target": ".agent-src.uncompressed/rules/symfony-routing.md",
|
|
6583
|
+
"type": "WRITE",
|
|
6584
|
+
"via": "self",
|
|
6585
|
+
"depth": 0
|
|
6586
|
+
},
|
|
6587
|
+
{
|
|
6588
|
+
"source": ".agent-src.uncompressed/rules/think-before-action.md",
|
|
6053
6589
|
"target": ".agent-src.uncompressed/contexts/communication/rules-auto/think-before-action-mechanics.md",
|
|
6054
6590
|
"type": "READ_ONLY",
|
|
6055
6591
|
"via": "body_link",
|
|
@@ -6202,6 +6738,34 @@
|
|
|
6202
6738
|
"via": "body_link",
|
|
6203
6739
|
"depth": 1
|
|
6204
6740
|
},
|
|
6741
|
+
{
|
|
6742
|
+
"source": ".agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
6743
|
+
"target": ".agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
6744
|
+
"type": "WRITE",
|
|
6745
|
+
"via": "self",
|
|
6746
|
+
"depth": 0
|
|
6747
|
+
},
|
|
6748
|
+
{
|
|
6749
|
+
"source": ".agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
6750
|
+
"target": ".agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
6751
|
+
"type": "READ_ONLY",
|
|
6752
|
+
"via": "body_link",
|
|
6753
|
+
"depth": 1
|
|
6754
|
+
},
|
|
6755
|
+
{
|
|
6756
|
+
"source": ".agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
6757
|
+
"target": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
6758
|
+
"type": "READ_ONLY",
|
|
6759
|
+
"via": "body_link",
|
|
6760
|
+
"depth": 1
|
|
6761
|
+
},
|
|
6762
|
+
{
|
|
6763
|
+
"source": ".agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
6764
|
+
"target": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
6765
|
+
"type": "READ_ONLY",
|
|
6766
|
+
"via": "body_link",
|
|
6767
|
+
"depth": 1
|
|
6768
|
+
},
|
|
6205
6769
|
{
|
|
6206
6770
|
"source": ".agent-src.uncompressed/skills/adr-create/SKILL.md",
|
|
6207
6771
|
"target": ".agent-src.uncompressed/contexts/contracts/frugality-charter.md",
|
|
@@ -6559,6 +7123,55 @@
|
|
|
6559
7123
|
"via": "body_link",
|
|
6560
7124
|
"depth": 1
|
|
6561
7125
|
},
|
|
7126
|
+
{
|
|
7127
|
+
"source": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
7128
|
+
"target": ".agent-src.uncompressed/skills/adr-create/SKILL.md",
|
|
7129
|
+
"type": "READ_ONLY",
|
|
7130
|
+
"via": "body_link",
|
|
7131
|
+
"depth": 1
|
|
7132
|
+
},
|
|
7133
|
+
{
|
|
7134
|
+
"source": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
7135
|
+
"target": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
7136
|
+
"type": "WRITE",
|
|
7137
|
+
"via": "self",
|
|
7138
|
+
"depth": 0
|
|
7139
|
+
},
|
|
7140
|
+
{
|
|
7141
|
+
"source": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
7142
|
+
"target": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
7143
|
+
"type": "READ_ONLY",
|
|
7144
|
+
"via": "body_link",
|
|
7145
|
+
"depth": 1
|
|
7146
|
+
},
|
|
7147
|
+
{
|
|
7148
|
+
"source": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
7149
|
+
"target": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
7150
|
+
"type": "READ_ONLY",
|
|
7151
|
+
"via": "body_link",
|
|
7152
|
+
"depth": 1
|
|
7153
|
+
},
|
|
7154
|
+
{
|
|
7155
|
+
"source": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
7156
|
+
"target": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
7157
|
+
"type": "READ_ONLY",
|
|
7158
|
+
"via": "body_link",
|
|
7159
|
+
"depth": 1
|
|
7160
|
+
},
|
|
7161
|
+
{
|
|
7162
|
+
"source": ".agent-src.uncompressed/skills/canvas-design/SKILL.md",
|
|
7163
|
+
"target": ".agent-src.uncompressed/contexts/contracts/frugality-charter.md",
|
|
7164
|
+
"type": "READ_ONLY",
|
|
7165
|
+
"via": "body_link",
|
|
7166
|
+
"depth": 1
|
|
7167
|
+
},
|
|
7168
|
+
{
|
|
7169
|
+
"source": ".agent-src.uncompressed/skills/canvas-design/SKILL.md",
|
|
7170
|
+
"target": ".agent-src.uncompressed/skills/canvas-design/SKILL.md",
|
|
7171
|
+
"type": "WRITE",
|
|
7172
|
+
"via": "self",
|
|
7173
|
+
"depth": 0
|
|
7174
|
+
},
|
|
6562
7175
|
{
|
|
6563
7176
|
"source": ".agent-src.uncompressed/skills/check-refs/SKILL.md",
|
|
6564
7177
|
"target": ".agent-src.uncompressed/skills/check-refs/SKILL.md",
|
|
@@ -6566,6 +7179,34 @@
|
|
|
6566
7179
|
"via": "self",
|
|
6567
7180
|
"depth": 0
|
|
6568
7181
|
},
|
|
7182
|
+
{
|
|
7183
|
+
"source": ".agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
7184
|
+
"target": ".agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
7185
|
+
"type": "WRITE",
|
|
7186
|
+
"via": "self",
|
|
7187
|
+
"depth": 0
|
|
7188
|
+
},
|
|
7189
|
+
{
|
|
7190
|
+
"source": ".agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
7191
|
+
"target": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
7192
|
+
"type": "READ_ONLY",
|
|
7193
|
+
"via": "body_link",
|
|
7194
|
+
"depth": 1
|
|
7195
|
+
},
|
|
7196
|
+
{
|
|
7197
|
+
"source": ".agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
7198
|
+
"target": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
7199
|
+
"type": "READ_ONLY",
|
|
7200
|
+
"via": "body_link",
|
|
7201
|
+
"depth": 1
|
|
7202
|
+
},
|
|
7203
|
+
{
|
|
7204
|
+
"source": ".agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
7205
|
+
"target": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
7206
|
+
"type": "READ_ONLY",
|
|
7207
|
+
"via": "body_link",
|
|
7208
|
+
"depth": 1
|
|
7209
|
+
},
|
|
6569
7210
|
{
|
|
6570
7211
|
"source": ".agent-src.uncompressed/skills/code-refactoring/SKILL.md",
|
|
6571
7212
|
"target": ".agent-src.uncompressed/skills/code-refactoring/SKILL.md",
|
|
@@ -6622,6 +7263,76 @@
|
|
|
6622
7263
|
"via": "body_link",
|
|
6623
7264
|
"depth": 1
|
|
6624
7265
|
},
|
|
7266
|
+
{
|
|
7267
|
+
"source": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
7268
|
+
"target": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
7269
|
+
"type": "WRITE",
|
|
7270
|
+
"via": "self",
|
|
7271
|
+
"depth": 0
|
|
7272
|
+
},
|
|
7273
|
+
{
|
|
7274
|
+
"source": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
7275
|
+
"target": ".agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
7276
|
+
"type": "READ_ONLY",
|
|
7277
|
+
"via": "body_link",
|
|
7278
|
+
"depth": 1
|
|
7279
|
+
},
|
|
7280
|
+
{
|
|
7281
|
+
"source": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
7282
|
+
"target": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
7283
|
+
"type": "READ_ONLY",
|
|
7284
|
+
"via": "body_link",
|
|
7285
|
+
"depth": 1
|
|
7286
|
+
},
|
|
7287
|
+
{
|
|
7288
|
+
"source": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
7289
|
+
"target": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
7290
|
+
"type": "READ_ONLY",
|
|
7291
|
+
"via": "body_link",
|
|
7292
|
+
"depth": 1
|
|
7293
|
+
},
|
|
7294
|
+
{
|
|
7295
|
+
"source": ".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
7296
|
+
"target": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
7297
|
+
"type": "READ_ONLY",
|
|
7298
|
+
"via": "body_link",
|
|
7299
|
+
"depth": 1
|
|
7300
|
+
},
|
|
7301
|
+
{
|
|
7302
|
+
"source": ".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
7303
|
+
"target": ".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
7304
|
+
"type": "WRITE",
|
|
7305
|
+
"via": "self",
|
|
7306
|
+
"depth": 0
|
|
7307
|
+
},
|
|
7308
|
+
{
|
|
7309
|
+
"source": ".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
7310
|
+
"target": ".agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
7311
|
+
"type": "READ_ONLY",
|
|
7312
|
+
"via": "body_link",
|
|
7313
|
+
"depth": 1
|
|
7314
|
+
},
|
|
7315
|
+
{
|
|
7316
|
+
"source": ".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
7317
|
+
"target": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
7318
|
+
"type": "READ_ONLY",
|
|
7319
|
+
"via": "body_link",
|
|
7320
|
+
"depth": 1
|
|
7321
|
+
},
|
|
7322
|
+
{
|
|
7323
|
+
"source": ".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
7324
|
+
"target": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
7325
|
+
"type": "READ_ONLY",
|
|
7326
|
+
"via": "body_link",
|
|
7327
|
+
"depth": 1
|
|
7328
|
+
},
|
|
7329
|
+
{
|
|
7330
|
+
"source": ".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
7331
|
+
"target": ".agent-src.uncompressed/skills/vision-articulation/SKILL.md",
|
|
7332
|
+
"type": "READ_ONLY",
|
|
7333
|
+
"via": "body_link",
|
|
7334
|
+
"depth": 1
|
|
7335
|
+
},
|
|
6625
7336
|
{
|
|
6626
7337
|
"source": ".agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
6627
7338
|
"target": ".agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
@@ -6664,6 +7375,34 @@
|
|
|
6664
7375
|
"via": "self",
|
|
6665
7376
|
"depth": 0
|
|
6666
7377
|
},
|
|
7378
|
+
{
|
|
7379
|
+
"source": ".agent-src.uncompressed/skills/content-funnel-design/SKILL.md",
|
|
7380
|
+
"target": ".agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
7381
|
+
"type": "READ_ONLY",
|
|
7382
|
+
"via": "body_link",
|
|
7383
|
+
"depth": 1
|
|
7384
|
+
},
|
|
7385
|
+
{
|
|
7386
|
+
"source": ".agent-src.uncompressed/skills/content-funnel-design/SKILL.md",
|
|
7387
|
+
"target": ".agent-src.uncompressed/skills/content-funnel-design/SKILL.md",
|
|
7388
|
+
"type": "WRITE",
|
|
7389
|
+
"via": "self",
|
|
7390
|
+
"depth": 0
|
|
7391
|
+
},
|
|
7392
|
+
{
|
|
7393
|
+
"source": ".agent-src.uncompressed/skills/content-funnel-design/SKILL.md",
|
|
7394
|
+
"target": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
7395
|
+
"type": "READ_ONLY",
|
|
7396
|
+
"via": "body_link",
|
|
7397
|
+
"depth": 1
|
|
7398
|
+
},
|
|
7399
|
+
{
|
|
7400
|
+
"source": ".agent-src.uncompressed/skills/content-funnel-design/SKILL.md",
|
|
7401
|
+
"target": ".agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
7402
|
+
"type": "READ_ONLY",
|
|
7403
|
+
"via": "body_link",
|
|
7404
|
+
"depth": 1
|
|
7405
|
+
},
|
|
6667
7406
|
{
|
|
6668
7407
|
"source": ".agent-src.uncompressed/skills/context-authoring/SKILL.md",
|
|
6669
7408
|
"target": ".agent-src.uncompressed/contexts/contracts/frugality-charter.md",
|
|
@@ -6685,6 +7424,34 @@
|
|
|
6685
7424
|
"via": "self",
|
|
6686
7425
|
"depth": 0
|
|
6687
7426
|
},
|
|
7427
|
+
{
|
|
7428
|
+
"source": ".agent-src.uncompressed/skills/contracts-cognition/SKILL.md",
|
|
7429
|
+
"target": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
7430
|
+
"type": "READ_ONLY",
|
|
7431
|
+
"via": "body_link",
|
|
7432
|
+
"depth": 1
|
|
7433
|
+
},
|
|
7434
|
+
{
|
|
7435
|
+
"source": ".agent-src.uncompressed/skills/contracts-cognition/SKILL.md",
|
|
7436
|
+
"target": ".agent-src.uncompressed/skills/contracts-cognition/SKILL.md",
|
|
7437
|
+
"type": "WRITE",
|
|
7438
|
+
"via": "self",
|
|
7439
|
+
"depth": 0
|
|
7440
|
+
},
|
|
7441
|
+
{
|
|
7442
|
+
"source": ".agent-src.uncompressed/skills/contracts-cognition/SKILL.md",
|
|
7443
|
+
"target": ".agent-src.uncompressed/skills/data-handling-judgment/SKILL.md",
|
|
7444
|
+
"type": "READ_ONLY",
|
|
7445
|
+
"via": "body_link",
|
|
7446
|
+
"depth": 1
|
|
7447
|
+
},
|
|
7448
|
+
{
|
|
7449
|
+
"source": ".agent-src.uncompressed/skills/contracts-cognition/SKILL.md",
|
|
7450
|
+
"target": ".agent-src.uncompressed/skills/privacy-review/SKILL.md",
|
|
7451
|
+
"type": "READ_ONLY",
|
|
7452
|
+
"via": "body_link",
|
|
7453
|
+
"depth": 1
|
|
7454
|
+
},
|
|
6688
7455
|
{
|
|
6689
7456
|
"source": ".agent-src.uncompressed/skills/conventional-commits-writing/SKILL.md",
|
|
6690
7457
|
"target": ".agent-src.uncompressed/contexts/contracts/frugality-charter.md",
|
|
@@ -6804,6 +7571,27 @@
|
|
|
6804
7571
|
"via": "body_link",
|
|
6805
7572
|
"depth": 1
|
|
6806
7573
|
},
|
|
7574
|
+
{
|
|
7575
|
+
"source": ".agent-src.uncompressed/skills/data-handling-judgment/SKILL.md",
|
|
7576
|
+
"target": ".agent-src.uncompressed/skills/contracts-cognition/SKILL.md",
|
|
7577
|
+
"type": "READ_ONLY",
|
|
7578
|
+
"via": "body_link",
|
|
7579
|
+
"depth": 1
|
|
7580
|
+
},
|
|
7581
|
+
{
|
|
7582
|
+
"source": ".agent-src.uncompressed/skills/data-handling-judgment/SKILL.md",
|
|
7583
|
+
"target": ".agent-src.uncompressed/skills/data-handling-judgment/SKILL.md",
|
|
7584
|
+
"type": "WRITE",
|
|
7585
|
+
"via": "self",
|
|
7586
|
+
"depth": 0
|
|
7587
|
+
},
|
|
7588
|
+
{
|
|
7589
|
+
"source": ".agent-src.uncompressed/skills/data-handling-judgment/SKILL.md",
|
|
7590
|
+
"target": ".agent-src.uncompressed/skills/privacy-review/SKILL.md",
|
|
7591
|
+
"type": "READ_ONLY",
|
|
7592
|
+
"via": "body_link",
|
|
7593
|
+
"depth": 1
|
|
7594
|
+
},
|
|
6807
7595
|
{
|
|
6808
7596
|
"source": ".agent-src.uncompressed/skills/database/SKILL.md",
|
|
6809
7597
|
"target": ".agent-src.uncompressed/skills/database/SKILL.md",
|
|
@@ -6839,6 +7627,34 @@
|
|
|
6839
7627
|
"via": "body_link",
|
|
6840
7628
|
"depth": 1
|
|
6841
7629
|
},
|
|
7630
|
+
{
|
|
7631
|
+
"source": ".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
7632
|
+
"target": ".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
7633
|
+
"type": "WRITE",
|
|
7634
|
+
"via": "self",
|
|
7635
|
+
"depth": 0
|
|
7636
|
+
},
|
|
7637
|
+
{
|
|
7638
|
+
"source": ".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
7639
|
+
"target": ".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
7640
|
+
"type": "READ_ONLY",
|
|
7641
|
+
"via": "body_link",
|
|
7642
|
+
"depth": 1
|
|
7643
|
+
},
|
|
7644
|
+
{
|
|
7645
|
+
"source": ".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
7646
|
+
"target": ".agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
7647
|
+
"type": "READ_ONLY",
|
|
7648
|
+
"via": "body_link",
|
|
7649
|
+
"depth": 1
|
|
7650
|
+
},
|
|
7651
|
+
{
|
|
7652
|
+
"source": ".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
7653
|
+
"target": ".agent-src.uncompressed/skills/pipeline-strategy/SKILL.md",
|
|
7654
|
+
"type": "READ_ONLY",
|
|
7655
|
+
"via": "body_link",
|
|
7656
|
+
"depth": 1
|
|
7657
|
+
},
|
|
6842
7658
|
{
|
|
6843
7659
|
"source": ".agent-src.uncompressed/skills/decision-record/SKILL.md",
|
|
6844
7660
|
"target": ".agent-src.uncompressed/skills/adr-create/SKILL.md",
|
|
@@ -6972,6 +7788,20 @@
|
|
|
6972
7788
|
"via": "body_link",
|
|
6973
7789
|
"depth": 1
|
|
6974
7790
|
},
|
|
7791
|
+
{
|
|
7792
|
+
"source": ".agent-src.uncompressed/skills/doc-coauthoring/SKILL.md",
|
|
7793
|
+
"target": ".agent-src.uncompressed/contexts/contracts/frugality-charter.md",
|
|
7794
|
+
"type": "READ_ONLY",
|
|
7795
|
+
"via": "body_link",
|
|
7796
|
+
"depth": 1
|
|
7797
|
+
},
|
|
7798
|
+
{
|
|
7799
|
+
"source": ".agent-src.uncompressed/skills/doc-coauthoring/SKILL.md",
|
|
7800
|
+
"target": ".agent-src.uncompressed/skills/doc-coauthoring/SKILL.md",
|
|
7801
|
+
"type": "WRITE",
|
|
7802
|
+
"via": "self",
|
|
7803
|
+
"depth": 0
|
|
7804
|
+
},
|
|
6975
7805
|
{
|
|
6976
7806
|
"source": ".agent-src.uncompressed/skills/docker/SKILL.md",
|
|
6977
7807
|
"target": ".agent-src.uncompressed/skills/docker/SKILL.md",
|
|
@@ -6986,6 +7816,48 @@
|
|
|
6986
7816
|
"via": "self",
|
|
6987
7817
|
"depth": 0
|
|
6988
7818
|
},
|
|
7819
|
+
{
|
|
7820
|
+
"source": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
7821
|
+
"target": ".agent-src.uncompressed/skills/content-funnel-design/SKILL.md",
|
|
7822
|
+
"type": "READ_ONLY",
|
|
7823
|
+
"via": "body_link",
|
|
7824
|
+
"depth": 1
|
|
7825
|
+
},
|
|
7826
|
+
{
|
|
7827
|
+
"source": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
7828
|
+
"target": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
7829
|
+
"type": "WRITE",
|
|
7830
|
+
"via": "self",
|
|
7831
|
+
"depth": 0
|
|
7832
|
+
},
|
|
7833
|
+
{
|
|
7834
|
+
"source": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
7835
|
+
"target": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
7836
|
+
"type": "READ_ONLY",
|
|
7837
|
+
"via": "body_link",
|
|
7838
|
+
"depth": 1
|
|
7839
|
+
},
|
|
7840
|
+
{
|
|
7841
|
+
"source": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
7842
|
+
"target": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
7843
|
+
"type": "READ_ONLY",
|
|
7844
|
+
"via": "body_link",
|
|
7845
|
+
"depth": 1
|
|
7846
|
+
},
|
|
7847
|
+
{
|
|
7848
|
+
"source": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
7849
|
+
"target": ".agent-src.uncompressed/skills/release-comms/SKILL.md",
|
|
7850
|
+
"type": "READ_ONLY",
|
|
7851
|
+
"via": "body_link",
|
|
7852
|
+
"depth": 1
|
|
7853
|
+
},
|
|
7854
|
+
{
|
|
7855
|
+
"source": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
7856
|
+
"target": ".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md",
|
|
7857
|
+
"type": "READ_ONLY",
|
|
7858
|
+
"via": "body_link",
|
|
7859
|
+
"depth": 1
|
|
7860
|
+
},
|
|
6989
7861
|
{
|
|
6990
7862
|
"source": ".agent-src.uncompressed/skills/eloquent/SKILL.md",
|
|
6991
7863
|
"target": ".agent-src.uncompressed/skills/eloquent/SKILL.md",
|
|
@@ -7064,8 +7936,43 @@
|
|
|
7064
7936
|
"depth": 0
|
|
7065
7937
|
},
|
|
7066
7938
|
{
|
|
7067
|
-
"source": ".agent-src.uncompressed/skills/
|
|
7068
|
-
"target": ".agent-src.uncompressed/skills/
|
|
7939
|
+
"source": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
7940
|
+
"target": ".agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
7941
|
+
"type": "READ_ONLY",
|
|
7942
|
+
"via": "body_link",
|
|
7943
|
+
"depth": 1
|
|
7944
|
+
},
|
|
7945
|
+
{
|
|
7946
|
+
"source": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
7947
|
+
"target": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
7948
|
+
"type": "WRITE",
|
|
7949
|
+
"via": "self",
|
|
7950
|
+
"depth": 0
|
|
7951
|
+
},
|
|
7952
|
+
{
|
|
7953
|
+
"source": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
7954
|
+
"target": ".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
7955
|
+
"type": "READ_ONLY",
|
|
7956
|
+
"via": "body_link",
|
|
7957
|
+
"depth": 1
|
|
7958
|
+
},
|
|
7959
|
+
{
|
|
7960
|
+
"source": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
7961
|
+
"target": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
7962
|
+
"type": "READ_ONLY",
|
|
7963
|
+
"via": "body_link",
|
|
7964
|
+
"depth": 1
|
|
7965
|
+
},
|
|
7966
|
+
{
|
|
7967
|
+
"source": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
7968
|
+
"target": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
7969
|
+
"type": "READ_ONLY",
|
|
7970
|
+
"via": "body_link",
|
|
7971
|
+
"depth": 1
|
|
7972
|
+
},
|
|
7973
|
+
{
|
|
7974
|
+
"source": ".agent-src.uncompressed/skills/fe-design/SKILL.md",
|
|
7975
|
+
"target": ".agent-src.uncompressed/skills/blade-ui/SKILL.md",
|
|
7069
7976
|
"type": "READ_ONLY",
|
|
7070
7977
|
"via": "body_link",
|
|
7071
7978
|
"depth": 1
|
|
@@ -7224,6 +8131,62 @@
|
|
|
7224
8131
|
"via": "body_link",
|
|
7225
8132
|
"depth": 1
|
|
7226
8133
|
},
|
|
8134
|
+
{
|
|
8135
|
+
"source": ".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
8136
|
+
"target": ".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
8137
|
+
"type": "READ_ONLY",
|
|
8138
|
+
"via": "body_link",
|
|
8139
|
+
"depth": 1
|
|
8140
|
+
},
|
|
8141
|
+
{
|
|
8142
|
+
"source": ".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
8143
|
+
"target": ".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
8144
|
+
"type": "WRITE",
|
|
8145
|
+
"via": "self",
|
|
8146
|
+
"depth": 0
|
|
8147
|
+
},
|
|
8148
|
+
{
|
|
8149
|
+
"source": ".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
8150
|
+
"target": ".agent-src.uncompressed/skills/pipeline-strategy/SKILL.md",
|
|
8151
|
+
"type": "READ_ONLY",
|
|
8152
|
+
"via": "body_link",
|
|
8153
|
+
"depth": 1
|
|
8154
|
+
},
|
|
8155
|
+
{
|
|
8156
|
+
"source": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
8157
|
+
"target": ".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
8158
|
+
"type": "READ_ONLY",
|
|
8159
|
+
"via": "body_link",
|
|
8160
|
+
"depth": 1
|
|
8161
|
+
},
|
|
8162
|
+
{
|
|
8163
|
+
"source": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
8164
|
+
"target": ".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
8165
|
+
"type": "READ_ONLY",
|
|
8166
|
+
"via": "body_link",
|
|
8167
|
+
"depth": 1
|
|
8168
|
+
},
|
|
8169
|
+
{
|
|
8170
|
+
"source": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
8171
|
+
"target": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
8172
|
+
"type": "WRITE",
|
|
8173
|
+
"via": "self",
|
|
8174
|
+
"depth": 0
|
|
8175
|
+
},
|
|
8176
|
+
{
|
|
8177
|
+
"source": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
8178
|
+
"target": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
8179
|
+
"type": "READ_ONLY",
|
|
8180
|
+
"via": "body_link",
|
|
8181
|
+
"depth": 1
|
|
8182
|
+
},
|
|
8183
|
+
{
|
|
8184
|
+
"source": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
8185
|
+
"target": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
8186
|
+
"type": "READ_ONLY",
|
|
8187
|
+
"via": "body_link",
|
|
8188
|
+
"depth": 1
|
|
8189
|
+
},
|
|
7227
8190
|
{
|
|
7228
8191
|
"source": ".agent-src.uncompressed/skills/form-handler/SKILL.md",
|
|
7229
8192
|
"target": ".agent-src.uncompressed/skills/accessibility-auditor/SKILL.md",
|
|
@@ -7259,6 +8222,27 @@
|
|
|
7259
8222
|
"via": "body_link",
|
|
7260
8223
|
"depth": 1
|
|
7261
8224
|
},
|
|
8225
|
+
{
|
|
8226
|
+
"source": ".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
8227
|
+
"target": ".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
8228
|
+
"type": "WRITE",
|
|
8229
|
+
"via": "self",
|
|
8230
|
+
"depth": 0
|
|
8231
|
+
},
|
|
8232
|
+
{
|
|
8233
|
+
"source": ".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
8234
|
+
"target": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
8235
|
+
"type": "READ_ONLY",
|
|
8236
|
+
"via": "body_link",
|
|
8237
|
+
"depth": 1
|
|
8238
|
+
},
|
|
8239
|
+
{
|
|
8240
|
+
"source": ".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
8241
|
+
"target": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
8242
|
+
"type": "READ_ONLY",
|
|
8243
|
+
"via": "body_link",
|
|
8244
|
+
"depth": 1
|
|
8245
|
+
},
|
|
7262
8246
|
{
|
|
7263
8247
|
"source": ".agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
7264
8248
|
"target": ".agent-src.uncompressed/skills/dcf-modeling/SKILL.md",
|
|
@@ -7315,6 +8299,48 @@
|
|
|
7315
8299
|
"via": "self",
|
|
7316
8300
|
"depth": 0
|
|
7317
8301
|
},
|
|
8302
|
+
{
|
|
8303
|
+
"source": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
8304
|
+
"target": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
8305
|
+
"type": "READ_ONLY",
|
|
8306
|
+
"via": "body_link",
|
|
8307
|
+
"depth": 1
|
|
8308
|
+
},
|
|
8309
|
+
{
|
|
8310
|
+
"source": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
8311
|
+
"target": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
8312
|
+
"type": "WRITE",
|
|
8313
|
+
"via": "self",
|
|
8314
|
+
"depth": 0
|
|
8315
|
+
},
|
|
8316
|
+
{
|
|
8317
|
+
"source": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
8318
|
+
"target": ".agent-src.uncompressed/skills/launch-readiness/SKILL.md",
|
|
8319
|
+
"type": "READ_ONLY",
|
|
8320
|
+
"via": "body_link",
|
|
8321
|
+
"depth": 1
|
|
8322
|
+
},
|
|
8323
|
+
{
|
|
8324
|
+
"source": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
8325
|
+
"target": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
8326
|
+
"type": "READ_ONLY",
|
|
8327
|
+
"via": "body_link",
|
|
8328
|
+
"depth": 1
|
|
8329
|
+
},
|
|
8330
|
+
{
|
|
8331
|
+
"source": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
8332
|
+
"target": ".agent-src.uncompressed/skills/release-comms/SKILL.md",
|
|
8333
|
+
"type": "READ_ONLY",
|
|
8334
|
+
"via": "body_link",
|
|
8335
|
+
"depth": 1
|
|
8336
|
+
},
|
|
8337
|
+
{
|
|
8338
|
+
"source": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
8339
|
+
"target": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
8340
|
+
"type": "READ_ONLY",
|
|
8341
|
+
"via": "body_link",
|
|
8342
|
+
"depth": 1
|
|
8343
|
+
},
|
|
7318
8344
|
{
|
|
7319
8345
|
"source": ".agent-src.uncompressed/skills/guideline-writing/SKILL.md",
|
|
7320
8346
|
"target": ".agent-src.uncompressed/contexts/contracts/frugality-charter.md",
|
|
@@ -7350,6 +8376,34 @@
|
|
|
7350
8376
|
"via": "self",
|
|
7351
8377
|
"depth": 0
|
|
7352
8378
|
},
|
|
8379
|
+
{
|
|
8380
|
+
"source": ".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
8381
|
+
"target": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
8382
|
+
"type": "READ_ONLY",
|
|
8383
|
+
"via": "body_link",
|
|
8384
|
+
"depth": 1
|
|
8385
|
+
},
|
|
8386
|
+
{
|
|
8387
|
+
"source": ".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
8388
|
+
"target": ".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
8389
|
+
"type": "WRITE",
|
|
8390
|
+
"via": "self",
|
|
8391
|
+
"depth": 0
|
|
8392
|
+
},
|
|
8393
|
+
{
|
|
8394
|
+
"source": ".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
8395
|
+
"target": ".agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
8396
|
+
"type": "READ_ONLY",
|
|
8397
|
+
"via": "body_link",
|
|
8398
|
+
"depth": 1
|
|
8399
|
+
},
|
|
8400
|
+
{
|
|
8401
|
+
"source": ".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
8402
|
+
"target": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
8403
|
+
"type": "READ_ONLY",
|
|
8404
|
+
"via": "body_link",
|
|
8405
|
+
"depth": 1
|
|
8406
|
+
},
|
|
7353
8407
|
{
|
|
7354
8408
|
"source": ".agent-src.uncompressed/skills/incident-commander/SKILL.md",
|
|
7355
8409
|
"target": ".agent-src.uncompressed/skills/incident-commander/SKILL.md",
|
|
@@ -7798,6 +8852,48 @@
|
|
|
7798
8852
|
"via": "self",
|
|
7799
8853
|
"depth": 0
|
|
7800
8854
|
},
|
|
8855
|
+
{
|
|
8856
|
+
"source": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
8857
|
+
"target": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
8858
|
+
"type": "READ_ONLY",
|
|
8859
|
+
"via": "body_link",
|
|
8860
|
+
"depth": 1
|
|
8861
|
+
},
|
|
8862
|
+
{
|
|
8863
|
+
"source": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
8864
|
+
"target": ".agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
8865
|
+
"type": "READ_ONLY",
|
|
8866
|
+
"via": "body_link",
|
|
8867
|
+
"depth": 1
|
|
8868
|
+
},
|
|
8869
|
+
{
|
|
8870
|
+
"source": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
8871
|
+
"target": ".agent-src.uncompressed/skills/content-funnel-design/SKILL.md",
|
|
8872
|
+
"type": "READ_ONLY",
|
|
8873
|
+
"via": "body_link",
|
|
8874
|
+
"depth": 1
|
|
8875
|
+
},
|
|
8876
|
+
{
|
|
8877
|
+
"source": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
8878
|
+
"target": ".agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
8879
|
+
"type": "READ_ONLY",
|
|
8880
|
+
"via": "body_link",
|
|
8881
|
+
"depth": 1
|
|
8882
|
+
},
|
|
8883
|
+
{
|
|
8884
|
+
"source": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
8885
|
+
"target": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
8886
|
+
"type": "WRITE",
|
|
8887
|
+
"via": "self",
|
|
8888
|
+
"depth": 0
|
|
8889
|
+
},
|
|
8890
|
+
{
|
|
8891
|
+
"source": ".agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
8892
|
+
"target": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
8893
|
+
"type": "READ_ONLY",
|
|
8894
|
+
"via": "body_link",
|
|
8895
|
+
"depth": 1
|
|
8896
|
+
},
|
|
7801
8897
|
{
|
|
7802
8898
|
"source": ".agent-src.uncompressed/skills/markitdown/SKILL.md",
|
|
7803
8899
|
"target": ".agent-src.uncompressed/commands/analyze-reference-repo.md",
|
|
@@ -7882,6 +8978,55 @@
|
|
|
7882
8978
|
"via": "self",
|
|
7883
8979
|
"depth": 0
|
|
7884
8980
|
},
|
|
8981
|
+
{
|
|
8982
|
+
"source": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
8983
|
+
"target": ".agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
8984
|
+
"type": "READ_ONLY",
|
|
8985
|
+
"via": "body_link",
|
|
8986
|
+
"depth": 1
|
|
8987
|
+
},
|
|
8988
|
+
{
|
|
8989
|
+
"source": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
8990
|
+
"target": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
8991
|
+
"type": "READ_ONLY",
|
|
8992
|
+
"via": "body_link",
|
|
8993
|
+
"depth": 1
|
|
8994
|
+
},
|
|
8995
|
+
{
|
|
8996
|
+
"source": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
8997
|
+
"target": ".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
8998
|
+
"type": "READ_ONLY",
|
|
8999
|
+
"via": "body_link",
|
|
9000
|
+
"depth": 1
|
|
9001
|
+
},
|
|
9002
|
+
{
|
|
9003
|
+
"source": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
9004
|
+
"target": ".agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
9005
|
+
"type": "READ_ONLY",
|
|
9006
|
+
"via": "body_link",
|
|
9007
|
+
"depth": 1
|
|
9008
|
+
},
|
|
9009
|
+
{
|
|
9010
|
+
"source": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
9011
|
+
"target": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
9012
|
+
"type": "WRITE",
|
|
9013
|
+
"via": "self",
|
|
9014
|
+
"depth": 0
|
|
9015
|
+
},
|
|
9016
|
+
{
|
|
9017
|
+
"source": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
9018
|
+
"target": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
9019
|
+
"type": "READ_ONLY",
|
|
9020
|
+
"via": "body_link",
|
|
9021
|
+
"depth": 1
|
|
9022
|
+
},
|
|
9023
|
+
{
|
|
9024
|
+
"source": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
9025
|
+
"target": ".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md",
|
|
9026
|
+
"type": "READ_ONLY",
|
|
9027
|
+
"via": "body_link",
|
|
9028
|
+
"depth": 1
|
|
9029
|
+
},
|
|
7885
9030
|
{
|
|
7886
9031
|
"source": ".agent-src.uncompressed/skills/migration-architect/SKILL.md",
|
|
7887
9032
|
"target": ".agent-src.uncompressed/skills/data-flow-mapper/SKILL.md",
|
|
@@ -7938,6 +9083,13 @@
|
|
|
7938
9083
|
"via": "self",
|
|
7939
9084
|
"depth": 0
|
|
7940
9085
|
},
|
|
9086
|
+
{
|
|
9087
|
+
"source": ".agent-src.uncompressed/skills/nextjs-patterns/SKILL.md",
|
|
9088
|
+
"target": ".agent-src.uncompressed/skills/nextjs-patterns/SKILL.md",
|
|
9089
|
+
"type": "WRITE",
|
|
9090
|
+
"via": "self",
|
|
9091
|
+
"depth": 0
|
|
9092
|
+
},
|
|
7941
9093
|
{
|
|
7942
9094
|
"source": ".agent-src.uncompressed/skills/okr-tree-modeling/SKILL.md",
|
|
7943
9095
|
"target": ".agent-src.uncompressed/skills/dcf-modeling/SKILL.md",
|
|
@@ -7966,6 +9118,111 @@
|
|
|
7966
9118
|
"via": "body_link",
|
|
7967
9119
|
"depth": 1
|
|
7968
9120
|
},
|
|
9121
|
+
{
|
|
9122
|
+
"source": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
9123
|
+
"target": ".agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
9124
|
+
"type": "READ_ONLY",
|
|
9125
|
+
"via": "body_link",
|
|
9126
|
+
"depth": 1
|
|
9127
|
+
},
|
|
9128
|
+
{
|
|
9129
|
+
"source": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
9130
|
+
"target": ".agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
9131
|
+
"type": "READ_ONLY",
|
|
9132
|
+
"via": "body_link",
|
|
9133
|
+
"depth": 1
|
|
9134
|
+
},
|
|
9135
|
+
{
|
|
9136
|
+
"source": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
9137
|
+
"target": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
9138
|
+
"type": "READ_ONLY",
|
|
9139
|
+
"via": "body_link",
|
|
9140
|
+
"depth": 1
|
|
9141
|
+
},
|
|
9142
|
+
{
|
|
9143
|
+
"source": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
9144
|
+
"target": ".agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
9145
|
+
"type": "READ_ONLY",
|
|
9146
|
+
"via": "body_link",
|
|
9147
|
+
"depth": 1
|
|
9148
|
+
},
|
|
9149
|
+
{
|
|
9150
|
+
"source": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
9151
|
+
"target": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
9152
|
+
"type": "WRITE",
|
|
9153
|
+
"via": "self",
|
|
9154
|
+
"depth": 0
|
|
9155
|
+
},
|
|
9156
|
+
{
|
|
9157
|
+
"source": ".agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
9158
|
+
"target": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
9159
|
+
"type": "READ_ONLY",
|
|
9160
|
+
"via": "body_link",
|
|
9161
|
+
"depth": 1
|
|
9162
|
+
},
|
|
9163
|
+
{
|
|
9164
|
+
"source": ".agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
9165
|
+
"target": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
9166
|
+
"type": "READ_ONLY",
|
|
9167
|
+
"via": "body_link",
|
|
9168
|
+
"depth": 1
|
|
9169
|
+
},
|
|
9170
|
+
{
|
|
9171
|
+
"source": ".agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
9172
|
+
"target": ".agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
9173
|
+
"type": "WRITE",
|
|
9174
|
+
"via": "self",
|
|
9175
|
+
"depth": 0
|
|
9176
|
+
},
|
|
9177
|
+
{
|
|
9178
|
+
"source": ".agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
9179
|
+
"target": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
9180
|
+
"type": "READ_ONLY",
|
|
9181
|
+
"via": "body_link",
|
|
9182
|
+
"depth": 1
|
|
9183
|
+
},
|
|
9184
|
+
{
|
|
9185
|
+
"source": ".agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
9186
|
+
"target": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9187
|
+
"type": "READ_ONLY",
|
|
9188
|
+
"via": "body_link",
|
|
9189
|
+
"depth": 1
|
|
9190
|
+
},
|
|
9191
|
+
{
|
|
9192
|
+
"source": ".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
9193
|
+
"target": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
9194
|
+
"type": "READ_ONLY",
|
|
9195
|
+
"via": "body_link",
|
|
9196
|
+
"depth": 1
|
|
9197
|
+
},
|
|
9198
|
+
{
|
|
9199
|
+
"source": ".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
9200
|
+
"target": ".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
9201
|
+
"type": "READ_ONLY",
|
|
9202
|
+
"via": "body_link",
|
|
9203
|
+
"depth": 1
|
|
9204
|
+
},
|
|
9205
|
+
{
|
|
9206
|
+
"source": ".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
9207
|
+
"target": ".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
9208
|
+
"type": "WRITE",
|
|
9209
|
+
"via": "self",
|
|
9210
|
+
"depth": 0
|
|
9211
|
+
},
|
|
9212
|
+
{
|
|
9213
|
+
"source": ".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
9214
|
+
"target": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9215
|
+
"type": "READ_ONLY",
|
|
9216
|
+
"via": "body_link",
|
|
9217
|
+
"depth": 1
|
|
9218
|
+
},
|
|
9219
|
+
{
|
|
9220
|
+
"source": ".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
9221
|
+
"target": ".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md",
|
|
9222
|
+
"type": "READ_ONLY",
|
|
9223
|
+
"via": "body_link",
|
|
9224
|
+
"depth": 1
|
|
9225
|
+
},
|
|
7969
9226
|
{
|
|
7970
9227
|
"source": ".agent-src.uncompressed/skills/openapi/SKILL.md",
|
|
7971
9228
|
"target": ".agent-src.uncompressed/skills/openapi/SKILL.md",
|
|
@@ -7973,6 +9230,27 @@
|
|
|
7973
9230
|
"via": "self",
|
|
7974
9231
|
"depth": 0
|
|
7975
9232
|
},
|
|
9233
|
+
{
|
|
9234
|
+
"source": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
9235
|
+
"target": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
9236
|
+
"type": "READ_ONLY",
|
|
9237
|
+
"via": "body_link",
|
|
9238
|
+
"depth": 1
|
|
9239
|
+
},
|
|
9240
|
+
{
|
|
9241
|
+
"source": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
9242
|
+
"target": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
9243
|
+
"type": "WRITE",
|
|
9244
|
+
"via": "self",
|
|
9245
|
+
"depth": 0
|
|
9246
|
+
},
|
|
9247
|
+
{
|
|
9248
|
+
"source": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
9249
|
+
"target": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9250
|
+
"type": "READ_ONLY",
|
|
9251
|
+
"via": "body_link",
|
|
9252
|
+
"depth": 1
|
|
9253
|
+
},
|
|
7976
9254
|
{
|
|
7977
9255
|
"source": ".agent-src.uncompressed/skills/override-management/SKILL.md",
|
|
7978
9256
|
"target": ".agent-src.uncompressed/skills/override-management/SKILL.md",
|
|
@@ -7980,6 +9258,41 @@
|
|
|
7980
9258
|
"via": "self",
|
|
7981
9259
|
"depth": 0
|
|
7982
9260
|
},
|
|
9261
|
+
{
|
|
9262
|
+
"source": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9263
|
+
"target": ".agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
9264
|
+
"type": "READ_ONLY",
|
|
9265
|
+
"via": "body_link",
|
|
9266
|
+
"depth": 1
|
|
9267
|
+
},
|
|
9268
|
+
{
|
|
9269
|
+
"source": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9270
|
+
"target": ".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
9271
|
+
"type": "READ_ONLY",
|
|
9272
|
+
"via": "body_link",
|
|
9273
|
+
"depth": 1
|
|
9274
|
+
},
|
|
9275
|
+
{
|
|
9276
|
+
"source": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9277
|
+
"target": ".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
9278
|
+
"type": "READ_ONLY",
|
|
9279
|
+
"via": "body_link",
|
|
9280
|
+
"depth": 1
|
|
9281
|
+
},
|
|
9282
|
+
{
|
|
9283
|
+
"source": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9284
|
+
"target": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
9285
|
+
"type": "READ_ONLY",
|
|
9286
|
+
"via": "body_link",
|
|
9287
|
+
"depth": 1
|
|
9288
|
+
},
|
|
9289
|
+
{
|
|
9290
|
+
"source": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9291
|
+
"target": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
9292
|
+
"type": "WRITE",
|
|
9293
|
+
"via": "self",
|
|
9294
|
+
"depth": 0
|
|
9295
|
+
},
|
|
7983
9296
|
{
|
|
7984
9297
|
"source": ".agent-src.uncompressed/skills/performance-analysis/SKILL.md",
|
|
7985
9298
|
"target": ".agent-src.uncompressed/skills/performance-analysis/SKILL.md",
|
|
@@ -8058,22 +9371,50 @@
|
|
|
8058
9371
|
"depth": 1
|
|
8059
9372
|
},
|
|
8060
9373
|
{
|
|
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",
|
|
9374
|
+
"source": ".agent-src.uncompressed/skills/php-coder/SKILL.md",
|
|
9375
|
+
"target": ".agent-src.uncompressed/skills/php-coder/SKILL.md",
|
|
9376
|
+
"type": "WRITE",
|
|
9377
|
+
"via": "self",
|
|
9378
|
+
"depth": 0
|
|
9379
|
+
},
|
|
9380
|
+
{
|
|
9381
|
+
"source": ".agent-src.uncompressed/skills/php-debugging/SKILL.md",
|
|
9382
|
+
"target": ".agent-src.uncompressed/skills/php-debugging/SKILL.md",
|
|
9383
|
+
"type": "WRITE",
|
|
9384
|
+
"via": "self",
|
|
9385
|
+
"depth": 0
|
|
9386
|
+
},
|
|
9387
|
+
{
|
|
9388
|
+
"source": ".agent-src.uncompressed/skills/php-service/SKILL.md",
|
|
9389
|
+
"target": ".agent-src.uncompressed/skills/php-service/SKILL.md",
|
|
9390
|
+
"type": "WRITE",
|
|
9391
|
+
"via": "self",
|
|
9392
|
+
"depth": 0
|
|
9393
|
+
},
|
|
9394
|
+
{
|
|
9395
|
+
"source": ".agent-src.uncompressed/skills/pipeline-strategy/SKILL.md",
|
|
9396
|
+
"target": ".agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
9397
|
+
"type": "READ_ONLY",
|
|
9398
|
+
"via": "body_link",
|
|
9399
|
+
"depth": 1
|
|
9400
|
+
},
|
|
9401
|
+
{
|
|
9402
|
+
"source": ".agent-src.uncompressed/skills/pipeline-strategy/SKILL.md",
|
|
9403
|
+
"target": ".agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
9404
|
+
"type": "READ_ONLY",
|
|
9405
|
+
"via": "body_link",
|
|
9406
|
+
"depth": 1
|
|
9407
|
+
},
|
|
9408
|
+
{
|
|
9409
|
+
"source": ".agent-src.uncompressed/skills/pipeline-strategy/SKILL.md",
|
|
9410
|
+
"target": ".agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
9411
|
+
"type": "READ_ONLY",
|
|
9412
|
+
"via": "body_link",
|
|
9413
|
+
"depth": 1
|
|
9414
|
+
},
|
|
9415
|
+
{
|
|
9416
|
+
"source": ".agent-src.uncompressed/skills/pipeline-strategy/SKILL.md",
|
|
9417
|
+
"target": ".agent-src.uncompressed/skills/pipeline-strategy/SKILL.md",
|
|
8077
9418
|
"type": "WRITE",
|
|
8078
9419
|
"via": "self",
|
|
8079
9420
|
"depth": 0
|
|
@@ -8120,6 +9461,69 @@
|
|
|
8120
9461
|
"via": "body_link",
|
|
8121
9462
|
"depth": 1
|
|
8122
9463
|
},
|
|
9464
|
+
{
|
|
9465
|
+
"source": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
9466
|
+
"target": ".agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
9467
|
+
"type": "READ_ONLY",
|
|
9468
|
+
"via": "body_link",
|
|
9469
|
+
"depth": 1
|
|
9470
|
+
},
|
|
9471
|
+
{
|
|
9472
|
+
"source": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
9473
|
+
"target": ".agent-src.uncompressed/skills/customer-research/SKILL.md",
|
|
9474
|
+
"type": "READ_ONLY",
|
|
9475
|
+
"via": "body_link",
|
|
9476
|
+
"depth": 1
|
|
9477
|
+
},
|
|
9478
|
+
{
|
|
9479
|
+
"source": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
9480
|
+
"target": ".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
9481
|
+
"type": "READ_ONLY",
|
|
9482
|
+
"via": "body_link",
|
|
9483
|
+
"depth": 1
|
|
9484
|
+
},
|
|
9485
|
+
{
|
|
9486
|
+
"source": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
9487
|
+
"target": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
9488
|
+
"type": "READ_ONLY",
|
|
9489
|
+
"via": "body_link",
|
|
9490
|
+
"depth": 1
|
|
9491
|
+
},
|
|
9492
|
+
{
|
|
9493
|
+
"source": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
9494
|
+
"target": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
9495
|
+
"type": "WRITE",
|
|
9496
|
+
"via": "self",
|
|
9497
|
+
"depth": 0
|
|
9498
|
+
},
|
|
9499
|
+
{
|
|
9500
|
+
"source": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
9501
|
+
"target": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
9502
|
+
"type": "READ_ONLY",
|
|
9503
|
+
"via": "body_link",
|
|
9504
|
+
"depth": 1
|
|
9505
|
+
},
|
|
9506
|
+
{
|
|
9507
|
+
"source": ".agent-src.uncompressed/skills/privacy-review/SKILL.md",
|
|
9508
|
+
"target": ".agent-src.uncompressed/skills/contracts-cognition/SKILL.md",
|
|
9509
|
+
"type": "READ_ONLY",
|
|
9510
|
+
"via": "body_link",
|
|
9511
|
+
"depth": 1
|
|
9512
|
+
},
|
|
9513
|
+
{
|
|
9514
|
+
"source": ".agent-src.uncompressed/skills/privacy-review/SKILL.md",
|
|
9515
|
+
"target": ".agent-src.uncompressed/skills/data-handling-judgment/SKILL.md",
|
|
9516
|
+
"type": "READ_ONLY",
|
|
9517
|
+
"via": "body_link",
|
|
9518
|
+
"depth": 1
|
|
9519
|
+
},
|
|
9520
|
+
{
|
|
9521
|
+
"source": ".agent-src.uncompressed/skills/privacy-review/SKILL.md",
|
|
9522
|
+
"target": ".agent-src.uncompressed/skills/privacy-review/SKILL.md",
|
|
9523
|
+
"type": "WRITE",
|
|
9524
|
+
"via": "self",
|
|
9525
|
+
"depth": 0
|
|
9526
|
+
},
|
|
8123
9527
|
{
|
|
8124
9528
|
"source": ".agent-src.uncompressed/skills/project-analysis-core/SKILL.md",
|
|
8125
9529
|
"target": ".agent-src.uncompressed/skills/project-analysis-core/SKILL.md",
|
|
@@ -8561,6 +9965,41 @@
|
|
|
8561
9965
|
"via": "self",
|
|
8562
9966
|
"depth": 0
|
|
8563
9967
|
},
|
|
9968
|
+
{
|
|
9969
|
+
"source": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
9970
|
+
"target": ".agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
9971
|
+
"type": "READ_ONLY",
|
|
9972
|
+
"via": "body_link",
|
|
9973
|
+
"depth": 1
|
|
9974
|
+
},
|
|
9975
|
+
{
|
|
9976
|
+
"source": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
9977
|
+
"target": ".agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
9978
|
+
"type": "READ_ONLY",
|
|
9979
|
+
"via": "body_link",
|
|
9980
|
+
"depth": 1
|
|
9981
|
+
},
|
|
9982
|
+
{
|
|
9983
|
+
"source": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
9984
|
+
"target": ".agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
9985
|
+
"type": "READ_ONLY",
|
|
9986
|
+
"via": "body_link",
|
|
9987
|
+
"depth": 1
|
|
9988
|
+
},
|
|
9989
|
+
{
|
|
9990
|
+
"source": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
9991
|
+
"target": ".agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
9992
|
+
"type": "READ_ONLY",
|
|
9993
|
+
"via": "body_link",
|
|
9994
|
+
"depth": 1
|
|
9995
|
+
},
|
|
9996
|
+
{
|
|
9997
|
+
"source": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
9998
|
+
"target": ".agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
9999
|
+
"type": "WRITE",
|
|
10000
|
+
"via": "self",
|
|
10001
|
+
"depth": 0
|
|
10002
|
+
},
|
|
8564
10003
|
{
|
|
8565
10004
|
"source": ".agent-src.uncompressed/skills/review-routing/SKILL.md",
|
|
8566
10005
|
"target": ".agent-src.uncompressed/rules/reviewer-awareness.md",
|
|
@@ -8792,6 +10231,90 @@
|
|
|
8792
10231
|
"via": "self",
|
|
8793
10232
|
"depth": 0
|
|
8794
10233
|
},
|
|
10234
|
+
{
|
|
10235
|
+
"source": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
10236
|
+
"target": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
10237
|
+
"type": "READ_ONLY",
|
|
10238
|
+
"via": "body_link",
|
|
10239
|
+
"depth": 1
|
|
10240
|
+
},
|
|
10241
|
+
{
|
|
10242
|
+
"source": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
10243
|
+
"target": ".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
10244
|
+
"type": "READ_ONLY",
|
|
10245
|
+
"via": "body_link",
|
|
10246
|
+
"depth": 1
|
|
10247
|
+
},
|
|
10248
|
+
{
|
|
10249
|
+
"source": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
10250
|
+
"target": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
10251
|
+
"type": "READ_ONLY",
|
|
10252
|
+
"via": "body_link",
|
|
10253
|
+
"depth": 1
|
|
10254
|
+
},
|
|
10255
|
+
{
|
|
10256
|
+
"source": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
10257
|
+
"target": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
10258
|
+
"type": "WRITE",
|
|
10259
|
+
"via": "self",
|
|
10260
|
+
"depth": 0
|
|
10261
|
+
},
|
|
10262
|
+
{
|
|
10263
|
+
"source": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
10264
|
+
"target": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
10265
|
+
"type": "READ_ONLY",
|
|
10266
|
+
"via": "body_link",
|
|
10267
|
+
"depth": 1
|
|
10268
|
+
},
|
|
10269
|
+
{
|
|
10270
|
+
"source": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
10271
|
+
"target": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
10272
|
+
"type": "READ_ONLY",
|
|
10273
|
+
"via": "body_link",
|
|
10274
|
+
"depth": 1
|
|
10275
|
+
},
|
|
10276
|
+
{
|
|
10277
|
+
"source": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
10278
|
+
"target": ".agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
10279
|
+
"type": "READ_ONLY",
|
|
10280
|
+
"via": "body_link",
|
|
10281
|
+
"depth": 1
|
|
10282
|
+
},
|
|
10283
|
+
{
|
|
10284
|
+
"source": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
10285
|
+
"target": ".agent-src.uncompressed/skills/dcf-modeling/SKILL.md",
|
|
10286
|
+
"type": "READ_ONLY",
|
|
10287
|
+
"via": "body_link",
|
|
10288
|
+
"depth": 1
|
|
10289
|
+
},
|
|
10290
|
+
{
|
|
10291
|
+
"source": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
10292
|
+
"target": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
10293
|
+
"type": "READ_ONLY",
|
|
10294
|
+
"via": "body_link",
|
|
10295
|
+
"depth": 1
|
|
10296
|
+
},
|
|
10297
|
+
{
|
|
10298
|
+
"source": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
10299
|
+
"target": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
10300
|
+
"type": "READ_ONLY",
|
|
10301
|
+
"via": "body_link",
|
|
10302
|
+
"depth": 1
|
|
10303
|
+
},
|
|
10304
|
+
{
|
|
10305
|
+
"source": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
10306
|
+
"target": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
10307
|
+
"type": "WRITE",
|
|
10308
|
+
"via": "self",
|
|
10309
|
+
"depth": 0
|
|
10310
|
+
},
|
|
10311
|
+
{
|
|
10312
|
+
"source": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
10313
|
+
"target": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
10314
|
+
"type": "READ_ONLY",
|
|
10315
|
+
"via": "body_link",
|
|
10316
|
+
"depth": 1
|
|
10317
|
+
},
|
|
8795
10318
|
{
|
|
8796
10319
|
"source": ".agent-src.uncompressed/skills/script-writing/SKILL.md",
|
|
8797
10320
|
"target": ".agent-src.uncompressed/contexts/contracts/frugality-charter.md",
|
|
@@ -9247,6 +10770,13 @@
|
|
|
9247
10770
|
"via": "self",
|
|
9248
10771
|
"depth": 0
|
|
9249
10772
|
},
|
|
10773
|
+
{
|
|
10774
|
+
"source": ".agent-src.uncompressed/skills/symfony-workflow/SKILL.md",
|
|
10775
|
+
"target": ".agent-src.uncompressed/skills/symfony-workflow/SKILL.md",
|
|
10776
|
+
"type": "WRITE",
|
|
10777
|
+
"via": "self",
|
|
10778
|
+
"depth": 0
|
|
10779
|
+
},
|
|
9250
10780
|
{
|
|
9251
10781
|
"source": ".agent-src.uncompressed/skills/systematic-debugging/SKILL.md",
|
|
9252
10782
|
"target": ".agent-src.uncompressed/skills/blast-radius-analyzer/SKILL.md",
|
|
@@ -9548,6 +11078,48 @@
|
|
|
9548
11078
|
"via": "self",
|
|
9549
11079
|
"depth": 0
|
|
9550
11080
|
},
|
|
11081
|
+
{
|
|
11082
|
+
"source": ".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md",
|
|
11083
|
+
"target": ".agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
11084
|
+
"type": "READ_ONLY",
|
|
11085
|
+
"via": "body_link",
|
|
11086
|
+
"depth": 1
|
|
11087
|
+
},
|
|
11088
|
+
{
|
|
11089
|
+
"source": ".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md",
|
|
11090
|
+
"target": ".agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
11091
|
+
"type": "READ_ONLY",
|
|
11092
|
+
"via": "body_link",
|
|
11093
|
+
"depth": 1
|
|
11094
|
+
},
|
|
11095
|
+
{
|
|
11096
|
+
"source": ".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md",
|
|
11097
|
+
"target": ".agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
11098
|
+
"type": "READ_ONLY",
|
|
11099
|
+
"via": "body_link",
|
|
11100
|
+
"depth": 1
|
|
11101
|
+
},
|
|
11102
|
+
{
|
|
11103
|
+
"source": ".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md",
|
|
11104
|
+
"target": ".agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
11105
|
+
"type": "READ_ONLY",
|
|
11106
|
+
"via": "body_link",
|
|
11107
|
+
"depth": 1
|
|
11108
|
+
},
|
|
11109
|
+
{
|
|
11110
|
+
"source": ".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md",
|
|
11111
|
+
"target": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
11112
|
+
"type": "READ_ONLY",
|
|
11113
|
+
"via": "body_link",
|
|
11114
|
+
"depth": 1
|
|
11115
|
+
},
|
|
11116
|
+
{
|
|
11117
|
+
"source": ".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md",
|
|
11118
|
+
"target": ".agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md",
|
|
11119
|
+
"type": "WRITE",
|
|
11120
|
+
"via": "self",
|
|
11121
|
+
"depth": 0
|
|
11122
|
+
},
|
|
9551
11123
|
{
|
|
9552
11124
|
"source": ".agent-src.uncompressed/skills/token-optimizer/SKILL.md",
|
|
9553
11125
|
"target": ".agent-src.uncompressed/rules/cli-output-handling.md",
|
|
@@ -9625,6 +11197,13 @@
|
|
|
9625
11197
|
"via": "body_link",
|
|
9626
11198
|
"depth": 1
|
|
9627
11199
|
},
|
|
11200
|
+
{
|
|
11201
|
+
"source": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
11202
|
+
"target": ".agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
11203
|
+
"type": "READ_ONLY",
|
|
11204
|
+
"via": "body_link",
|
|
11205
|
+
"depth": 1
|
|
11206
|
+
},
|
|
9628
11207
|
{
|
|
9629
11208
|
"source": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
9630
11209
|
"target": ".agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
@@ -9646,6 +11225,20 @@
|
|
|
9646
11225
|
"via": "body_link",
|
|
9647
11226
|
"depth": 1
|
|
9648
11227
|
},
|
|
11228
|
+
{
|
|
11229
|
+
"source": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
11230
|
+
"target": ".agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
11231
|
+
"type": "READ_ONLY",
|
|
11232
|
+
"via": "body_link",
|
|
11233
|
+
"depth": 1
|
|
11234
|
+
},
|
|
11235
|
+
{
|
|
11236
|
+
"source": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
11237
|
+
"target": ".agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
11238
|
+
"type": "READ_ONLY",
|
|
11239
|
+
"via": "body_link",
|
|
11240
|
+
"depth": 1
|
|
11241
|
+
},
|
|
9649
11242
|
{
|
|
9650
11243
|
"source": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
9651
11244
|
"target": ".agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md",
|
|
@@ -9723,6 +11316,41 @@
|
|
|
9723
11316
|
"via": "self",
|
|
9724
11317
|
"depth": 0
|
|
9725
11318
|
},
|
|
11319
|
+
{
|
|
11320
|
+
"source": ".agent-src.uncompressed/skills/vision-articulation/SKILL.md",
|
|
11321
|
+
"target": ".agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
11322
|
+
"type": "READ_ONLY",
|
|
11323
|
+
"via": "body_link",
|
|
11324
|
+
"depth": 1
|
|
11325
|
+
},
|
|
11326
|
+
{
|
|
11327
|
+
"source": ".agent-src.uncompressed/skills/vision-articulation/SKILL.md",
|
|
11328
|
+
"target": ".agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
11329
|
+
"type": "READ_ONLY",
|
|
11330
|
+
"via": "body_link",
|
|
11331
|
+
"depth": 1
|
|
11332
|
+
},
|
|
11333
|
+
{
|
|
11334
|
+
"source": ".agent-src.uncompressed/skills/vision-articulation/SKILL.md",
|
|
11335
|
+
"target": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
11336
|
+
"type": "READ_ONLY",
|
|
11337
|
+
"via": "body_link",
|
|
11338
|
+
"depth": 1
|
|
11339
|
+
},
|
|
11340
|
+
{
|
|
11341
|
+
"source": ".agent-src.uncompressed/skills/vision-articulation/SKILL.md",
|
|
11342
|
+
"target": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
11343
|
+
"type": "READ_ONLY",
|
|
11344
|
+
"via": "body_link",
|
|
11345
|
+
"depth": 1
|
|
11346
|
+
},
|
|
11347
|
+
{
|
|
11348
|
+
"source": ".agent-src.uncompressed/skills/vision-articulation/SKILL.md",
|
|
11349
|
+
"target": ".agent-src.uncompressed/skills/vision-articulation/SKILL.md",
|
|
11350
|
+
"type": "WRITE",
|
|
11351
|
+
"via": "self",
|
|
11352
|
+
"depth": 0
|
|
11353
|
+
},
|
|
9726
11354
|
{
|
|
9727
11355
|
"source": ".agent-src.uncompressed/skills/voc-extract/SKILL.md",
|
|
9728
11356
|
"target": ".agent-src.uncompressed/skills/discovery-interview/SKILL.md",
|
|
@@ -9751,6 +11379,41 @@
|
|
|
9751
11379
|
"via": "self",
|
|
9752
11380
|
"depth": 0
|
|
9753
11381
|
},
|
|
11382
|
+
{
|
|
11383
|
+
"source": ".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md",
|
|
11384
|
+
"target": ".agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
11385
|
+
"type": "READ_ONLY",
|
|
11386
|
+
"via": "body_link",
|
|
11387
|
+
"depth": 1
|
|
11388
|
+
},
|
|
11389
|
+
{
|
|
11390
|
+
"source": ".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md",
|
|
11391
|
+
"target": ".agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
11392
|
+
"type": "READ_ONLY",
|
|
11393
|
+
"via": "body_link",
|
|
11394
|
+
"depth": 1
|
|
11395
|
+
},
|
|
11396
|
+
{
|
|
11397
|
+
"source": ".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md",
|
|
11398
|
+
"target": ".agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
11399
|
+
"type": "READ_ONLY",
|
|
11400
|
+
"via": "body_link",
|
|
11401
|
+
"depth": 1
|
|
11402
|
+
},
|
|
11403
|
+
{
|
|
11404
|
+
"source": ".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md",
|
|
11405
|
+
"target": ".agent-src.uncompressed/skills/release-comms/SKILL.md",
|
|
11406
|
+
"type": "READ_ONLY",
|
|
11407
|
+
"via": "body_link",
|
|
11408
|
+
"depth": 1
|
|
11409
|
+
},
|
|
11410
|
+
{
|
|
11411
|
+
"source": ".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md",
|
|
11412
|
+
"target": ".agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md",
|
|
11413
|
+
"type": "WRITE",
|
|
11414
|
+
"via": "self",
|
|
11415
|
+
"depth": 0
|
|
11416
|
+
},
|
|
9754
11417
|
{
|
|
9755
11418
|
"source": ".agent-src.uncompressed/skills/websocket/SKILL.md",
|
|
9756
11419
|
"target": ".agent-src.uncompressed/skills/websocket/SKILL.md",
|