-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.json
More file actions
2000 lines (2000 loc) · 63.6 KB
/
Copy pathresources.json
File metadata and controls
2000 lines (2000 loc) · 63.6 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
[
{
"id": "ase-site",
"name": "Agent Skill Exchange",
"type": "ASE",
"framework": "Multi-Framework",
"url": "https://agentskillexchange.com/",
"repo": "https://github.com/agentskillexchange/skills",
"description": "Live marketplace for source-backed agent skills.",
"why_it_matters": "Provides the human-facing discovery layer for the canonical ASE skills catalog.",
"tags": [
"catalog",
"marketplace",
"skills"
]
},
{
"id": "ase-skills-repo",
"name": "AgentSkillExchange Skills",
"type": "ASE",
"framework": "Multi-Framework",
"url": "https://github.com/agentskillexchange/skills",
"repo": "https://github.com/agentskillexchange/skills",
"description": "Canonical public catalog of ASE skill files and generated indexes.",
"why_it_matters": "This companion repo should point readers to the canonical skill source of truth.",
"tags": [
"catalog",
"repo",
"skills"
]
},
{
"id": "ase-verification",
"name": "ASE Verification",
"type": "ASE",
"framework": "Multi-Framework",
"url": "https://github.com/agentskillexchange/skills/tree/main/verification",
"repo": "https://github.com/agentskillexchange/skills",
"description": "Verification criteria, patterns, and security resources for ASE skills.",
"why_it_matters": "Shows how ASE separates listed skills from security-reviewed skills.",
"tags": [
"verification",
"security",
"quality"
]
},
{
"id": "openai-codex-repo",
"name": "OpenAI Codex",
"type": "Official",
"framework": "Codex",
"url": "https://github.com/openai/codex",
"repo": "https://github.com/openai/codex",
"description": "OpenAI's public Codex CLI repository.",
"why_it_matters": "Codex is a core coding-agent workflow surface for skill-driven repo work.",
"tags": [
"codex",
"coding-agent",
"cli"
]
},
{
"id": "openai-codex-docs",
"name": "OpenAI Codex Docs",
"type": "Lab",
"framework": "Codex",
"url": "https://developers.openai.com/codex",
"repo": "",
"description": "OpenAI Codex documentation.",
"why_it_matters": "Provides lab-owned guidance for Codex workflows and setup.",
"tags": [
"codex",
"openai",
"lab"
]
},
{
"id": "claude-code-docs",
"name": "Claude Code Docs",
"type": "Official",
"framework": "Claude Code",
"url": "https://code.claude.com/docs",
"repo": "",
"description": "Anthropic's Claude Code documentation hub.",
"why_it_matters": "Primary source for Claude Code workflow and usage guidance.",
"tags": [
"claude-code",
"anthropic",
"docs"
]
},
{
"id": "claude-code-headless",
"name": "Claude Code Headless",
"type": "Official",
"framework": "Claude Code",
"url": "https://code.claude.com/docs/en/headless",
"repo": "",
"description": "Documentation for programmatic Claude Code usage.",
"why_it_matters": "Important for automation-oriented skills and CI workflows.",
"tags": [
"claude-code",
"automation",
"headless"
]
},
{
"id": "openclaw-docs",
"name": "OpenClaw Docs",
"type": "Official",
"framework": "OpenClaw",
"url": "https://docs.openclaw.ai/",
"repo": "https://github.com/openclaw/openclaw",
"description": "OpenClaw documentation hub.",
"why_it_matters": "Explains OpenClaw providers, skills, tools, crons, and runtime setup.",
"tags": [
"openclaw",
"runtime",
"docs"
]
},
{
"id": "openclaw-repo",
"name": "OpenClaw Repository",
"type": "Official",
"framework": "OpenClaw",
"url": "https://github.com/openclaw/openclaw",
"repo": "https://github.com/openclaw/openclaw",
"description": "Public OpenClaw repository.",
"why_it_matters": "Source-backed reference for OpenClaw runtime and contribution details.",
"tags": [
"openclaw",
"repo",
"runtime"
]
},
{
"id": "hermes-agent-repo",
"name": "Hermes Agent",
"type": "Official",
"framework": "Hermes",
"url": "https://github.com/NousResearch/hermes-agent",
"repo": "https://github.com/NousResearch/hermes-agent",
"description": "Official Hermes Agent repository from Nous Research.",
"why_it_matters": "Shows a skills-oriented self-improving agent architecture.",
"tags": [
"hermes",
"skills",
"agent"
]
},
{
"id": "hermes-skills-docs",
"name": "Hermes Skills Feature Docs",
"type": "Official",
"framework": "Hermes",
"url": "https://github.com/NousResearch/hermes-agent/blob/main/website/docs/user-guide/features/skills.md",
"repo": "https://github.com/NousResearch/hermes-agent",
"description": "Hermes Agent documentation for skills.",
"why_it_matters": "Defines how Hermes exposes and manages skills.",
"tags": [
"hermes",
"skills",
"docs"
]
},
{
"id": "cursor-skills-docs",
"name": "Cursor Agent Skills",
"type": "Official",
"framework": "Cursor",
"url": "https://cursor.com/docs/context/skills",
"repo": "",
"description": "Cursor documentation for agent skills.",
"why_it_matters": "Primary source for Cursor's skill model.",
"tags": [
"cursor",
"skills",
"ide"
]
},
{
"id": "cursor-tools-docs",
"name": "Cursor Agent Tools",
"type": "Official",
"framework": "Cursor",
"url": "https://docs.cursor.com/en/agent/tools",
"repo": "",
"description": "Cursor documentation for tools available to Agent modes.",
"why_it_matters": "Helps distinguish skills from callable editor tools.",
"tags": [
"cursor",
"tools",
"agent"
]
},
{
"id": "gemini-cli-repo",
"name": "Gemini CLI",
"type": "Official",
"framework": "Gemini",
"url": "https://github.com/google-gemini/gemini-cli",
"repo": "https://github.com/google-gemini/gemini-cli",
"description": "Google's open-source Gemini CLI repository.",
"why_it_matters": "Represents Gemini-powered terminal-agent workflows.",
"tags": [
"gemini",
"cli",
"terminal-agent"
]
},
{
"id": "gemini-api-docs",
"name": "Gemini API Docs",
"type": "Official",
"framework": "Gemini",
"url": "https://ai.google.dev/gemini-api/docs",
"repo": "",
"description": "Google Gemini API documentation.",
"why_it_matters": "Provider-level setup reference for Gemini-backed agent workflows.",
"tags": [
"gemini",
"api",
"google"
]
},
{
"id": "langgraph-repo",
"name": "LangGraph",
"type": "Official",
"framework": "LangChain/LangGraph",
"url": "https://github.com/langchain-ai/langgraph",
"repo": "https://github.com/langchain-ai/langgraph",
"description": "LangGraph repository for building resilient agents.",
"why_it_matters": "Source-backed reference for graph-based agent orchestration.",
"tags": [
"langgraph",
"langchain",
"agents"
]
},
{
"id": "langchain-agents",
"name": "LangChain Agents",
"type": "Official",
"framework": "LangChain/LangGraph",
"url": "https://www.langchain.com/agents",
"repo": "",
"description": "LangChain overview of agents and LangGraph.",
"why_it_matters": "Explains LangGraph's role in agent orchestration.",
"tags": [
"langchain",
"langgraph",
"agents"
]
},
{
"id": "mcp-docs",
"name": "Model Context Protocol Docs",
"type": "Official",
"framework": "MCP",
"url": "https://modelcontextprotocol.io/",
"repo": "https://github.com/modelcontextprotocol/modelcontextprotocol",
"description": "Official MCP documentation site.",
"why_it_matters": "Primary source for tool/context protocol concepts.",
"tags": [
"mcp",
"protocol",
"tools"
]
},
{
"id": "mcp-spec-repo",
"name": "Model Context Protocol Repository",
"type": "Official",
"framework": "MCP",
"url": "https://github.com/modelcontextprotocol/modelcontextprotocol",
"repo": "https://github.com/modelcontextprotocol/modelcontextprotocol",
"description": "Specification and documentation repository for MCP.",
"why_it_matters": "Source-backed reference for MCP specification and docs.",
"tags": [
"mcp",
"spec",
"docs"
]
},
{
"id": "openai-agents-sdk-docs",
"name": "OpenAI Agents SDK Docs",
"type": "Official",
"framework": "OpenAI Agents",
"url": "https://openai.github.io/openai-agents-python/",
"repo": "https://github.com/openai/openai-agents-python",
"description": "Documentation for the OpenAI Agents SDK.",
"why_it_matters": "Shows source-backed patterns for tools, handoffs, guardrails, tracing, and agent execution.",
"tags": [
"openai",
"agents-sdk",
"tools"
]
},
{
"id": "openai-agents-sdk-repo",
"name": "OpenAI Agents SDK Repository",
"type": "Official",
"framework": "OpenAI Agents",
"url": "https://github.com/openai/openai-agents-python",
"repo": "https://github.com/openai/openai-agents-python",
"description": "OpenAI's Python Agents SDK repository.",
"why_it_matters": "Provides source code and examples for OpenAI agent workflows.",
"tags": [
"openai",
"agents-sdk",
"repo"
]
},
{
"id": "openai-tools-docs",
"name": "OpenAI Tools Guide",
"type": "Official",
"framework": "OpenAI Agents",
"url": "https://platform.openai.com/docs/guides/tools",
"repo": "",
"description": "OpenAI documentation for model tool use.",
"why_it_matters": "Helps distinguish model tools from higher-level skills and workflows.",
"tags": [
"openai",
"tools",
"docs"
]
},
{
"id": "anthropic-claude-code-mcp",
"name": "Claude Code MCP Docs",
"type": "Official",
"framework": "Claude Code",
"url": "https://docs.anthropic.com/en/docs/claude-code/mcp",
"repo": "",
"description": "Anthropic documentation for using MCP with Claude Code.",
"why_it_matters": "Shows how Claude Code connects to tools and context through MCP.",
"tags": [
"anthropic",
"claude-code",
"mcp"
]
},
{
"id": "anthropic-claude-code-subagents",
"name": "Claude Code Subagents",
"type": "Official",
"framework": "Claude Code",
"url": "https://docs.anthropic.com/en/docs/claude-code/sub-agents",
"repo": "",
"description": "Anthropic documentation for Claude Code subagents.",
"why_it_matters": "Subagents are a useful comparison point for skill routing and workflow specialization.",
"tags": [
"anthropic",
"claude-code",
"subagents"
]
},
{
"id": "anthropic-mcp-docs",
"name": "Anthropic MCP Docs",
"type": "Official",
"framework": "MCP",
"url": "https://docs.anthropic.com/en/docs/agents-and-tools/mcp",
"repo": "",
"description": "Anthropic documentation for MCP in agent and tool workflows.",
"why_it_matters": "Gives provider-owned context for MCP as an agent-tool bridge.",
"tags": [
"anthropic",
"mcp",
"tools"
]
},
{
"id": "google-adk-docs",
"name": "Google Agent Development Kit Docs",
"type": "Official",
"framework": "Google ADK",
"url": "https://google.github.io/adk-docs/",
"repo": "https://github.com/google/adk-python",
"description": "Google documentation for the Agent Development Kit.",
"why_it_matters": "Provides official Google guidance for building agents, tools, and workflows.",
"tags": [
"google",
"adk",
"agents"
]
},
{
"id": "google-adk-python-repo",
"name": "Google ADK Python",
"type": "Official",
"framework": "Google ADK",
"url": "https://github.com/google/adk-python",
"repo": "https://github.com/google/adk-python",
"description": "Google's Python implementation for the Agent Development Kit.",
"why_it_matters": "Source-backed reference for Google's agent development patterns.",
"tags": [
"google",
"adk",
"python"
]
},
{
"id": "gemini-cli-docs",
"name": "Gemini CLI Docs",
"type": "Official",
"framework": "Gemini",
"url": "https://github.com/google-gemini/gemini-cli/tree/main/docs",
"repo": "https://github.com/google-gemini/gemini-cli",
"description": "Documentation directory for Gemini CLI.",
"why_it_matters": "Useful for terminal-agent setup, configuration, and workflow guidance.",
"tags": [
"gemini",
"cli",
"docs"
]
},
{
"id": "langgraph-docs",
"name": "LangGraph Docs",
"type": "Official",
"framework": "LangChain/LangGraph",
"url": "https://docs.langchain.com/oss/python/langgraph/overview",
"repo": "https://github.com/langchain-ai/langgraph",
"description": "LangGraph overview documentation.",
"why_it_matters": "Explains stateful agent graphs and durable workflow concepts.",
"tags": [
"langgraph",
"agents",
"state"
]
},
{
"id": "langchain-mcp-adapters",
"name": "LangChain MCP Adapters",
"type": "Official",
"framework": "LangChain/LangGraph",
"url": "https://github.com/langchain-ai/langchain-mcp-adapters",
"repo": "https://github.com/langchain-ai/langchain-mcp-adapters",
"description": "LangChain adapters for MCP.",
"why_it_matters": "Shows how MCP tooling can plug into LangChain and LangGraph workflows.",
"tags": [
"langchain",
"mcp",
"adapters"
]
},
{
"id": "cursor-rules-docs",
"name": "Cursor Rules Docs",
"type": "Official",
"framework": "Cursor",
"url": "https://docs.cursor.com/en/context/rules",
"repo": "",
"description": "Cursor documentation for rules and reusable project context.",
"why_it_matters": "Rules are an important adjacent concept for skill-like guidance in IDE agents.",
"tags": [
"cursor",
"rules",
"context"
]
},
{
"id": "cursor-background-agent-docs",
"name": "Cursor Background Agent Docs",
"type": "Official",
"framework": "Cursor",
"url": "https://docs.cursor.com/en/background-agent",
"repo": "",
"description": "Cursor documentation for background agents.",
"why_it_matters": "Background agents show how skill guidance can support asynchronous coding work.",
"tags": [
"cursor",
"background-agent",
"ide"
]
},
{
"id": "openclaw-image-generation",
"name": "OpenClaw Image Generation",
"type": "Official",
"framework": "OpenClaw",
"url": "https://docs.openclaw.ai/tools/image-generation",
"repo": "https://github.com/openclaw/openclaw",
"description": "OpenClaw documentation for image generation tools.",
"why_it_matters": "Example of tool-specific runtime documentation that skills can wrap into workflows.",
"tags": [
"openclaw",
"tools",
"image-generation"
]
},
{
"id": "openclaw-openai-provider",
"name": "OpenClaw OpenAI Provider",
"type": "Official",
"framework": "OpenClaw",
"url": "https://docs.openclaw.ai/providers/openai",
"repo": "https://github.com/openclaw/openclaw",
"description": "OpenClaw documentation for OpenAI provider configuration.",
"why_it_matters": "Provider setup affects how skills run across agent runtimes.",
"tags": [
"openclaw",
"provider",
"openai"
]
},
{
"id": "hermes-skills-catalog",
"name": "Hermes Skills Catalog",
"type": "Official",
"framework": "Hermes",
"url": "https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/skills-catalog.md",
"repo": "https://github.com/NousResearch/hermes-agent",
"description": "Hermes reference page for bundled skills.",
"why_it_matters": "Shows how Hermes documents built-in skills and their roles.",
"tags": [
"hermes",
"skills",
"catalog"
]
},
{
"id": "hermes-memory-docs",
"name": "Hermes Memory Docs",
"type": "Official",
"framework": "Hermes",
"url": "https://github.com/NousResearch/hermes-agent/blob/main/website/docs/user-guide/features/memory.md",
"repo": "https://github.com/NousResearch/hermes-agent",
"description": "Hermes documentation for memory.",
"why_it_matters": "Memory boundaries are closely related to reusable skill behavior.",
"tags": [
"hermes",
"memory",
"skills"
]
},
{
"id": "github-copilot-docs",
"name": "GitHub Copilot Docs",
"type": "Official",
"framework": "GitHub Copilot",
"url": "https://docs.github.com/en/copilot",
"repo": "",
"description": "GitHub's documentation hub for Copilot features, agents, CLI, SDK, MCP, and governance.",
"why_it_matters": "Provides the official source for Copilot's coding-agent and customization surfaces.",
"tags": [
"github-copilot",
"coding-agent",
"docs"
]
},
{
"id": "github-copilot-agent-skills",
"name": "GitHub Copilot Agent Skills",
"type": "Official",
"framework": "GitHub Copilot",
"url": "https://docs.github.com/en/copilot/concepts/agents/about-agent-skills",
"repo": "",
"description": "GitHub documentation explaining how agent skills work with Copilot.",
"why_it_matters": "Defines Copilot's skill model and helps compare it with other agent-skill runtimes.",
"tags": [
"github-copilot",
"skills",
"agents"
]
},
{
"id": "github-copilot-cloud-agent-skills",
"name": "Adding Agent Skills For GitHub Copilot",
"type": "Official",
"framework": "GitHub Copilot",
"url": "https://docs.github.com/en/copilot/how-tos/copilot-on-github/customize-copilot/customize-cloud-agent/add-skills",
"repo": "",
"description": "GitHub guide for creating, adding, managing, and using agent skills with Copilot.",
"why_it_matters": "Shows how skills are installed and selected for Copilot cloud agent and related GitHub surfaces.",
"tags": [
"github-copilot",
"skills",
"cloud-agent"
]
},
{
"id": "github-copilot-cli-skills",
"name": "Adding Agent Skills For GitHub Copilot CLI",
"type": "Official",
"framework": "GitHub Copilot",
"url": "https://docs.github.com/en/copilot/how-tos/copilot-cli/customize-copilot/add-skills",
"repo": "",
"description": "GitHub guide for adding and using skills with Copilot CLI.",
"why_it_matters": "Connects terminal-native Copilot workflows to the broader skill ecosystem.",
"tags": [
"github-copilot",
"cli",
"skills"
]
},
{
"id": "github-copilot-sdk-skills",
"name": "GitHub Copilot SDK Custom Skills",
"type": "Official",
"framework": "GitHub Copilot",
"url": "https://docs.github.com/en/copilot/how-tos/copilot-sdk/features/skills",
"repo": "",
"description": "GitHub documentation for loading skill directories in Copilot SDK sessions.",
"why_it_matters": "Shows how programmatic Copilot sessions can compose skills with MCP servers and hooks.",
"tags": [
"github-copilot",
"sdk",
"skills"
]
},
{
"id": "github-copilot-mcp-docs",
"name": "GitHub Copilot MCP Docs",
"type": "Official",
"framework": "GitHub Copilot",
"url": "https://docs.github.com/en/copilot/concepts/context/mcp",
"repo": "",
"description": "GitHub documentation for Model Context Protocol support in Copilot.",
"why_it_matters": "Explains how MCP extends Copilot across IDE, CLI, app, cloud agent, and code review surfaces.",
"tags": [
"github-copilot",
"mcp",
"context"
]
},
{
"id": "github-copilot-repository-instructions",
"name": "GitHub Copilot Repository Instructions",
"type": "Official",
"framework": "GitHub Copilot",
"url": "https://docs.github.com/en/copilot/how-tos/copilot-on-github/customize-copilot/add-custom-instructions/add-repository-instructions",
"repo": "",
"description": "GitHub documentation for repository-level custom instructions.",
"why_it_matters": "Helps readers distinguish persistent repository guidance from portable agent skills.",
"tags": [
"github-copilot",
"instructions",
"repository"
]
},
{
"id": "awesome-mcp-servers-punkpeye",
"name": "Awesome MCP Servers",
"type": "Community",
"framework": "MCP",
"url": "https://github.com/punkpeye/awesome-mcp-servers",
"repo": "https://github.com/punkpeye/awesome-mcp-servers",
"description": "Community-maintained list of MCP servers.",
"why_it_matters": "Useful for seeing the breadth of MCP servers, while clearly marked as community-maintained.",
"tags": [
"mcp",
"community",
"servers"
]
},
{
"id": "awesome-claude-code",
"name": "Awesome Claude Code",
"type": "Community",
"framework": "Claude Code",
"url": "https://github.com/hesreallyhim/awesome-claude-code",
"repo": "https://github.com/hesreallyhim/awesome-claude-code",
"description": "Community list of Claude Code resources.",
"why_it_matters": "Useful for non-official ecosystem discovery when labeled separately from Anthropic-owned sources.",
"tags": [
"claude-code",
"community",
"resources"
]
},
{
"id": "openai-agents-guide",
"name": "OpenAI Agents Guide",
"type": "Official",
"framework": "OpenAI Agents SDK",
"url": "https://platform.openai.com/docs/guides/agents",
"repo": "",
"description": "OpenAI guide for building agents with tools, instructions, and handoffs.",
"why_it_matters": "Useful for learning how a major provider frames agent design, tool use, and orchestration.",
"tags": [
"agents",
"openai",
"tools",
"handoffs"
]
},
{
"id": "openai-apps-sdk-docs",
"name": "OpenAI Apps SDK Docs",
"type": "Official",
"framework": "OpenAI Apps SDK",
"url": "https://developers.openai.com/apps-sdk/",
"repo": "",
"description": "OpenAI documentation for building apps that connect tools and interfaces to ChatGPT.",
"why_it_matters": "Helps readers understand app and tool surfaces adjacent to agent skill workflows.",
"tags": [
"apps",
"tools",
"chatgpt",
"mcp"
]
},
{
"id": "claude-code-memory-docs",
"name": "Claude Code Memory Docs",
"type": "Official",
"framework": "Claude Code",
"url": "https://docs.anthropic.com/en/docs/claude-code/memory",
"repo": "",
"description": "Anthropic documentation for Claude Code memory behavior.",
"why_it_matters": "Memory affects how skills, instructions, and project preferences persist across agent work.",
"tags": [
"claude-code",
"memory",
"context"
]
},
{
"id": "claude-code-hooks-docs",
"name": "Claude Code Hooks Docs",
"type": "Official",
"framework": "Claude Code",
"url": "https://docs.anthropic.com/en/docs/claude-code/hooks",
"repo": "",
"description": "Anthropic documentation for Claude Code hooks.",
"why_it_matters": "Hooks are a useful reference point for approval, validation, and automation boundaries.",
"tags": [
"claude-code",
"hooks",
"automation",
"approval"
]
},
{
"id": "claude-code-settings-docs",
"name": "Claude Code Settings Docs",
"type": "Official",
"framework": "Claude Code",
"url": "https://docs.anthropic.com/en/docs/claude-code/settings",
"repo": "",
"description": "Anthropic documentation for Claude Code configuration and settings.",
"why_it_matters": "Settings are part of the runtime boundary that skill authors need to understand.",
"tags": [
"claude-code",
"settings",
"runtime",
"configuration"
]
},
{
"id": "langgraph-persistence-docs",
"name": "LangGraph Persistence Docs",
"type": "Official",
"framework": "LangChain / LangGraph",
"url": "https://docs.langchain.com/oss/python/langgraph/persistence",
"repo": "https://github.com/langchain-ai/langgraph",
"description": "LangGraph documentation for persistence and state.",
"why_it_matters": "State and persistence are central concepts for durable agent workflows and skill handoffs.",
"tags": [
"langgraph",
"state",
"persistence",
"workflows"
]
},
{
"id": "langgraph-human-in-the-loop-docs",
"name": "LangGraph Human-in-the-loop Docs",
"type": "Official",
"framework": "LangChain / LangGraph",
"url": "https://docs.langchain.com/oss/python/langgraph/human-in-the-loop",
"repo": "https://github.com/langchain-ai/langgraph",
"description": "LangGraph documentation for human review and intervention patterns.",
"why_it_matters": "Provides a framework reference for approval gates and human-supervised agent workflows.",
"tags": [
"langgraph",
"human-in-the-loop",
"approval",
"workflows"
]
},
{
"id": "google-adk-agents-docs",
"name": "Google ADK Agents Docs",
"type": "Official",
"framework": "Google ADK",
"url": "https://google.github.io/adk-docs/agents/",
"repo": "https://github.com/google/adk-python",
"description": "Google ADK documentation for agent concepts.",
"why_it_matters": "Helps compare how Google structures agents and agent workflow components.",
"tags": [
"google-adk",
"agents",
"framework"
]
},
{
"id": "google-adk-tools-docs",
"name": "Google ADK Tools Docs",
"type": "Official",
"framework": "Google ADK",
"url": "https://google.github.io/adk-docs/tools/",
"repo": "https://github.com/google/adk-python",
"description": "Google ADK documentation for tools.",
"why_it_matters": "Tool concepts help readers distinguish skill instructions from callable capabilities.",
"tags": [
"google-adk",
"tools",
"agents"
]
},
{
"id": "opentelemetry-genai-semconv",
"name": "OpenTelemetry GenAI Semantic Conventions",
"type": "Official",
"framework": "Observability",
"url": "https://opentelemetry.io/docs/specs/semconv/gen-ai/",
"repo": "https://github.com/open-telemetry/opentelemetry-specification",
"description": "OpenTelemetry semantic conventions for generative AI operations.",
"why_it_matters": "Gives teams vocabulary for traces, metrics, and evidence around agent workflows.",
"tags": [
"observability",
"tracing",
"evaluation",
"genai"
]
},
{
"id": "owasp-llm-top-10",
"name": "OWASP Top 10 For LLM Applications",
"type": "Community",
"framework": "Security",
"url": "https://owasp.org/www-project-top-10-for-large-language-model-applications/",
"repo": "https://github.com/OWASP/www-project-top-10-for-large-language-model-applications",
"description": "OWASP project covering common security risks in LLM applications.",
"why_it_matters": "Provides a practical security checklist for skills that use tools, prompts, data, or code execution.",
"tags": [
"security",
"llm",
"risk",
"guardrails"
]
},
{
"id": "nist-ai-risk-management-framework",
"name": "NIST AI Risk Management Framework",
"type": "Official",
"framework": "Governance",
"url": "https://www.nist.gov/itl/ai-risk-management-framework",
"repo": "",
"description": "NIST resource hub for AI risk management.",
"why_it_matters": "Useful background for teams creating approval, governance, and rollout processes for agent skills.",
"tags": [
"governance",
"risk",
"safety",
"evaluation"
]
},
{
"id": "model-context-protocol-introduction",
"name": "Model Context Protocol Introduction",
"type": "Official",
"framework": "MCP",
"url": "https://modelcontextprotocol.io/docs/getting-started/intro",
"repo": "https://github.com/modelcontextprotocol/modelcontextprotocol",
"description": "Introductory documentation for the Model Context Protocol.",
"why_it_matters": "Gives readers a starting point for understanding MCP as a tool and context layer for agents.",
"tags": [
"mcp",
"tools",
"context",
"protocol"
]
},
{
"id": "crewai-docs",
"name": "CrewAI Docs",
"type": "Official",
"framework": "CrewAI",
"url": "https://docs.crewai.com/",
"repo": "https://github.com/crewAIInc/crewAI",
"description": "Official CrewAI documentation for crews, flows, agents, tools, memory, knowledge, guardrails, and observability.",
"why_it_matters": "Shows how role-based and flow-based agent workflows can be captured as reusable skill recipes.",
"tags": [
"agents",
"multi-agent",
"workflows",
"tools"
]
},
{
"id": "crewai-repo",
"name": "CrewAI GitHub",
"type": "Official",
"framework": "CrewAI",
"url": "https://github.com/crewAIInc/crewAI",
"repo": "https://github.com/crewAIInc/crewAI",
"description": "Official CrewAI open-source repository.",
"why_it_matters": "Provides source context for CrewAI framework usage and project structure.",
"tags": [
"repo",
"agents",
"multi-agent"
]
},
{
"id": "autogen-docs",
"name": "Microsoft AutoGen Docs",
"type": "Official",
"framework": "Microsoft AutoGen",
"url": "https://microsoft.github.io/autogen/stable/",
"repo": "https://github.com/microsoft/autogen",
"description": "Official AutoGen documentation for AgentChat, Core, Studio, extensions, tools, and runtime concepts.",
"why_it_matters": "Documents a major multi-agent ecosystem whose workflows can be translated into reusable skill guidance.",
"tags": [
"agents",
"multi-agent",
"tools",
"workflows"
]
},
{
"id": "autogen-repo",
"name": "Microsoft AutoGen GitHub",
"type": "Official",
"framework": "Microsoft AutoGen",
"url": "https://github.com/microsoft/autogen",
"repo": "https://github.com/microsoft/autogen",
"description": "Official Microsoft AutoGen repository.",
"why_it_matters": "Provides source code and examples for AutoGen agent applications and multi-agent workflows.",
"tags": [
"repo",
"agents",
"multi-agent"
]
},
{
"id": "semantic-kernel-docs",
"name": "Semantic Kernel Docs",
"type": "Official",
"framework": "Semantic Kernel",
"url": "https://learn.microsoft.com/en-us/semantic-kernel/overview/",
"repo": "https://github.com/microsoft/semantic-kernel",
"description": "Official Microsoft Semantic Kernel overview and documentation.",
"why_it_matters": "Shows how enterprise agent workflows use plugins, functions, planners, memory, and application integration.",
"tags": [
"agents",
"plugins",
"enterprise",
"orchestration"
]
},
{
"id": "semantic-kernel-repo",
"name": "Semantic Kernel GitHub",
"type": "Official",
"framework": "Semantic Kernel",
"url": "https://github.com/microsoft/semantic-kernel",
"repo": "https://github.com/microsoft/semantic-kernel",
"description": "Official Semantic Kernel repository.",
"why_it_matters": "Provides source context for Semantic Kernel app and agent orchestration patterns.",
"tags": [
"repo",
"agents",
"plugins"
]
},
{
"id": "llamaindex-docs",
"name": "LlamaIndex Docs",
"type": "Official",
"framework": "LlamaIndex",
"url": "https://developers.llamaindex.ai/python/framework/",
"repo": "https://github.com/run-llama/llama_index",
"description": "Official LlamaIndex framework documentation for data, RAG, tools, agents, workflows, evaluation, and observability.",
"why_it_matters": "Covers the data and retrieval layer that many agent skills need to reference safely.",
"tags": [
"rag",
"agents",
"data",
"workflows"
]
},
{
"id": "llamaindex-repo",
"name": "LlamaIndex GitHub",
"type": "Official",
"framework": "LlamaIndex",
"url": "https://github.com/run-llama/llama_index",
"repo": "https://github.com/run-llama/llama_index",
"description": "Official LlamaIndex repository.",
"why_it_matters": "Provides source context for RAG agent and data workflow examples.",
"tags": [