-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathllms-full.txt
More file actions
1222 lines (1018 loc) · 101 KB
/
llms-full.txt
File metadata and controls
1222 lines (1018 loc) · 101 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
# Awesome Code Docs (Full Tutorial Index)
Main repository:
- https://github.com/johnxie/awesome-code-docs
## A2A Protocol Tutorial: Building Interoperable Agent Systems With Google's Agent-to-Agent Standard
- Path: tutorials/a2a-protocol-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/a2a-protocol-tutorial/README.md
- Summary: Learn how agents discover, communicate, and delegate tasks to each other using the A2A protocol — the open standard (now Linux Foundation) for agent-to-agent interoperability.
- Keywords: a2a, protocol, building, interoperable, agent, google, standard, agents, discover, communicate, delegate, tasks, each, other, open, now, linux, foundation
## Activepieces Tutorial: Open-Source Automation, Pieces, and AI-Ready Workflow Operations
- Path: tutorials/activepieces-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/activepieces-tutorial/README.md
- Summary: Learn how to use activepieces/activepieces to build, run, and govern production automation workflows with open-source extensibility, piece development, API control, and self-hosted operations.
- Keywords: activepieces, open, source, automation, pieces, ready, workflow, operations, run, govern, workflows, extensibility, piece, development, api, control, self, hosted
## ADK Python Tutorial: Production-Grade Agent Engineering with Google's ADK
- Path: tutorials/adk-python-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/adk-python-tutorial/README.md
- Summary: Learn how to use google/adk-python to build, evaluate, and deploy modular AI agent systems with strong tooling, session controls, and production rollouts.
- Keywords: adk, python, grade, agent, engineering, google, evaluate, deploy, modular, strong, tooling, session, controls, rollouts
## AFFiNE Tutorial: Open-Source AI Workspace with Docs, Whiteboards, and Databases
- Path: tutorials/affine-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/affine-tutorial/README.md
- Summary: Learn how to use toeverything/AFFiNE to build, extend, and self-host a modern knowledge workspace combining documents, whiteboards, and databases — powered by BlockSuite, CRDT-based collaboration, and integrated AI copilot features.
- Keywords: affine, open, source, workspace, whiteboards, databases, toeverything, extend, self, host, modern, knowledge, combining, documents, powered, blocksuite, crdt, based
## AG2 Tutorial: Next-Generation Multi-Agent Framework
- Path: tutorials/ag2-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/ag2-tutorial/README.md
- Summary: Build collaborative AI agent systems with AG2, the community-driven successor to AutoGen.
- Keywords: ag2, next, generation, multi, agent, framework, collaborative, community, driven, successor, autogen
## AgentGPT Tutorial: Building Autonomous AI Agents
- Path: tutorials/agentgpt-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/agentgpt-tutorial/README.md
- Summary: A deep technical walkthrough of AgentGPT covering Building Autonomous AI Agents.
- Keywords: agentgpt, building, autonomous, agents, technical, walkthrough
## AgenticSeek Tutorial: Local-First Autonomous Agent Operations
- Path: tutorials/agenticseek-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/agenticseek-tutorial/README.md
- Summary: Learn how to use Fosowl/agenticSeek to run multi-agent planning, browsing, and coding workflows with local model support, Docker-first runtime defaults, and practical operator guardrails.
- Keywords: agenticseek, local, first, autonomous, agent, operations, fosowl, run, multi, planning, browsing, coding, workflows, model, support, docker, runtime, defaults
## AGENTS.md Tutorial: Open Standard for Coding-Agent Guidance in Repositories
- Path: tutorials/agents-md-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/agents-md-tutorial/README.md
- Summary: Learn how to use agentsmd/agents.md to define a clear, portable instruction contract for coding agents across projects and tools.
- Keywords: agents, open, standard, coding, agent, guidance, repositories, agentsmd, define, clear, portable, instruction, contract, projects, tools
## Agno Tutorial: Multi-Agent Systems That Learn Over Time
- Path: tutorials/agno-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/agno-tutorial/README.md
- Summary: Learn how to build and operate learning multi-agent systems with agno-agi/agno, including memory, orchestration, AgentOS runtime, and production guardrails.
- Keywords: agno, multi, agent, over, time, operate, learning, agi, memory, orchestration, agentos, runtime, guardrails
## Aider Tutorial: AI Pair Programming in Your Terminal
- Path: tutorials/aider-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/aider-tutorial/README.md
- Summary: Learn to use Aider-AI/aider for real file edits, git-native workflows, model routing, and reliable day-to-day coding loops.
- Keywords: aider, pair, programming, terminal, real, file, edits, git, native, workflows, model, routing, reliable, day, coding, loops
## Anthropic API Tutorial: Build Production Apps with Claude
- Path: tutorials/anthropic-code-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/anthropic-code-tutorial/README.md
- Summary: A practical guide to building with Anthropic's API and official SDKs, including messages, tools, vision, streaming, and production operations.
- Keywords: anthropic, code, api, apps, claude, building, official, sdks, messages, tools, vision, streaming, operations
## Anthropic Quickstarts Tutorial
- Path: tutorials/anthropic-skills-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/anthropic-skills-tutorial/README.md
- Summary: A deep-dive into every project in the official anthropics/anthropic-quickstarts repository — computer use, autonomous coding, customer support, financial analysis, and the agents reference implementation.
- Keywords: anthropic, skills, quickstarts, every, official, anthropics, repository, computer, autonomous, coding, customer, support, financial, analysis, agents, reference, implementation
## AnythingLLM Tutorial: Self-Hosted RAG and Agents Platform
- Path: tutorials/anything-llm-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/anything-llm-tutorial/README.md
- Summary: Learn how to deploy and operate Mintplex-Labs/anything-llm for document-grounded chat, workspace management, agent workflows, and production use.
- Keywords: anything, llm, anythingllm, self, hosted, rag, agents, deploy, operate, mintplex, labs, document, grounded, chat, workspace, management, agent, workflows
## Appsmith Tutorial: Low-Code Internal Tools
- Path: tutorials/appsmith-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/appsmith-tutorial/README.md
- Summary: Open-source low-code platform for building internal tools with drag-and-drop UI, 25+ database integrations, JavaScript logic, and Git sync.
- Keywords: appsmith, low, code, internal, tools, open, source, building, drag, drop, database, integrations, javascript, logic, git, sync
## Athens Research: Deep Dive Tutorial
- Path: tutorials/athens-research-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/athens-research-tutorial/README.md
- Summary: Project Status: The Athens Research repository was archived in August 2022 and is no longer actively maintained. This tutorial covers the final v2.0.0 release as a historical reference for ClojureScript/Datascript architectural patterns. Do not use Athens as the basis for new production projects.
- Keywords: athens, research, status, repository, was, archived, august, longer, actively, maintained, covers, final, release, historical, reference, clojurescript, datascript, architectural
## AutoAgent Tutorial
- Path: tutorials/autoagent-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/autoagent-tutorial/README.md
- Summary: AutoAgent (formerly MetaChain) is a zero-code autonomous agent framework from HKUDS that lets you describe agents in plain English and have them generated, tested, and deployed automatically. With 9,116 GitHub stars and an academic paper (arxiv:2502.05957), it represents a significant step toward democratizing multi-agent system development.
- Keywords: autoagent, formerly, metachain, zero, code, autonomous, agent, framework, hkuds, lets, describe, agents, plain, english, have, them, generated, tested
## Microsoft AutoGen Tutorial: Building Multi-Agent AI Systems
- Path: tutorials/autogen-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/autogen-tutorial/README.md
- Summary: A deep technical walkthrough of Microsoft AutoGen covering Building Multi-Agent AI Systems.
- Keywords: autogen, microsoft, building, multi, agent, technical, walkthrough
## autoresearch Tutorial
- Path: tutorials/autoresearch-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/autoresearch-tutorial/README.md
- Summary: The overnight ML research agent that runs ~100 GPU experiments while you sleep.
- Keywords: autoresearch, overnight, research, agent, runs, gpu, experiments, while, sleep
## Awesome Claude Code Tutorial: Curated Claude Code Resource Discovery and Evaluation
- Path: tutorials/awesome-claude-code-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/awesome-claude-code-tutorial/README.md
- Summary: Learn how to use hesreallyhim/awesome-claude-code as a high-signal discovery and decision system for skills, commands, hooks, tooling, and CLAUDE.md patterns.
- Keywords: awesome, claude, code, curated, resource, discovery, evaluation, hesreallyhim, high, signal, decision, skills, commands, hooks, tooling, patterns
## Awesome Claude Skills Tutorial: High-Signal Skill Discovery and Reuse for Claude Workflows
- Path: tutorials/awesome-claude-skills-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/awesome-claude-skills-tutorial/README.md
- Summary: Learn how to use ComposioHQ/awesome-claude-skills to discover, evaluate, install, and contribute Claude skills for coding, automation, writing, and cross-app workflows.
- Keywords: awesome, claude, skills, high, signal, skill, discovery, reuse, workflows, composiohq, discover, evaluate, install, contribute, coding, automation, writing, cross
## Awesome MCP Servers Tutorial: Curating and Operating High-Signal MCP Integrations
- Path: tutorials/awesome-mcp-servers-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/awesome-mcp-servers-tutorial/README.md
- Summary: Learn how to use punkpeye/awesome-mcp-servers as a practical control surface for discovering, vetting, and operating Model Context Protocol servers across coding, data, browser automation, and enterprise workflows.
- Keywords: awesome, mcp, servers, curating, operating, high, signal, integrations, punkpeye, control, surface, discovering, vetting, model, context, protocol, coding, data
## awslabs/mcp Tutorial: Operating a Large-Scale MCP Server Ecosystem for AWS Workloads
- Path: tutorials/awslabs-mcp-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/awslabs-mcp-tutorial/README.md
- Summary: Learn how to use awslabs/mcp to compose, run, and govern AWS-focused MCP servers across development, infrastructure, data, and operations workflows.
- Keywords: awslabs, mcp, operating, large, scale, server, ecosystem, aws, workloads, compose, run, govern, focused, servers, development, infrastructure, data, operations
## BabyAGI Tutorial: The Original Autonomous AI Task Agent Framework
- Path: tutorials/babyagi-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/babyagi-tutorial/README.md
- Summary: Learn how to use yoheinakajima/babyagi for autonomous task generation, execution, and prioritization—the foundational agent loop that started the autonomous AI agent wave.
- Keywords: babyagi, original, autonomous, task, agent, framework, yoheinakajima, generation, execution, prioritization, foundational, loop, started, wave
## Beads Tutorial: Git-Backed Task Graph Memory for Coding Agents
- Path: tutorials/beads-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/beads-tutorial/README.md
- Summary: Learn how to use steveyegge/beads to give coding agents durable, dependency-aware task memory with structured issue graphs instead of ad-hoc markdown plans.
- Keywords: beads, git, backed, task, graph, memory, coding, agents, steveyegge, give, durable, dependency, aware, structured, issue, graphs, instead, hoc
## BentoML Tutorial: Building Production-Ready ML Services
- Path: tutorials/bentoml-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/bentoml-tutorial/README.md
- Summary: A deep technical walkthrough of BentoML covering Building Production-Ready ML Services.
- Keywords: bentoml, building, ready, services, technical, walkthrough
## bolt.diy Tutorial: Build and Operate an Open Source AI App Builder
- Path: tutorials/bolt-diy-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/bolt-diy-tutorial/README.md
- Summary: A production-focused deep dive into stackblitz-labs/bolt.diy: architecture, provider routing, safe edit loops, MCP integrations, deployment choices, and operational governance.
- Keywords: bolt, diy, operate, open, source, app, builder, focused, stackblitz, labs, architecture, provider, routing, safe, edit, loops, mcp, integrations
## Botpress Tutorial: Open Source Conversational AI Platform
- Path: tutorials/botpress-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/botpress-tutorial/README.md
- Summary: Important Notice (2025): Botpress v12 has been sunset and is no longer available for new deployments. However, existing customers with active v12 subscriptions remain fully supported.
- Keywords: botpress, open, source, conversational, important, notice, v12, has, been, sunset, longer, available, new, deployments, however, existing, customers, active
## Browser Use Tutorial: AI-Powered Web Automation Agents
- Path: tutorials/browser-use-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/browser-use-tutorial/README.md
- Summary: Learn how to use browser-use/browser-use to build agents that can navigate websites, execute workflows, and run reliable browser automation in production.
- Keywords: browser, powered, web, automation, agents, can, navigate, websites, execute, workflows, run, reliable
## Chatbox Tutorial: Building Modern AI Chat Interfaces
- Path: tutorials/chatbox-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/chatbox-tutorial/README.md
- Summary: A deep technical walkthrough of Chatbox covering Building Modern AI Chat Interfaces.
- Keywords: chatbox, building, modern, chat, interfaces, technical, walkthrough
## Cherry Studio Tutorial: Multi-Provider AI Desktop Workspace for Teams
- Path: tutorials/cherry-studio-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/cherry-studio-tutorial/README.md
- Summary: Learn how to use CherryHQ/cherry-studio to run multi-provider AI workflows, manage assistants, and integrate MCP tools in a desktop-first productivity environment.
- Keywords: cherry, studio, multi, provider, desktop, workspace, teams, cherryhq, run, workflows, manage, assistants, integrate, mcp, tools, first, productivity, environment
## ChromaDB Tutorial: Building AI-Native Vector Databases
- Path: tutorials/chroma-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/chroma-tutorial/README.md
- Summary: A deep technical walkthrough of ChromaDB covering Building AI-Native Vector Databases.
- Keywords: chroma, chromadb, building, native, vector, databases, technical, walkthrough
## Chrome DevTools MCP Tutorial: Browser Automation and Debugging for Coding Agents
- Path: tutorials/chrome-devtools-mcp-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/chrome-devtools-mcp-tutorial/README.md
- Summary: Learn how to use ChromeDevTools/chrome-devtools-mcp to give coding agents reliable browser control, performance tracing, and deep debugging capabilities.
- Keywords: chrome, devtools, mcp, browser, automation, debugging, coding, agents, chromedevtools, give, reliable, control, performance, tracing, capabilities
## Cipher Tutorial: Shared Memory Layer for Coding Agents
- Path: tutorials/cipher-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/cipher-tutorial/README.md
- Summary: Learn how to use campfirein/cipher as a memory-centric MCP-enabled layer that preserves and shares coding context across IDEs, agents, and teams.
- Keywords: cipher, shared, memory, layer, coding, agents, campfirein, centric, mcp, enabled, preserves, shares, context, ides, teams
## Claude Code Router Tutorial: Multi-Provider Routing and Control Plane for Claude Code
- Path: tutorials/claude-code-router-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/claude-code-router-tutorial/README.md
- Summary: Learn how to use musistudio/claude-code-router to route Claude Code workloads across multiple model providers with configurable routing rules, transformers, presets, and operational controls.
- Keywords: claude, code, router, multi, provider, routing, control, plane, musistudio, route, workloads, multiple, model, providers, configurable, rules, transformers, presets
## Claude Code Tutorial: Agentic Coding from Your Terminal
- Path: tutorials/claude-code-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/claude-code-tutorial/README.md
- Summary: Learn how to use anthropics/claude-code for codebase understanding, multi-file edits, command execution, git workflows, and MCP-based extension.
- Keywords: claude, code, agentic, coding, terminal, anthropics, codebase, understanding, multi, file, edits, command, execution, git, workflows, mcp, based, extension
## Claude Flow Tutorial: Multi-Agent Orchestration, MCP Tooling, and V3 Module Architecture
- Path: tutorials/claude-flow-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/claude-flow-tutorial/README.md
- Summary: Learn how to use ruvnet/claude-flow to orchestrate multi-agent workflows, operate MCP/CLI surfaces, and reason about V2-to-V3 architecture and migration tradeoffs.
- Keywords: claude, flow, multi, agent, orchestration, mcp, tooling, module, architecture, ruvnet, orchestrate, workflows, operate, cli, surfaces, reason, migration, tradeoffs
## Claude-Mem Tutorial: Persistent Memory Compression for Claude Code
- Path: tutorials/claude-mem-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/claude-mem-tutorial/README.md
- Summary: Learn how to use thedotmack/claude-mem to capture, compress, and retrieve coding-session memory with hook-driven automation, searchable context layers, and operator controls.
- Keywords: claude, mem, persistent, memory, compression, code, thedotmack, capture, compress, retrieve, coding, session, hook, driven, automation, searchable, context, layers
## Claude Plugins Official Tutorial: Anthropic's Managed Plugin Directory
- Path: tutorials/claude-plugins-official-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/claude-plugins-official-tutorial/README.md
- Summary: Learn how to use anthropics/claude-plugins-official to discover, evaluate, install, and contribute Claude Code plugins with clear directory standards and plugin safety practices.
- Keywords: claude, plugins, official, anthropic, managed, plugin, directory, anthropics, discover, evaluate, install, contribute, code, clear, standards, safety, practices
## Claude Quickstarts Tutorial: Production Integration Patterns
- Path: tutorials/claude-quickstarts-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/claude-quickstarts-tutorial/README.md
- Summary: Learn from Anthropic's official quickstart projects to build deployable applications with Claude API, including customer support, data analysis, browser automation, and autonomous coding.
- Keywords: claude, quickstarts, integration, patterns, anthropic, official, quickstart, projects, deployable, applications, api, customer, support, data, analysis, browser, automation, autonomous
## Claude Squad Tutorial: Multi-Agent Terminal Session Orchestration
- Path: tutorials/claude-squad-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/claude-squad-tutorial/README.md
- Summary: Learn how to use smtg-ai/claude-squad to run and manage multiple coding-agent sessions across isolated workspaces with tmux and git worktrees.
- Keywords: claude, squad, multi, agent, terminal, session, orchestration, smtg, run, manage, multiple, coding, sessions, isolated, workspaces, tmux, git, worktrees
## Claude Task Master Tutorial: AI-Powered Task Management for Developers
- Path: tutorials/claude-task-master-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/claude-task-master-tutorial/README.md
- Summary: A deep technical walkthrough of Claude Task Master covering AI-Powered Task Management for Developers.
- Keywords: claude, task, master, powered, management, developers, technical, walkthrough
## ClickHouse Tutorial: High-Performance Analytical Database
- Path: tutorials/clickhouse-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/clickhouse-tutorial/README.md
- Summary: A deep technical walkthrough of ClickHouse covering High-Performance Analytical Database.
- Keywords: clickhouse, high, performance, analytical, database, technical, walkthrough
## Cline Tutorial: Agentic Coding with Human Control
- Path: tutorials/cline-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/cline-tutorial/README.md
- Summary: A practical engineering guide to cline/cline: install, operate, and govern Cline across local development and team environments.
- Keywords: cline, agentic, coding, human, control, engineering, install, operate, govern, local, development, team, environments
## CodeMachine CLI Tutorial: Orchestrating Long-Running Coding Agent Workflows
- Path: tutorials/codemachine-cli-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/codemachine-cli-tutorial/README.md
- Summary: Learn how to use moazbuilds/CodeMachine-CLI to orchestrate repeatable coding-agent workflows with multi-agent coordination, context control, and long-running execution.
- Keywords: codemachine, cli, orchestrating, long, running, coding, agent, workflows, moazbuilds, orchestrate, repeatable, multi, coordination, context, control, execution
## Codex Analysis Platform Tutorial: Build Code Intelligence Systems
- Path: tutorials/codex-analysis-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/codex-analysis-tutorial/README.md
- Summary: Design and operate a production-grade code analysis platform with parsing, symbol resolution, code intelligence features, LSP integration, and rollout governance.
- Keywords: codex, analysis, code, intelligence, design, operate, grade, parsing, symbol, resolution, features, lsp, integration, rollout, governance
## Codex CLI Tutorial: Local Terminal Agent Workflows with OpenAI Codex
- Path: tutorials/codex-cli-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/codex-cli-tutorial/README.md
- Summary: Learn how to use openai/codex to run a lightweight coding agent locally, with strong controls for auth, configuration, MCP integration, and sandboxed execution.
- Keywords: codex, cli, local, terminal, agent, workflows, openai, run, lightweight, coding, locally, strong, controls, auth, configuration, mcp, integration, sandboxed
## ComfyUI Tutorial: Mastering AI Image Generation Workflows
- Path: tutorials/comfyui-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/comfyui-tutorial/README.md
- Summary: A deep technical walkthrough of ComfyUI covering Mastering AI Image Generation Workflows.
- Keywords: comfyui, mastering, image, generation, workflows, technical, walkthrough
## Composio Tutorial: Production Tool and Authentication Infrastructure for AI Agents
- Path: tutorials/composio-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/composio-tutorial/README.md
- Summary: Learn how to use ComposioHQ/composio to connect agents to 800+ toolkits with session-aware discovery, robust authentication flows, provider integrations, MCP support, and event-trigger automation.
- Keywords: composio, tool, authentication, infrastructure, agents, composiohq, connect, toolkits, session, aware, discovery, robust, flows, provider, integrations, mcp, support, event
## Compound Engineering Plugin Tutorial: Compounding Agent Workflows Across Toolchains
- Path: tutorials/compound-engineering-plugin-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/compound-engineering-plugin-tutorial/README.md
- Summary: Learn how to use EveryInc/compound-engineering-plugin to run compound engineering workflows in Claude Code and convert plugin assets for other coding-agent ecosystems.
- Keywords: compound, engineering, plugin, compounding, agent, workflows, toolchains, everyinc, run, claude, code, convert, assets, other, coding, ecosystems
## Context7 Tutorial: Live Documentation Context for Coding Agents
- Path: tutorials/context7-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/context7-tutorial/README.md
- Summary: Learn how to use upstash/context7 to inject up-to-date, version-aware library docs into Claude Code, Cursor, and other MCP-capable coding agents.
- Keywords: context7, live, documentation, context, coding, agents, upstash, inject, date, version, aware, library, claude, code, cursor, other, mcp, capable
## Continue Tutorial: Open-Source AI Coding Agents for IDE and CLI
- Path: tutorials/continue-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/continue-tutorial/README.md
- Summary: A practical guide to continuedev/continue, covering IDE usage, headless/CLI workflows, model configuration, team collaboration, and enterprise operations.
- Keywords: continue, open, source, coding, agents, ide, cli, continuedev, usage, headless, workflows, model, configuration, team, collaboration, enterprise, operations
## GitHub Copilot CLI Tutorial: Copilot Agent Workflows in the Terminal
- Path: tutorials/copilot-cli-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/copilot-cli-tutorial/README.md
- Summary: Learn how to use github/copilot-cli to run Copilot's coding agent directly from the terminal with GitHub-native context, approval controls, and extensibility through MCP and LSP.
- Keywords: copilot, cli, agent, workflows, terminal, run, coding, directly, native, context, approval, controls, extensibility, mcp, lsp
## CopilotKit Tutorial: Building AI Copilots for React Applications
- Path: tutorials/copilotkit-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/copilotkit-tutorial/README.md
- Summary: Create in-app AI assistants, chatbots, and agentic UIs with the open-source CopilotKit framework.
- Keywords: copilotkit, building, copilots, react, applications, create, app, assistants, chatbots, agentic, uis, open, source, framework
## Crawl4AI Tutorial: LLM-Friendly Web Crawling for RAG Pipelines
- Path: tutorials/crawl4ai-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/crawl4ai-tutorial/README.md
- Summary: Deep technical walkthrough of Crawl4AI Tutorial: LLM-Friendly Web Crawling for RAG Pipelines.
- Keywords: crawl4ai, llm, friendly, web, crawling, rag, pipelines, technical, walkthrough
## Create Python Server Tutorial: Scaffold and Ship MCP Servers with uvx
- Path: tutorials/create-python-server-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/create-python-server-tutorial/README.md
- Summary: Learn how to use modelcontextprotocol/create-python-server to scaffold Python MCP servers with minimal setup, template-driven primitives, and publish-ready packaging workflows.
- Keywords: create, python, server, scaffold, ship, mcp, servers, uvx, modelcontextprotocol, minimal, setup, template, driven, primitives, publish, ready, packaging, workflows
## Create TypeScript Server Tutorial: Scaffold MCP Servers with TypeScript Templates
- Path: tutorials/create-typescript-server-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/create-typescript-server-tutorial/README.md
- Summary: Learn how to use modelcontextprotocol/create-typescript-server to scaffold MCP server projects quickly, understand generated template structure, and operate build/debug workflows safely in archived-tooling environments.
- Keywords: create, typescript, server, scaffold, mcp, servers, templates, modelcontextprotocol, projects, quickly, understand, generated, template, structure, operate, debug, workflows, safely
## CrewAI Tutorial: Building Collaborative AI Agent Teams
- Path: tutorials/crewai-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/crewai-tutorial/README.md
- Summary: CrewAI View Repo is a framework for orchestrating role-based AI agent teams that collaborate to accomplish complex tasks. It provides a structured approach to creating AI crews with specialized agents, tools, and processes, enabling sophisticated multi-agent workflows and collaborative problem-solving.
- Keywords: crewai, building, collaborative, agent, teams, view, framework, orchestrating, role, based, collaborate, accomplish, complex, tasks, provides, structured, approach, creating
## Crush Tutorial: Multi-Model Terminal Coding Agent with Strong Extensibility
- Path: tutorials/crush-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/crush-tutorial/README.md
- Summary: Learn how to use charmbracelet/crush for terminal-native coding workflows with flexible model providers, LSP/MCP integrations, and production-grade controls.
- Keywords: crush, multi, model, terminal, coding, agent, strong, extensibility, charmbracelet, native, workflows, flexible, providers, lsp, mcp, integrations, grade, controls
## Daytona Tutorial: Secure Sandbox Infrastructure for AI-Generated Code
- Path: tutorials/daytona-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/daytona-tutorial/README.md
- Summary: Learn how to use daytonaio/daytona to run AI-generated code in isolated sandboxes, integrate coding agents through MCP, and operate sandbox infrastructure with stronger security and resource controls.
- Keywords: daytona, secure, sandbox, infrastructure, generated, code, daytonaio, run, isolated, sandboxes, integrate, coding, agents, mcp, operate, stronger, security, resource
## DeerFlow Tutorial: Open-Source Super Agent Harness
- Path: tutorials/deer-flow-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/deer-flow-tutorial/README.md
- Summary: DeerFlow is a LangGraph-powered multi-agent runtime by ByteDance that orchestrates a lead agent, specialized sub-agents, persistent memory, sandboxed code execution, and a modular skills system to tackle complex, long-horizon research and automation tasks.
- Keywords: deer, flow, deerflow, open, source, super, agent, harness, langgraph, powered, multi, runtime, bytedance, orchestrates, lead, specialized, sub, agents
## Devika Tutorial: Open-Source Autonomous AI Software Engineer
- Path: tutorials/devika-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/devika-tutorial/README.md
- Summary: Learn how to deploy and operate stitionai/devika — a multi-agent autonomous coding system that plans, researches, writes, and debugs code end-to-end.
- Keywords: devika, open, source, autonomous, software, engineer, deploy, operate, stitionai, multi, agent, coding, plans, researches, writes, debugs, code, end
## Dify Platform: Deep Dive Tutorial
- Path: tutorials/dify-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/dify-tutorial/README.md
- Summary: Dify — An open-source LLM application development platform for building workflows, RAG pipelines, and AI agents with a visual interface.
- Keywords: dify, open, source, llm, application, development, building, workflows, rag, pipelines, agents, visual, interface
## DSPy Tutorial: Programming Language Models
- Path: tutorials/dspy-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/dspy-tutorial/README.md
- Summary: Learn to program language models declaratively with DSPy, the Stanford NLP framework for systematic prompt optimization and modular LLM pipelines.
- Keywords: dspy, programming, language, models, program, declaratively, stanford, nlp, framework, systematic, prompt, optimization, modular, llm, pipelines
## Dyad Tutorial: Local-First AI App Building
- Path: tutorials/dyad-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/dyad-tutorial/README.md
- Summary: A practical guide to dyad-sh/dyad, focused on local-first app generation, integration patterns, validation loops, and deployment readiness.
- Keywords: dyad, local, first, app, building, focused, generation, integration, patterns, validation, loops, deployment, readiness
## E2B Tutorial: Secure Cloud Sandboxes for AI Agent Code Execution
- Path: tutorials/e2b-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/e2b-tutorial/README.md
- Summary: Learn how to use e2b-dev/E2B to give AI agents secure, sandboxed cloud environments for code execution with sub-200ms cold starts.
- Keywords: e2b, secure, cloud, sandboxes, agent, code, execution, dev, give, agents, sandboxed, environments, sub, 200ms, cold, starts
## ElizaOS: Deep Dive Tutorial
- Path: tutorials/elizaos-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/elizaos-tutorial/README.md
- Summary: ElizaOS — Autonomous agents for everyone.
- Keywords: elizaos, autonomous, agents, everyone
## Everything Claude Code Tutorial: Production Configuration Patterns for Claude Code
- Path: tutorials/everything-claude-code-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/everything-claude-code-tutorial/README.md
- Summary: Learn how to use affaan-m/everything-claude-code to adopt battle-tested Claude Code agents, skills, hooks, commands, rules, and MCP workflows in a structured, production-oriented way.
- Keywords: everything, claude, code, configuration, patterns, affaan, adopt, battle, tested, agents, skills, hooks, commands, rules, mcp, workflows, structured, oriented
## Fabric Tutorial: Open-Source Framework for Augmenting Humans with AI
- Path: tutorials/fabric-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/fabric-tutorial/README.md
- Summary: Enhance human capabilities with Fabric's modular framework for AI-powered cognitive assistance and task automation.
- Keywords: fabric, open, source, framework, augmenting, humans, enhance, human, capabilities, modular, powered, cognitive, assistance, task, automation
## FastMCP Tutorial: Building and Operating MCP Servers with Pythonic Control
- Path: tutorials/fastmcp-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/fastmcp-tutorial/README.md
- Summary: Learn how to use jlowin/fastmcp to design, run, test, and deploy MCP servers and clients with practical transport, integration, auth, and operations patterns.
- Keywords: fastmcp, building, operating, mcp, servers, pythonic, control, jlowin, design, run, test, deploy, clients, transport, integration, auth, operations, patterns
## Figma Context MCP Tutorial: Design-to-Code Workflows for Coding Agents
- Path: tutorials/figma-context-mcp-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/figma-context-mcp-tutorial/README.md
- Summary: Learn how to use GLips/Figma-Context-MCP (Framelink MCP for Figma) to give coding agents structured design context for higher-fidelity implementation.
- Keywords: figma, context, mcp, design, code, workflows, coding, agents, glips, framelink, give, structured, higher, fidelity, implementation
## Firecrawl MCP Server Tutorial: Web Scraping and Search Tools for MCP Clients
- Path: tutorials/firecrawl-mcp-server-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/firecrawl-mcp-server-tutorial/README.md
- Summary: Learn how to use firecrawl/firecrawl-mcp-server to add robust web scraping, crawling, search, and extraction capabilities to MCP-enabled coding and research agents.
- Keywords: firecrawl, mcp, server, web, scraping, search, tools, clients, add, robust, crawling, extraction, capabilities, enabled, coding, research, agents
## Firecrawl Tutorial: Building LLM-Ready Web Scraping and Data Extraction Systems
- Path: tutorials/firecrawl-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/firecrawl-tutorial/README.md
- Summary: Deep technical walkthrough of Firecrawl Tutorial: Building LLM-Ready Web Scraping and Data Extraction Systems.
- Keywords: firecrawl, building, llm, ready, web, scraping, data, extraction, technical, walkthrough
## Fireproof Tutorial: Local-First Document Database for AI-Native Apps
- Path: tutorials/fireproof-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/fireproof-tutorial/README.md
- Summary: Learn how to use fireproof-storage/fireproof to build local-first, encrypted, sync-capable applications with a unified browser/Node/Deno API and React hooks.
- Keywords: fireproof, local, first, document, database, native, apps, storage, encrypted, sync, capable, applications, unified, browser, node, deno, api, react
## Flowise LLM Orchestration: Deep Dive Tutorial
- Path: tutorials/flowise-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/flowise-tutorial/README.md
- Summary: Flowise — An open-source visual tool for building LLM workflows with a drag-and-drop interface.
- Keywords: flowise, llm, orchestration, open, source, visual, tool, building, workflows, drag, drop, interface
## Gemini CLI Tutorial: Terminal-First Agent Workflows with Google Gemini
- Path: tutorials/gemini-cli-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/gemini-cli-tutorial/README.md
- Summary: Learn how to use google-gemini/gemini-cli to run coding and operations workflows in terminal-first loops with strong tooling, MCP extensibility, headless automation, and safety controls.
- Keywords: gemini, cli, terminal, first, agent, workflows, google, run, coding, operations, loops, strong, tooling, mcp, extensibility, headless, automation, safety
## GenAI Toolbox Tutorial: MCP-First Database Tooling with Config-Driven Control Planes
- Path: tutorials/genai-toolbox-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/genai-toolbox-tutorial/README.md
- Summary: Learn how to use googleapis/genai-toolbox to expose database tools through MCP and native SDK paths, with stronger configuration discipline, deployment options, and observability controls.
- Keywords: genai, toolbox, mcp, first, database, tooling, config, driven, control, planes, googleapis, expose, tools, native, sdk, paths, stronger, configuration
## GitHub MCP Server Tutorial: Production GitHub Operations Through MCP
- Path: tutorials/github-mcp-server-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/github-mcp-server-tutorial/README.md
- Summary: Learn how to use github/github-mcp-server to connect coding agents directly to repositories, issues, pull requests, actions, and code security workflows with stronger control.
- Keywords: mcp, server, operations, connect, coding, agents, directly, repositories, issues, pull, requests, actions, code, security, workflows, stronger, control
## Goose Tutorial: Extensible Open-Source AI Agent for Real Engineering Work
- Path: tutorials/goose-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/goose-tutorial/README.md
- Summary: Learn how to use block/goose to automate coding workflows with controlled tool execution, strong provider flexibility, and production-ready operations.
- Keywords: goose, extensible, open, source, agent, real, engineering, work, block, automate, coding, workflows, controlled, tool, execution, strong, provider, flexibility
## GPT Open Source: Deep Dive Tutorial
- Path: tutorials/gpt-oss-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/gpt-oss-tutorial/README.md
- Summary: A comprehensive guide to understanding, building, and deploying open-source GPT implementations -- from nanoGPT to GPT-NeoX and beyond.
- Keywords: gpt, oss, open, source, comprehensive, understanding, building, deploying, implementations, nanogpt, neox, beyond
## gptme Tutorial: Open-Source Terminal Agent for Local Tool-Driven Work
- Path: tutorials/gptme-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/gptme-tutorial/README.md
- Summary: Learn how to use gptme/gptme to run a local-first coding and knowledge-work agent with strong CLI ergonomics, extensible tools, and automation-friendly modes.
- Keywords: gptme, open, source, terminal, agent, local, tool, driven, work, run, first, coding, knowledge, strong, cli, ergonomics, extensible, tools
## HAPI Tutorial: Remote Control for Local AI Coding Sessions
- Path: tutorials/hapi-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/hapi-tutorial/README.md
- Summary: Learn tiann/hapi, a local-first hub that lets you run Claude Code/Codex/Gemini/OpenCode sessions locally while controlling and approving them remotely.
- Keywords: hapi, remote, control, local, coding, sessions, tiann, first, hub, lets, run, claude, code, codex, gemini, opencode, locally, while
## Haystack: Deep Dive Tutorial
- Path: tutorials/haystack-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/haystack-tutorial/README.md
- Summary: Haystack — An open-source framework for building production-ready LLM applications, RAG pipelines, and intelligent search systems.
- Keywords: haystack, open, source, framework, building, ready, llm, applications, rag, pipelines, intelligent, search
## Hermes Agent Tutorial
- Path: tutorials/hermes-agent-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/hermes-agent-tutorial/README.md
- Summary: NousResearch's self-hosted personal AI agent with persistent memory, autonomous skill creation, 20+ platform gateway, and a closed reinforcement-learning loop that turns every conversation into fine-tuning data.
- Keywords: hermes, agent, nousresearch, self, hosted, personal, persistent, memory, autonomous, skill, creation, gateway, closed, reinforcement, learning, loop, turns, every
## HuggingFace Transformers Tutorial: Building State-of-the-Art AI Models
- Path: tutorials/huggingface-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/huggingface-tutorial/README.md
- Summary: A deep technical walkthrough of HuggingFace Transformers covering Building State-of-the-Art AI Models.
- Keywords: huggingface, transformers, building, state, art, models, technical, walkthrough
## HumanLayer Tutorial: Context Engineering and Human-Governed Coding Agents
- Path: tutorials/humanlayer-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/humanlayer-tutorial/README.md
- Summary: Learn how to use humanlayer/humanlayer patterns to orchestrate coding agents with stronger context control, human oversight, and team-scale workflows.
- Keywords: humanlayer, context, engineering, human, governed, coding, agents, patterns, orchestrate, stronger, control, oversight, team, scale, workflows
## Instructor Tutorial: Structured LLM Outputs
- Path: tutorials/instructor-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/instructor-tutorial/README.md
- Summary: Get reliable, typed responses from LLMs with Pydantic validation.
- Keywords: instructor, structured, llm, outputs, get, reliable, typed, responses, llms, pydantic, validation
## Khoj AI: Deep Dive Tutorial
- Path: tutorials/khoj-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/khoj-tutorial/README.md
- Summary: Khoj — An open-source, self-hostable AI personal assistant that connects to your notes, documents, and online data.
- Keywords: khoj, open, source, self, hostable, personal, assistant, connects, notes, documents, online, data
## Kilo Code Tutorial: Agentic Engineering from IDE and CLI Surfaces
- Path: tutorials/kilocode-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/kilocode-tutorial/README.md
- Summary: Learn how to use Kilo-Org/kilocode for high-throughput coding workflows with multi-mode operation, agent-loop controls, and extensible CLI/IDE integration.
- Keywords: kilocode, kilo, code, agentic, engineering, ide, cli, surfaces, org, high, throughput, coding, workflows, multi, mode, operation, agent, loop
## Kimi CLI Tutorial: Multi-Mode Terminal Agent with MCP and ACP
- Path: tutorials/kimi-cli-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/kimi-cli-tutorial/README.md
- Summary: Learn how to use MoonshotAI/kimi-cli to run an interactive terminal coding agent with configurable modes, MCP integrations, and ACP-based IDE connectivity.
- Keywords: kimi, cli, multi, mode, terminal, agent, mcp, acp, moonshotai, run, interactive, coding, configurable, modes, integrations, based, ide, connectivity
## Kiro Tutorial: Spec-Driven Agentic IDE from AWS
- Path: tutorials/kiro-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/kiro-tutorial/README.md
- Summary: Learn how to use kirodotdev/Kiro for structured AI-powered development with spec-driven workflows, agent steering, event-driven automation, and AWS-native integrations.
- Keywords: kiro, spec, driven, agentic, ide, aws, kirodotdev, structured, powered, development, workflows, agent, steering, event, automation, native, integrations
## Kubernetes Operator Patterns: Building Production-Grade Controllers
- Path: tutorials/kubernetes-operator-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/kubernetes-operator-tutorial/README.md
- Summary: Master Kubernetes Operators with hands-on Go implementation using the Operator SDK and controller-runtime library for enterprise application management.
- Keywords: kubernetes, operator, patterns, building, grade, controllers, master, operators, hands, implementation, sdk, controller, runtime, library, enterprise, application, management
## LanceDB Tutorial: Serverless Vector Database for AI
- Path: tutorials/lancedb-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/lancedb-tutorial/README.md
- Summary: Master LanceDB, the open-source serverless vector database designed for AI applications, RAG systems, and semantic search.
- Keywords: lancedb, serverless, vector, database, master, open, source, designed, applications, rag, semantic, search
## LangChain Architecture: Internal Design Deep Dive
- Path: tutorials/langchain-architecture-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/langchain-architecture-tutorial/README.md
- Summary: Deep technical walkthrough of LangChain Architecture: Internal Design Deep Dive.
- Keywords: langchain, architecture, internal, design, technical, walkthrough
## LangChain Tutorial: Building AI Applications with Large Language Models
- Path: tutorials/langchain-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/langchain-tutorial/README.md
- Summary: Pydantic 2 Required: LangChain v0.3 fully migrated to Pydantic 2. Code using langchain_core.pydantic_v1 should be updated to native Pydantic 2 syntax.
- Keywords: langchain, building, applications, large, language, models, pydantic, required, fully, migrated, code, core, should, updated, native, syntax
## Langflow Tutorial: Visual AI Agent and Workflow Platform
- Path: tutorials/langflow-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/langflow-tutorial/README.md
- Summary: Learn how to build, deploy, and operate agent workflows with langflow-ai/langflow, including visual flow composition, API/MCP deployment, and production reliability controls.
- Keywords: langflow, visual, agent, workflow, deploy, operate, workflows, flow, composition, api, mcp, deployment, reliability, controls
## Langfuse Tutorial: LLM Observability, Evaluation, and Prompt Operations
- Path: tutorials/langfuse-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/langfuse-tutorial/README.md
- Summary: Learn how to use langfuse/langfuse to trace, evaluate, and improve production LLM systems with structured observability workflows.
- Keywords: langfuse, llm, observability, evaluation, prompt, operations, trace, evaluate, improve, structured, workflows
## LangGraph Tutorial: Building Stateful Multi-Actor Applications
- Path: tutorials/langgraph-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/langgraph-tutorial/README.md
- Summary: A deep technical walkthrough of LangGraph covering Building Stateful Multi-Actor Applications.
- Keywords: langgraph, building, stateful, multi, actor, applications, technical, walkthrough
## Letta Tutorial: Stateful LLM Agents
- Path: tutorials/letta-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/letta-tutorial/README.md
- Summary: Build AI agents with persistent memory using the framework formerly known as MemGPT.
- Keywords: letta, stateful, llm, agents, persistent, memory, framework, formerly, known, memgpt
## LiteLLM Tutorial: Unified LLM Gateway and Routing Layer
- Path: tutorials/litellm-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/litellm-tutorial/README.md
- Summary: Build provider-agnostic LLM applications with BerriAI/litellm, including routing, fallbacks, proxy deployment, and cost-aware operations.
- Keywords: litellm, unified, llm, gateway, routing, layer, provider, agnostic, applications, berriai, fallbacks, proxy, deployment, cost, aware, operations
## Liveblocks - Real-Time Collaboration Deep Dive
- Path: tutorials/liveblocks-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/liveblocks-tutorial/README.md
- Summary: Deep technical walkthrough of Liveblocks - Real-Time Collaboration Deep Dive.
- Keywords: liveblocks, real, time, collaboration, technical, walkthrough
## llama.cpp Tutorial: Local LLM Inference
- Path: tutorials/llama-cpp-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/llama-cpp-tutorial/README.md
- Summary: Run large language models efficiently on your local machine with pure C/C++.
- Keywords: llama, cpp, local, llm, inference, run, large, language, models, efficiently, machine, pure
## LLaMA-Factory Tutorial: Unified Framework for LLM Training and Fine-tuning
- Path: tutorials/llama-factory-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/llama-factory-tutorial/README.md
- Summary: A deep technical walkthrough of LLaMA-Factory covering Unified Framework for LLM Training and Fine-tuning.
- Keywords: llama, factory, unified, framework, llm, training, fine, tuning, technical, walkthrough
## LlamaIndex Tutorial: Building Advanced RAG Systems and Data Frameworks
- Path: tutorials/llamaindex-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/llamaindex-tutorial/README.md
- Summary: A deep technical walkthrough of LlamaIndex covering Building Advanced RAG Systems and Data Frameworks.
- Keywords: llamaindex, building, advanced, rag, data, frameworks, technical, walkthrough
## LobeChat AI Platform: Deep Dive Tutorial
- Path: tutorials/lobechat-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/lobechat-tutorial/README.md
- Summary: LobeChat — An open-source, modern-design AI chat framework for building private LLM applications.
- Keywords: lobechat, open, source, modern, design, chat, framework, building, private, llm, applications
## LocalAI Tutorial: Self-Hosted OpenAI Alternative
- Path: tutorials/localai-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/localai-tutorial/README.md
- Summary: Run LLMs, image generation, and audio models locally with an OpenAI-compatible API.
- Keywords: localai, self, hosted, openai, alternative, run, llms, image, generation, audio, models, locally, compatible, api
## Logseq: Deep Dive Tutorial
- Path: tutorials/logseq-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/logseq-tutorial/README.md
- Summary: Logseq — A privacy-first, local-first knowledge management platform with block-based editing and graph visualization.
- Keywords: logseq, privacy, first, local, knowledge, management, block, based, editing, graph, visualization
## Mastra Tutorial: TypeScript Framework for AI Agents and Workflows
- Path: tutorials/mastra-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mastra-tutorial/README.md
- Summary: Learn how to build production AI applications with mastra-ai/mastra, including agents, workflows, memory, MCP tooling, and reliability operations.
- Keywords: mastra, typescript, framework, agents, workflows, applications, memory, mcp, tooling, reliability, operations
## MCP Chrome Tutorial: Control Your Real Chrome Browser Through MCP
- Path: tutorials/mcp-chrome-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-chrome-tutorial/README.md
- Summary: Learn how to use hangwin/mcp-chrome to expose browser automation, content analysis, and semantic tab search tools to MCP clients.
- Keywords: mcp, chrome, control, real, browser, hangwin, expose, automation, content, analysis, semantic, tab, search, tools, clients
## MCP C# SDK Tutorial: Production MCP in .NET with Hosting, ASP.NET Core, and Task Workflows
- Path: tutorials/mcp-csharp-sdk-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-csharp-sdk-tutorial/README.md
- Summary: Learn how to build and operate MCP clients and servers with modelcontextprotocol/csharp-sdk, including package choices, auth patterns, tasks, diagnostics, and versioning strategy.
- Keywords: mcp, csharp, sdk, net, hosting, asp, core, task, workflows, operate, clients, servers, modelcontextprotocol, package, choices, auth, patterns, tasks
## MCP Docs Repo Tutorial: Navigating the Archived MCP Documentation Repository
- Path: tutorials/mcp-docs-repo-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-docs-repo-tutorial/README.md
- Summary: Learn how to use modelcontextprotocol/docs as an archived reference, map its conceptual guides, and migrate documentation workflows to the canonical modelcontextprotocol/modelcontextprotocol docs location.
- Keywords: mcp, navigating, archived, documentation, repository, modelcontextprotocol, reference, map, conceptual, guides, migrate, workflows, canonical, location
## MCP Ext Apps Tutorial: Building Interactive MCP Apps and Hosts
- Path: tutorials/mcp-ext-apps-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-ext-apps-tutorial/README.md
- Summary: Learn how to use modelcontextprotocol/ext-apps to build interactive MCP Apps, wire host bridges, secure UI resources, and run reliable testing and migration workflows.
- Keywords: mcp, ext, apps, building, interactive, hosts, modelcontextprotocol, wire, host, bridges, secure, resources, run, reliable, testing, migration, workflows
## MCP Go SDK Tutorial: Building Robust MCP Clients and Servers in Go
- Path: tutorials/mcp-go-sdk-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-go-sdk-tutorial/README.md
- Summary: Learn how to use modelcontextprotocol/go-sdk for production MCP workloads across stdio and streamable HTTP, including auth middleware, conformance, and upgrade planning.
- Keywords: mcp, sdk, building, robust, clients, servers, modelcontextprotocol, workloads, stdio, streamable, auth, middleware, conformance, upgrade, planning
## MCP Inspector Tutorial: Debugging and Validating MCP Servers
- Path: tutorials/mcp-inspector-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-inspector-tutorial/README.md
- Summary: Learn how to use modelcontextprotocol/inspector to test MCP servers across stdio, SSE, and streamable HTTP, with safer auth defaults and repeatable CLI automation.
- Keywords: mcp, inspector, debugging, validating, servers, modelcontextprotocol, test, stdio, sse, streamable, safer, auth, defaults, repeatable, cli, automation
## MCP Java SDK Tutorial: Building MCP Clients and Servers with Reactor, Servlet, and Spring
- Path: tutorials/mcp-java-sdk-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-java-sdk-tutorial/README.md
- Summary: Learn how to use modelcontextprotocol/java-sdk across core Java and Spring stacks, from transport setup to conformance and production hardening.
- Keywords: mcp, java, sdk, building, clients, servers, reactor, servlet, spring, modelcontextprotocol, core, stacks, transport, setup, conformance, hardening
## MCP Kotlin SDK Tutorial: Building Multiplatform MCP Clients and Servers
- Path: tutorials/mcp-kotlin-sdk-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-kotlin-sdk-tutorial/README.md
- Summary: Learn how to implement MCP client/server workflows with modelcontextprotocol/kotlin-sdk, including module boundaries, transport choices, capability negotiation, and production lifecycle controls.
- Keywords: mcp, kotlin, sdk, building, multiplatform, clients, servers, implement, client, server, workflows, modelcontextprotocol, module, boundaries, transport, choices, capability, negotiation
## MCP PHP SDK Tutorial: Building MCP Servers in PHP with Discovery and Transport Flexibility
- Path: tutorials/mcp-php-sdk-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-php-sdk-tutorial/README.md
- Summary: Learn how to implement MCP server workflows with modelcontextprotocol/php-sdk, including attribute discovery, manual capability registration, transport strategy, session storage, and framework integration patterns.
- Keywords: mcp, php, sdk, building, servers, discovery, transport, flexibility, implement, server, workflows, modelcontextprotocol, attribute, manual, capability, registration, strategy, session
## MCP Python SDK Tutorial: Building AI Tool Servers
- Path: tutorials/mcp-python-sdk-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-python-sdk-tutorial/README.md
- Summary: Master the Model Context Protocol Python SDK to build custom tool servers that extend Claude and other LLMs with powerful capabilities.
- Keywords: mcp, python, sdk, building, tool, servers, master, model, context, protocol, custom, extend, claude, other, llms, powerful, capabilities
## MCP Quickstart Resources Tutorial: Cross-Language MCP Servers and Clients by Example
- Path: tutorials/mcp-quickstart-resources-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-quickstart-resources-tutorial/README.md
- Summary: Learn how to use modelcontextprotocol/quickstart-resources as a practical reference for multi-language MCP server/client implementations, protocol smoke testing, and onboarding workflows.
- Keywords: mcp, quickstart, resources, cross, language, servers, clients, example, modelcontextprotocol, reference, multi, server, client, implementations, protocol, smoke, testing, onboarding
## MCP Registry Tutorial: Publishing, Discovery, and Governance for MCP Servers
- Path: tutorials/mcp-registry-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-registry-tutorial/README.md
- Summary: Learn how modelcontextprotocol/registry works end to end: publishing authenticated server metadata, consuming the API as an aggregator, and operating registry infrastructure safely.
- Keywords: mcp, registry, publishing, discovery, governance, servers, modelcontextprotocol, works, end, authenticated, server, metadata, consuming, api, aggregator, operating, infrastructure, safely
## MCP Ruby SDK Tutorial: Building MCP Servers and Clients in Ruby
- Path: tutorials/mcp-ruby-sdk-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-ruby-sdk-tutorial/README.md
- Summary: Learn how to implement MCP server/client workflows with modelcontextprotocol/ruby-sdk, including tool/prompt/resource registration, streamable HTTP sessions, structured logging, and release operations.
- Keywords: mcp, ruby, sdk, building, servers, clients, implement, server, client, workflows, modelcontextprotocol, tool, prompt, resource, registration, streamable, sessions, structured
## MCP Rust SDK Tutorial: Building High-Performance MCP Services with RMCP
- Path: tutorials/mcp-rust-sdk-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-rust-sdk-tutorial/README.md
- Summary: Learn how to use modelcontextprotocol/rust-sdk (rmcp) for production MCP clients and servers with strong transport control, macro-driven tooling, OAuth, and async task workflows.
- Keywords: mcp, rust, sdk, building, high, performance, services, rmcp, modelcontextprotocol, clients, servers, strong, transport, control, macro, driven, tooling, oauth
## MCP Servers Tutorial: Reference Implementations and Patterns
- Path: tutorials/mcp-servers-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-servers-tutorial/README.md
- Summary: Learn how to use the official MCP reference servers as implementation blueprints, not drop-in production services.
- Keywords: mcp, servers, reference, implementations, patterns, official, implementation, blueprints, not, drop, services
## MCP Specification Tutorial: Designing Production-Grade MCP Clients and Servers From the Source of Truth
- Path: tutorials/mcp-specification-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-specification-tutorial/README.md
- Summary: Learn the current Model Context Protocol directly from modelcontextprotocol/modelcontextprotocol, including lifecycle, transports, security, authorization, and governance workflows.
- Keywords: mcp, specification, designing, grade, clients, servers, source, truth, current, model, context, protocol, directly, modelcontextprotocol, lifecycle, transports, security, authorization
## MCP Swift SDK Tutorial: Building MCP Clients and Servers in Swift
- Path: tutorials/mcp-swift-sdk-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-swift-sdk-tutorial/README.md
- Summary: Learn how to implement MCP client and server workflows with modelcontextprotocol/swift-sdk, including transport options, sampling, batching, and graceful service lifecycle control.
- Keywords: mcp, swift, sdk, building, clients, servers, implement, client, server, workflows, modelcontextprotocol, transport, options, sampling, batching, graceful, service, lifecycle
## MCP TypeScript SDK Tutorial: Building and Migrating MCP Clients and Servers in TypeScript
- Path: tutorials/mcp-typescript-sdk-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-typescript-sdk-tutorial/README.md
- Summary: Learn how to use modelcontextprotocol/typescript-sdk to build production MCP clients and servers, migrate from v1 to v2 safely, and validate behavior with conformance workflows.
- Keywords: mcp, typescript, sdk, building, migrating, clients, servers, modelcontextprotocol, migrate, safely, validate, behavior, conformance, workflows
## MCP Use Tutorial: Full-Stack MCP Development Across Agents, Clients, Servers, and Inspector
- Path: tutorials/mcp-use-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcp-use-tutorial/README.md
- Summary: Learn how mcp-use/mcp-use composes agent, client, server, and inspector workflows across Python and TypeScript with practical security and operations patterns.
- Keywords: mcp, full, stack, development, agents, clients, servers, inspector, composes, agent, client, server, workflows, python, typescript, security, operations, patterns
## MCPB Tutorial: Packaging and Distributing Local MCP Servers as Bundles
- Path: tutorials/mcpb-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mcpb-tutorial/README.md
- Summary: Learn how to use modelcontextprotocol/mcpb to package local MCP servers into signed .mcpb bundles with manifest metadata, CLI workflows, and distribution-ready operational controls.
- Keywords: mcpb, packaging, distributing, local, mcp, servers, bundles, modelcontextprotocol, package, signed, manifest, metadata, cli, workflows, distribution, ready, operational, controls
## MeiliSearch Tutorial: Lightning Fast Search Engine
- Path: tutorials/meilisearch-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/meilisearch-tutorial/README.md
- Summary: A deep technical walkthrough of MeiliSearch covering Lightning Fast Search Engine.
- Keywords: meilisearch, lightning, fast, search, engine, technical, walkthrough
## Mem0 Tutorial: Building Production-Ready AI Agents with Scalable Long-Term Memory
- Path: tutorials/mem0-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mem0-tutorial/README.md
- Summary: A deep technical walkthrough of Mem0 covering Building Production-Ready AI Agents with Scalable Long-Term Memory.
- Keywords: mem0, building, ready, agents, scalable, long, term, memory, technical, walkthrough
## MetaGPT Tutorial: Multi-Agent Software Development with Role-Based Collaboration
- Path: tutorials/metagpt-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/metagpt-tutorial/README.md
- Summary: In one sentence: Give MetaGPT a product idea, and a virtual software company of AI agents designs, architects, codes, and tests it for you.
- Keywords: metagpt, multi, agent, software, development, role, based, collaboration, one, sentence, give, product, idea, virtual, company, agents, designs, architects
## Mini-SWE-Agent Tutorial: Minimal Autonomous Code Agent Design at Benchmark Scale
- Path: tutorials/mini-swe-agent-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mini-swe-agent-tutorial/README.md
- Summary: Learn how to use SWE-agent/mini-swe-agent to run compact, high-performing software-engineering agent workflows with minimal scaffolding and strong reproducibility.
- Keywords: mini, swe, agent, minimal, autonomous, code, design, benchmark, scale, run, compact, high, performing, software, engineering, workflows, scaffolding, strong
## Mistral Vibe Tutorial: Minimal CLI Coding Agent by Mistral
- Path: tutorials/mistral-vibe-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/mistral-vibe-tutorial/README.md
- Summary: Learn how to use mistralai/mistral-vibe for terminal-native coding workflows with configurable agent profiles, skills, subagents, and ACP integrations.
- Keywords: mistral, vibe, minimal, cli, coding, agent, mistralai, terminal, native, workflows, configurable, profiles, skills, subagents, acp, integrations
## n8n AI Tutorial: Workflow Automation with AI
- Path: tutorials/n8n-ai-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/n8n-ai-tutorial/README.md
- Summary: Build powerful AI-powered automations with n8n's visual workflow builder.
- Keywords: n8n, workflow, automation, powerful, powered, automations, visual, builder
## n8n Model Context Protocol: Deep Dive Tutorial
- Path: tutorials/n8n-mcp-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/n8n-mcp-tutorial/README.md
- Summary: n8n — Visual workflow automation with Model Context Protocol (MCP) integration for AI-powered tool use.
- Keywords: n8n, mcp, model, context, protocol, visual, workflow, automation, integration, powered, tool
## Nanocoder Tutorial: Building and Understanding AI Coding Agents
- Path: tutorials/nanocoder-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/nanocoder-tutorial/README.md
- Summary: Learn how Nano-Collective/nanocoder implements local-first coding-agent workflows, tool execution loops, and multi-provider model integration.
- Keywords: nanocoder, building, understanding, coding, agents, nano, collective, implements, local, first, agent, workflows, tool, execution, loops, multi, provider, model
## NocoDB: Deep Dive Tutorial
- Path: tutorials/nocodb-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/nocodb-tutorial/README.md
- Summary: NocoDB — An open-source Airtable alternative that turns any database into a smart spreadsheet.
- Keywords: nocodb, open, source, airtable, alternative, turns, any, database, smart, spreadsheet
## Obsidian Outliner Plugin: Deep Dive Tutorial
- Path: tutorials/obsidian-outliner-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/obsidian-outliner-tutorial/README.md
- Summary: Obsidian Outliner — A plugin that adds outliner-style editing behaviors to Obsidian, demonstrating advanced plugin architecture patterns.
- Keywords: obsidian, outliner, plugin, adds, style, editing, behaviors, demonstrating, advanced, architecture, patterns
## Ollama Tutorial: Running and Serving LLMs Locally
- Path: tutorials/ollama-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/ollama-tutorial/README.md
- Summary: Learn how to use ollama/ollama for local model execution, customization, embeddings/RAG, integration, and production deployment.
- Keywords: ollama, running, serving, llms, locally, local, model, execution, customization, embeddings, rag, integration, deployment
## Onlook Tutorial: Visual-First AI Coding for Next.js and Tailwind
- Path: tutorials/onlook-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/onlook-tutorial/README.md
- Summary: Learn how to use onlook-dev/onlook to design and edit production-grade React apps visually while keeping generated code in your repository.
- Keywords: onlook, visual, first, coding, next, tailwind, dev, design, edit, grade, react, apps, visually, while, keeping, generated, code, repository
## Opcode Tutorial: GUI Command Center for Claude Code Workflows
- Path: tutorials/opcode-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/opcode-tutorial/README.md
- Summary: Learn how to use winfunc/opcode to manage Claude Code projects, sessions, agents, MCP servers, and checkpoints from a desktop-first operating interface.
- Keywords: opcode, gui, command, center, claude, code, workflows, winfunc, manage, projects, sessions, agents, mcp, servers, checkpoints, desktop, first, operating
## Open SWE Tutorial: Asynchronous Cloud Coding Agent Architecture and Migration Playbook
- Path: tutorials/open-swe-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/open-swe-tutorial/README.md
- Summary: Learn from langchain-ai/open-swe architecture, workflows, and operational patterns, including how to maintain or migrate from a deprecated codebase.
- Keywords: open, swe, asynchronous, cloud, coding, agent, architecture, migration, playbook, langchain, workflows, operational, patterns, maintain, migrate, deprecated, codebase
## Open WebUI Tutorial: Self-Hosted AI Workspace and Chat Interface
- Path: tutorials/open-webui-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/open-webui-tutorial/README.md
- Summary: Learn how to run and operate open-webui/open-webui as a self-hosted AI interface with model routing, RAG workflows, multi-user controls, and production deployment patterns.
- Keywords: open, webui, self, hosted, workspace, chat, interface, run, operate, model, routing, rag, workflows, multi, user, controls, deployment, patterns
## OpenAI Agents Tutorial: Building Production Multi-Agent Systems
- Path: tutorials/openai-agents-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/openai-agents-tutorial/README.md
- Summary: Production Successor to Swarm: The OpenAI Agents SDK brings Swarm's lightweight agent-handoff philosophy into a production-grade framework with built-in tracing, guardrails, and streaming.
- Keywords: openai, agents, building, multi, agent, successor, swarm, sdk, brings, lightweight, handoff, philosophy, grade, framework, built, tracing, guardrails, streaming
## OpenAI Python SDK Tutorial: Production API Patterns
- Path: tutorials/openai-python-sdk-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/openai-python-sdk-tutorial/README.md
- Summary: Learn how to build reliable Python integrations with openai/openai-python using Responses-first architecture, migration-safe patterns, and production operations.
- Keywords: openai, python, sdk, api, patterns, reliable, integrations, responses, first, architecture, migration, safe, operations
## OpenAI Realtime Agents Tutorial: Voice-First AI Systems
- Path: tutorials/openai-realtime-agents-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/openai-realtime-agents-tutorial/README.md
- Summary: Learn how to build low-latency voice agents with openai/openai-realtime-agents, including realtime session design, tool orchestration, and production rollout patterns.
- Keywords: openai, realtime, agents, voice, first, low, latency, session, design, tool, orchestration, rollout, patterns
## OpenAI Whisper Tutorial: Speech Recognition and Translation
- Path: tutorials/openai-whisper-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/openai-whisper-tutorial/README.md
- Summary: Build robust transcription pipelines with Whisper, from local experiments to production deployment.
- Keywords: openai, whisper, speech, recognition, translation, robust, transcription, pipelines, local, experiments, deployment
## OpenBB Tutorial: Complete Guide to Investment Research Platform
- Path: tutorials/openbb-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/openbb-tutorial/README.md
- Summary: Democratize investment research with OpenBB's comprehensive financial data and analysis platform.
- Keywords: openbb, complete, investment, research, democratize, comprehensive, financial, data, analysis
## OpenClaw: Deep Dive Tutorial
- Path: tutorials/openclaw-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/openclaw-tutorial/README.md
- Summary: OpenClaw — Your own personal AI assistant. Any OS. Any Platform.
- Keywords: openclaw, own, personal, assistant, any
## OpenCode AI Legacy Tutorial: Archived Terminal Agent Workflows and Migration to Crush
- Path: tutorials/opencode-ai-legacy-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/opencode-ai-legacy-tutorial/README.md
- Summary: Learn from opencode-ai/opencode architecture and workflows, and migrate safely to actively maintained successors.
- Keywords: opencode, legacy, archived, terminal, agent, workflows, migration, crush, architecture, migrate, safely, actively, maintained, successors
## OpenCode Tutorial: Open-Source Terminal Coding Agent at Scale
- Path: tutorials/opencode-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/opencode-tutorial/README.md
- Summary: Learn how to use anomalyco/opencode to run terminal-native coding agents with provider flexibility, strong tool control, and production-grade workflows.
- Keywords: opencode, open, source, terminal, coding, agent, scale, anomalyco, run, native, agents, provider, flexibility, strong, tool, control, grade, workflows
## OpenHands Tutorial: Autonomous Software Engineering Workflows
- Path: tutorials/openhands-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/openhands-tutorial/README.md
- Summary: Learn how to operate OpenHands/OpenHands across local GUI, CLI, and SDK workflows with production-minded safety, validation, and integration patterns.
- Keywords: openhands, autonomous, software, engineering, workflows, operate, local, gui, cli, sdk, minded, safety, validation, integration, patterns
## OpenSkills Tutorial: Universal Skill Loading for Coding Agents
- Path: tutorials/openskills-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/openskills-tutorial/README.md
- Summary: Learn how to use numman-ali/openskills to install, synchronize, and operate reusable SKILL.md packs across Claude Code, Cursor, Codex, Aider, and other agent environments.
- Keywords: openskills, universal, skill, loading, coding, agents, numman, ali, install, synchronize, operate, reusable, packs, claude, code, cursor, codex, aider
## OpenSpec Tutorial: Spec-Driven Workflows for AI Coding Agents
- Path: tutorials/openspec-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/openspec-tutorial/README.md
- Summary: Learn how to use Fission-AI/OpenSpec to make AI-assisted software delivery more predictable with artifact-driven planning, implementation, and archival workflows.
- Keywords: openspec, spec, driven, workflows, coding, agents, fission, make, assisted, software, delivery, more, predictable, artifact, planning, implementation, archival
## OpenSrc Tutorial: Deep Source Context for Coding Agents
- Path: tutorials/opensrc-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/opensrc-tutorial/README.md
- Summary: Learn how to use vercel-labs/opensrc to fetch package and repository source code so coding agents can reason about implementation details, not only public types and docs.
- Keywords: opensrc, source, context, coding, agents, vercel, labs, fetch, package, repository, code, can, reason, implementation, details, not, only, public
## Outlines Tutorial: Structured Text Generation with LLMs
- Path: tutorials/outlines-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/outlines-tutorial/README.md
- Summary: A deep technical walkthrough of Outlines covering Structured Text Generation with LLMs.
- Keywords: outlines, structured, text, generation, llms, technical, walkthrough
## Perplexica Tutorial: AI-Powered Search Engine
- Path: tutorials/perplexica-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/perplexica-tutorial/README.md
- Summary: A deep technical walkthrough of Perplexica covering AI-Powered Search Engine.
- Keywords: perplexica, powered, search, engine, technical, walkthrough
## Phidata Tutorial: Building Autonomous AI Agents
- Path: tutorials/phidata-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/phidata-tutorial/README.md
- Summary: A deep technical walkthrough of Phidata covering Building Autonomous AI Agents.
- Keywords: phidata, building, autonomous, agents, technical, walkthrough
## PhotoPrism Tutorial: AI-Powered Photos App
- Path: tutorials/photoprism-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/photoprism-tutorial/README.md
- Summary: AI Photo Management Revolution: Enhanced facial recognition, LLM integrations, and advanced organization features mark PhotoPrism's evolution.
- Keywords: photoprism, powered, photos, app, photo, management, revolution, enhanced, facial, recognition, llm, integrations, advanced, organization, features, mark, evolution
## Plandex Tutorial: Large-Task AI Coding Agent Workflows
- Path: tutorials/plandex-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/plandex-tutorial/README.md
- Summary: Learn how to use plandex-ai/plandex for large codebase tasks with strong context management, cumulative diff review, model packs, and self-hosted operations.
- Keywords: plandex, large, task, coding, agent, workflows, codebase, tasks, strong, context, management, cumulative, diff, review, model, packs, self, hosted
## Plane Tutorial: AI-Native Project Management
- Path: tutorials/plane-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/plane-tutorial/README.md
- Summary: Open-source AI-native project management that rivals Jira and Linear — with issues, cycles, modules, and wiki built in.
- Keywords: plane, native, management, open, source, rivals, jira, linear, issues, cycles, modules, wiki, built
## Planning with Files Tutorial: Persistent Markdown Workflow Memory for AI Coding Agents
- Path: tutorials/planning-with-files-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/planning-with-files-tutorial/README.md
- Summary: Learn how to use OthmanAdi/planning-with-files to run Manus-style file-based planning workflows across Claude Code and other AI coding environments.
- Keywords: planning, files, persistent, markdown, workflow, memory, coding, agents, othmanadi, run, manus, style, file, based, workflows, claude, code, other
## Playwright MCP Tutorial: Browser Automation for Coding Agents Through MCP
- Path: tutorials/playwright-mcp-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/playwright-mcp-tutorial/README.md
- Summary: Learn how to use microsoft/playwright-mcp to give AI coding agents structured browser automation with accessibility snapshots, deterministic actions, and portable MCP host integrations.
- Keywords: playwright, mcp, browser, automation, coding, agents, microsoft, give, structured, accessibility, snapshots, deterministic, actions, portable, host, integrations
## PocketFlow Tutorial: Minimal LLM Framework with Graph-Based Power
- Path: tutorials/pocketflow-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/pocketflow-tutorial/README.md
- Summary: Learn how to build agentic applications with The-Pocket/PocketFlow, a minimalist graph framework that still supports workflows, multi-agent patterns, RAG, and human-in-the-loop flows.
- Keywords: pocketflow, minimal, llm, framework, graph, based, power, agentic, applications, pocket, minimalist, still, supports, workflows, multi, agent, patterns, rag
## PostgreSQL Query Planner Deep Dive
- Path: tutorials/postgresql-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/postgresql-tutorial/README.md
- Summary: Master PostgreSQL's query execution engine, understand EXPLAIN output, and optimize complex queries for maximum performance.
- Keywords: postgresql, query, planner, master, execution, engine, understand, explain, output, optimize, complex, queries, maximum, performance
## PostHog Tutorial: Open Source Product Analytics Platform
- Path: tutorials/posthog-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/posthog-tutorial/README.md
- Summary: Deep technical walkthrough of PostHog Tutorial: Open Source Product Analytics Platform.
- Keywords: posthog, open, source, product, analytics, technical, walkthrough
## Pydantic AI Tutorial: Type-Safe AI Agent Development
- Path: tutorials/pydantic-ai-tutorial
- Index: https://github.com/johnxie/awesome-code-docs/blob/main/tutorials/pydantic-ai-tutorial/README.md
- Summary: A deep technical walkthrough of Pydantic AI covering Type-Safe AI Agent Development.
- Keywords: pydantic, type, safe, agent, development, technical, walkthrough