-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTOOLS-TRACKER.json
More file actions
6778 lines (6778 loc) · 403 KB
/
TOOLS-TRACKER.json
File metadata and controls
6778 lines (6778 loc) · 403 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
{
"tools": {
"Claude Code": [
{
"file": "patterns/agent-principles.md",
"context": "est semantic correctness? --- ## Application to Claude Code These principles manifest in Claude Code pattern"
},
{
"file": "patterns/agent-principles.md",
"context": "tion to Claude Code These principles manifest in Claude Code patterns: | Principle | Claude Code Implementati"
},
{
"file": "patterns/agent-principles.md",
"context": " manifest in Claude Code patterns: | Principle | Claude Code Implementation | |-----------|-------------------"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": ": \"PRODUCTION\" last-verified: \"2026-02-16\" --- # Claude Code Plugins and Extension Mechanisms \ud83d\udcda **Primary Sou"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "ude.com/plugins) (Official registry) - [Anthropic Claude Code Documentation](https://code.claude.com/docs/en/pl"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "ficial directory). For vendor documentation, see [Claude Code docs](https://code.claude.com/docs/en/plugins). F"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": " trade-off analysis, continue here. ## Overview Claude Code provides multiple extension mechanisms, each desi"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": " use each is critical for maintainable, effective Claude Code projects. --- ## The Extension Landscape ### Q"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "kills (beta) | ### When to Use API vs. Claude.ai/Claude Code | Use Case | Best Surface | |----------|--------"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "rs interacting with skills directly | Claude.ai / Claude Code | | Manual testing and iteration | Claude.ai / Cl"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "de | | Manual testing and iteration | Claude.ai / Claude Code | | Individual, ad-hoc workflows | Claude.ai / Cl"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "de | | Individual, ad-hoc workflows | Claude.ai / Claude Code | | Applications using skills programmatically | "
},
{
"file": "patterns/plugins-and-extensions.md",
"context": " ## Hooks Hooks are shell scripts that intercept Claude Code operations. ### Hook Events | Event | Trigger |"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "runs | Verification, logging | | `SessionStart` | Claude Code starts | Environment setup | | `Stop` | Session e"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": " --- ## Skill Hot-Reload (v2.1.0+) **Source**: [Claude Code Release Notes - January 2026](https://releasebot."
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "tart: ``` Before v2.1.0: Edit SKILL.md \u2192 Restart Claude Code \u2192 Changes take effect After v2.1.0: Edit SKILL.m"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510 \u2502 Claude Code Session (running) \u2502 \u2502 "
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "e skill development** is now practical: 1. Start Claude Code session 2. Test skill behavior 3. Edit SKILL.md t"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "lugins-official`) - Automatically available in Claude Code - Run `/plugin` \u2192 Discover tab - **Keep upd"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": ".com/ccplugins/awesome-claude-code-plugins) | | **Claude Code Plugins Hub** | 243 plugins, Skills-compliant | ["
},
{
"file": "patterns/plugins-and-extensions.md",
"context": ". --- ## Decision Framework ``` Need to extend Claude Code? \u2502 \u251c\u2500\u25ba Need external data/API access? \u2502 \u2514\u2500\u25ba Use"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "Permission Configuration ### Settings Hierarchy Claude Code settings follow a specific precedence order: ```"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "oesn't have to ask every time.\" > \u2014 Boris Cherny, Claude Code Creator ### Setting Up Pre-Approved Commands Us"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "includes a `.claude-plugin/` directory for direct Claude Code integration. **What it provides**: 23 security r"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "fficial Anthropic plugin marketplace - [Anthropic Claude Code Plugins Documentation](https://code.claude.com/do"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "laude-skills-vs-mcp) - [alexop.dev: Understanding Claude Code's Full Stack](https://alexop.dev/posts/understand"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": " - [Composio: Improving your coding workflow with Claude Code Plugins](https://composio.dev/blog/claude-code-pl"
},
{
"file": "patterns/memory-architecture.md",
"context": "o Use claude-mem **Good fit**: - Teams with many Claude Code sessions to track - Projects requiring historical"
},
{
"file": "patterns/recursive-evolution.md",
"context": "*: Different prompt styles, not model parameters (Claude Code doesn't expose temperature). ### 2. Recursive Re"
},
{
"file": "patterns/recursive-evolution.md",
"context": " superior output combining best elements --- ## Claude Code Implementation ### Using Parallel Subagents Spa"
},
{
"file": "patterns/johari-window-ambiguity.md",
"context": "head exceeds benefit | --- ## Implementation in Claude Code ### Pre-Task Clarification Prompt ```markdown #"
},
{
"file": "patterns/architecture-decision-records.md",
"context": "# Architecture Decision Records (ADRs) for Claude Code Projects **Source**: Production-validated patter"
},
{
"file": "patterns/architecture-decision-records.md",
"context": "to the superseding ADR. --- ## Integration with Claude Code ### CLAUDE.md Reference ```markdown ## Decision"
},
{
"file": "patterns/skills-domain-knowledge.md",
"context": "knowledge skills embed specialized expertise into Claude Code workflows, enabling AI to operate with field-spec"
},
{
"file": "patterns/skills-domain-knowledge.md",
"context": "nalysis, and other knowledge work. > \"What makes Claude Code powerful are 'skills' and 'subagents,' which func"
},
{
"file": "patterns/skills-domain-knowledge.md",
"context": "ic context --- ## Sources - [Aniket Panjwani - Claude Code Tips](https://x.com/aniketapanjwani/status/199948"
},
{
"file": "patterns/skills-domain-knowledge.md",
"context": "ttps://agentskills.io) - Official skill format - [Claude Code Skills Documentation](https://docs.anthropic.com/"
},
{
"file": "patterns/project-infrastructure.md",
"context": "idated) ## Overview Every project benefits from Claude Code infrastructure. The same patterns apply whether y"
},
{
"file": "patterns/project-infrastructure.md",
"context": "ns`. **GitHub Actions workflow**: ```yaml name: Claude Code Review on: pull_request: types: [opened, sy"
},
{
"file": "patterns/project-infrastructure.md",
"context": " ## Built-In Features (No Setup Required) These Claude Code features enhance project infrastructure without a"
},
{
"file": "patterns/project-infrastructure.md",
"context": "guration: ### Checkpoints and /rewind (v2.0.0+) Claude Code automatically creates session-level snapshots bef"
},
{
"file": "patterns/project-infrastructure.md",
"context": "e version control ### Session Memory (v2.1.30+) Claude Code automatically records and recalls learnings acros"
},
{
"file": "patterns/documentation-maintenance.md",
"context": ".md]... It's like team memory.\" > \u2014 Boris Cherny, Claude Code Creator ### Multi-Weekly Update Cadence **Recom"
},
{
"file": "patterns/documentation-maintenance.md",
"context": "e PR Tagging For teams using GitHub Actions with Claude Code: 1. Tag PRs with `@.claude` in description or co"
},
{
"file": "patterns/documentation-maintenance.md",
"context": "PRs with `@.claude` in description or comments 2. Claude Code GitHub Action triggers review 3. Findings added t"
},
{
"file": "patterns/advanced-hooks.md",
"context": "rns **Source**: Production-validated patterns + [Claude Code Hooks Reference](https://docs.anthropic.com/en/do"
},
{
"file": "patterns/advanced-hooks.md",
"context": "t modifies tool inputs before execution. Requires Claude Code v2.0.10+ \"\"\" import json import sys try: hoo"
},
{
"file": "patterns/advanced-hooks.md",
"context": "ns Prettier after every Write.\" > \u2014 Boris Cherny, Claude Code Creator **When it fires**: After Write or Edit o"
},
{
"file": "patterns/advanced-hooks.md",
"context": ") **Source**: [Beyond Permission Prompts: Making Claude Code More Secure](https://www.anthropic.com/engineerin"
},
{
"file": "patterns/advanced-hooks.md",
"context": " when sandboxing was enabled. By restricting what Claude Code *can* do at the OS level, most permission dialogs"
},
{
"file": "patterns/advanced-hooks.md",
"context": "rced by Anthropic and enabled by default in newer Claude Code versions. **See**: [Safety and Sandboxing](./saf"
},
{
"file": "patterns/advanced-hooks.md",
"context": "l security complements hooks --- ## Sources - [Claude Code Hooks Reference](https://docs.anthropic.com/en/do"
},
{
"file": "patterns/gsd-orchestration.md",
"context": "-readable for review --- ## Implementation with Claude Code ### Directory Setup ```bash # Create .planning "
},
{
"file": "patterns/tool-ecosystem.md",
"context": "r their context. While this repository focuses on Claude Code, the underlying principles (SDD, skills, context "
},
{
"file": "patterns/tool-ecosystem.md",
"context": "--- ## Tool Selection Framework ### When to Use Claude Code | Scenario | Why Claude Code | |----------|-----"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "rk ### When to Use Claude Code | Scenario | Why Claude Code | |----------|-----------------| | **Anthropic ec"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "gation + agent teams | | **Web-based workflow** | Claude Code on Web (VS Code in browser) | ### When to Consid"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "| --- ## Tool Comparison Matrix | Capability | Claude Code | Aider | Cursor | OpenHands | |------------|----"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "\u2502 \u251c\u2500 Best reasoning quality (cloud OK) \u2502 \u2514\u2500 Use: Claude Code (Claude models) \u2502 \u251c\u2500 Git-first workflow with auto"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "Partially Portable (Need Adaptation) | Pattern | Claude Code | Other Tools | |---------|-------------|--------"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "* | Native support | Limited or no support | ### Claude Code Specific | Pattern | Portability | |---------|--"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "| |---------|------------| | **Advanced Hooks** | Claude Code only | | **Subagent Orchestration** | Claude Code"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "Claude Code only | | **Subagent Orchestration** | Claude Code only (others have different approaches) | | **MCP"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "t approaches) | | **MCP Integration** | Primarily Claude Code (Cursor has limited support) | --- ## Hybrid Wo"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "ple: Planning + Execution Split ``` 1. PLANNING: Claude Code (superior reasoning) - Architecture decisions "
},
{
"file": "patterns/tool-ecosystem.md",
"context": "ick edits - Visual diff review 2. AUTOMATION: Claude Code (CLI-native) - Multi-file refactoring - Aut"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "ologies ``` --- ## Tool-Specific Resources ### Claude Code (This Repository) - [Patterns](../patterns/) - Co"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "rallel development, safe experimentation --- ## Claude Code Deployment Options Claude Code is available in m"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "entation --- ## Claude Code Deployment Options Claude Code is available in multiple form factors: | Deploym"
},
{
"file": "patterns/tool-ecosystem.md",
"context": " IDE diff viewer, JetBrains AI subscription | | **Claude Code on Web** | Browser-based VS Code | No local insta"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "tion #### Claude in Chrome (Beta) vs Playwright Claude Code offers a \"Claude in Chrome\" feature (via Chrome e"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "aywright playwright install ``` **Use Cases with Claude Code**: - Web scraping for research tasks - E2E testin"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "m filling and data entry automation **Pattern**: Claude Code generates Playwright scripts, which execute in a "
},
{
"file": "patterns/tool-ecosystem.md",
"context": "ute in a controlled browser context: ```python # Claude Code can generate and execute this from playwright.syn"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "ns and Extensions](./plugins-and-extensions.md) - Claude Code extension mechanisms - [Context Engineering](./co"
},
{
"file": "patterns/tool-ecosystem.md",
"context": "ation (recommended over Claude in Chrome Beta) - [Claude Code Documentation](https://docs.anthropic.com/en/docs"
},
{
"file": "patterns/productivity-tooling.md",
"context": "ied: \"2026-02-27\" --- # Productivity Tooling for Claude Code \ud83d\udd17 **Community Source**: [shanraisshan/claude-cod"
},
{
"file": "patterns/productivity-tooling.md",
"context": "here. ## Overview Productivity tooling enhances Claude Code workflows through voice prompting, optimized envi"
},
{
"file": "patterns/productivity-tooling.md",
"context": "scussions **Integration**: Works seamlessly with Claude Code terminal input. ### Alternative Voice Tools | T"
},
{
"file": "patterns/productivity-tooling.md",
"context": "fewer crashes and more stable sessions when using Claude Code via terminal vs IDE integrations. **Why this hap"
},
{
"file": "patterns/productivity-tooling.md",
"context": "for persistent sessions**: ```bash # Start named Claude Code session tmux new -s claude-main # Parallel sessi"
},
{
"file": "patterns/productivity-tooling.md",
"context": ", \"Bash(docker compose *)\" ] } EOF echo \"\u2705 Claude Code permissions configured\" ``` ### Session Template"
},
{
"file": "patterns/productivity-tooling.md",
"context": "s and Claude's execution.\" > \"I've found running Claude Code in the terminal instead of IDE integrations signi"
},
{
"file": "patterns/planning-first-development.md",
"context": " explicit --- ## Implementing Planning-First in Claude Code ### Phase 1: Gather Context (Before Any Prompt) "
},
{
"file": "patterns/planning-first-development.md",
"context": "- Who approves completion? ### Implementation in Claude Code Use plan mode (Shift+Tab) with explicit question"
},
{
"file": "patterns/planning-first-development.md",
"context": "you should know exactly what to ask for. --- ## Claude Code Implementation ### CLAUDE.md Integration Add pl"
},
{
"file": "patterns/planning-first-development.md",
"context": "thub/spec-kit) - 4-phase SDD model - [Anthropic - Claude Code Best Practices](https://www.anthropic.com/enginee"
},
{
"file": "patterns/subagent-orchestration.md",
"context": "handle ~80% of work with zero setup\" source: \"Claude Code Documentation\" date: \"2025-11-01\" revalid"
},
{
"file": "patterns/subagent-orchestration.md",
"context": "stration Patterns \ud83d\udcda **Official Documentation**: [Claude Code Documentation - Sub-agents](https://docs.anthropi"
},
{
"file": "patterns/subagent-orchestration.md",
"context": "tive subagent API and feature documentation, see [Claude Code official docs](https://docs.anthropic.com/en/docs"
},
{
"file": "patterns/subagent-orchestration.md",
"context": " **This is the DEFAULT orchestration approach for Claude Code.** Native subagent patterns handle ~80% of work w"
},
{
"file": "patterns/subagent-orchestration.md",
"context": "t can't see subagent intermediate work | --- ## Claude Code Subagent Types Claude Code provides specialized "
},
{
"file": "patterns/subagent-orchestration.md",
"context": "diate work | --- ## Claude Code Subagent Types Claude Code provides specialized subagent types via the Task "
},
{
"file": "patterns/subagent-orchestration.md",
"context": "e-guide` | Documentation lookup | Questions about Claude Code features, hooks, MCP, skills | ### Usage Pattern"
},
{
"file": "patterns/subagent-orchestration.md",
"context": "ens on merge operations. ### Implementation with Claude Code While Claude Code doesn't natively manage worktr"
},
{
"file": "patterns/subagent-orchestration.md",
"context": "ions. ### Implementation with Claude Code While Claude Code doesn't natively manage worktrees, the pattern ap"
},
{
"file": "patterns/subagent-orchestration.md",
"context": "ees, the pattern applies when: - Running multiple Claude Code instances on different branches - Using external "
},
{
"file": "patterns/subagent-orchestration.md",
"context": " high volume | Speed and cost optimization | ### Claude Code Implementation Use the `model` parameter in Task"
},
{
"file": "patterns/subagent-orchestration.md",
"context": "ring it towards what I wanted.\" > \u2014 Boris Cherny, Claude Code Creator ### When to Use Thinking Mode | Scenari"
},
{
"file": "patterns/subagent-orchestration.md",
"context": " Higher if steering needed | ### Implementation Claude Code uses thinking mode based on the model setting. Op"
},
{
"file": "patterns/subagent-orchestration.md",
"context": "d | Varies | Deep domain expertise | | **Standard Claude Code** | 1 + subagents | Accumulating | Conversation |"
},
{
"file": "patterns/subagent-orchestration.md",
"context": "letion --- ## Sources **Primary (Tier A)**: - [Claude Code Sub-agents Documentation](https://docs.anthropic."
},
{
"file": "patterns/framework-selection-guide.md",
"context": "choose the right orchestration approach for their Claude Code projects **Evidence Tier**: A/B (Synthesized from"
},
{
"file": "patterns/framework-selection-guide.md",
"context": "al-purpose subagent types \u2502 \u2022 Built into Claude Code, zero setup \u2502 \u2022 See: patterns/subagent-o"
},
{
"file": "patterns/framework-selection-guide.md",
"context": "nt Orchestration (DEFAULT) **When to use**: Most Claude Code work **Characteristics**: - Built-in subagent ty"
},
{
"file": "patterns/framework-selection-guide.md",
"context": "ero infrastructure required - Works with standard Claude Code features **Best for**: - Single-session developm"
},
{
"file": "patterns/advanced-tool-use.md",
"context": "m Anthropic's Engineering Blog and provides local Claude Code examples with SDD integration. For authoritative "
},
{
"file": "patterns/advanced-tool-use.md",
"context": "tch operations --- ## LSP Tool (December 2025) Claude Code includes a Language Server Protocol (LSP) tool pr"
},
{
"file": "patterns/agent-evaluation.md",
"context": "6,000 tokens consumed ``` --- ## Application to Claude Code For teams using Claude Code with custom CLAUDE.m"
},
{
"file": "patterns/agent-evaluation.md",
"context": "- ## Application to Claude Code For teams using Claude Code with custom CLAUDE.md, skills, and hooks: | What"
},
{
"file": "patterns/mcp-daily-essentials.md",
"context": " **Check MCP token consumption**: ```bash # Start Claude Code with verbose logging CLAUDE_CODE_LOG_LEVEL=debug "
},
{
"file": "patterns/mcp-daily-essentials.md",
"context": "tions over time - Updated measurements with newer Claude Code versions - No significant ecosystem shifts (e.g.,"
},
{
"file": "patterns/mcp-daily-essentials.md",
"context": "context budget claims been revalidated with newer Claude Code versions? - [ ] Have any major MCP paradigm shift"
},
{
"file": "patterns/cognitive-agent-infrastructure.md",
"context": "s operation** | CAII | --- ## Implementation in Claude Code ### Mapping Cognitive Agents to Subagent Types "
},
{
"file": "patterns/cognitive-agent-infrastructure.md",
"context": "ive Agents to Subagent Types | Cognitive Agent | Claude Code Mapping | |-----------------|--------------------"
},
{
"file": "patterns/spec-driven-development.md",
"context": "ment. This repository adopts SDD principles, with Claude Code as the primary implementation context. > \"Spec-d"
},
{
"file": "patterns/spec-driven-development.md",
"context": "user stories focusing on the \"what\" and \"why.\" **Claude Code Implementation:** - CLAUDE.md for project context"
},
{
"file": "patterns/spec-driven-development.md",
"context": "chitecture decisions, engineering constraints. **Claude Code Implementation:** - ARCHITECTURE.md for system de"
},
{
"file": "patterns/spec-driven-development.md",
"context": "nable task lists from the implementation plan. **Claude Code Implementation:** - TodoWrite tool for structured"
},
{
"file": "patterns/spec-driven-development.md",
"context": "ording to established plan and specifications. **Claude Code Implementation:** - Skills for repeatable methodo"
},
{
"file": "patterns/spec-driven-development.md",
"context": "verification steps | --- ## Implementing SDD in Claude Code ### Option 1: Use Existing Framework Install a "
},
{
"file": "patterns/spec-driven-development.md",
"context": "l a framework like Agent OS or Spec Kit alongside Claude Code: ```bash # Agent OS curl -sSL https://buildermet"
},
{
"file": "patterns/spec-driven-development.md",
"context": "tern Create a minimal spec-driven workflow using Claude Code native features: ``` .claude/ \u251c\u2500\u2500 commands/ \u2502 "
},
{
"file": "patterns/spec-driven-development.md",
"context": "ons ### For Simple Projects Skip formal SDD. Use Claude Code's native patterns: - CLAUDE.md for context - One "
},
{
"file": "patterns/parallel-sessions.md",
"context": "ry vendor/creator) ## Overview Running multiple Claude Code sessions simultaneously maximizes productivity by"
},
{
"file": "patterns/parallel-sessions.md",
"context": " Cherny's Setup > \"I run 5 terminal instances of Claude Code with system notifications, and 5-10 web sessions "
},
{
"file": "patterns/parallel-sessions.md",
"context": "s on claude.ai simultaneously.\" > \u2014 Boris Cherny, Claude Code Creator ### Session Configuration | Session Typ"
},
{
"file": "patterns/parallel-sessions.md",
"context": "---|-------|---------|--------------| | Terminal (Claude Code) | 5 | Code execution, file ops | System notifica"
},
{
"file": "patterns/parallel-sessions.md",
"context": "otify-send) claude --notify-command \"notify-send 'Claude Code' 'Session complete'\" ``` --- ## Web Session Pat"
},
{
"file": "patterns/parallel-sessions.md",
"context": " Case | Prefer Web (claude.ai) | Prefer Terminal (Claude Code) | |----------|------------------------|---------"
},
{
"file": "patterns/parallel-sessions.md",
"context": "s provide fully isolated filesystems for parallel Claude Code sessions, eliminating file conflicts entirely. #"
},
{
"file": "patterns/parallel-sessions.md",
"context": "ct-bugfix-queue bugfix/queue # Each gets its own Claude Code session cd ../project-feature-auth && claude cd ."
},
{
"file": "patterns/parallel-sessions.md",
"context": "irectory | ### When to Use Worktrees - Multiple Claude Code instances working on the same repo simultaneously"
},
{
"file": "patterns/parallel-sessions.md",
"context": "ommit-push-pr in remaining sessions \u251c\u2500\u2500 Close all Claude Code sessions \u251c\u2500\u2500 Stop hooks remind of uncommitted wor"
},
{
"file": "patterns/parallel-sessions.md",
"context": "is-uses-claude-code/) - [VentureBeat - Creator of Claude Code Workflow](https://venturebeat.com/technology/the-"
},
{
"file": "patterns/recursive-context-management.md",
"context": "benchmarks capture. This is observable in: - Long Claude Code sessions where quality degrades - Extended conver"
},
{
"file": "patterns/recursive-context-management.md",
"context": "manage its own context. --- ## Applicability to Claude Code ### What Works Now (Without RLM Training) Even "
},
{
"file": "patterns/recursive-context-management.md",
"context": "n without RL training, RLM concepts inform better Claude Code patterns: 1. **Encourage recursive exploration**"
},
{
"file": "patterns/recursive-context-management.md",
"context": "lable for Claude) - REPL environment integration (Claude Code has Bash, but not the RLM REPL pattern) - Model c"
},
{
"file": "patterns/recursive-context-management.md",
"context": "(Prompting + Native Subagents) **What it is**: A Claude Code skill that implements RLM operations (peek, grep,"
},
{
"file": "patterns/recursive-context-management.md",
"context": ": - Zero external dependencies - Works with stock Claude Code - No API key configuration needed - Transparent, "
},
{
"file": "patterns/recursive-context-management.md",
"context": "essions --- ## Implementation Guidance ### For Claude Code Users Today Apply RLM principles through explici"
},
{
"file": "patterns/recursive-context-management.md",
"context": "aseline Establishment (Week 2) **Goal**: Measure Claude Code's current performance on target tasks WITHOUT RLM"
},
{
"file": "patterns/recursive-context-management.md",
"context": " **Process**: 1. Run each test case with standard Claude Code (no RLM) 2. Record: accuracy, latency, token usag"
},
{
"file": "patterns/recursive-context-management.md",
"context": "search, analysis) - Maintain fallback to standard Claude Code - Monitor for edge cases and failures --- ## Mo"
},
{
"file": "patterns/recursive-context-management.md",
"context": "ns | Anthropic docs | Official support | | RLM in Claude Code changelog | Release notes | Native integration | "
},
{
"file": "patterns/recursive-context-management.md",
"context": "og analysis accuracy by >30% compared to standard Claude Code on tasks exceeding 100K token contexts. | Attrib"
},
{
"file": "patterns/recursive-context-management.md",
"context": "estration](./subagent-orchestration.md) - Current Claude Code parallel execution - [Framework Selection Guide]("
},
{
"file": "patterns/recursive-context-management.md",
"context": "g/2025/rlm/) - Original motivation and results **Claude Code Integrations (Tier C - Community)**: - [rand/rlm-"
},
{
"file": "patterns/safety-and-sandboxing.md",
"context": "**Sources**: - [Beyond Permission Prompts: Making Claude Code More Secure](https://www.anthropic.com/engineerin"
},
{
"file": "patterns/safety-and-sandboxing.md",
"context": "org/www-project-mcp-top-10/) (Evidence Tier A) - [Claude Code Security Documentation](https://code.claude.com/d"
},
{
"file": "patterns/safety-and-sandboxing.md",
"context": "ts are the primary mechanism for controlling what Claude Code can do. But frequent prompts create friction, lea"
},
{
"file": "patterns/safety-and-sandboxing.md",
"context": "-- ## Sandboxing Architecture ### How It Works Claude Code's sandboxing restricts the agent's filesystem and"
},
{
"file": "patterns/safety-and-sandboxing.md",
"context": "vely configure allowed commands during a session. Claude Code detects commonly-used patterns and suggests pre-a"
},
{
"file": "patterns/safety-and-sandboxing.md",
"context": "SP MCP checklist for all MCP servers - [ ] Enable Claude Code Analytics for usage monitoring --- ## Anti-Patt"
},
{
"file": "patterns/safety-and-sandboxing.md",
"context": "10](https://owasp.org/www-project-mcp-top-10/) - [Claude Code Security Documentation](https://code.claude.com/d"
},
{
"file": "patterns/agentic-retrieval.md",
"context": "\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518 ``` ### Core Tools | Tool | Purpose | Claude Code Equivalent | |------|---------|------------------"
},
{
"file": "patterns/agentic-retrieval.md",
"context": "formation with all dependencies resolved --- ## Claude Code Implementation Claude Code's Explore subagent ty"
},
{
"file": "patterns/agentic-retrieval.md",
"context": "ies resolved --- ## Claude Code Implementation Claude Code's Explore subagent type implements agentic retrie"
},
{
"file": "patterns/context-engineering.md",
"context": "-for-ai-agents). For practical implementation and Claude Code-specific guidance, continue here. **SDD Phase**:"
},
{
"file": "patterns/context-engineering.md",
"context": "on flow while dropping verbose tool outputs. ### Claude Code Integration Claude Code uses compaction automati"
},
{
"file": "patterns/context-engineering.md",
"context": "rbose tool outputs. ### Claude Code Integration Claude Code uses compaction automatically when context approa"
},
{
"file": "patterns/context-engineering.md",
"context": " the useful life of the context window. **Tip**: Claude Code's `/fast` toggle is the user-facing control for t"
},
{
"file": "patterns/context-engineering.md",
"context": "Too expensive | Wrong answer | ## Application to Claude Code For Claude Code projects, context engineering me"
},
{
"file": "patterns/context-engineering.md",
"context": "rong answer | ## Application to Claude Code For Claude Code projects, context engineering means: 1. **CLAUDE"
},
{
"file": "patterns/context-engineering.md",
"context": "s demonstrate CLAUDE.md adoption spreading beyond Claude Code: ``` Project Root \u251c\u2500\u2500 CLAUDE.md \u2190 Detected by Ma"
},
{
"file": "patterns/context-engineering.md",
"context": " | Tool-integrated | Project files | | **Standard Claude Code** | Accumulating | Single agent | Conversation hi"
},
{
"file": "patterns/context-engineering.md",
"context": " | Marimo pattern | | **Simple tasks** | Standard Claude Code | --- ## Context Extraction Tools While contex"
},
{
"file": "patterns/context-engineering.md",
"context": " context loading**, not ongoing development. Once Claude Code is in a session, its native file reading and expl"
},
{
"file": "patterns/context-engineering.md",
"context": "re-generated context files. ### Integration with Claude Code ```bash # Generate context, then reference in pr"
},
{
"file": "patterns/context-engineering.md",
"context": " during sessions --- ## Sources - [Anthropic - Claude Code Best Practices](https://code.claude.com/docs/en/b"
},
{
"file": "patterns/mcp-vs-skills-economics.md",
"context": "s represent two different approaches to extending Claude Code's capabilities. Production data shows **Skills ca"
},
{
"file": "patterns/mcp-vs-skills-economics.md",
"context": "d identical workflows delivered via MCP server vs Claude Code Skills: | Metric | MCP | Skills | Winner | |----"
},
{
"file": "patterns/mcp-vs-skills-economics.md",
"context": "**Characteristics**: - Uses mostly generic/native Claude Code tools - Instructions loaded as context, not infra"
},
{
"file": "patterns/mcp-vs-skills-economics.md",
"context": "\u2500\u2500\u2500\u2500\u2500\u2500\u2510 \u2502 \u2502 \u2502 Claude Code \u2502 \u2502 \u2502 \u2502 Or"
},
{
"file": "patterns/evidence-tiers.md",
"context": " Session Memory across projects** - Availability: Claude Code v2.1.30+ - Model: Any (not model-specific) - Sour"
},
{
"file": "patterns/evidence-tiers.md",
"context": "Audit version-requirements in patterns vs current Claude Code version - [ ] Review automation-generated issues "
},
{
"file": "patterns/ai-image-generation.md",
"context": "ct rate limits done ``` --- ## Integration with Claude Code ### Using Image Generation in Claude Code Sessio"
},
{
"file": "patterns/ai-image-generation.md",
"context": "n with Claude Code ### Using Image Generation in Claude Code Sessions Claude Code can invoke the image genera"
},
{
"file": "patterns/ai-image-generation.md",
"context": "# Using Image Generation in Claude Code Sessions Claude Code can invoke the image generator as part of develop"
},
{
"file": "patterns/github-actions-integration.md",
"context": "b Actions Integration \ud83d\udcda **Official Sources**: - [Claude Code Documentation](https://docs.anthropic.com/en/docs"
},
{
"file": "patterns/github-actions-integration.md",
"context": "ns docs](https://docs.github.com/en/actions). For Claude Code-specific GitHub integration, see [Claude Code doc"
},
{
"file": "patterns/github-actions-integration.md",
"context": "For Claude Code-specific GitHub integration, see [Claude Code docs](https://docs.anthropic.com/en/docs/claude-c"
},
{
"file": "patterns/github-actions-integration.md",
"context": "ue here. ## Overview GitHub Actions can trigger Claude Code for automated code review, PR assistance, and CI/"
},
{
"file": "patterns/github-actions-integration.md",
"context": " Use the `/install-github-action` command within Claude Code: ```bash # In your Claude Code session /install-"
},
{
"file": "patterns/github-actions-integration.md",
"context": "n` command within Claude Code: ```bash # In your Claude Code session /install-github-action ``` This adds the"
},
{
"file": "patterns/github-actions-integration.md",
"context": "session /install-github-action ``` This adds the Claude Code GitHub Action to your repository's `.github/workf"
},
{
"file": "patterns/github-actions-integration.md",
"context": "github/workflows/claude-code.yml`: ```yaml name: Claude Code Review on: pull_request: types: [opened, sy"
},
{
"file": "patterns/github-actions-integration.md",
"context": " - uses: actions/checkout@v4 - name: Claude Code Review uses: anthropics/claude-code-actio"
},
{
"file": "patterns/github-actions-integration.md",
"context": "AI review before human review.\" > \u2014 Boris Cherny, Claude Code Creator **Recommended workflow**: 1. Open PR wit"
},
{
"file": "patterns/github-actions-integration.md",
"context": "## Integration with CLAUDE.md ### Feedback Loop Claude Code in GitHub Actions can read CLAUDE.md for project "
},
{
"file": "patterns/github-actions-integration.md",
"context": "://paddo.dev/blog/how-boris-uses-claude-code/) - [Claude Code Documentation](https://docs.anthropic.com/en/docs"
},
{
"file": "patterns/mcp-patterns.md",
"context": "MCP excels in specific development scenarios. For Claude Code specifically: ### Ideal MCP Use Cases | Use Cas"
},
{
"file": "patterns/mcp-patterns.md",
"context": "a structure and querying during development. ``` Claude Code \u2192 MCP (Postgres) \u2192 Read Schema/Query Data "
},
{
"file": "patterns/mcp-patterns.md",
"context": "g documentation, notes, and project context. ``` Claude Code \u2192 MCP (Obsidian/Notion) \u2192 Search Knowledge Base "
},
{
"file": "patterns/mcp-patterns.md",
"context": "text from external tools during development. ``` Claude Code \u2192 MCP (GitHub/Linear) \u2192 Fetch Issues/PRs "
},
{
"file": "patterns/mcp-patterns.md",
"context": "eo/audio platforms for knowledge management. ``` Claude Code \u2192 MCP (YouTube Transcript) \u2192 Fetch Transcript "
},
{
"file": "patterns/mcp-patterns.md",
"context": "Part 2: MCP server provides get_transcript tool # Claude Code can then fetch transcripts for each video_id ``` "
},
{
"file": "patterns/mcp-patterns.md",
"context": "econnection: **How it works**: - Server notifies Claude Code when tools/prompts/resources change - Claude Code"
},
{
"file": "patterns/mcp-patterns.md",
"context": "Claude Code when tools/prompts/resources change - Claude Code refreshes available tools automatically - No sess"
},
{
"file": "patterns/mcp-patterns.md",
"context": "ver MCP**: When your agent has filesystem access (Claude Code, Copilot, Cursor) and the tool's output is large "
},
{
"file": "patterns/mcp-patterns.md",
"context": " tools at once. --- ## Building MCP Servers for Claude Code When building custom MCP servers for your projec"
},
{
"file": "patterns/mcp-patterns.md",
"context": "efore Integration Run the server directly before Claude Code integration: ```bash # Install in venv cd mcp-se"
},
{
"file": "patterns/mcp-patterns.md",
"context": "d and test incrementally. --- ## Application to Claude Code Claude Code's MCP integration should follow thes"
},
{
"file": "patterns/mcp-patterns.md",
"context": "crementally. --- ## Application to Claude Code Claude Code's MCP integration should follow these patterns: "
},
{
"file": "patterns/mcp-patterns.md",
"context": "ration should follow these patterns: | Pattern | Claude Code Application | |---------|------------------------"
},
{
"file": "patterns/secure-code-generation.md",
"context": "th AI-generated output volume. **The gap**: Most Claude Code security guidance (sandboxing, permissions, hooks"
},
{
"file": "patterns/secure-code-generation.md",
"context": ", and safe C functions. --- ## Integration with Claude Code ### Option A: CLAUDE.md Rules (Simplest) Add th"
},
{
"file": "patterns/secure-code-generation.md",
"context": "ctory (Recommended) Create a security skill that Claude Code loads automatically: ``` .claude/skills/secure-c"
},
{
"file": "patterns/secure-code-generation.md",
"context": "-oasis/project-codeguard.git # Follow CodeGuard's Claude Code integration instructions ``` CodeGuard includes "
},
{
"file": "patterns/secure-code-generation.md",
"context": "rectory with pre-configured rules that convert to Claude Code's skill format automatically. **Tradeoff**: Maxi"
},
{
"file": "patterns/secure-code-generation.md",
"context": "hain Security for AI-Generated Dependencies When Claude Code generates dependency files (`package.json`, `requ"
}
],
"Subagent": [
{
"file": "patterns/agent-principles.md",
"context": ") - Implements Principle 1 (Persistent Memory) - [Subagent Orchestration](./subagent-orchestration.md) - App"
},
{
"file": "patterns/agent-principles.md",
"context": " (Persistent Memory) - [Subagent Orchestration](./subagent-orchestration.md) - Applies principles in subagen"
},
{
"file": "patterns/agent-principles.md",
"context": "ubagent-orchestration.md) - Applies principles in subagent design *Last updated: January 2026* "
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "xplicit | User-initiated repeatable actions | | **Subagents** | Delegated | Parallel | Context isolation, de"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "hat bundle any combination of: - Slash commands - Subagents - MCP servers - Hooks - Skills They install wit"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": " # Slash commands \u251c\u2500\u2500 agents/ # Subagents \u251c\u2500\u2500 skills/ # Claude skills \u2514\u2500\u2500 h"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "thodologies Claude applies automatically --- ## Subagents Custom subagents are specialized AI assistants "
},
{
"file": "patterns/plugins-and-extensions.md",
"context": " applies automatically --- ## Subagents Custom subagents are specialized AI assistants with: - Task-speci"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "ccess - Separate context windows ### When to Use Subagents 1. **Parallel execution** - Multiple independen"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "committing main context > \"Telling Claude to use subagents to verify details or investigate particular ques"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "sion ends | Cleanup, summarization | ### Hooks + Subagents Pattern ``` Hook (deterministic) \u2500\u2500triggers\u2500\u2500\u25b6 "
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "s Pattern ``` Hook (deterministic) \u2500\u2500triggers\u2500\u2500\u25b6 Subagent (intelligent) \u2502 "
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "ll \u2502 \u251c\u2500\u25ba Need parallel/isolated work? \u2502 \u2514\u2500\u25ba Use Subagent \u2502 \u251c\u2500\u25ba Need automatic enforcement? \u2502 \u2514\u2500\u25ba Use Hoo"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "ask(general-purpose)\", // Disable general-purpose subagent \"Task(Explore)\" // Disable Explore s"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "t \"Task(Explore)\" // Disable Explore subagent ] } ``` ### Permission Detection (/doctor) As"
},
{
"file": "patterns/plugins-and-extensions.md",
"context": "plugin with structured workflows (TDD, debugging, subagent coordination) - [Anthropic: The Complete Guide to"
},
{
"file": "patterns/recursive-evolution.md",
"context": "## Claude Code Implementation ### Using Parallel Subagents Spawn 3 candidates simultaneously using the Tas"
},
{
"file": "patterns/recursive-evolution.md",
"context": "Phase 1: Multi-Candidate Initialization Launch 3 subagents IN PARALLEL with a single message containing mul"
},
{
"file": "patterns/recursive-evolution.md",
"context": "k tool calls: [Task 1: Conservative Candidate] - subagent_type: \"general-purpose\" - prompt: \"Analyze [TOPIC"
},
{
"file": "patterns/recursive-evolution.md",
"context": "ritative sources\" [Task 2: Balanced Candidate] - subagent_type: \"general-purpose\" - prompt: \"Analyze [TOPIC"
},
{
"file": "patterns/recursive-evolution.md",
"context": " recommendations\" [Task 3: Creative Candidate] - subagent_type: \"general-purpose\" - prompt: \"Analyze [TOPIC"
},
{
"file": "patterns/recursive-evolution.md",
"context": "ern | Integration | |---------|-------------| | **Subagent Orchestration** | Extends with Diversity Sampling"
},
{
"file": "patterns/recursive-evolution.md",
"context": "justifies the cost. --- ## Related Patterns - [Subagent Orchestration](./subagent-orchestration.md) - Par"
},
{
"file": "patterns/recursive-evolution.md",
"context": "## Related Patterns - [Subagent Orchestration](./subagent-orchestration.md) - Parallel execution patterns -"
},
{
"file": "patterns/skills-domain-knowledge.md",
"context": "What makes Claude Code powerful are 'skills' and 'subagents,' which function as 'specialized AIs' for partic"
},
{
"file": "patterns/advanced-hooks.md",
"context": " | Agent finishes turn | \u2705 Continue | - | - | | **SubagentStop** | Subagent finishes | No | - | v1.0.41+ | |"
},
{
"file": "patterns/advanced-hooks.md",
"context": " turn | \u2705 Continue | - | - | | **SubagentStop** | Subagent finishes | No | - | v1.0.41+ | | **SessionEnd** |"
},
{
"file": "patterns/advanced-hooks.md",
"context": "tation-maintenance.md) - Three-document system - [Subagent Orchestration](./subagent-orchestration.md) - Sub"
},
{
"file": "patterns/advanced-hooks.md",
"context": "hree-document system - [Subagent Orchestration](./subagent-orchestration.md) - SubagentStop hook usage - [Ad"
},
{
"file": "patterns/advanced-hooks.md",
"context": "ent Orchestration](./subagent-orchestration.md) - SubagentStop hook usage - [Advanced Tool Use](./advanced-t"
},
{
"file": "patterns/gsd-orchestration.md",
"context": "ssion orchestration framework - fresh context per subagent\" --- # GSD (Get Shit Done) Orchestration Pattern"
},
{
"file": "patterns/gsd-orchestration.md",
"context": "laude's effectiveness through **fresh context per subagent** and **state externalization**. The orchestrator"
},
{
"file": "patterns/gsd-orchestration.md",
"context": "--- ## Core Principles ### 1. Fresh Context Per Subagent Each executor receives **200k tokens purely for "
},
{
"file": "patterns/gsd-orchestration.md",
"context": "### Rules 1. **Never implement directly** - spawn subagents for all work 2. **Update STATE.md** after every "
},
{
"file": "patterns/gsd-orchestration.md",
"context": "ate STATE.md with new objective 3. Spawn research subagent if needed 4. Create task XML specifications 5. Sp"
},
{
"file": "patterns/gsd-orchestration.md",
"context": "Spawning Fresh Executors ```markdown ## Executor Subagent Pattern Task tool with: - subagent_type: \"genera"
},
{
"file": "patterns/gsd-orchestration.md",
"context": "n ## Executor Subagent Pattern Task tool with: - subagent_type: \"general-purpose\" - prompt: | You are a"