-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodebase-graph.groupings.json
More file actions
6489 lines (6489 loc) · 445 KB
/
codebase-graph.groupings.json
File metadata and controls
6489 lines (6489 loc) · 445 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"generated_at": "2026-01-15T21:28:37Z",
"group_sets": [
{
"id": "structure",
"label": "Workspace/Package/Directory",
"metadata": {},
"multi_membership": false,
"source": "extractor"
},
{
"id": "layer",
"label": "Node Type",
"metadata": {},
"multi_membership": false,
"source": "extractor"
},
{
"id": "ownership",
"label": "CODEOWNERS/Overrides",
"metadata": {},
"multi_membership": true,
"source": "extractor"
},
{
"id": "semantic_domain",
"label": "Domain Tags",
"metadata": {},
"multi_membership": true,
"source": "annotation"
},
{
"id": "semantic_module",
"label": "Module Tags",
"metadata": {},
"multi_membership": true,
"source": "annotation"
},
{
"id": "computed",
"label": "Computed Clusters",
"metadata": {
"algorithm": "connected_components",
"singletons_excluded": true
},
"multi_membership": false,
"source": "analysis"
}
],
"groups": [
{
"group_set": "computed",
"id": "component:014cd77f4d",
"label": "package:skillmeat.cache (6)",
"metadata": {
"size": 6
},
"nodes": [
"migration:skillmeat/cache/migrations/versions/001_initial_schema.py::001_initial_schema",
"model:skillmeat/cache/models.py::Artifact",
"model:skillmeat/cache/models.py::ArtifactMetadata",
"model:skillmeat/cache/models.py::CacheMetadata",
"model:skillmeat/cache/models.py::MarketplaceEntry",
"model:skillmeat/cache/models.py::Project"
]
},
{
"group_set": "computed",
"id": "component:0409780a29",
"label": "package:skillmeat.cache (3)",
"metadata": {
"size": 3
},
"nodes": [
"migration:skillmeat/cache/migrations/versions/20251215_1200_add_project_templates_and_template_entities.py::20251215_1200_add_project_templates_and_template_entities",
"model:skillmeat/cache/models.py::ProjectTemplate",
"model:skillmeat/cache/models.py::TemplateEntity"
]
},
{
"group_set": "computed",
"id": "component:19e14b2d09",
"label": "package:skillmeat.cache (4)",
"metadata": {
"size": 4
},
"nodes": [
"migration:skillmeat/cache/migrations/versions/20251222_152125_add_rating_tables.py::20251222_152125_add_rating_tables",
"model:skillmeat/cache/models.py::CommunityScore",
"model:skillmeat/cache/models.py::MatchHistory",
"model:skillmeat/cache/models.py::UserRating"
]
},
{
"group_set": "computed",
"id": "component:301d79e881",
"label": "package:skillmeat.cache (2)",
"metadata": {
"size": 2
},
"nodes": [
"model:skillmeat/cache/models.py::MarketplaceCatalogEntry",
"repository:skillmeat/cache/repositories.py::MarketplaceCatalogRepository"
]
},
{
"group_set": "computed",
"id": "component:40f6e9a799",
"label": "package:skillmeat.web (4)",
"metadata": {
"size": 4
},
"nodes": [
"component:skillmeat/web/components/providers.tsx::Providers",
"component:skillmeat/web/components/ui/toaster.tsx::Toaster",
"component:skillmeat/web/context/collection-context.tsx::CollectionProvider",
"component:skillmeat/web/lib/notification-store.tsx::NotificationProvider"
]
},
{
"group_set": "computed",
"id": "component:52cc96952b",
"label": "package:skillmeat.cache (2)",
"metadata": {
"size": 2
},
"nodes": [
"model:skillmeat/cache/models.py::MarketplaceSource",
"repository:skillmeat/cache/repositories.py::MarketplaceSourceRepository"
]
},
{
"group_set": "computed",
"id": "component:6c5a508bd0",
"label": "package:skillmeat.web (7)",
"metadata": {
"size": 7
},
"nodes": [
"api_client:skillmeat/web/lib/api/marketplace.ts::getPathTags",
"api_client:skillmeat/web/lib/api/marketplace.ts::updatePathTagStatus",
"api_endpoint:GET /api/v1/marketplace/sources/{sourceId}/catalog/{entryId}/path-tags",
"api_endpoint:PATCH /api/v1/marketplace/sources/{sourceId}/catalog/{entryId}/path-tags",
"hook:skillmeat/web/hooks/use-path-tags.ts::usePathTags",
"hook:skillmeat/web/hooks/use-path-tags.ts::useUpdatePathTagStatus",
"type:skillmeat/web/types/path-tags.ts::PathSegmentsResponse"
]
},
{
"group_set": "computed",
"id": "component:7c9983913f",
"label": "package:skillmeat.cache (2)",
"metadata": {
"size": 2
},
"nodes": [
"migration:skillmeat/cache/migrations/versions/20251217_1500_add_artifact_versions.py::20251217_1500_add_artifact_versions",
"model:skillmeat/cache/models.py::ArtifactVersion"
]
},
{
"group_set": "computed",
"id": "component:818e7d5700",
"label": "package:skillmeat.api (37)",
"metadata": {
"size": 37
},
"nodes": [
"api_endpoint:GET /api/v1/cache/artifacts",
"api_endpoint:GET /api/v1/cache/marketplace",
"api_endpoint:GET /api/v1/cache/projects",
"api_endpoint:GET /api/v1/cache/search",
"api_endpoint:GET /api/v1/cache/stale-artifacts",
"api_endpoint:GET /api/v1/cache/status",
"api_endpoint:POST /api/v1/cache/invalidate",
"api_endpoint:POST /api/v1/cache/refresh",
"handler:skillmeat/api/routers/cache.py::get_cache_status",
"handler:skillmeat/api/routers/cache.py::get_marketplace_cache",
"handler:skillmeat/api/routers/cache.py::invalidate_cache",
"handler:skillmeat/api/routers/cache.py::list_cached_artifacts",
"handler:skillmeat/api/routers/cache.py::list_cached_projects",
"handler:skillmeat/api/routers/cache.py::list_stale_artifacts",
"handler:skillmeat/api/routers/cache.py::refresh_cache",
"handler:skillmeat/api/routers/cache.py::search_cache",
"router:skillmeat/api/routers/cache.py::router",
"schema:/Users/miethe/dev/homelab/development/skillmeat/skillmeat/api/schemas/cache.py::CacheInvalidateRequest",
"schema:/Users/miethe/dev/homelab/development/skillmeat/skillmeat/api/schemas/cache.py::CacheInvalidateResponse",
"schema:/Users/miethe/dev/homelab/development/skillmeat/skillmeat/api/schemas/cache.py::CacheRefreshRequest",
"schema:/Users/miethe/dev/homelab/development/skillmeat/skillmeat/api/schemas/cache.py::CacheRefreshResponse",
"schema:/Users/miethe/dev/homelab/development/skillmeat/skillmeat/api/schemas/cache.py::CacheStatusResponse",
"schema:/Users/miethe/dev/homelab/development/skillmeat/skillmeat/api/schemas/cache.py::CachedArtifactsListResponse",
"schema:/Users/miethe/dev/homelab/development/skillmeat/skillmeat/api/schemas/cache.py::CachedProjectsListResponse",
"schema:/Users/miethe/dev/homelab/development/skillmeat/skillmeat/api/schemas/cache.py::MarketplaceListResponse",
"schema:/Users/miethe/dev/homelab/development/skillmeat/skillmeat/api/schemas/cache.py::SearchResultsResponse",
"schema:/Users/miethe/dev/homelab/development/skillmeat/skillmeat/api/schemas/cache.py::StaleArtifactsListResponse",
"schema:skillmeat/api/schemas/cache.py::CacheInvalidateRequest",
"schema:skillmeat/api/schemas/cache.py::CacheInvalidateResponse",
"schema:skillmeat/api/schemas/cache.py::CacheRefreshRequest",
"schema:skillmeat/api/schemas/cache.py::CacheRefreshResponse",
"schema:skillmeat/api/schemas/cache.py::CacheStatusResponse",
"schema:skillmeat/api/schemas/cache.py::CachedArtifactsListResponse",
"schema:skillmeat/api/schemas/cache.py::CachedProjectsListResponse",
"schema:skillmeat/api/schemas/cache.py::MarketplaceListResponse",
"schema:skillmeat/api/schemas/cache.py::SearchResultsResponse",
"schema:skillmeat/api/schemas/cache.py::StaleArtifactsListResponse"
]
},
{
"group_set": "computed",
"id": "component:8a1b0e32c2",
"label": "dir:skillmeat (34)",
"metadata": {
"size": 34
},
"nodes": [
"api_client:skillmeat/web/lib/api/context-sync.ts::getSyncStatus",
"api_client:skillmeat/web/lib/api/context-sync.ts::pullChanges",
"api_client:skillmeat/web/lib/api/context-sync.ts::pushChanges",
"api_client:skillmeat/web/lib/api/context-sync.ts::resolveConflict",
"api_client:skillmeat/web/lib/api/context-sync.ts::type SyncResolution",
"api_client:skillmeat/web/lib/api/context-sync.ts::type SyncStatus",
"api_endpoint:GET /api/v1/context-sync/status",
"api_endpoint:POST /api/v1/context-sync/pull",
"api_endpoint:POST /api/v1/context-sync/push",
"api_endpoint:POST /api/v1/context-sync/resolve",
"handler:skillmeat/api/routers/context_sync.py::get_sync_status",
"handler:skillmeat/api/routers/context_sync.py::pull_changes",
"handler:skillmeat/api/routers/context_sync.py::push_changes",
"handler:skillmeat/api/routers/context_sync.py::resolve_conflict",
"hook:skillmeat/web/hooks/use-context-sync.ts::useContextSyncStatus",
"hook:skillmeat/web/hooks/use-context-sync.ts::usePendingContextChanges",
"hook:skillmeat/web/hooks/use-context-sync.ts::usePullContextChanges",
"hook:skillmeat/web/hooks/use-context-sync.ts::usePushContextChanges",
"hook:skillmeat/web/hooks/use-context-sync.ts::useResolveContextConflict",
"query_key:['artifact-files']",
"query_key:['context-entities']",
"query_key:['context-sync-status', projectPath]",
"query_key:['context-sync-status', variables.projectPath]",
"router:skillmeat/api/routers/context_sync.py::router",
"schema:/Users/miethe/dev/homelab/development/skillmeat/skillmeat/api/schemas/context_sync.py::SyncPullRequest",
"schema:/Users/miethe/dev/homelab/development/skillmeat/skillmeat/api/schemas/context_sync.py::SyncPushRequest",
"schema:/Users/miethe/dev/homelab/development/skillmeat/skillmeat/api/schemas/context_sync.py::SyncResolveRequest",
"schema:/Users/miethe/dev/homelab/development/skillmeat/skillmeat/api/schemas/context_sync.py::SyncResultResponse",
"schema:/Users/miethe/dev/homelab/development/skillmeat/skillmeat/api/schemas/context_sync.py::SyncStatusResponse",
"schema:skillmeat/api/schemas/context_sync.py::SyncPullRequest",
"schema:skillmeat/api/schemas/context_sync.py::SyncPushRequest",
"schema:skillmeat/api/schemas/context_sync.py::SyncResolveRequest",
"schema:skillmeat/api/schemas/context_sync.py::SyncResultResponse",
"schema:skillmeat/api/schemas/context_sync.py::SyncStatusResponse"
]
},
{
"group_set": "computed",
"id": "component:8e4712facb",
"label": "package:skillmeat.web (8)",
"metadata": {
"size": 8
},
"nodes": [
"api_client:skillmeat/web/lib/api/catalog.ts::fetchCatalogFileContent",
"api_client:skillmeat/web/lib/api/catalog.ts::fetchCatalogFileTree",
"api_client:skillmeat/web/lib/api/catalog.ts::type FileContentResponse",
"api_client:skillmeat/web/lib/api/catalog.ts::type FileTreeResponse",
"api_endpoint:GET /api/v1/marketplace/sources/{sourceId}/artifacts/{encodedArtifactPath}/files/{encodedFilePath}",
"api_endpoint:GET /api/v1/marketplace/sources/{sourceId}/artifacts/{encodedPath}/files",
"hook:skillmeat/web/hooks/use-catalog-files.ts::useCatalogFileContent",
"hook:skillmeat/web/hooks/use-catalog-files.ts::useCatalogFileTree"
]
},
{
"group_set": "computed",
"id": "component:8f1f06e8ed",
"label": "package:skillmeat.web (4)",
"metadata": {
"size": 4
},
"nodes": [
"component:skillmeat/web/components/discovery/index.ts::AutoPopulationForm",
"component:skillmeat/web/components/discovery/index.ts::BulkImportModal",
"component:skillmeat/web/components/discovery/index.ts::DiscoveryBanner",
"component:skillmeat/web/components/discovery/index.ts::ManagePage"
]
},
{
"group_set": "computed",
"id": "component:aa71d181f5",
"label": "dir:skillmeat (1514)",
"metadata": {
"size": 1514
},
"nodes": [
"api_client:skillmeat/web/hooks/use-toast.tsx::useToast",
"api_client:skillmeat/web/hooks/useMarketplaceSources.ts::sourceKeys",
"api_client:skillmeat/web/lib/api.ts::ApiError",
"api_client:skillmeat/web/lib/api.ts::apiConfig",
"api_client:skillmeat/web/lib/api.ts::apiRequest",
"api_client:skillmeat/web/lib/api/artifacts.ts::deleteArtifactFromCollection",
"api_client:skillmeat/web/lib/api/artifacts.ts::fetchArtifactsPaginated",
"api_client:skillmeat/web/lib/api/artifacts.ts::type ArtifactsPaginatedResponse",
"api_client:skillmeat/web/lib/api/collections.ts::addArtifactToCollection",
"api_client:skillmeat/web/lib/api/collections.ts::createCollection",
"api_client:skillmeat/web/lib/api/collections.ts::deleteCollection",
"api_client:skillmeat/web/lib/api/collections.ts::fetchCollection",
"api_client:skillmeat/web/lib/api/collections.ts::fetchCollectionArtifactsPaginated",
"api_client:skillmeat/web/lib/api/collections.ts::fetchCollections",
"api_client:skillmeat/web/lib/api/collections.ts::removeArtifactFromCollection",
"api_client:skillmeat/web/lib/api/collections.ts::type CollectionArtifactsPaginatedResponse",
"api_client:skillmeat/web/lib/api/collections.ts::updateCollection",
"api_client:skillmeat/web/lib/api/context-entities.ts::createContextEntity",
"api_client:skillmeat/web/lib/api/context-entities.ts::deleteContextEntity",
"api_client:skillmeat/web/lib/api/context-entities.ts::deployContextEntity",
"api_client:skillmeat/web/lib/api/context-entities.ts::fetchContextEntities",
"api_client:skillmeat/web/lib/api/context-entities.ts::fetchContextEntity",
"api_client:skillmeat/web/lib/api/context-entities.ts::fetchContextEntityContent",
"api_client:skillmeat/web/lib/api/context-entities.ts::updateContextEntity",
"api_client:skillmeat/web/lib/api/deployments.ts::deployArtifact",
"api_client:skillmeat/web/lib/api/deployments.ts::getDeploymentSummary",
"api_client:skillmeat/web/lib/api/deployments.ts::getDeployments",
"api_client:skillmeat/web/lib/api/deployments.ts::listDeployments",
"api_client:skillmeat/web/lib/api/deployments.ts::type DeploymentQueryParams",
"api_client:skillmeat/web/lib/api/deployments.ts::type DeploymentSummary",
"api_client:skillmeat/web/lib/api/deployments.ts::undeployArtifact",
"api_client:skillmeat/web/lib/api/groups.ts::addArtifactToGroup",
"api_client:skillmeat/web/lib/api/groups.ts::createGroup",
"api_client:skillmeat/web/lib/api/groups.ts::deleteGroup",
"api_client:skillmeat/web/lib/api/groups.ts::fetchGroup",
"api_client:skillmeat/web/lib/api/groups.ts::fetchGroups",
"api_client:skillmeat/web/lib/api/groups.ts::moveArtifactToGroup",
"api_client:skillmeat/web/lib/api/groups.ts::removeArtifactFromGroup",
"api_client:skillmeat/web/lib/api/groups.ts::reorderArtifactsInGroup",
"api_client:skillmeat/web/lib/api/groups.ts::reorderGroups",
"api_client:skillmeat/web/lib/api/groups.ts::updateGroup",
"api_client:skillmeat/web/lib/api/marketplace.ts::inferUrl",
"api_client:skillmeat/web/lib/api/merge.ts::analyzeMergeSafety",
"api_client:skillmeat/web/lib/api/merge.ts::executeMerge",
"api_client:skillmeat/web/lib/api/merge.ts::previewMerge",
"api_client:skillmeat/web/lib/api/merge.ts::resolveConflict",
"api_client:skillmeat/web/lib/api/snapshots.ts::analyzeRollbackSafety",
"api_client:skillmeat/web/lib/api/snapshots.ts::createSnapshot",
"api_client:skillmeat/web/lib/api/snapshots.ts::deleteSnapshot",
"api_client:skillmeat/web/lib/api/snapshots.ts::diffSnapshots",
"api_client:skillmeat/web/lib/api/snapshots.ts::executeRollback",
"api_client:skillmeat/web/lib/api/snapshots.ts::fetchSnapshot",
"api_client:skillmeat/web/lib/api/snapshots.ts::fetchSnapshots",
"api_client:skillmeat/web/lib/api/tags.ts::addTagToArtifact",
"api_client:skillmeat/web/lib/api/tags.ts::createTag",
"api_client:skillmeat/web/lib/api/tags.ts::deleteTag",
"api_client:skillmeat/web/lib/api/tags.ts::fetchTags",
"api_client:skillmeat/web/lib/api/tags.ts::getArtifactTags",
"api_client:skillmeat/web/lib/api/tags.ts::removeTagFromArtifact",
"api_client:skillmeat/web/lib/api/tags.ts::searchTags",
"api_client:skillmeat/web/lib/api/tags.ts::type Tag",
"api_client:skillmeat/web/lib/api/tags.ts::type TagCreateRequest",
"api_client:skillmeat/web/lib/api/tags.ts::type TagListResponse",
"api_client:skillmeat/web/lib/api/tags.ts::type TagUpdateRequest",
"api_client:skillmeat/web/lib/api/tags.ts::updateTag",
"api_client:skillmeat/web/lib/api/templates.ts::createTemplate",
"api_client:skillmeat/web/lib/api/templates.ts::deleteTemplate",
"api_client:skillmeat/web/lib/api/templates.ts::deployTemplate",
"api_client:skillmeat/web/lib/api/templates.ts::fetchTemplateById",
"api_client:skillmeat/web/lib/api/templates.ts::fetchTemplates",
"api_client:skillmeat/web/lib/api/templates.ts::updateTemplate",
"api_endpoint:DELETE /api/v1/artifacts/projects/{project_id}/skip-preferences",
"api_endpoint:DELETE /api/v1/artifacts/projects/{project_id}/skip-preferences/{artifact_key}",
"api_endpoint:DELETE /api/v1/artifacts/{artifactId}",
"api_endpoint:DELETE /api/v1/artifacts/{artifactId}/tags/{tagId}",
"api_endpoint:DELETE /api/v1/artifacts/{artifact_id}",
"api_endpoint:DELETE /api/v1/artifacts/{artifact_id}/files/{file_path}",
"api_endpoint:DELETE /api/v1/artifacts/{artifact_id}/tags/{tag_id}",
"api_endpoint:DELETE /api/v1/artifacts/{id}",
"api_endpoint:DELETE /api/v1/bundles/{bundleId}",
"api_endpoint:DELETE /api/v1/bundles/{bundleId}/share",
"api_endpoint:DELETE /api/v1/bundles/{bundle_id}",
"api_endpoint:DELETE /api/v1/bundles/{bundle_id}/share",
"api_endpoint:DELETE /api/v1/context-entities/{entity_id}",
"api_endpoint:DELETE /api/v1/context-entities/{id}",
"api_endpoint:DELETE /api/v1/groups/{groupId}/artifacts/{artifactId}",
"api_endpoint:DELETE /api/v1/groups/{group_id}",
"api_endpoint:DELETE /api/v1/groups/{group_id}/artifacts/{artifact_id}",
"api_endpoint:DELETE /api/v1/groups/{id}",
"api_endpoint:DELETE /api/v1/marketplace/sources/{sourceId}",
"api_endpoint:DELETE /api/v1/marketplace/sources/{source_id}",
"api_endpoint:DELETE /api/v1/marketplace/sources/{source_id}/artifacts/{entry_id}/exclude",
"api_endpoint:DELETE /api/v1/mcp/servers/{name}",
"api_endpoint:DELETE /api/v1/mcp/servers/{name}{params}",
"api_endpoint:DELETE /api/v1/project-templates/{id}",
"api_endpoint:DELETE /api/v1/project-templates/{template_id}",
"api_endpoint:DELETE /api/v1/projects/{id}",
"api_endpoint:DELETE /api/v1/projects/{project_id}",
"api_endpoint:DELETE /api/v1/projects/{project_id}/deployments/{artifact_name}",
"api_endpoint:DELETE /api/v1/tags/{id}",
"api_endpoint:DELETE /api/v1/tags/{tag_id}",
"api_endpoint:DELETE /api/v1/user-collections/{collectionId}/artifacts/{artifactId}",
"api_endpoint:DELETE /api/v1/user-collections/{collection_id}",
"api_endpoint:DELETE /api/v1/user-collections/{collection_id}/artifacts/{artifact_id}",
"api_endpoint:DELETE /api/v1/user-collections/{collection_id}/entities/{entity_id}",
"api_endpoint:DELETE /api/v1/user-collections/{id}",
"api_endpoint:DELETE /api/v1/versions/snapshots/{id}${params.toString() ",
"api_endpoint:DELETE /api/v1/versions/snapshots/{snapshot_id}",
"api_endpoint:GET /api/v1/analytics/summary",
"api_endpoint:GET /api/v1/analytics/top-artifacts",
"api_endpoint:GET /api/v1/analytics/trends",
"api_endpoint:GET /api/v1/artifacts",
"api_endpoint:GET /api/v1/artifacts/health/discovery",
"api_endpoint:GET /api/v1/artifacts/metadata/github",
"api_endpoint:GET /api/v1/artifacts/metrics/discovery",
"api_endpoint:GET /api/v1/artifacts/projects/{project_id}/skip-preferences",
"api_endpoint:GET /api/v1/artifacts/{artifactId}/tags",
"api_endpoint:GET /api/v1/artifacts/{artifact_id}",
"api_endpoint:GET /api/v1/artifacts/{artifact_id}/diff",
"api_endpoint:GET /api/v1/artifacts/{artifact_id}/files",
"api_endpoint:GET /api/v1/artifacts/{artifact_id}/files/{file_path}",
"api_endpoint:GET /api/v1/artifacts/{artifact_id}/tags",
"api_endpoint:GET /api/v1/artifacts/{artifact_id}/upstream",
"api_endpoint:GET /api/v1/artifacts/{artifact_id}/upstream-diff",
"api_endpoint:GET /api/v1/artifacts/{artifact_id}/version-graph",
"api_endpoint:GET /api/v1/artifacts/{id}",
"api_endpoint:GET /api/v1/artifacts/{request.artifactId}/sync",
"api_endpoint:GET /api/v1/bundles",
"api_endpoint:GET /api/v1/bundles${params.toString() ",
"api_endpoint:GET /api/v1/bundles/{bundleId}/analytics",
"api_endpoint:GET /api/v1/bundles/{bundle_id}",
"api_endpoint:GET /api/v1/bundles/{bundle_id}/analytics",
"api_endpoint:GET /api/v1/collections",
"api_endpoint:GET /api/v1/collections/{collection_id}",
"api_endpoint:GET /api/v1/collections/{collection_id}/artifacts",
"api_endpoint:GET /api/v1/context-entities",
"api_endpoint:GET /api/v1/context-entities${params.toString() ",
"api_endpoint:GET /api/v1/context-entities/{entity_id}",
"api_endpoint:GET /api/v1/context-entities/{entity_id}/content",
"api_endpoint:GET /api/v1/context-entities/{id}",
"api_endpoint:GET /api/v1/context-entities/{id}/content",
"api_endpoint:GET /api/v1/deploy",
"api_endpoint:GET /api/v1/deploy${params.toString() ",
"api_endpoint:GET /api/v1/groups",
"api_endpoint:GET /api/v1/groups/{groupId}/artifacts",
"api_endpoint:GET /api/v1/groups/{group_id}",
"api_endpoint:GET /api/v1/groups/{id}",
"api_endpoint:GET /api/v1/marketplace/brokers",
"api_endpoint:GET /api/v1/marketplace/compliance/history",
"api_endpoint:GET /api/v1/marketplace/listings",
"api_endpoint:GET /api/v1/marketplace/listings/{listingId}",
"api_endpoint:GET /api/v1/marketplace/listings/{listing_id}",
"api_endpoint:GET /api/v1/marketplace/sources",
"api_endpoint:GET /api/v1/marketplace/sources/{sourceId}",
"api_endpoint:GET /api/v1/marketplace/sources/{sourceId}/artifacts",
"api_endpoint:GET /api/v1/marketplace/sources/{source_id}",
"api_endpoint:GET /api/v1/marketplace/sources/{source_id}/artifacts",
"api_endpoint:GET /api/v1/marketplace/sources/{source_id}/artifacts/{artifact_path}/files",
"api_endpoint:GET /api/v1/marketplace/sources/{source_id}/artifacts/{artifact_path}/files/{file_path}",
"api_endpoint:GET /api/v1/marketplace/sources/{source_id}/catalog/{entry_id}/path-tags",
"api_endpoint:GET /api/v1/match/",
"api_endpoint:GET /api/v1/mcp/health",
"api_endpoint:GET /api/v1/mcp/servers",
"api_endpoint:GET /api/v1/mcp/servers/{name}",
"api_endpoint:GET /api/v1/mcp/servers/{name}/health",
"api_endpoint:GET /api/v1/mcp/servers/{name}/status",
"api_endpoint:GET /api/v1/mcp/servers/{name}{params}",
"api_endpoint:GET /api/v1/mcp/servers{params}",
"api_endpoint:GET /api/v1/project-templates",
"api_endpoint:GET /api/v1/project-templates${params.toString() ",
"api_endpoint:GET /api/v1/project-templates/{id}",
"api_endpoint:GET /api/v1/project-templates/{template_id}",
"api_endpoint:GET /api/v1/projects",
"api_endpoint:GET /api/v1/projects/cache/stats",
"api_endpoint:GET /api/v1/projects/{id}",
"api_endpoint:GET /api/v1/projects/{projectId}",
"api_endpoint:GET /api/v1/projects/{project_id}",
"api_endpoint:GET /api/v1/projects/{project_id}/context-map",
"api_endpoint:GET /api/v1/projects/{project_id}/drift/summary",
"api_endpoint:GET /api/v1/projects/{project_id}/modified-artifacts",
"api_endpoint:GET /api/v1/tags",
"api_endpoint:GET /api/v1/tags${params.toString() ",
"api_endpoint:GET /api/v1/tags/search",
"api_endpoint:GET /api/v1/tags/slug/{slug}",
"api_endpoint:GET /api/v1/tags/{tag_id}",
"api_endpoint:GET /api/v1/user-collections",
"api_endpoint:GET /api/v1/user-collections/{collection_id}",
"api_endpoint:GET /api/v1/user-collections/{collection_id}/artifacts",
"api_endpoint:GET /api/v1/user-collections/{collection_id}/entities",
"api_endpoint:GET /api/v1/user-collections/{id}",
"api_endpoint:GET /api/v1/versions/snapshots",
"api_endpoint:GET /api/v1/versions/snapshots${params.toString() ",
"api_endpoint:GET /api/v1/versions/snapshots/{id}${params.toString() ",
"api_endpoint:GET /api/v1/versions/snapshots/{snapshotId}/rollback-analysis${params.toString() ",
"api_endpoint:GET /api/v1/versions/snapshots/{snapshot_id}",
"api_endpoint:GET /api/v1/versions/snapshots/{snapshot_id}/rollback-analysis",
"api_endpoint:PATCH /api/v1/marketplace/sources/{sourceId}",
"api_endpoint:PATCH /api/v1/marketplace/sources/{sourceId}/artifacts/{entryId}",
"api_endpoint:PATCH /api/v1/marketplace/sources/{sourceId}/artifacts/{entryId}/exclude",
"api_endpoint:PATCH /api/v1/marketplace/sources/{source_id}",
"api_endpoint:PATCH /api/v1/marketplace/sources/{source_id}/artifacts/{entry_id}",
"api_endpoint:PATCH /api/v1/marketplace/sources/{source_id}/artifacts/{entry_id}/exclude",
"api_endpoint:PATCH /api/v1/marketplace/sources/{source_id}/catalog/{entry_id}/path-tags",
"api_endpoint:POST /api/v1/artifacts",
"api_endpoint:POST /api/v1/artifacts/confirm-duplicates",
"api_endpoint:POST /api/v1/artifacts/discover",
"api_endpoint:POST /api/v1/artifacts/discover/import",
"api_endpoint:POST /api/v1/artifacts/discover/import{params}",
"api_endpoint:POST /api/v1/artifacts/discover/project/{encodedPath}",
"api_endpoint:POST /api/v1/artifacts/discover/project/{project_id}",
"api_endpoint:POST /api/v1/artifacts/projects/{project_id}/skip-preferences",
"api_endpoint:POST /api/v1/artifacts/{artifactId}/deploy",
"api_endpoint:POST /api/v1/artifacts/{artifactId}/tags/{tagId}",
"api_endpoint:POST /api/v1/artifacts/{artifactId}/undeploy",
"api_endpoint:POST /api/v1/artifacts/{artifact_id}/deploy",
"api_endpoint:POST /api/v1/artifacts/{artifact_id}/files/{file_path}",
"api_endpoint:POST /api/v1/artifacts/{artifact_id}/sync",
"api_endpoint:POST /api/v1/artifacts/{artifact_id}/tags/{tag_id}",
"api_endpoint:POST /api/v1/artifacts/{artifact_id}/undeploy",
"api_endpoint:POST /api/v1/artifacts/{id}/deploy",
"api_endpoint:POST /api/v1/artifacts/{id}/sync",
"api_endpoint:POST /api/v1/bundles/export",
"api_endpoint:POST /api/v1/bundles/import",
"api_endpoint:POST /api/v1/bundles/preview",
"api_endpoint:POST /api/v1/bundles/validate",
"api_endpoint:POST /api/v1/context-entities",
"api_endpoint:POST /api/v1/context-entities/{id}/deploy",
"api_endpoint:POST /api/v1/deploy",
"api_endpoint:POST /api/v1/deploy/undeploy",
"api_endpoint:POST /api/v1/groups",
"api_endpoint:POST /api/v1/groups/{groupId}/artifacts/reorder",
"api_endpoint:POST /api/v1/groups/{groupId}/artifacts/{artifactId}",
"api_endpoint:POST /api/v1/groups/{group_id}/artifacts",
"api_endpoint:POST /api/v1/groups/{group_id}/reorder-artifacts",
"api_endpoint:POST /api/v1/groups/{sourceGroupId}/artifacts/{artifactId}/move",
"api_endpoint:POST /api/v1/marketplace/brokers",
"api_endpoint:POST /api/v1/marketplace/compliance/checklist",
"api_endpoint:POST /api/v1/marketplace/compliance/consent",
"api_endpoint:POST /api/v1/marketplace/compliance/scan",
"api_endpoint:POST /api/v1/marketplace/install",
"api_endpoint:POST /api/v1/marketplace/publish",
"api_endpoint:POST /api/v1/marketplace/sources",
"api_endpoint:POST /api/v1/marketplace/sources/infer-url",
"api_endpoint:POST /api/v1/marketplace/sources/{sourceId}/import",
"api_endpoint:POST /api/v1/marketplace/sources/{sourceId}/rescan",
"api_endpoint:POST /api/v1/marketplace/sources/{source_id}/import",
"api_endpoint:POST /api/v1/marketplace/sources/{source_id}/rescan",
"api_endpoint:POST /api/v1/marketplace/sources/{source_id}/sync-imported",
"api_endpoint:POST /api/v1/mcp/servers",
"api_endpoint:POST /api/v1/mcp/servers/{name}/deploy",
"api_endpoint:POST /api/v1/mcp/servers/{name}/deploy{params}",
"api_endpoint:POST /api/v1/mcp/servers/{name}/undeploy",
"api_endpoint:POST /api/v1/mcp/servers/{name}/undeploy{params}",
"api_endpoint:POST /api/v1/mcp/servers{params}",
"api_endpoint:POST /api/v1/merge/analyze",
"api_endpoint:POST /api/v1/merge/execute",
"api_endpoint:POST /api/v1/merge/preview",
"api_endpoint:POST /api/v1/merge/resolve",
"api_endpoint:POST /api/v1/project-templates",
"api_endpoint:POST /api/v1/project-templates/{id}/deploy",
"api_endpoint:POST /api/v1/project-templates/{template_id}/deploy",
"api_endpoint:POST /api/v1/projects",
"api_endpoint:POST /api/v1/projects/cache/clear",
"api_endpoint:POST /api/v1/projects/cache/refresh",
"api_endpoint:POST /api/v1/projects/{project_id}/check-modifications",
"api_endpoint:POST /api/v1/tags",
"api_endpoint:POST /api/v1/user-collections",
"api_endpoint:POST /api/v1/user-collections/{collectionId}/artifacts",
"api_endpoint:POST /api/v1/user-collections/{collection_id}/artifacts",
"api_endpoint:POST /api/v1/user-collections/{collection_id}/entities/{entity_id}",
"api_endpoint:POST /api/v1/versions/snapshots",
"api_endpoint:POST /api/v1/versions/snapshots/diff",
"api_endpoint:POST /api/v1/versions/snapshots/{snapshotId}/rollback",
"api_endpoint:POST /api/v1/versions/snapshots/{snapshot_id}/rollback",
"api_endpoint:PUT /api/v1/artifacts/{artifact.id}",
"api_endpoint:PUT /api/v1/artifacts/{artifact_id}",
"api_endpoint:PUT /api/v1/artifacts/{artifact_id}/files/{file_path}",
"api_endpoint:PUT /api/v1/artifacts/{artifact_id}/parameters",
"api_endpoint:PUT /api/v1/artifacts/{encodedId}/parameters",
"api_endpoint:PUT /api/v1/artifacts/{id}",
"api_endpoint:PUT /api/v1/bundles/{bundleId}/share",
"api_endpoint:PUT /api/v1/bundles/{bundle_id}/share",
"api_endpoint:PUT /api/v1/collections/{collectionId}/groups/reorder",
"api_endpoint:PUT /api/v1/context-entities/{entity_id}",
"api_endpoint:PUT /api/v1/context-entities/{id}",
"api_endpoint:PUT /api/v1/groups/reorder",
"api_endpoint:PUT /api/v1/groups/{group_id}",
"api_endpoint:PUT /api/v1/groups/{group_id}/artifacts/{artifact_id}",
"api_endpoint:PUT /api/v1/groups/{id}",
"api_endpoint:PUT /api/v1/mcp/servers/{name}",
"api_endpoint:PUT /api/v1/mcp/servers/{name}{params}",
"api_endpoint:PUT /api/v1/project-templates/{id}",
"api_endpoint:PUT /api/v1/project-templates/{template_id}",
"api_endpoint:PUT /api/v1/projects/{id}",
"api_endpoint:PUT /api/v1/projects/{project_id}",
"api_endpoint:PUT /api/v1/tags/{id}",
"api_endpoint:PUT /api/v1/tags/{tag_id}",
"api_endpoint:PUT /api/v1/user-collections/{collection_id}",
"api_endpoint:PUT /api/v1/user-collections/{id}",
"component:skillmeat/web/app/manage/components/add-entity-dialog.tsx::AddEntityDialog",
"component:skillmeat/web/app/manage/components/entity-filters.tsx::EntityFilters",
"component:skillmeat/web/app/manage/components/entity-tabs.tsx::EntityTabs",
"component:skillmeat/web/app/marketplace/sources/[id]/components/catalog-list.tsx::CatalogList",
"component:skillmeat/web/app/marketplace/sources/[id]/components/excluded-list.tsx::ExcludedArtifactsList",
"component:skillmeat/web/app/marketplace/sources/[id]/components/source-toolbar.tsx::SortOption",
"component:skillmeat/web/app/marketplace/sources/[id]/components/source-toolbar.tsx::SourceToolbar",
"component:skillmeat/web/app/projects/[id]/manage/components/deploy-from-collection-dialog.tsx::DeployFromCollectionDialog",
"component:skillmeat/web/app/projects/[id]/manage/components/pull-to-collection-dialog.tsx::PullToCollectionDialog",
"component:skillmeat/web/app/projects/[id]/settings/../../components/delete-project-dialog.tsx::DeleteProjectDialog",
"component:skillmeat/web/app/projects/components/create-project-dialog.tsx::CreateProjectDialog",
"component:skillmeat/web/app/projects/components/project-actions.tsx::ProjectActions",
"component:skillmeat/web/components/CacheFreshnessIndicator.tsx::CacheFreshnessIndicator",
"component:skillmeat/web/components/CatalogEntryModal.stories.tsx::Closed",
"component:skillmeat/web/components/CatalogEntryModal.tsx::CatalogEntryModal",
"component:skillmeat/web/components/ConfidenceFilter.example.tsx::ConfidenceFilterExample",
"component:skillmeat/web/components/ConfidenceFilter.tsx::ConfidenceFilter",
"component:skillmeat/web/components/HeuristicScoreBreakdown.tsx::HeuristicScoreBreakdown",
"component:skillmeat/web/components/HeuristicScoreBreakdown.tsx::ScoreBreakdown",
"component:skillmeat/web/components/OutdatedBadge.tsx::OutdatedBadge",
"component:skillmeat/web/components/ProjectsList.tsx::ProjectsList",
"component:skillmeat/web/components/ProjectsToolbar.tsx::ProjectsToolbar",
"component:skillmeat/web/components/RatingDialog.example.tsx::BasicRatingDialogExample",
"component:skillmeat/web/components/RatingDialog.tsx::RatingDialog",
"component:skillmeat/web/components/ScoreBadge.example.tsx::ArtifactCardExample",
"component:skillmeat/web/components/ScoreBadge.tsx::ScoreBadge",
"component:skillmeat/web/components/ScoreBadge.tsx::ScoreBadgeSkeleton",
"component:skillmeat/web/components/ScoreBreakdown.example.tsx::ArtifactCardWithConditionalBreakdown",
"component:skillmeat/web/components/ScoreBreakdown.tsx::ScoreBreakdown",
"component:skillmeat/web/components/ScoreBreakdownTooltip.example.tsx::ConfidenceBadgeExample",
"component:skillmeat/web/components/ScoreBreakdownTooltip.stories.tsx::AllConfidenceLevels",
"component:skillmeat/web/components/ScoreBreakdownTooltip.tsx::ScoreBreakdownTooltip",
"component:skillmeat/web/components/TrustBadges.example.tsx::ArtifactCardExample",
"component:skillmeat/web/components/TrustBadges.tsx::TrustBadges",
"component:skillmeat/web/components/TrustBadges.with-score.example.tsx::ArtifactCardConditional",
"component:skillmeat/web/components/UpdateAvailableModal.tsx::UpdateAvailableModal",
"component:skillmeat/web/components/__tests__/ScoreBreakdownTooltip.test.tsx::ScoreBreakdownTooltip.test",
"component:skillmeat/web/components/collection/artifact-detail.tsx::ArtifactDetail",
"component:skillmeat/web/components/collection/artifact-grid.tsx::ArtifactGrid",
"component:skillmeat/web/components/collection/artifact-list.tsx::ArtifactList",
"component:skillmeat/web/components/collection/collection-header.tsx::CollectionHeader",
"component:skillmeat/web/components/collection/collection-switcher-with-dialogs.tsx::CollectionSwitcherWithDialogs",
"component:skillmeat/web/components/collection/collection-switcher.tsx::CollectionSwitcher",
"component:skillmeat/web/components/collection/collection-toolbar.tsx::CollectionToolbar",
"component:skillmeat/web/components/collection/conflict-resolver.tsx::ConflictResolver",
"component:skillmeat/web/components/collection/create-collection-dialog.tsx::CreateCollectionDialog",
"component:skillmeat/web/components/collection/deploy-dialog.tsx::DeployDialog",
"component:skillmeat/web/components/collection/edit-collection-dialog.tsx::EditCollectionDialog",
"component:skillmeat/web/components/collection/filters.tsx::Filters",
"component:skillmeat/web/components/collection/grouped-artifact-view.tsx::GroupedArtifactView",
"component:skillmeat/web/components/collection/manage-groups-dialog.tsx::ManageGroupsDialog",
"component:skillmeat/web/components/collection/move-copy-dialog.tsx::MoveCopyDialog",
"component:skillmeat/web/components/collection/progress-indicator.tsx::ProgressIndicator",
"component:skillmeat/web/components/collection/progress-indicator.tsx::ProgressStep",
"component:skillmeat/web/components/collection/sync-dialog.tsx::SyncDialog",
"component:skillmeat/web/components/collection/version-tree.tsx::VersionTreeView",
"component:skillmeat/web/components/context/context-entity-card.tsx::ContextEntityCard",
"component:skillmeat/web/components/context/context-entity-detail.tsx::ContextEntityDetail",
"component:skillmeat/web/components/context/context-entity-editor.tsx::ContextEntityEditor",
"component:skillmeat/web/components/context/context-entity-filters.tsx::ContextEntityFilters",
"component:skillmeat/web/components/context/context-load-order.tsx::ContextLoadOrder",
"component:skillmeat/web/components/context/deploy-to-project-dialog.tsx::DeployToProjectDialog",
"component:skillmeat/web/components/dashboard/analytics-grid.tsx::AnalyticsGrid",
"component:skillmeat/web/components/dashboard/stats-cards.tsx::StatsCards",
"component:skillmeat/web/components/dashboard/tag-metrics-widget.tsx::TagMetricsWidget",
"component:skillmeat/web/components/dashboard/top-artifacts-widget.tsx::TopArtifactsWidget",
"component:skillmeat/web/components/dashboard/usage-trends-widget.tsx::UsageTrendsWidget",
"component:skillmeat/web/components/deployments/deployment-actions.tsx::DeploymentActions",
"component:skillmeat/web/components/deployments/deployment-card.example.tsx::BasicDeploymentCardExample",
"component:skillmeat/web/components/deployments/deployment-card.tsx::Deployment",
"component:skillmeat/web/components/deployments/deployment-card.tsx::DeploymentCard",
"component:skillmeat/web/components/deployments/deployment-card.tsx::DeploymentCardSkeleton",
"component:skillmeat/web/components/discovery/ArtifactActions.tsx::ArtifactActions",
"component:skillmeat/web/components/discovery/AutoPopulationForm.tsx::AutoPopulationForm",
"component:skillmeat/web/components/discovery/BulkImportModal.example.tsx::BulkImportModalExample",
"component:skillmeat/web/components/discovery/BulkImportModal.tsx::BulkImportModal",
"component:skillmeat/web/components/discovery/BulkImportModal.tsx::DiscoveredArtifact",
"component:skillmeat/web/components/discovery/DiscoveryBanner.tsx::DiscoveryBanner",
"component:skillmeat/web/components/discovery/DiscoveryTab.tsx::DiscoveryTab",
"component:skillmeat/web/components/discovery/DuplicateReviewModal.tsx::DuplicateReviewModal",
"component:skillmeat/web/components/discovery/DuplicateReviewTab.tsx::DuplicateReviewTab",
"component:skillmeat/web/components/discovery/ParameterEditorModal.example.tsx::BulkImportModal",
"component:skillmeat/web/components/discovery/ParameterEditorModal.tsx::ArtifactParameters",
"component:skillmeat/web/components/discovery/ParameterEditorModal.tsx::ParameterEditorModal",
"component:skillmeat/web/components/discovery/SkipPreferencesList.example.tsx::BasicExample",
"component:skillmeat/web/components/discovery/SkipPreferencesList.tsx::SkipPreferencesList",
"component:skillmeat/web/components/discovery/index.ts::ArtifactParameters",
"component:skillmeat/web/components/discovery/index.ts::ParameterEditorModal",
"component:skillmeat/web/components/discovery/skeletons.tsx::DiscoverySkeleton",
"component:skillmeat/web/components/discovery/skeletons.tsx::TableSkeleton",
"component:skillmeat/web/components/editor/markdown-editor.tsx::MarkdownEditor",
"component:skillmeat/web/components/editor/split-preview.tsx::SplitPreview",
"component:skillmeat/web/components/entity/../../sdk/models/FileDiff.ts::FileDiff",
"component:skillmeat/web/components/entity/EntityLifecycleProvider.tsx::EntityLifecycleProvider",
"component:skillmeat/web/components/entity/artifact-deletion-dialog.tsx::ArtifactDeletionDialog",
"component:skillmeat/web/components/entity/conflict-resolver.tsx::ConflictResolver",
"component:skillmeat/web/components/entity/content-pane.tsx::ContentPane",
"component:skillmeat/web/components/entity/context-sync-status.tsx::ContextSyncStatus",
"component:skillmeat/web/components/entity/diff-viewer.example.tsx::BasicDiffViewerExample",
"component:skillmeat/web/components/entity/diff-viewer.tsx::DiffViewer",
"component:skillmeat/web/components/entity/entity-actions.tsx::EntityActions",
"component:skillmeat/web/components/entity/entity-card.tsx::EntityCard",
"component:skillmeat/web/components/entity/entity-card.tsx::EntityCardSkeleton",
"component:skillmeat/web/components/entity/entity-form.tsx::EntityForm",
"component:skillmeat/web/components/entity/entity-list.tsx::EntityList",
"component:skillmeat/web/components/entity/entity-row.tsx::EntityRow",
"component:skillmeat/web/components/entity/file-creation-dialog.tsx::FileCreationDialog",
"component:skillmeat/web/components/entity/file-deletion-dialog.tsx::FileDeletionDialog",
"component:skillmeat/web/components/entity/file-tree.tsx::FileTree",
"component:skillmeat/web/components/entity/frontmatter-display.tsx::FrontmatterDisplay",
"component:skillmeat/web/components/entity/merge-workflow-lazy.tsx::MergeWorkflowLazy",
"component:skillmeat/web/components/entity/merge-workflow.tsx::MergeWorkflow",
"component:skillmeat/web/components/entity/modal-collections-tab.tsx::ModalCollectionsTab",
"component:skillmeat/web/components/entity/project-selector-for-diff.tsx::ProjectSelectorForDiff",
"component:skillmeat/web/components/entity/rollback-dialog.tsx::RollbackDialog",
"component:skillmeat/web/components/entity/unified-entity-modal.tsx::UnifiedEntityModal",
"component:skillmeat/web/components/entity/unsaved-changes-dialog.tsx::UnsavedChangesDialog",
"component:skillmeat/web/components/header.tsx::Header",
"component:skillmeat/web/components/history/index.ts::RollbackDialog",
"component:skillmeat/web/components/history/index.ts::VersionComparisonView",
"component:skillmeat/web/components/history/index.ts::VersionTimeline",
"component:skillmeat/web/components/history/rollback-dialog.tsx::RollbackDialog",
"component:skillmeat/web/components/history/snapshot-history-tab.tsx::SnapshotHistoryTab",
"component:skillmeat/web/components/history/snapshot-metadata.tsx::SnapshotMetadata",
"component:skillmeat/web/components/history/version-comparison-view.example.tsx::BasicComparisonExample",
"component:skillmeat/web/components/history/version-comparison-view.tsx::VersionComparisonView",
"component:skillmeat/web/components/history/version-timeline.tsx::VersionTimeline",
"component:skillmeat/web/components/marketplace/DirectoryMapModal.tsx::DirectoryMapModal",
"component:skillmeat/web/components/marketplace/MarketplaceBrokerSelector.tsx::MarketplaceBrokerSelector",
"component:skillmeat/web/components/marketplace/MarketplaceFilters.tsx::MarketplaceFilters",
"component:skillmeat/web/components/marketplace/MarketplaceInstallDialog.tsx::MarketplaceInstallDialog",
"component:skillmeat/web/components/marketplace/MarketplaceListingCard.tsx::MarketplaceListingCard",
"component:skillmeat/web/components/marketplace/MarketplaceListingDetail.tsx::MarketplaceListingDetail",
"component:skillmeat/web/components/marketplace/MarketplacePublishWizard.tsx::MarketplacePublishWizard",
"component:skillmeat/web/components/marketplace/MarketplaceStats.tsx::MarketplaceStats",
"component:skillmeat/web/components/marketplace/add-source-modal.tsx::AddSourceModal",
"component:skillmeat/web/components/marketplace/bulk-tag-dialog.tsx::BulkTagDialog",
"component:skillmeat/web/components/marketplace/bulk-tag-dialog.tsx::BulkTagDialogWithHook",
"component:skillmeat/web/components/marketplace/delete-source-dialog.tsx::DeleteSourceDialog",
"component:skillmeat/web/components/marketplace/directory-tag-input.tsx::DirectoryTagInput",
"component:skillmeat/web/components/marketplace/edit-source-modal.tsx::EditSourceModal",
"component:skillmeat/web/components/marketplace/exclude-artifact-dialog.tsx::ExcludeArtifactDialog",
"component:skillmeat/web/components/marketplace/path-tag-review.tsx::PathTagReview",
"component:skillmeat/web/components/marketplace/rescan-updates-dialog.tsx::RescanUpdatesDialog",
"component:skillmeat/web/components/marketplace/source-card.example.tsx::BasicExample",
"component:skillmeat/web/components/marketplace/source-card.tsx::SourceCard",
"component:skillmeat/web/components/marketplace/source-card.tsx::SourceCardSkeleton",
"component:skillmeat/web/components/mcp/MCPDeployButton.tsx::MCPDeployButton",
"component:skillmeat/web/components/mcp/MCPEnvEditor.tsx::MCPEnvEditor",
"component:skillmeat/web/components/mcp/MCPServerCard.tsx::MCPServerCard",
"component:skillmeat/web/components/mcp/MCPServerForm.tsx::MCPServerForm",
"component:skillmeat/web/components/mcp/MCPServerList.tsx::MCPServerList",
"component:skillmeat/web/components/merge/colored-diff-viewer.tsx::ColoredDiffViewer",
"component:skillmeat/web/components/merge/conflict-list.tsx::ConflictList",
"component:skillmeat/web/components/merge/conflict-resolver.tsx::ConflictResolver",
"component:skillmeat/web/components/merge/merge-analysis-dialog.tsx::MergeAnalysisDialog",
"component:skillmeat/web/components/merge/merge-preview-view.tsx::MergePreviewView",
"component:skillmeat/web/components/merge/merge-progress-indicator.tsx::MergeProgressIndicator",
"component:skillmeat/web/components/merge/merge-result-toast.tsx::MergeResultToast",
"component:skillmeat/web/components/merge/merge-strategy-selector.tsx::MergeStrategySelector",
"component:skillmeat/web/components/merge/merge-workflow-dialog.tsx::MergeWorkflowDialog",
"component:skillmeat/web/components/nav-section.tsx::NavSection",
"component:skillmeat/web/components/navigation.tsx::Navigation",
"component:skillmeat/web/components/notifications/NotificationCenter.tsx::NotificationBell",
"component:skillmeat/web/components/shared/unified-card.tsx::UnifiedCard",
"component:skillmeat/web/components/shared/unified-card.tsx::UnifiedCardSkeleton",
"component:skillmeat/web/components/sharing/../collection/progress-indicator.tsx::ProgressIndicator",
"component:skillmeat/web/components/sharing/../collection/progress-indicator.tsx::ProgressStep",
"component:skillmeat/web/components/sharing/bundle-list.tsx::BundleList",
"component:skillmeat/web/components/sharing/bundle-preview.tsx::BundlePreview",
"component:skillmeat/web/components/sharing/export-dialog.tsx::ExportDialog",
"component:skillmeat/web/components/sharing/import-dialog.tsx::ImportDialog",
"component:skillmeat/web/components/sharing/permission-badge.tsx::PermissionBadge",
"component:skillmeat/web/components/sharing/share-link.tsx::ShareLink",
"component:skillmeat/web/components/sync-status/artifact-flow-banner.tsx::ArtifactFlowBanner",
"component:skillmeat/web/components/sync-status/comparison-selector.tsx::ComparisonSelector",
"component:skillmeat/web/components/sync-status/drift-alert-banner.tsx::DriftAlertBanner",
"component:skillmeat/web/components/sync-status/file-preview-pane.tsx::FilePreviewPane",
"component:skillmeat/web/components/sync-status/index.ts::SyncStatusTab",
"component:skillmeat/web/components/sync-status/sync-actions-footer.tsx::SyncActionsFooter",
"component:skillmeat/web/components/sync-status/sync-status-tab.tsx::SyncStatusTab",
"component:skillmeat/web/components/sync/ChangeBadge.tsx::ChangeBadge",
"component:skillmeat/web/components/sync/DiffViewer.tsx::DiffViewer",
"component:skillmeat/web/components/sync/VersionTimeline.tsx::VersionTimeline",
"component:skillmeat/web/components/sync/__demo__.tsx::ChangeBadgeDemo",
"component:skillmeat/web/components/templates/template-card.tsx::TemplateCard",
"component:skillmeat/web/components/templates/template-deploy-wizard.tsx::TemplateDeployWizard",
"component:skillmeat/web/components/templates/template-detail.tsx::TemplateDetail",
"component:skillmeat/web/components/ui/alert-dialog.tsx::AlertDialog",
"component:skillmeat/web/components/ui/alert-dialog.tsx::AlertDialogAction",
"component:skillmeat/web/components/ui/alert-dialog.tsx::AlertDialogCancel",
"component:skillmeat/web/components/ui/alert-dialog.tsx::AlertDialogContent",
"component:skillmeat/web/components/ui/alert-dialog.tsx::AlertDialogDescription",
"component:skillmeat/web/components/ui/alert-dialog.tsx::AlertDialogFooter",
"component:skillmeat/web/components/ui/alert-dialog.tsx::AlertDialogHeader",
"component:skillmeat/web/components/ui/alert-dialog.tsx::AlertDialogTitle",
"component:skillmeat/web/components/ui/alert.tsx::Alert",
"component:skillmeat/web/components/ui/alert.tsx::AlertDescription",
"component:skillmeat/web/components/ui/alert.tsx::AlertTitle",
"component:skillmeat/web/components/ui/badge.tsx::Badge",
"component:skillmeat/web/components/ui/button.tsx::Button",
"component:skillmeat/web/components/ui/card.tsx::Card",
"component:skillmeat/web/components/ui/card.tsx::CardContent",
"component:skillmeat/web/components/ui/card.tsx::CardDescription",
"component:skillmeat/web/components/ui/card.tsx::CardFooter",
"component:skillmeat/web/components/ui/card.tsx::CardHeader",
"component:skillmeat/web/components/ui/card.tsx::CardTitle",
"component:skillmeat/web/components/ui/checkbox.tsx::Checkbox",
"component:skillmeat/web/components/ui/collapsible.tsx::Collapsible",
"component:skillmeat/web/components/ui/collapsible.tsx::CollapsibleContent",
"component:skillmeat/web/components/ui/collapsible.tsx::CollapsibleTrigger",
"component:skillmeat/web/components/ui/command.tsx::Command",
"component:skillmeat/web/components/ui/command.tsx::CommandEmpty",
"component:skillmeat/web/components/ui/command.tsx::CommandGroup",
"component:skillmeat/web/components/ui/command.tsx::CommandInput",
"component:skillmeat/web/components/ui/command.tsx::CommandItem",
"component:skillmeat/web/components/ui/command.tsx::CommandList",
"component:skillmeat/web/components/ui/command.tsx::CommandSeparator",
"component:skillmeat/web/components/ui/dialog.tsx::Dialog",
"component:skillmeat/web/components/ui/dialog.tsx::DialogContent",
"component:skillmeat/web/components/ui/dialog.tsx::DialogDescription",
"component:skillmeat/web/components/ui/dialog.tsx::DialogFooter",
"component:skillmeat/web/components/ui/dialog.tsx::DialogHeader",
"component:skillmeat/web/components/ui/dialog.tsx::DialogTitle",
"component:skillmeat/web/components/ui/dialog.tsx::DialogTrigger",
"component:skillmeat/web/components/ui/dropdown-menu.tsx::DropdownMenu",
"component:skillmeat/web/components/ui/dropdown-menu.tsx::DropdownMenuCheckboxItem",
"component:skillmeat/web/components/ui/dropdown-menu.tsx::DropdownMenuContent",
"component:skillmeat/web/components/ui/dropdown-menu.tsx::DropdownMenuItem",
"component:skillmeat/web/components/ui/dropdown-menu.tsx::DropdownMenuLabel",
"component:skillmeat/web/components/ui/dropdown-menu.tsx::DropdownMenuRadioGroup",
"component:skillmeat/web/components/ui/dropdown-menu.tsx::DropdownMenuRadioItem",
"component:skillmeat/web/components/ui/dropdown-menu.tsx::DropdownMenuSeparator",
"component:skillmeat/web/components/ui/dropdown-menu.tsx::DropdownMenuTrigger",
"component:skillmeat/web/components/ui/input.tsx::Input",
"component:skillmeat/web/components/ui/label.tsx::Label",
"component:skillmeat/web/components/ui/popover.tsx::Popover",
"component:skillmeat/web/components/ui/popover.tsx::PopoverContent",
"component:skillmeat/web/components/ui/popover.tsx::PopoverTrigger",
"component:skillmeat/web/components/ui/progress.tsx::Progress",
"component:skillmeat/web/components/ui/radio-group.tsx::RadioGroup",
"component:skillmeat/web/components/ui/radio-group.tsx::RadioGroupItem",
"component:skillmeat/web/components/ui/scroll-area.tsx::ScrollArea",
"component:skillmeat/web/components/ui/scroll-area.tsx::ScrollBar",
"component:skillmeat/web/components/ui/select.tsx::Select",
"component:skillmeat/web/components/ui/select.tsx::SelectContent",
"component:skillmeat/web/components/ui/select.tsx::SelectItem",
"component:skillmeat/web/components/ui/select.tsx::SelectSeparator",
"component:skillmeat/web/components/ui/select.tsx::SelectTrigger",
"component:skillmeat/web/components/ui/select.tsx::SelectValue",
"component:skillmeat/web/components/ui/separator.tsx::Separator",
"component:skillmeat/web/components/ui/skeleton.tsx::Skeleton",
"component:skillmeat/web/components/ui/switch.tsx::Switch",
"component:skillmeat/web/components/ui/table.tsx::Table",
"component:skillmeat/web/components/ui/table.tsx::TableBody",
"component:skillmeat/web/components/ui/table.tsx::TableCell",
"component:skillmeat/web/components/ui/table.tsx::TableHead",
"component:skillmeat/web/components/ui/table.tsx::TableHeader",
"component:skillmeat/web/components/ui/table.tsx::TableRow",
"component:skillmeat/web/components/ui/tabs.tsx::Tabs",
"component:skillmeat/web/components/ui/tabs.tsx::TabsContent",
"component:skillmeat/web/components/ui/tabs.tsx::TabsList",
"component:skillmeat/web/components/ui/tabs.tsx::TabsTrigger",
"component:skillmeat/web/components/ui/tag-filter-popover.tsx::TagFilterBar",
"component:skillmeat/web/components/ui/tag-filter-popover.tsx::TagFilterPopover",
"component:skillmeat/web/components/ui/tag-input.example.tsx::BasicTagInputExample",
"component:skillmeat/web/components/ui/tag-input.tsx::TagInput",
"component:skillmeat/web/components/ui/textarea.tsx::Textarea",
"component:skillmeat/web/components/ui/tooltip.tsx::Tooltip",
"component:skillmeat/web/components/ui/tooltip.tsx::TooltipContent",
"component:skillmeat/web/components/ui/tooltip.tsx::TooltipProvider",
"component:skillmeat/web/components/ui/tooltip.tsx::TooltipTrigger",
"component:skillmeat/web/hooks/index.ts::BaseProvider",
"component:skillmeat/web/hooks/index.ts::ConflictInfo",
"component:skillmeat/web/hooks/index.ts::EntityLifecycleProvider",
"component:skillmeat/web/hooks/index.ts::EntityLifecycleProviderProps",
"component:skillmeat/web/hooks/index.ts::OutdatedArtifact",
"component:skillmeat/web/lib/api/catalog.ts::FileTreeEntry",
"component:skillmeat/web/lib/utils/bulk-tag-apply.ts::BulkTagResult",
"component:skillmeat/web/sdk/index.ts::ArtifactCreateRequest",
"component:skillmeat/web/sdk/index.ts::ArtifactDiffResponse",
"component:skillmeat/web/sdk/index.ts::ArtifactResponse",
"component:skillmeat/web/sdk/index.ts::ArtifactSyncRequest",
"component:skillmeat/web/sdk/index.ts::ArtifactSyncResponse",
"component:skillmeat/web/sdk/index.ts::ArtifactUpstreamDiffResponse",
"component:skillmeat/web/sdk/index.ts::DeploymentStatistics",
"component:skillmeat/web/sdk/index.ts::FileDiff",
"component:skillmeat/web/sdk/index.ts::ProjectUpdateRequest",
"component:skillmeat/web/sdk/models/ArtifactDiffResponse.ts::ArtifactDiffResponse",
"component:skillmeat/web/sdk/models/ArtifactUpstreamDiffResponse.ts::ArtifactUpstreamDiffResponse",
"component:skillmeat/web/sdk/models/FileDiff.ts::FileDiff",
"component:skillmeat/web/types/artifact.ts::Artifact",
"component:skillmeat/web/types/artifact.ts::ArtifactFilters",
"component:skillmeat/web/types/artifact.ts::ArtifactType",
"component:skillmeat/web/types/context-entity.ts::ContextEntity",
"component:skillmeat/web/types/context-entity.ts::CreateContextEntityRequest",
"component:skillmeat/web/types/context-entity.ts::FilterType",
"component:skillmeat/web/types/deployments.ts::ArtifactDeploymentInfo",
"component:skillmeat/web/types/deployments.ts::ArtifactSyncStatus",
"component:skillmeat/web/types/discovery.ts::ArtifactParameters",
"component:skillmeat/web/types/discovery.ts::DiscoveredArtifact",
"component:skillmeat/web/types/discovery.ts::MatchType",
"component:skillmeat/web/types/entity.ts::Entity",
"component:skillmeat/web/types/entity.ts::EntityStatus",
"component:skillmeat/web/types/entity.ts::EntityType",
"component:skillmeat/web/types/marketplace.ts::ArtifactType",
"component:skillmeat/web/types/marketplace.ts::CatalogEntry",
"component:skillmeat/web/types/marketplace.ts::CatalogFilters",
"component:skillmeat/web/types/marketplace.ts::CatalogListResponse",
"component:skillmeat/web/types/marketplace.ts::CatalogStatus",
"component:skillmeat/web/types/marketplace.ts::Filters",
"component:skillmeat/web/types/marketplace.ts::GitHubSource",
"component:skillmeat/web/types/marketplace.ts::MarketplaceListing",
"component:skillmeat/web/types/marketplace.ts::PublishFormData",
"component:skillmeat/web/types/marketplace.ts::PublishResponse",
"component:skillmeat/web/types/marketplace.ts::ScanResult",
"component:skillmeat/web/types/mcp.ts::MCPFormData",
"component:skillmeat/web/types/mcp.ts::MCPServer",
"component:skillmeat/web/types/mcp.ts::MCPServerStatus",
"component:skillmeat/web/types/project.ts::DeployedArtifact",
"component:skillmeat/web/types/project.ts::ProjectSummary",
"component:skillmeat/web/types/template.ts::ProjectTemplate",
"component:skillmeat/web/types/template.ts::TemplateFilters",
"handler:skillmeat/api/routers/analytics.py::get_analytics_summary",
"handler:skillmeat/api/routers/analytics.py::get_top_artifacts",
"handler:skillmeat/api/routers/analytics.py::get_usage_trends",
"handler:skillmeat/api/routers/artifacts.py::add_skip_preference",
"handler:skillmeat/api/routers/artifacts.py::add_tag_to_artifact",
"handler:skillmeat/api/routers/artifacts.py::bulk_import_artifacts",
"handler:skillmeat/api/routers/artifacts.py::check_artifact_upstream",
"handler:skillmeat/api/routers/artifacts.py::clear_skip_preferences",
"handler:skillmeat/api/routers/artifacts.py::confirm_duplicates",
"handler:skillmeat/api/routers/artifacts.py::create_artifact",
"handler:skillmeat/api/routers/artifacts.py::create_artifact_file",
"handler:skillmeat/api/routers/artifacts.py::delete_artifact",
"handler:skillmeat/api/routers/artifacts.py::delete_artifact_file",
"handler:skillmeat/api/routers/artifacts.py::deploy_artifact",
"handler:skillmeat/api/routers/artifacts.py::discover_artifacts",
"handler:skillmeat/api/routers/artifacts.py::discover_project_artifacts",
"handler:skillmeat/api/routers/artifacts.py::discovery_health_check",
"handler:skillmeat/api/routers/artifacts.py::fetch_github_metadata",
"handler:skillmeat/api/routers/artifacts.py::get_artifact",
"handler:skillmeat/api/routers/artifacts.py::get_artifact_diff",
"handler:skillmeat/api/routers/artifacts.py::get_artifact_file_content",
"handler:skillmeat/api/routers/artifacts.py::get_artifact_tags",
"handler:skillmeat/api/routers/artifacts.py::get_artifact_upstream_diff",
"handler:skillmeat/api/routers/artifacts.py::get_discovery_metrics",
"handler:skillmeat/api/routers/artifacts.py::get_version_graph",
"handler:skillmeat/api/routers/artifacts.py::list_artifact_files",
"handler:skillmeat/api/routers/artifacts.py::list_artifacts",
"handler:skillmeat/api/routers/artifacts.py::list_skip_preferences",
"handler:skillmeat/api/routers/artifacts.py::remove_skip_preference",
"handler:skillmeat/api/routers/artifacts.py::remove_tag_from_artifact",
"handler:skillmeat/api/routers/artifacts.py::sync_artifact",
"handler:skillmeat/api/routers/artifacts.py::undeploy_artifact",
"handler:skillmeat/api/routers/artifacts.py::update_artifact",
"handler:skillmeat/api/routers/artifacts.py::update_artifact_file_content",
"handler:skillmeat/api/routers/artifacts.py::update_artifact_parameters",
"handler:skillmeat/api/routers/bundles.py::delete_bundle",
"handler:skillmeat/api/routers/bundles.py::delete_bundle_share_link",
"handler:skillmeat/api/routers/bundles.py::export_bundle",
"handler:skillmeat/api/routers/bundles.py::get_bundle",
"handler:skillmeat/api/routers/bundles.py::get_bundle_analytics",
"handler:skillmeat/api/routers/bundles.py::import_bundle",
"handler:skillmeat/api/routers/bundles.py::list_bundles",
"handler:skillmeat/api/routers/bundles.py::preview_bundle",
"handler:skillmeat/api/routers/bundles.py::update_bundle_share_link",
"handler:skillmeat/api/routers/bundles.py::validate_bundle",
"handler:skillmeat/api/routers/collections.py::get_collection",
"handler:skillmeat/api/routers/collections.py::list_collection_artifacts",
"handler:skillmeat/api/routers/collections.py::list_collections",
"handler:skillmeat/api/routers/context_entities.py::create_context_entity",
"handler:skillmeat/api/routers/context_entities.py::delete_context_entity",
"handler:skillmeat/api/routers/context_entities.py::get_context_entity",
"handler:skillmeat/api/routers/context_entities.py::get_context_entity_content",
"handler:skillmeat/api/routers/context_entities.py::list_context_entities",
"handler:skillmeat/api/routers/context_entities.py::update_context_entity",
"handler:skillmeat/api/routers/deployments.py::deploy_artifact",
"handler:skillmeat/api/routers/deployments.py::list_deployments",
"handler:skillmeat/api/routers/deployments.py::undeploy_artifact",
"handler:skillmeat/api/routers/groups.py::add_artifacts_to_group",
"handler:skillmeat/api/routers/groups.py::create_group",
"handler:skillmeat/api/routers/groups.py::delete_group",
"handler:skillmeat/api/routers/groups.py::get_group",
"handler:skillmeat/api/routers/groups.py::list_groups",
"handler:skillmeat/api/routers/groups.py::remove_artifact_from_group",
"handler:skillmeat/api/routers/groups.py::reorder_artifacts_in_group",
"handler:skillmeat/api/routers/groups.py::reorder_groups",
"handler:skillmeat/api/routers/groups.py::update_artifact_position",
"handler:skillmeat/api/routers/groups.py::update_group",
"handler:skillmeat/api/routers/marketplace.py::compliance_checklist",
"handler:skillmeat/api/routers/marketplace.py::compliance_consent",
"handler:skillmeat/api/routers/marketplace.py::compliance_history",
"handler:skillmeat/api/routers/marketplace.py::compliance_scan",
"handler:skillmeat/api/routers/marketplace.py::get_listing_detail",
"handler:skillmeat/api/routers/marketplace.py::install_listing",
"handler:skillmeat/api/routers/marketplace.py::list_brokers",
"handler:skillmeat/api/routers/marketplace.py::list_listings",
"handler:skillmeat/api/routers/marketplace.py::publish_bundle",
"handler:skillmeat/api/routers/marketplace_sources.py::create_source",
"handler:skillmeat/api/routers/marketplace_sources.py::delete_source",
"handler:skillmeat/api/routers/marketplace_sources.py::exclude_artifact",
"handler:skillmeat/api/routers/marketplace_sources.py::get_artifact_file_content",
"handler:skillmeat/api/routers/marketplace_sources.py::get_artifact_file_tree",
"handler:skillmeat/api/routers/marketplace_sources.py::get_path_tags",
"handler:skillmeat/api/routers/marketplace_sources.py::get_source",
"handler:skillmeat/api/routers/marketplace_sources.py::import_artifacts",
"handler:skillmeat/api/routers/marketplace_sources.py::infer_github_url",
"handler:skillmeat/api/routers/marketplace_sources.py::list_artifacts",
"handler:skillmeat/api/routers/marketplace_sources.py::list_sources",