-
Notifications
You must be signed in to change notification settings - Fork 283
Expand file tree
/
Copy pathreference.yaml
More file actions
1830 lines (1780 loc) · 112 KB
/
reference.yaml
File metadata and controls
1830 lines (1780 loc) · 112 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
# claude-code-reference.yaml
# Quick lookup for Claude Code - comprehensive index
# Source: guide/ultimate-guide.md
# Purpose: Condensed index for LLMs to quickly answer user questions about Claude Code
version: "3.36.0"
updated: "2026-03-13"
# ════════════════════════════════════════════════════════════════
# DEEP DIVE - Line numbers in guide/ultimate-guide.md
# Usage: Read file at line N for detailed documentation on topic
# For architecture internals, see guide/core/architecture.md
# ════════════════════════════════════════════════════════════════
deep_dive:
# Visual Diagrams Series (41 Mermaid diagrams)
mermaid_diagrams:
path: "guide/diagrams/"
description: "41 interactive Mermaid diagrams: model selection, agent lifecycle, memory hierarchy, security threats, multi-agent patterns, AI fluency paths"
files: 10
total_diagrams: 41
# AI-Assisted Development Workflows (from MetalBear/arXiv research)
exploration_workflow: "guide/workflows/exploration-workflow.md"
script_generation: "guide/workflows/iterative-refinement.md:200"
anti_anchoring_prompts: "examples/semantic-anchors/anchor-catalog.md:248"
session_limits: "guide/core/architecture.md:442"
claudemd_sizing: 3054
scope_success_rates: "guide/roles/adoption-approaches.md:26"
# Claude Code Releases
claude_code_releases: "guide/core/claude-code-releases.md"
claude_code_releases_yaml: "machine-readable/claude-code-releases.yaml"
# Code Review Automation (Pat Cullen, Jan 2026)
review_pr_advanced: "examples/commands/review-pr.md:81"
review_anti_hallucination: "examples/agents/code-reviewer.md:77"
review_auto_fix_loop: "guide/workflows/iterative-refinement.md:353"
# Review Plan Command (Garry Tan-inspired, Feb 2026)
review_plan_command: "examples/commands/review-plan.md"
# GitHub Actions: Prompt-Based Code Review (Feb 2026)
github_actions_code_review_workflow: "examples/github-actions/claude-code-review.yml"
github_actions_code_review_prompt: "examples/github-actions/prompts/code-review.md"
github_actions_code_review_pattern: "externalized prompt + anti-hallucination protocol + /claude-review on-demand trigger"
github_actions_code_review_tools: "Read, Glob, Grep + GitHub PR inspection (read-only)"
github_actions_code_review_auth: "OAuth token (Claude Max plan, 0$ API) or ANTHROPIC_API_KEY"
github_actions_cost_per_review: "0$ with OAuth/Max plan; ~0.05-0.15$ with API key (Sonnet, ~5K tokens diff)"
# Rules Templates (auto-loaded .claude/rules/)
rules_templates_directory: "examples/rules/"
rules_architecture_review: "examples/rules/architecture-review.md"
rules_code_quality_review: "examples/rules/code-quality-review.md"
rules_test_review: "examples/rules/test-review.md"
rules_performance_review: "examples/rules/performance-review.md"
rules_first_principles: "examples/rules/first-principles.md" # Session invariants: Contract/Working Set/Noise model
# Advanced Patterns (10 practitioner patterns, fact-checked March 2026)
modular_context_architecture: "guide/ultimate-guide.md:4645" # Pattern #1: CLAUDE.md-as-index + path-scoped rules
adversarial_plan_review: "examples/agents/plan-challenger.md" # Pattern #5: +52.8% security, +80% bug detection
adr_auto_generation: "examples/agents/adr-writer.md" # Pattern #3: criticality matrix C1/C2/C3
codebase_audit_scoring: "examples/commands/audit-codebase.md" # Pattern #9: 7-category scoring (Variant Systems)
event_driven_agents: "guide/workflows/event-driven-agents.md" # Pattern #8: Linear/GitHub/Jira webhook→agent
worktree_dependency_management: "guide/ultimate-guide.md:15180" # Pattern #6: manual analysis, no auto-detection
deployment_automation: "guide/ultimate-guide.md:13172" # Pattern #10: Vercel + Infisical guardrails
iterative_refinement_community: "guide/workflows/iterative-refinement.md:515" # Pattern #7: Ralph Loop + Auto-Continue
agent_teams_large_justified: "guide/workflows/agent-teams.md:120" # Pattern #4: when >5 agents are justified
# Context Engineering (consolidated reference)
context_engineering_guide: "guide/core/context-engineering.md"
context_engineering_what_is: "guide/core/context-engineering.md#1-what-is-context-engineering"
context_engineering_budget: "guide/core/context-engineering.md#2-the-context-budget"
context_engineering_hierarchy: "guide/core/context-engineering.md#3-configuration-hierarchy"
context_engineering_modular: "guide/core/context-engineering.md#4-modular-architecture"
context_engineering_team: "guide/core/context-engineering.md#5-team-assembly"
context_engineering_lifecycle: "guide/core/context-engineering.md#6-context-lifecycle"
context_engineering_quality: "guide/core/context-engineering.md#7-quality-measurement"
context_engineering_reduction: "guide/core/context-engineering.md#8-context-reduction-techniques"
context_engineering_audit_tool: "tools/context-audit-prompt.md"
context_engineering_examples: "examples/context-engineering/"
context_engineering_assembler: "examples/context-engineering/assembler.ts"
context_engineering_profile_template: "examples/context-engineering/profile-template.yaml"
context_engineering_skeleton: "examples/context-engineering/skeleton-template.md"
context_engineering_canary: "examples/context-engineering/canary-check.sh"
context_engineering_ci_drift: "examples/context-engineering/ci-drift-check.yml"
context_engineering_budget_calc: "examples/context-engineering/context-budget-calculator.sh"
context_engineering_eval_questions: "examples/context-engineering/eval-questions.yaml"
context_engineering_landing: "https://cc.bruniaux.com/context/"
context_150_ceiling: "guide/core/context-engineering.md#2-the-context-budget"
context_ace_pipeline: "guide/core/context-engineering.md#6-context-lifecycle"
context_path_scoping: "guide/core/context-engineering.md#4-modular-architecture"
context_maturity_model: "guide/core/context-engineering.md#7-quality-measurement"
# Team Configuration at Scale (Profile-Based Module Assembly)
team_ai_instructions_section: "guide/ultimate-guide.md#35-team-configuration-at-scale"
team_ai_instructions_workflow: "guide/workflows/team-ai-instructions.md"
team_ai_instructions_profile_template: "examples/team-config/profile-template.yaml"
team_ai_instructions_skeleton: "examples/team-config/claude-skeleton.md"
team_ai_instructions_sync_script: "examples/team-config/sync-script.ts"
team_ai_instructions_pattern: "profiles YAML + shared modules + skeleton + assembler script"
team_ai_instructions_problem: "N devs × M tools × P OS = fragmented AI instructions"
team_ai_instructions_token_savings: "59% context token reduction (measured, 5-dev team)"
team_ai_instructions_threshold: "Team 5+ devs with multiple AI tools"
# Known Issues & Critical Bugs (verified community reports)
known_issues: "guide/core/known-issues.md"
known_issues_github_bug: "guide/core/known-issues.md:7" # GitHub auto-creation bug
known_issues_token_consumption: "guide/core/known-issues.md:105" # Excessive token usage
known_issues_model_quality_aug2025: "guide/core/known-issues.md:197" # Resolved: Aug 2025 degradation
known_issues_llm_variance: "guide/core/known-issues.md:237" # LLM day-to-day performance variance (expected behavior, not a bug)
# RPI Workflow (Research -> Plan -> Implement)
rpi_workflow: "guide/workflows/rpi.md"
rpi_when_to_use: "guide/workflows/rpi.md:55" # Decision heuristic + scenarios
rpi_phase1_research: "guide/workflows/rpi.md:86" # Research template + NO-GO criteria
rpi_phase2_plan: "guide/workflows/rpi.md:173" # Plan template + review checklist
rpi_phase3_implement: "guide/workflows/rpi.md:237" # Step-gate pattern + failure protocol
rpi_slash_commands: "guide/workflows/rpi.md:281" # /rpi:research /rpi:plan /rpi:implement templates
rpi_vs_other_workflows: "guide/workflows/rpi.md:391" # Comparison table: RPI vs dual-instance vs spec-first
# Changelog Fragments Workflow
changelog_fragments_workflow: "guide/workflows/changelog-fragments.md" # Per-PR YAML fragments, 3-layer enforcement
changelog_fragments_claude_rule: "guide/workflows/changelog-fragments.md:26" # CLAUDE.md rule for autonomous fragment creation
changelog_fragments_hook: "guide/workflows/changelog-fragments.md:88" # UserPromptSubmit 3-tier hook (enforcement/discovery/contextual)
changelog_fragments_ci: "guide/workflows/changelog-fragments.md:169" # Independent CI migration check job
# Smart-Suggest Hook
smart_suggest_hook: "examples/hooks/bash/smart-suggest.sh" # UserPromptSubmit behavioral coach, 3-tier priority, ROI logging
# Identity Re-injection After Compaction (Nick Tune pattern, Feb 2026)
identity_reinjection_hook: "guide/ultimate-guide.md:10171" # UserPromptSubmit guard: re-injects agent identity lost after context compaction
identity_reinjection_example: "examples/hooks/bash/identity-reinjection.sh" # Checks last assistant message for identity marker, injects additionalContext if missing
# Template Installation
install_templates_script: "scripts/install-templates.sh"
# Session management
session_search: "guide/ops/observability.md:38"
session_search_script: "examples/scripts/session-search.sh"
cc_sessions_script: "examples/scripts/cc-sessions.py" # 1225-line full version with discover subcommand
cc_sessions_github: "https://github.com/FlorianBruniaux/cc-sessions"
cc_sessions_discover: "guide/ultimate-guide.md#session-pattern-discovery" # n-gram + --llm pattern analysis
session_resume_limitations: "guide/ops/observability.md:126"
session_cross_folder_migration: "guide/ops/observability.md:126"
session_migration_manual: "guide/ops/observability.md:126"
session_migration_risks: "guide/ops/observability.md:126"
session_migration_community_tool: "guide/ops/observability.md:52"
session_migration_issue: "https://github.com/anthropics/claude-code/issues/1516"
session_migration_weller_skill: "https://github.com/jimweller/dotfiles/tree/main/dotfiles/claude-code/skills/claude-migrate-session"
# Activity monitoring
activity_monitoring: "guide/ops/observability.md:467" # Tool call audit via JSONL
activity_monitoring_queries: "guide/ops/observability.md:467" # jq queries for audit
activity_monitoring_alerts: "guide/ops/observability.md:467" # Sensitive pattern detection
external_monitoring_tools: "guide/ops/observability.md:527" # ccusage, claude-code-otel, Akto, MLflow, ccboard
proxying_claude_code: "guide/ops/observability.md:699" # Proxyman, mitmproxy, ANTHROPIC_API_URL
ccboard_activity_plan: "docs/resource-evaluations/ccboard-activity-module-plan.md"
# Cost optimization - Local execution bridge
bridge_script: "examples/scripts/bridge.py"
bridge_schema: "examples/scripts/bridge-plan-schema.json"
bridge_guide: "guide/ultimate-guide.md:20003"
# Cost optimization - RTK (Rust Token Killer)
rtk_upstream: "https://github.com/rtk-ai/rtk"
rtk_website: "https://www.rtk-ai.app/"
rtk_evaluation: "docs/resource-evaluations/rtk-evaluation.md"
rtk_guide: "guide/ultimate-guide.md:14553"
rtk_third_party: "guide/ecosystem/third-party-tools.md:7"
rtk_claude_md: "examples/claude-md/rtk-optimized.md"
rtk_skill: "examples/skills/rtk-optimizer/SKILL.md"
rtk_hook: "examples/hooks/bash/rtk-auto-wrapper.sh"
rtk_purpose: "Command output filtering before LLM context (60-90% avg reduction)"
rtk_version_tested: "v0.28.0"
rtk_score: "5/5"
rtk_installation: "cargo install rtk or brew install rtk-ai/tap/rtk"
# Google Antigravity (Agent-First IDE)
antigravity_guide: "guide/ecosystem/ai-ecosystem.md:1366"
antigravity_evaluation: "docs/resource-evaluations/google-antigravity-evaluation.md"
antigravity_proxy: "https://www.npmjs.com/package/antigravity-claude-proxy"
antigravity_codelabs: "https://codelabs.developers.google.com/getting-started-google-antigravity"
antigravity_vs_claude: "Claude Code = terminal-first predictability; Antigravity = agent-first autonomy"
# PDF Generation
pdf_generation: "guide/workflows/pdf-generation.md"
pdf_generator_skill: "examples/skills/pdf-generator.md"
# OG Image Generation (Satori + resvg + Astro 5) - Added 2026-03-11
og_image_generation_guide: "guide/workflows/og-image-generation.md"
og_image_astro_template: "examples/scripts/og-image-astro.ts"
og_image_stack: "Satori (JSX → SVG) + resvg-js (SVG → PNG) + Astro 5 static endpoint"
og_image_gotchas: "woff1 only (no woff2/ttf), static file shadowing, dynamic stat counting from content dirs"
og_image_testing: "opengraph.xyz + LinkedIn Post Inspector"
# Cognitive Mode Switching / gstack (Added 2026-03-13)
gstack_workflow: "guide/workflows/gstack-workflow.md"
gstack_6_gears: "guide/workflows/gstack-workflow.md:34" # Table: 6 roles, core questions, when to switch
gstack_strategic_gate: "guide/workflows/gstack-workflow.md:47" # Pre-implementation product gate concept
gstack_plan_ceo_review: "examples/commands/plan-ceo-review.md" # Strategic product gate command template
gstack_plan_eng_review: "examples/commands/plan-eng-review.md" # Engineering architecture gate command template
gstack_browse_non_mcp: "guide/workflows/gstack-workflow.md:106" # /browse native Chromium daemon vs MCP (~100ms)
gstack_full_cycle: "guide/workflows/gstack-workflow.md:130" # Full ship cycle demo (plan-ceo → plan-eng → review → ship → browse)
gstack_when_to_use: "guide/workflows/gstack-workflow.md:198" # Comparison vs Plan Pipeline and other workflows
gstack_upstream: "https://github.com/garrytan/gstack"
gstack_purpose: "6-skill workflow suite: strategic gate + architecture + paranoid review + release + browser QA + retro"
third_party_tools_skill_packs: "guide/ecosystem/third-party-tools.md:558" # Notable skill packs (gstack)
# Talk Preparation Pipeline (6-stage: extract → research → concepts → position → script → revision)
talk_pipeline_workflow: "guide/workflows/talk-pipeline.md"
talk_pipeline_skills: "examples/skills/talk-pipeline/"
talk_pipeline_orchestrator: "examples/skills/talk-pipeline/orchestrator/SKILL.md"
talk_pipeline_stage1: "examples/skills/talk-pipeline/stage-1-extract/SKILL.md"
talk_pipeline_stage2: "examples/skills/talk-pipeline/stage-2-research/SKILL.md"
talk_pipeline_stage3: "examples/skills/talk-pipeline/stage-3-concepts/SKILL.md"
talk_pipeline_stage4: "examples/skills/talk-pipeline/stage-4-position/SKILL.md"
talk_pipeline_stage5: "examples/skills/talk-pipeline/stage-5-script/SKILL.md"
talk_pipeline_stage6: "examples/skills/talk-pipeline/stage-6-revision/SKILL.md"
talk_pipeline_kimi_template: "examples/skills/talk-pipeline/stage-5-script/templates/kimi-prompt-template.md"
talk_pipeline_feedback_template: "examples/skills/talk-pipeline/stage-4-position/templates/feedback-draft.md"
talk_pipeline_modes: "REX (git archaeology) | Concept (skip stage 2)"
talk_pipeline_outputs: "13-14 files REX mode, 10 files Concept mode"
talk_pipeline_patterns: "skill chaining + file-based state + tool permission scoping + human-in-the-loop gate + AI-to-AI handoff (Claude → Kimi)"
talk_pipeline_checkpoint: "Stage 4 CHECKPOINT: user selects angle + title before script starts"
talk_pipeline_kimi: "kimi.com (free) — copy-paste Stage 5 prompt for AI slide generation"
# reMarkable 2 + AI (guide/ecosystem/remarkable-ai.md)
remarkable_ai_guide: "guide/ecosystem/remarkable-ai.md"
remarkable_mcp_server: "guide/ecosystem/remarkable-ai.md#1-remarkable-mcp--le-game-changer"
remarkable_mcp_repo: "https://github.com/SamMorrowDrums/remarkable-mcp"
remarkable_ghostwriter: "guide/ecosystem/remarkable-ai.md#2-ghostwriter--interface-vision-llm"
remarkable_obsidian_sync: "guide/ecosystem/remarkable-ai.md#3-sync-remarkable--obsidian"
remarkable_ocr_pipeline: "guide/ecosystem/remarkable-ai.md#4-ocr--ai-pipeline-custom"
remarkable_ssh_tools: "guide/ecosystem/remarkable-ai.md#5-accès-ssh-et-outils-communautaires"
remarkable_meeting_workflow: "guide/ecosystem/remarkable-ai.md#10-meeting-notes--ai-summary"
remarkable_workflows_to_build: "guide/ecosystem/remarkable-ai.md#14-workflows-ai-augmentés-à-construire"
remarkable_getting_started: "guide/ecosystem/remarkable-ai.md#15-par-où-commencer"
remarkable_community: "https://github.com/reHackable/awesome-reMarkable"
# Whitepapers (FR + EN) — 9 focused whitepapers on Claude Code
whitepapers_url: "https://www.florian.bruniaux.com/guides"
whitepapers_fr: "whitepapers/fr/" # FR sources (Quarto .qmd)
whitepapers_en: "whitepapers/en/" # EN sources (Quarto .qmd)
whitepapers_topics: "foundations, prompting, customization, security, architecture, team, privacy, reference, agent-teams"
# Learning with AI (guide/roles/learning-with-ai.md)
learning_quick_check: "guide/roles/learning-with-ai.md:38"
learning_uval_protocol: "guide/roles/learning-with-ai.md:218"
learning_claude_config: "guide/roles/learning-with-ai.md:458"
learning_breaking_dependency: "guide/roles/learning-with-ai.md:575"
learning_embracing_ai: "guide/roles/learning-with-ai.md:623"
learning_30day_plan: "guide/roles/learning-with-ai.md:815"
learning_red_flags: "guide/roles/learning-with-ai.md:612"
# Productivity Research RCTs
productivity_rct_metr: "guide/roles/learning-with-ai.md:925" # METR 2025: experienced devs 19% slower on large codebases despite perceiving 20% faster
productivity_rct_echoes: "guide/roles/learning-with-ai.md:926" # Borg 2025: 30.7% faster (median), ~55.9% habitual users, no maintainability impact downstream
productivity_maintainability_empirical: "guide/roles/learning-with-ai.md:926" # Empirical data on "AI code is unmaintainable" claim — blind RCT shows no significant difference
trust_calibration_maintainability_nuance: "guide/ultimate-guide.md:1097" # Nuance: defect rates ≠ maintenance burden (Borg et al. 2025)
session_naming_template: "examples/claude-md/session-naming.md"
session_naming_guide: "guide/ultimate-guide.md:815"
session_auto_rename: 859
learning_mode_template: "examples/claude-md/learning-mode.md"
learn_quiz_command: "examples/commands/learn/quiz.md"
learn_teach_command: "examples/commands/learn/teach.md"
learn_alternatives_command: "examples/commands/learn/alternatives.md"
learning_capture_hook: "examples/hooks/bash/learning-capture.sh"
# Anti-patterns
vibe_coding_trap: "guide/roles/learning-with-ai.md:87"
vibe_coding_context_overload: 13097
vibe_coding_context_overload_source: "Jens Rusitschka, 'Vibe Coding, Level 2' (Jan 2026)"
vibe_coding_phased_strategy: 13097
# AI Traceability & Attribution (guide/ops/ai-traceability.md) - Added 2026-01-24
ai_traceability_guide: "guide/ops/ai-traceability.md"
ai_traceability_why: "guide/ops/ai-traceability.md:29"
ai_traceability_disclosure_spectrum: "guide/ops/ai-traceability.md:64"
ai_traceability_co_authored_by: "guide/ops/ai-traceability.md:98"
ai_traceability_assisted_by: "guide/ops/ai-traceability.md:120"
ai_traceability_git_ai: "guide/ops/ai-traceability.md:170"
ai_traceability_llvm_policy: "guide/ops/ai-traceability.md:201"
ai_traceability_ghostty_policy: "guide/ops/ai-traceability.md:236"
ai_traceability_fedora_policy: "guide/ops/ai-traceability.md:261"
ai_traceability_promptpwnd: "guide/ops/ai-traceability.md:501"
ai_traceability_implementation: "guide/ops/ai-traceability.md:566"
ai_traceability_templates: "guide/ops/ai-traceability.md:648"
# AI Disclosure Templates
ai_disclosure_contributing: "examples/config/CONTRIBUTING-ai-disclosure.md"
ai_disclosure_pr_template: "examples/config/PULL_REQUEST_TEMPLATE-ai.md"
# TTS Integration (Agent Vibes) - Added 2026-01-22
tts_integration_guide: "examples/integrations/agent-vibes/README.md"
tts_installation: "examples/integrations/agent-vibes/installation.md"
tts_voice_catalog: "examples/integrations/agent-vibes/voice-catalog.md"
tts_troubleshooting: "examples/integrations/agent-vibes/troubleshooting.md"
tts_workflow: "guide/workflows/tts-setup.md"
tts_ai_ecosystem: "guide/ecosystem/ai-ecosystem.md:1124"
tts_hook_example: "examples/hooks/bash/tts-selective.sh"
tts_claude_md_template: "examples/claude-md/tts-enabled.md"
# Sandbox Isolation for Coding Agents (guide/security/sandbox-isolation.md) - Added 2026-01-31
sandbox_isolation_guide: "guide/security/sandbox-isolation.md"
sandbox_isolation_decision_tree: "guide/security/sandbox-isolation.md:7"
sandbox_docker_sandboxes: "guide/security/sandbox-isolation.md:67"
sandbox_docker_network: "guide/security/sandbox-isolation.md:121"
sandbox_docker_templates: "guide/security/sandbox-isolation.md:165"
sandbox_docker_docs: "https://docs.docker.com/ai/sandboxes/"
sandbox_docker_claude_config: "https://docs.docker.com/ai/sandboxes/claude-code/"
sandbox_docker_network_docs: "https://docs.docker.com/ai/sandboxes/network-policies/"
sandbox_docker_templates_docs: "https://docs.docker.com/ai/sandboxes/templates/"
sandbox_flyio_sprites: "https://sprites.dev"
sandbox_cloudflare_sdk: "https://developers.cloudflare.com/sandbox/tutorials/claude-code/"
sandbox_vercel: "https://vercel.com/docs/vercel-sandbox/"
sandbox_e2b: "https://e2b.dev"
sandbox_native_cc: "guide/core/architecture.md:606"
# Native Claude Code Sandbox (Official docs, v2.1.0+) - Added 2026-02-02
sandbox_native_guide: "guide/security/sandbox-native.md"
sandbox_native_why: "guide/security/sandbox-native.md:47" # Why Native Sandboxing
sandbox_native_os_primitives: "guide/security/sandbox-native.md:68" # Seatbelt vs bubblewrap
sandbox_native_filesystem: "guide/security/sandbox-native.md:178" # Filesystem isolation
sandbox_native_network: "guide/security/sandbox-native.md:221" # Network proxy architecture
sandbox_native_modes: "guide/security/sandbox-native.md:7" # Auto-allow vs Regular
sandbox_native_escape_hatch: "guide/security/sandbox-native.md:341" # dangerouslyDisableSandbox
sandbox_native_security_limits: "guide/security/sandbox-native.md:396" # Domain fronting, Unix sockets
sandbox_native_opensource: "guide/security/sandbox-native.md:481" # Open-source runtime
sandbox_native_platforms: "guide/security/sandbox-native.md:505" # Platform support
sandbox_native_decision_tree: "guide/security/sandbox-native.md:517" # Native vs Docker
sandbox_native_config_examples: "guide/security/sandbox-native.md:564" # Configuration examples
sandbox_native_best_practices: "guide/security/sandbox-native.md:637" # Best practices
sandbox_native_troubleshooting: "guide/security/sandbox-native.md:650" # Troubleshooting
sandbox_runtime_oss: "https://github.com/anthropic-experimental/sandbox-runtime"
sandbox_runtime_npm: "https://www.npmjs.com/package/@anthropic-ai/sandbox-runtime"
sandbox_official_docs: "https://code.claude.com/docs/en/sandboxing"
sandbox_comparison_native_docker: "guide/security/sandbox-isolation.md:238" # Section 4 Native CC
sandbox_native_evaluation: "docs/resource-evaluations/native-sandbox-official-docs.md"
sandbox_native_score: "5/5"
# Templates (Added 2026-02-02)
sandbox_native_config_template: "examples/config/sandbox-native.json"
sandbox_status_command: "examples/commands/sandbox-status.md"
sandbox_validation_hook: "examples/hooks/bash/sandbox-validation.sh"
# Docker Sandboxes (existing)
sandbox_evaluation: "docs/resource-evaluations/docker-sandboxes-isolation.md"
sandbox_safe_autonomy: "guide/security/sandbox-isolation.md:496" # Safe Autonomy Workflows
sandbox_anti_patterns: "guide/security/sandbox-isolation.md:546" # Anti-Patterns
sandbox_comparison_matrix: "guide/security/sandbox-isolation.md:477" # Comparison Matrix
sandbox_score: "4/5"
# Enterprise AI Governance (guide/security/enterprise-governance.md) - Added 2026-03-10
enterprise_governance_guide: "guide/security/enterprise-governance.md"
enterprise_governance_local_vs_shared: "guide/security/enterprise-governance.md#1-local-vs-shared-the-governance-split"
enterprise_governance_charter: "guide/security/enterprise-governance.md#2-ai-usage-charter"
enterprise_governance_charter_template: "examples/scripts/ai-usage-charter-template.md"
enterprise_governance_mcp_workflow: "guide/security/enterprise-governance.md#3-mcp-governance-workflow"
enterprise_governance_mcp_registry: "guide/security/enterprise-governance.md#32-mcp-registry-format"
enterprise_governance_mcp_registry_template: "examples/scripts/mcp-registry-template.yaml"
enterprise_governance_guardrail_tiers: "guide/security/enterprise-governance.md#4-guardrail-tiers"
enterprise_governance_tier_starter: "guide/security/enterprise-governance.md#tier-1-starter"
enterprise_governance_tier_standard: "guide/security/enterprise-governance.md#tier-2-standard"
enterprise_governance_tier_strict: "guide/security/enterprise-governance.md#tier-3-strict"
enterprise_governance_tier_regulated: "guide/security/enterprise-governance.md#tier-4-regulated"
enterprise_governance_policy_at_scale: "guide/security/enterprise-governance.md#5-policy-enforcement-at-scale"
enterprise_governance_onboarding_checklist: "guide/security/enterprise-governance.md#52-onboarding-checklist"
enterprise_governance_compliance_check: "guide/security/enterprise-governance.md#53-compliance-checking"
enterprise_governance_cicd_gates: "guide/security/enterprise-governance.md#55-cicd-gates"
enterprise_governance_audit: "guide/security/enterprise-governance.md#6-audit-compliance--governance-structure"
enterprise_governance_soc2_iso27001: "guide/security/enterprise-governance.md#61-what-soc2-and-iso27001-auditors-actually-ask"
enterprise_governance_audit_trail: "guide/security/enterprise-governance.md#62-audit-trail-setup"
enterprise_governance_hook: "examples/hooks/bash/governance-enforcement-hook.sh"
enterprise_governance_audience: "Tech leads, engineering managers, security officers"
enterprise_governance_scope: "Org-level policy (vs security-hardening.md = individual dev security)"
# Third-Party Tools (guide/ecosystem/third-party-tools.md) - Added 2026-02-01
third_party_tools_guide: "guide/ecosystem/third-party-tools.md"
third_party_tools_cost_tracking: "guide/ecosystem/third-party-tools.md:42"
third_party_tools_rtk: "guide/ecosystem/third-party-tools.md:7"
third_party_tools_session_mgmt: "guide/ecosystem/third-party-tools.md:126"
third_party_tools_config_mgmt: "guide/ecosystem/third-party-tools.md:214"
third_party_tools_hook_utilities: "guide/ecosystem/third-party-tools.md:331"
third_party_gitdiff_watcher: "guide/ecosystem/third-party-tools.md:335"
third_party_gitdiff_watcher_upstream: "https://github.com/fcamblor/gitdiff-watcher"
third_party_gitdiff_watcher_purpose: "Stop hook utility — enforces build/test quality gates before handoff, fires only when matching files changed"
third_party_tools_alternative_uis: "guide/ecosystem/third-party-tools.md:259"
third_party_tools_known_gaps: "guide/ecosystem/third-party-tools.md:375"
third_party_tools_recommendations: "guide/ecosystem/third-party-tools.md:391"
third_party_ccusage: "https://www.npmjs.com/package/ccusage"
third_party_ccusage_site: "https://ccusage.com"
third_party_ccburn: "https://github.com/JuanjoFuchs/ccburn"
third_party_straude: "https://straude.com"
third_party_straude_npm: "https://www.npmjs.com/package/straude"
third_party_straude_guide: "guide/ecosystem/third-party-tools.md:92"
third_party_straude_eval: "docs/resource-evaluations/straude-evaluation.md"
third_party_claude_code_viewer: "https://www.npmjs.com/package/@kimuson/claude-code-viewer"
third_party_claude_code_config: "https://github.com/joeyism/claude-code-config"
third_party_aiblueprint: "https://github.com/Melvynx/aiblueprint"
third_party_claude_chic: "https://pypi.org/project/claudechic/"
third_party_toad: "https://github.com/batrachianai/toad"
third_party_conductor: "https://docs.conductor.build"
# Configuration Management & Backup (Added 2026-02-02)
config_management_guide: "guide/ultimate-guide.md:4217" # Section 3.1 Memory Files
config_hierarchy: "guide/ultimate-guide.md:4336" # Global → Project → Local precedence
config_git_strategy_project: "guide/ultimate-guide.md:4634" # What Goes Where
config_git_strategy_global: "guide/ultimate-guide.md:4634" # Version control ~/.claude/
config_backup_strategies: "guide/ultimate-guide.md:4634" # Git, cloud sync, cron
config_multi_machine_sync: "guide/ultimate-guide.md:4634" # Laptop + desktop workflows
config_security_considerations: "guide/ultimate-guide.md:4419" # CLAUDE.md Injection warning
config_disaster_recovery: "guide/ultimate-guide.md:4634" # Restore from backup
config_community_solutions: "guide/ultimate-guide.md:4634" # brianlovin + Ratinaud
config_github_issue: "https://github.com/anthropics/claude-code/issues/16204" # Migration guidance request
config_brianlovin_repo: "https://github.com/brianlovin/claude-config" # Community example with sync.sh
config_ratinaud_approach: "https://www.linkedin.com/posts/martinratinaud_claudecode-devtools-buildinpublic-activity-7424055660247629824-hBsL" # 504 sessions tested
config_ratinaud_evaluation: "docs/resource-evaluations/ratinaud-config-management-evaluation.md" # Full evaluation
# MCP Secrets Management (Added 2026-02-02)
mcp_secrets_management: "guide/ultimate-guide.md:10589" # Section 8.3.1
mcp_secrets_principles: "guide/ultimate-guide.md:10589" # Security principles
mcp_secrets_os_keychain: "guide/ultimate-guide.md:10589" # Approach 1: OS Keychain
mcp_secrets_env_file: "guide/ultimate-guide.md:10589" # Approach 2: .env + .gitignore
mcp_secrets_vaults: "guide/ultimate-guide.md:10589" # Approach 3: HashiCorp Vault, AWS, 1Password
mcp_secrets_rotation: "guide/ultimate-guide.md:10589" # Rotation workflow
mcp_secrets_pre_commit: "guide/ultimate-guide.md:8417" # Security Hooks section
mcp_secrets_verification: "guide/ultimate-guide.md:10589" # Verification checklist
mcp_secrets_best_practices: "guide/ultimate-guide.md:10589" # Summary table
# Templates & Scripts (Configuration Management)
sync_claude_config_script: "examples/scripts/sync-claude-config.sh" # Full automation script
pre_commit_secrets_hook: "examples/hooks/bash/pre-commit-secrets.sh" # Git hook for secret detection
settings_local_example: "examples/config/settings.local.json.example" # Machine-specific overrides template
# Tool-qualified deny format (Added 2026-02-26)
permissions_deny_tool_qualified: "guide/ultimate-guide.md:5008" # Permission Patterns table + full example
# Terminal personalization (Added 2026-02-27)
spinner_personalization: "guide/ultimate-guide.md:4978" # spinnerVerbs + spinnerTipsOverride settings
permissions_deny_tool_qualified_syntax: "Read(file_path:*.env*) | Edit(file_path:*.pem) | Write(file_path:*.key) | Bash(command:*rm -rf*)"
permissions_deny_tool_qualified_vs_simple: "file_path: glob matches full path arg; simple '*.env' matches filename only"
permissions_deny_known_limitation: "background indexing may expose via system reminders before checks — GitHub #4160"
permissions_deny_defense_in_depth: "store secrets outside project dir for guaranteed protection"
# Visual Reference (ASCII diagrams)
visual_reference: "guide/core/visual-reference.md"
# Architecture internals (guide/core/architecture.md)
architecture_visual_overview: "guide/core/architecture.md:51"
architecture_visual_source: "https://www.linkedin.com/posts/mohamed-ali-ben-salem-2b777b9a_en-ce-moment-je-vois-passer-des-posts-du-activity-7420592149110362112-eY5a"
architecture_master_loop: "guide/core/architecture.md:82"
architecture_tools: "guide/core/architecture.md:219"
architecture_context: "guide/core/architecture.md:312"
architecture_subagents: "guide/core/architecture.md:471"
architecture_permissions: "guide/core/architecture.md:541"
architecture_mcp: "guide/core/architecture.md:746"
architecture_mcp_visual: "guide/images/mcp-architecture-diagram.svg"
architecture_philosophy: "guide/core/architecture.md:1205"
# Official LLM-Optimized Documentation - Added 2026-02-25
official_llms_index: "https://code.claude.com/docs/llms.txt" # Index ~65 pages, ~15-20K tokens — use first for discovery
official_llms_full: "https://code.claude.com/docs/llms-full.txt" # Full doc ~98KB, ~25-30K tokens — source de vérité officielle
# System Prompts (Official Sources) - Added 2026-01-26
system_prompts_official: "https://platform.claude.com/docs/en/release-notes/system-prompts"
system_prompts_willison_analysis: "https://simonwillison.net/2025/May/25/claude-4-system-prompt/"
system_prompts_prompthub: "https://www.prompthub.us/blog/an-analysis-of-the-claude-4-system-prompt"
system_prompts_architecture: "guide/core/architecture.md:360"
# MCP Apps Extension (SEP-1865) - Added 2026-01-27
mcp_apps_architecture: "guide/core/architecture.md:753"
mcp_apps_evolution: "guide/ultimate-guide.md:9252"
mcp_apps_spec: "https://github.com/modelcontextprotocol/ext-apps"
mcp_apps_blog_mcp: "https://blog.modelcontextprotocol.io/posts/2026-01-26-mcp-apps/"
mcp_apps_blog_claude: "https://claude.com/blog/interactive-tools-in-claude"
mcp_apps_sdk: "https://www.npmjs.com/package/@modelcontextprotocol/ext-apps"
mcp_apps_announcement_date: "2026-01-26"
mcp_apps_cli_relevance: "Indirect (ecosystem understanding, MCP server dev, hybrid workflows)"
# Main guide (guide/ultimate-guide.md) - Updated 2026-01-27
installation: 221
first_workflow: 305
essential_commands: 47
trust_calibration: 1039
working_with_images: 450
wireframing_tools: 520
figma_mcp: 569
image_optimization: 594
permission_modes: 818
interaction_loop: 1364
context_management: 1335
context_triage: 1520
session_vs_memory: 1553
fresh_context_pattern: 1597
subscription_limits: 1933
subscription_token_budgets: 1948
subscription_opus_ratio: 1946
subscription_monitoring: 2113
plan_mode: 576
rewind: 2566
mental_model: 2815
xml_prompting: 3016
prompting_provocation: 3469
prompting_provocation_source: "https://paddo.dev/blog/claude-code-team-tips/"
semantic_anchors: 3503
semantic_anchors_catalog: "examples/semantic-anchors/anchor-catalog.md"
memory_files: 4205
# Auto-Memories (v2.1.32+) - Added 2026-02-09
auto_memories: 4439
auto_memories_vs_claudemd: 4439
# Fast Mode (v2.1.36+) - Added 2026-02-09
fast_mode_command: 720 # /fast in commands table
fast_mode_api: 720 # API breaking changes section
fast_mode_pricing: 1788 # Pricing table
fast_mode_behavior: "2.5x faster, 6x price, same Opus 4.6 model"
# Sonnet 4.6 + 1M Context (Feb 2026) - Added 2026-02-18
sonnet_4_6_default: 1887 # Pricing table, Sonnet 4.6 now default
context_200k_vs_1m: 1793 # Decision guide: 200K vs 1M context window
context_200k_vs_1m_perf: "Opus 4.6: 93% @ 256K, 76% @ 1M (MRCR v2). Sonnet 4.6 scores not yet published."
context_200k_vs_1m_cost: "Sonnet 4.6: ~$0.23 bug fix, ~$0.75 module refactor, ~$2.25 full 1M session"
context_1m_beta_requirement: "API only, requires anthropic-beta header. Opus: pricing doubles >200K."
# Debug Command (v2.1.30+) - Added 2026-02-09
debug_command: 47 # Essential Commands table
debug_purpose: "Systematic troubleshooting and error investigation"
# Model Selection & Thinking Guide (Section 2.5) - Added 2026-02-21
model_selection_guide: 2704 # Section 2.5 — canonical table, effort levels, agent patterns
model_selection_anchor: "#25-model-selection--thinking-guide"
# Configuration Decision Guide (Section 2.7) - Added 2026-02-22
configuration_decision_guide: 2872 # Section 2.7 — mechanism comparison, decision tree, 56% warning
configuration_decision_guide_anchor: "#27-configuration-decision-guide"
mechanism_comparison_table: 2960 # Semantic roles + mechanism comparison tables
fifty_six_percent_warning: 2955 # Section 2.7 Configuration Decision Guide
planner_agent: "examples/agents/planner.md"
implementer_agent: "examples/agents/implementer.md"
architecture_reviewer_agent: "examples/agents/architecture-reviewer.md"
# Opus 4.6 Features (Feb 2026) - Added 2026-02-09, line numbers updated 2026-02-21
opus_4_6_adaptive_thinking: 11622
opus_4_6_effort_parameter: 11636
opus_4_6_pricing: 1788
opus_4_6_api_breaking_changes: 11734
opus_4_6_assistant_prefill_removed: 11737
# Summarize from Here (v2.1.32+) - Added 2026-02-09
summarize_from_here: 1506 # Context Recovery Strategies section
# Agent Teams Hook Events (v2.1.32+) - Added 2026-02-09
hook_teammate_idle: 7934
hook_task_completed: 7935
# Agent Memory Field (v2.1.32+) - Added 2026-02-09
agent_memory_frontmatter: 5636 # Agent Template section (memory field in frontmatter)
# Xcode Integration (Feb 2026) - Added 2026-02-09
xcode_integration: 12556
claude_agent_sdk: 12558
# Task Management System (v2.1.16+) - Added 2026-01-26
task_management_system: 3726
task_management_comparison: 3732
tasks_api_overview: 973
tasks_api_tools: 3746
tasks_api_capabilities: 3752
tasks_api_configuration: 3759
tasks_api_schema: 3773
tasks_api_when_to_use: 3790
tasks_api_limitations: 3796
tasks_api_field_visibility: "TaskList: id/subject/status/owner/blockedBy only. TaskGet: all fields."
tasks_api_cost_overhead: "Reviewing N task descriptions = 1 + N API calls"
tasks_api_workarounds: 3819
todowrite_legacy: 3837
todowrite_when_to_use: 3846
todowrite_migration_flag: 3855
task_best_practices: 3862
task_hierarchy_design: 3726
task_dependency_management: 3726
task_status_transitions: 3756
task_metadata_conventions: 3757
task_complete_workflow: 3947
task_sources: 3835
# Task Management Workflow (guide/workflows/task-management.md)
workflows_task_management: "guide/workflows/task-management.md"
task_workflow_overview: "guide/workflows/task-management.md:15"
task_workflow_planning: "guide/workflows/task-management.md:52"
task_workflow_execution: "guide/workflows/task-management.md:137"
task_workflow_session_mgmt: "guide/workflows/task-management.md:215"
task_workflow_tdd_integration: "guide/workflows/task-management.md:312"
task_workflow_plan_integration: "guide/workflows/task-management.md:367"
task_workflow_migration: "guide/workflows/task-management.md:439"
task_workflow_patterns: "guide/workflows/task-management.md:525"
task_workflow_troubleshooting: "guide/workflows/task-management.md:667"
task_workflow_advanced: "guide/workflows/task-management.md:741"
claude_folder: 4595
settings: 4879
precedence_rules: 5103
agents: 5546
agent_template: 5636
agent_examples: 5836
skills: 6246
skills_taxonomy: 6718
skills_evals: 6954
skill_template: 6384
skill_examples: 6452
design_patterns_skill: 6630
design_patterns_skill_location: "examples/skills/design-patterns/"
design_patterns_skill_modes: "Detection, Suggestion, Evaluation"
design_patterns_skill_patterns: "23 GoF patterns (Creational 5, Structural 7, Behavioral 11)"
design_patterns_skill_stacks: "React, Angular, NestJS, Vue, Express, RxJS, Redux, ORMs"
community_skills_cybersec: 6780
community_skills_iac: 6863
# Automatic skill generation (meta-skill)
claudeception: "https://github.com/blader/Claudeception"
claudeception_guide: 6915
# Skill Lifecycle: Automatic improvement (added 2026-01-24)
skill_lifecycle: 6246
claude_reflect_system: 6246
claude_reflect_system_repo: "https://github.com/haddock-development/claude-reflect-system"
claude_reflect_system_agent_skills: "https://agent-skills.md/skills/haddock-development/claude-reflect-system/reflect"
skill_improvement_pattern: 6630
skill_improvement_how_it_works: 6630
skill_improvement_safety: 6373
skill_improvement_security_warnings: 6373
skill_improvement_comparison: 6250
skill_improvement_workflow: 6328
# Design Intelligence Skill (added 2026-02-23)
ui_ux_pro_max: "https://github.com/nextlevelbuilder/ui-ux-pro-max-skill"
ui_ux_pro_max_site: "https://ui-ux-pro-max-skill.nextlevelbuilder.io"
ui_ux_pro_max_guide: 7092
ui_ux_pro_max_stars: 33700
ui_ux_pro_max_styles: 67
ui_ux_pro_max_palettes: 96
# Agent Skills Open Standard (added 2026-02-01)
agentskills_spec: "https://agentskills.io"
agentskills_spec_repo: "https://github.com/agentskills/agentskills"
agentskills_spec_stars: "8.2K"
agentskills_platforms: "26+ (Claude Code, Cursor, VS Code, GitHub, Codex, Gemini CLI, Goose, Roo Code, Spring AI, Databricks...)"
agentskills_ref_cli: "https://github.com/agentskills/agentskills/tree/main/skills-ref"
agentskills_ref_cli_usage: "skills-ref validate <path> | skills-ref to-prompt <path>"
anthropics_skills_repo: "https://github.com/anthropics/skills"
anthropics_skills_stars: "60K+"
anthropics_skills_categories: "Documents (docx/pdf/pptx/xlsx), Creative & Design, Development, Enterprise"
anthropics_skills_install: "/plugin marketplace add anthropics/skills"
anthropics_plugins_official_repo: "https://github.com/anthropics/claude-plugins-official"
anthropics_plugins_official_installs: "3.1K"
anthropics_plugins_official_skills: "claude-md-improver, claude-automation-recommender, playground, plugin dev meta-skills"
anthropics_plugins_official_install: "npx add-skill anthropics/claude-plugins-official"
agentskills_threat_model: "https://safedep.io/agent-skills-threat-model"
agentskills_threat_model_finding: "8-14% of public skills have vulnerabilities (prompt injection, data exfiltration, privilege escalation)"
agentskills_blog: "https://anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills"
agentskills_guide_section: "guide/ultimate-guide.md:6383"
agentskills_evaluation: "docs/resource-evaluations/agentskills-io-specification.md"
agentskills_score: "4/5"
# claude-code-best-practice repo evaluations (Added 2026-02-26)
ccbp_repo_evaluation: "docs/resource-evaluations/069-claude-code-best-practice-repo-eval.md"
ccbp_repo_score: "4/5"
ccbp_repo_source: "https://github.com/shanraisshan/claude-code-best-practice"
ccbp_repo_critical_finding: "bug at guide/ultimate-guide.md:5646 — official agent fields misclassified as community patterns (fixed)"
ccbp_dotclaude_evaluation: "docs/resource-evaluations/070-claude-code-best-practice-dot-claude-eval.md"
ccbp_dotclaude_score: "4/5"
ccbp_dotclaude_patterns: "self-evolving agent, Command→Agent→Skills architecture, allowed-tools wildcard scoping"
# Skills Marketplace (added 2026-01-23)
skills_marketplace: 7212
skills_marketplace_url: "https://skills.sh/"
skills_marketplace_github: "https://github.com/vercel-labs/agent-skills"
skills_marketplace_install: "npx add-skill <owner/repo>"
skills_marketplace_top_skills:
- "vercel-react-best-practices: 35K+ installs"
- "web-design-guidelines: 26.6K installs"
- "supabase-postgres-best-practices: 1K+ installs"
- "better-auth-best-practices: 2K+ installs"
- "test-driven-development: 721 installs"
skills_marketplace_status: "Community (Vercel Labs), launched Jan 21, 2026"
skills_marketplace_changelog: "https://vercel.com/changelog/introducing-skills-the-open-agent-skills-ecosystem"
# Plugin System & Community Marketplaces (updated 2026-03-06)
plugins_system: 12015
plugins_commands: 12029
plugins_marketplace: 12042
plugins_community_marketplaces: 12344
plugins_featured_community: 12385 # Vitals + SE-CoVe comparison section
plugins_recommended: "examples/plugins/"
plugins_se_cove: "examples/plugins/se-cove.md"
plugins_vitals:
url: "https://github.com/chopratejas/vitals"
install: "/plugin marketplace add chopratejas/vitals"
command: "/vitals:scan"
purpose: "Codebase hotspot detection — git churn x complexity x coupling centrality"
status: "v0.1 alpha"
updated: "2026-03-06"
plugins_se_cove_detail:
url: "https://github.com/vertti/se-cove-claude-plugin"
install: "/plugin marketplace add vertti/se-cove-claude-plugin"
command: "/chain-of-verification:verify"
purpose: "Chain-of-Verification — independent verifier prevents confirmation bias"
research: "arXiv:2309.11495 (ACL 2024)"
status: "v1.1.1 stable"
cost: "~2x tokens"
plugins_official_docs: "https://code.claude.com/docs/en/plugins"
plugins_official_reference: "https://code.claude.com/docs/en/plugins-reference"
plugins_official_marketplaces: "https://code.claude.com/docs/en/plugin-marketplaces"
# Community plugin resources
plugins_wshobson_agents:
url: "https://github.com/wshobson/agents"
stats: "67 plugins, 99 agents, 107 skills"
updated: "2026-01-24"
plugins_registry_claude_plugins_dev:
url: "https://claude-plugins.dev"
stats: "11,989 plugins, 63,065 skills indexed"
plugins_registry_claudemarketplaces:
url: "https://claudemarketplaces.com"
purpose: "Auto-scan GitHub for .claude-plugin/marketplace.json"
plugins_popular:
- "Context7: ~72k installs (library docs lookup)"
- "Ralph Wiggum: ~57k installs (code review)"
- "Figma MCP: ~18k installs (design-to-code)"
- "Linear MCP: ~9.5k installs (issue tracking)"
plugins_awesome_list: "https://github.com/hesreallyhim/awesome-claude-code"
plugins_awesome_list_stars: "20k+"
chain_of_verification: "guide/core/methodologies.md:230"
chain_of_verification_paper: "https://arxiv.org/abs/2309.11495"
chain_of_verification_acl: "https://aclanthology.org/2024.findings-acl.212/"
# Verification Loops & Eval Harness (added 2026-01-23)
verification_loops: "guide/core/methodologies.md:245"
verification_loops_source: "https://www.anthropic.com/engineering/claude-code-best-practices"
eval_harness: "guide/core/methodologies.md:289"
eval_harness_source: "https://www.anthropic.com/engineering/demystifying-evals-for-ai-agents"
# GSD (Get Shit Done) methodology (added 2026-01-25)
gsd_methodology: "guide/core/methodologies.md:53"
gsd_evaluation: "docs/resource-evaluations/gsd-evaluation.md"
gsd_source: "https://github.com/glittercowboy/get-shit-done"
gsd_note: "Overlap with existing patterns (Ralph Loop, Gas Town, BMAD)"
# Resource Evaluations (added 2026-01-26, updated 2026-02-07)
resource_evaluations_directory: "docs/resource-evaluations/"
resource_evaluations_count: 84
resource_evaluations_methodology: "docs/resource-evaluations/README.md"
resource_evaluations_watchlist: "docs/resource-evaluations/watch-list.md"
resource_evaluations_appendix: "guide/ultimate-guide.md:20886"
resource_evaluations_readme_section: "README.md:307"
resource_evaluations_git_mcp: "docs/resource-evaluations/git-mcp-server-evaluation.md"
resource_evaluations_anaconda_croce: "docs/resource-evaluations/anaconda-croce-evaluation.md"
resource_evaluations_grenier_quality: "docs/resource-evaluations/grenier-agent-skill-quality.md"
resource_evaluations_grenier_score: "3/5"
resource_evaluations_grenier_gap: "No automated quality checks for agents/skills (29.5% deploy without evaluation per LangChain 2026)"
resource_evaluations_grenier_integration: "Created /audit-agents-skills command + skill + criteria.yaml"
# Agent/Skill Quality Audit (added 2026-02-07)
audit_agents_skills_command: "examples/commands/audit-agents-skills.md"
audit_agents_skills_skill: "examples/skills/audit-agents-skills/SKILL.md"
audit_agents_skills_criteria: "examples/skills/audit-agents-skills/scoring/criteria.yaml"
audit_agents_skills_framework: "16 criteria (Identity 3x, Prompt 2x, Validation 1x, Design 2x)"
audit_agents_skills_scoring: "32 points max (agents/skills), 20 points (commands)"
audit_agents_skills_grades: "A-F scale, 80% production threshold"
audit_agents_skills_modes: "Quick (top-5), Full (all 16), Comparative (vs templates)"
audit_agents_skills_output: "Markdown + JSON for CI/CD integration"
audit_agents_skills_industry_context: "29.5% deploy without evaluation (LangChain 2026), 18% cite agent bugs as top challenge"
audit_agents_skills_guide_refs: "guide/ultimate-guide.md:4951 (after Agent Validation Checklist), guide/ultimate-guide.md:5495 (after Skill Validation)"
# Practitioner Insights (external validation)
practitioner_insights: "guide/ecosystem/ai-ecosystem.md:2170"
practitioner_dave_van_veen: "guide/ecosystem/ai-ecosystem.md:2174"
practitioner_matteo_collina: "guide/ecosystem/ai-ecosystem.md:2203"
# Outcome Engineering (o16g) - Emerging manifesto (2026-02-13)
outcome_engineering_o16g: "guide/ecosystem/ai-ecosystem.md:2366"
outcome_engineering_url: "https://o16g.com/"
outcome_engineering_author: "Cory Ondrejka (CTO Onebrief, co-creator Second Life, ex-VP Google/Meta)"
outcome_engineering_status: "Emerging - on watch list for community adoption"
practitioner_collina_source: "https://adventures.nodeland.dev/archive/the-human-in-the-loop/"
practitioner_steinberger: "guide/ecosystem/ai-ecosystem.md:2242"
practitioner_steinberger_source: "https://steipete.me/posts/2025/shipping-at-inference-speed"
practitioner_addy_osmani: "guide/ecosystem/ai-ecosystem.md:2269"
practitioner_osmani_source: "https://addyo.substack.com/p/the-80-problem-in-agentic-coding"
practitioner_alan: "guide/ecosystem/ai-ecosystem.md:2299"
practitioner_alan_source: "https://www.linkedin.com/pulse/le-principe-de-la-tour-eiffel-et-ralph-wiggum-maxime-le-bras-psmxe/"
verification_paradox: "guide/security/production-safety.md:639"
verification_paradox_source: "https://www.linkedin.com/pulse/le-principe-de-la-tour-eiffel-et-ralph-wiggum-maxime-le-bras-psmxe/"
eighty_percent_problem: "guide/ecosystem/ai-ecosystem.md:2269"
comprehension_debt_secondary: "guide/ecosystem/ai-ecosystem.md:2269" # See also: vibe_coding_trap (primary)
# DevOps/SRE Guide (guide/ops/devops-sre.md)
devops_sre_guide: "guide/ops/devops-sre.md"
devops_fire_framework: "guide/ops/devops-sre.md:46"
devops_k8s_troubleshooting: "guide/ops/devops-sre.md:129"
devops_k8s_prompts: "guide/ops/devops-sre.md:151"
devops_incident_response: "guide/ops/devops-sre.md:333"
devops_iac_patterns: "guide/ops/devops-sre.md:504"
devops_guardrails: "guide/ops/devops-sre.md:687"
devops_limitations: "guide/ops/devops-sre.md:297"
devops_quick_reference: "guide/ops/devops-sre.md:794"
devops_agent: "examples/agents/devops-sre.md"
devops_claude_md: "examples/claude-md/devops-sre.md"
# Product Designer (design-to-code workflow)
product_designer_workflow: "guide/workflows/design-to-code.md"
product_designer_claudemd: "examples/claude-md/product-designer.md"
design_system_handoff: "guide/workflows/design-to-code.md:263"
figma_make_integration: "guide/workflows/design-to-code.md:85"
pencil_canvas: "guide/ultimate-guide.md:528"
pencil_workflow: "guide/workflows/design-to-code.md:453"
pencil_vs_figma: "guide/workflows/design-to-code.md:476"
commands: 47
command_template: 7592
hooks: 8077
hook_templates: 8155
security_hooks: 8161
security_gate_hook_line: 8481
security_gate_hook_source: "https://paddo.dev/blog/claude-code-team-tips/"
mcp_servers: 9204
serena_indexation: 9373
serena_mcp: 9373
doobidoo_memory_mcp: 10142
mcp_memory_stack_patterns: 10325
mcp_config: 10556
mcp_security: 11402
cicd: 11827
ide_integration: 12528
feedback_loops: 12613
batch_operations: 13243
pitfalls: 13366
git_best_practices: 13831
cost_optimization: 1784
session_teleportation: 15178
remote_control: 18833
multi_instance_workflows: 15283
boris_cherny_case_study: 15332
boris_cherny_team_patterns: 5492
# Dual-Instance Planning Pattern (Jon Williams, Feb 2026)
dual_instance_planning: 15385
dual_instance_workflow: "guide/workflows/dual-instance-planning.md"
dual_instance_overview: 15385
dual_instance_setup: "guide/workflows/dual-instance-planning.md:71"
dual_instance_complete_workflow: "guide/workflows/dual-instance-planning.md:145"
dual_instance_plan_template: "guide/workflows/dual-instance-planning.md:522"
dual_instance_cost_analysis: "guide/workflows/dual-instance-planning.md:614"
dual_instance_comparison: 15385 # Boris vs Jon comparison table
dual_instance_source: "https://www.linkedin.com/posts/thatjonwilliams_ive-been-using-cursor-for-six-months-now-activity-7424481861802033153-k8bu"
dual_instance_author: "Jon Williams (Product Designer, UK)"
dual_instance_date: "2026-02-03"
dual_instance_pattern: "Vertical separation (planner vs implementer) - orthogonal to Boris horizontal scaling"
dual_instance_cost: "$100-200/month (vs $500-1K Boris pattern)"
dual_instance_audience: "Solo devs, spec-heavy work, quality > speed"
# Plan-Validate-Execute Pipeline (Mar 2026)
plan_pipeline_workflow: "guide/workflows/plan-pipeline.md"
plan_pipeline_philosophy: "non-prescriptive AI-first + No Bandaids first principles + ADR learning loop"
plan_pipeline_commands: "/plan-start → /plan-validate → /plan-execute"
plan_pipeline_agent_pool: "12 research agents (trigger-based) + 8 validation agents (trigger-based)"
plan_pipeline_adr_loop: "Watching (1) → Emerging (2) → Confirmed (3+) → CLAUDE.md promotion"
plan_pipeline_claude_md_limit: "120 lines hard limit + pointer strategy for sub-files"
plan_pipeline_context_reset: "/clear between each command (plan, validate, execute)"
plan_pipeline_cost: "$2-10 typical Tier 2 feature, compounds down as ADR coverage grows"
plan_start_command: "examples/commands/plan-start.md"
plan_start_phases: "5 phases: PRD analysis, design analysis, technical decisions, dynamic team, metrics"
plan_start_tiers: "Tier 0 Solo (0 agents) → Tier 4 Full Spectrum (10+ agents)"
plan_validate_command: "examples/commands/plan-validate.md"
plan_validate_layer1: "structural checks inline: format, deps, file existence, ADR consistency, CLAUDE.md"
plan_validate_layer2: "0-8 specialist agents triggered by plan content (security Opus, db Opus, integration Opus)"
plan_validate_autofix: "Bucket A auto-resolve (ADR/PATTERNS/first-principles ~95%) + Bucket B human input"
plan_execute_command: "examples/commands/plan-execute.md"
plan_execute_flow: "worktree → TDD scaffold → parallel level execution → drift detection → quality gate → smoke test → PR merge → cleanup"
planning_coordinator_agent: "examples/agents/planning-coordinator.md"
planning_coordinator_role: "Opus synthesis agent: merges multi-agent reports into coherent task graph, resolves conflicts via ADR precedence"
integration_reviewer_agent: "examples/agents/integration-reviewer.md"
integration_reviewer_role: "Opus runtime validator: connection params, async/sync, env vars, library API correctness, OTEL pipeline"
# Boris Tane Pattern (Annotation Cycle, Feb 2026)
annotation_cycle_pattern: "guide/workflows/plan-driven.md#the-annotation-cycle"
custom_markdown_plans: "guide/workflows/plan-driven.md#why-custom-plans-over-plan"
boris_tane_source: "https://boristane.com/blog/how-i-use-claude-code/"
boris_tane_author: "Boris Tane (Engineering Lead, Cloudflare)"
# External resource: Claude Code team tips (paddo.dev, Feb 2026)
team_tips_paddo: "https://paddo.dev/blog/claude-code-team-tips/"
team_tips_paddo_source: "Boris Cherny thread (x.com/bcherny/status/2017742741636321619)"
team_tips_paddo_evaluation: "docs/resource-evaluations/paddo-team-tips-eval.md"
team_tips_paddo_score: "4/5"
anthropic_study_metrics: 11555
# Contribution Metrics (Jan 2026 - platform feature, not CLI release)
contribution_metrics: 15970
contribution_metrics_source: "https://claude.com/blog/contribution-metrics"
contribution_metrics_date: "2026-01-29"
contribution_metrics_availability: "Public beta - Team and Enterprise plans"
contribution_metrics_stats: "+67% PRs merged/engineer/day, 70-90% AI-assisted code (Anthropic internal)"
# Git Worktree Commands (Feb 2026)
git_worktree_command: "examples/commands/git-worktree.md"
git_worktree_status_command: "examples/commands/git-worktree-status.md"
git_worktree_remove_command: "examples/commands/git-worktree-remove.md"
git_worktree_clean_command: "examples/commands/git-worktree-clean.md"
git_worktrees_multi_instance: 14013
advanced_worktree_tooling: 15763
worktree_tooling_self_assessment: 15763
anthropic_internal_study: 15934
multi_instance_costs: 15283
orchestration_frameworks: 16029
headless_pm_framework: 11841
multi_instance_implementation: 15283
multi_instance_monitoring: 15283
multi_instance_decision_matrix: 15283
# External orchestration systems
external_orchestrators:
gas_town:
repo: "https://github.com/steveyegge/gastown"
author: "Steve Yegge"
description: "Multi-agent workspace manager using Claude Code instances"
status: "Experimental (Jan 2026)"
guide_section: "guide/ecosystem/ai-ecosystem.md:850"
multiclaude:
repo: "https://github.com/dlorenc/multiclaude"
author: "dlorenc"
description: "Self-hosted multi-agent Claude Code spawner (tmux + git worktrees)"
status: "Active development (Jan 2026, 383 stars)"
guide_section: "guide/ecosystem/ai-ecosystem.md:850"
agent_chat:
repo: "https://github.com/justinabrahms/agent-chat"
author: "Justin Abrahms"
description: "Real-time monitoring UI for Gas Town and multiclaude (SSE + SQLite)"
status: "Early preview (Jan 2026, v0.2.0)"
guide_section: "guide/ecosystem/ai-ecosystem.md:850"
# External research & alignment tools
external_research:
claude_constitution:
url: "https://www.anthropic.com/constitution"
pdf: "https://www-cdn.anthropic.com/9214f02e82c4489fb6cf45441d448a1ecd1a3aca/claudes-constitution.pdf"
announcement: "https://www.anthropic.com/news/claude-new-constitution"
description: "Claude's Constitutional AI framework - value hierarchy (safety > ethics > compliance > utility)"
license: "CC0 1.0 (public domain)"
published: "2026-01-21"
guide_section: "guide/security/data-privacy.md:296"
petri_v2:
repo: "https://github.com/safety-research/petri"
blog: "https://alignment.anthropic.com/2026/petri-v2/"
description: "Open-source AI behavior audit tool (Anthropic Alignment Science)"
features:
- "70 scenarios: collusion, ethics conflicts, info sensitivity"
- "Eval-awareness mitigations"
- "Benchmarks: Claude Opus 4.5, GPT-5.2, Gemini 3 Pro, Grok 4"
published: "2026-01-21"
guide_section: "README.md:338"
# Section 9.18 - Codebase Design for Agent Productivity
codebase_design_agents: 16311
codebase_design_source: "https://marmelab.com/blog/2026/01/21/agent-experience.html"
codebase_design_author: "François Zaninotto (Marmelab)"
codebase_design_llms_txt: 16797 # llms.txt standard for AI-optimized documentation
codebase_design_llms_txt_spec: "https://llmstxt.org/"
codebase_design_llms_txt_example: "machine-readable/llms.txt"
# Section 9.19 - Permutation Frameworks
permutation_frameworks: 18314
# Section 9.20 - Agent Teams (v2.1.32+ experimental)
agent_teams: "guide/workflows/agent-teams.md"
agent_teams_quick_start: "guide/workflows/agent-teams-quick-start.md" # Practical 8-10 min guide with copy-paste patterns
agent_teams_overview: 18498 # Section 9.20 in ultimate-guide.md
agent_teams_architecture: "guide/workflows/agent-teams.md:137"
agent_teams_setup: "guide/workflows/agent-teams.md:250"
agent_teams_use_cases: "guide/workflows/agent-teams.md:346"
agent_teams_fountain_case_study: "guide/workflows/agent-teams.md:358"
agent_teams_cred_case_study: "guide/workflows/agent-teams.md:391"
agent_teams_c_compiler_case_study: "guide/workflows/agent-teams.md:308"
agent_teams_paul_rayner_workflows: "guide/workflows/agent-teams.md:450"
agent_teams_workflow_impact: "guide/workflows/agent-teams.md:552"
agent_teams_limitations: "guide/workflows/agent-teams.md:644"
agent_teams_decision_tree: "guide/workflows/agent-teams.md:804"
agent_teams_best_practices: "guide/workflows/agent-teams.md:928"
agent_teams_troubleshooting: "guide/workflows/agent-teams.md:1092"
agent_teams_experimental_flag: "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=true"
agent_teams_model_requirement: "Opus 4.6 minimum"
agent_teams_sources:
- "https://www.anthropic.com/news/claude-opus-4-6"
- "https://www.anthropic.com/engineering/building-c-compiler"
- "https://resources.anthropic.com/hubfs/2026%20Agentic%20Coding%20Trends%20Report.pdf"
- "https://dev.to/thegdsks/claude-opus-46-for-developers-agent-teams-1m-context-and-what-actually-matters-4h8c"
- "https://www.linkedin.com/posts/thepaulrayner_this-is-wild-i-just-upgraded-claude-code-activity-7425635159678414850-MNyv"
# Anthropic 2026 Trends (diffused across sections, not standalone)
agentic_trends_2026_report: "https://resources.anthropic.com/hubfs/2026%20Agentic%20Coding%20Trends%20Report.pdf"
agentic_trends_2026_evaluation: "docs/resource-evaluations/anthropic-2026-agentic-coding-trends.md"
agentic_trends_integration_strategy: "Diffusion transversale (industry data in 9.17, 9.20, 9.11, 9 intro)"
agentic_trends_research_data:
ai_usage: "60% of work (Anthropic internal study)"
full_delegation: "0-20% tasks (collaboration > delegation)"
productivity_gain: "67% more PRs merged/engineer/day"
new_work: "27% tasks wouldn't be done without AI"
agentic_trends_case_studies:
fountain: "50% faster screening (hierarchical multi-agent)"
rakuten: "7h autonomous vLLM (12.5M lines, 99.9% accuracy)"
cred: "2x execution speed, quality maintained (fintech)"
telus: "500K hours saved, 13K solutions, 30% faster"
legora: "Legal platform, lawyers automate without coding"
zapier: "89% adoption, 800+ internal agents"
augment_code: "4-8 months project → 2 weeks"
agentic_trends_benchmarks:
multi_instance_cost: "$500-1K/month (Boris pattern validation)"
agent_teams_timeline: "3-6 months adoption (enterprise)"
productivity_multiplier: "3x (capabilities × orchestration × experience)"
timeline_compression: "weeks → days (feature implementation)"
onboarding_speedup: "2-4 weeks → 4-8 hours (new codebase)"
agentic_trends_anti_patterns:
over_delegation: ">5 agents = coordination overhead"
premature_automation: "Automate before mastering manual"
tool_sprawl: ">10 MCP servers = maintenance burden"
no_roi_tracking: "Can't optimize what you don't measure"
# AI Fluency Research (Anthropic, Feb 2026) - Added 2026-02-23
ai_fluency_index: "https://www.anthropic.com/research/AI-fluency-index"
ai_fluency_evaluation: "docs/resource-evaluations/2026-02-23-anthropic-ai-fluency-index.md"
ai_fluency_score: "4/5"
ai_fluency_sample: "9,830 conversations, 7-day window, January 2026"
ai_fluency_iteration_stat: "5.6× more likely to question reasoning (iterative vs non-iterative users)"
ai_fluency_fluency_ratio: "2.67 vs 1.33 behaviors (iterative vs non-iterative)"
ai_fluency_collaboration_terms: "Only 30% of users set collaboration terms explicitly"
ai_fluency_artifact_paradox: "Artifact production → −5.2pp missing context, −3.7pp fact-check, −3.1pp questioning reasoning"
ai_fluency_plan_review_section: "guide/ultimate-guide.md:2542" # Rev the Engine callout
ai_fluency_claudemd_section: "guide/ultimate-guide.md:4421" # CLAUDE.md Best Practices callout
ai_fluency_artifact_section: "guide/ultimate-guide.md:13485" # Artifact Paradox callout (Common Pitfalls)
ai_fluency_authors: "Swanson, Bent, Huang, Ludwig, Dakan, Feller (Anthropic)"
ai_fluency_published: "2026-02-23"
ai_fluency_future: "Claude Code platform analysis (mentioned in paper's future directions)"
ai_fluency_diagram: "guide/diagrams/06-development-workflows.md#ai-fluency--high-vs-low-fluency-paths"
ai_fluency_diagram_type: "flowchart — Artifact Paradox: 70% vs 30% user paths, behavioral drop data, iteration outcomes"
# Advanced Plan Mode Patterns
rev_the_engine: 2490
mechanic_stacking: 2538
# Sub-Agent Patterns (Refactored 2026-02-09)
agent_anti_patterns: 4032 # Critical: Roles vs Context Control (Dex Horty principle)
scope_focused_agents: 4079 # Formerly "Split-Role Sub-Agents", refactored for context isolation
teammatetool_experimental: 3976 # Multi-agent orchestration parent section
# Task Management Diagnostic
task_lists_diagnostic: 3884
# Mental Model
main_thread_orchestrator: 2886
# CLAUDE.md Patterns
continuous_context_update: 4297
# Hook Patterns
smart_hook_dispatching: 8689
# Workflows
skeleton_projects_workflow: "guide/workflows/skeleton-projects.md"
# Spec-First Development (Addy Osmani, Jan 2026)
spec_first_workflow: "guide/workflows/spec-first.md"
spec_modular_design: "guide/workflows/spec-first.md:363"
spec_operational_boundaries: "guide/workflows/spec-first.md:461"
spec_command_template: "guide/workflows/spec-first.md:573"
spec_anti_monolithic: "guide/workflows/spec-first.md:717"
spec_osmani_source: "https://addyosmani.com/blog/good-spec/"
spec_osmani_evaluation: "docs/resource-evaluations/addy-osmani-good-spec.md"
spec_osmani_score: "4/5"
spec_task_granularity: "guide/workflows/spec-first.md:62" # Vertical slices + PRD checklist (Allan Hill, Feb 2026)
spec_prd_checklist: "guide/workflows/spec-first.md:68" # 6-dimension PRD quality checklist
atdd_with_agents: "guide/core/methodologies.md:161" # ATDD + Gherkin for agentic workflows
commands_table: 47
shortcuts_table: 368
troubleshooting: 11311
cheatsheet: 19597
daily_workflow: 19673
# AI Ecosystem (Section 11, ~line 10525)
ai_ecosystem: 20004
ai_ecosystem_complementarity: 20004
ai_ecosystem_tool_matrix: 20031
ai_ecosystem_workflows: 20166
ai_ecosystem_integration: 20294
ai_ecosystem_detailed: "guide/ecosystem/ai-ecosystem.md"
ai_ecosystem_goose: "guide/ecosystem/ai-ecosystem.md:2074"
ai_ecosystem_goose_comparison: "guide/ecosystem/ai-ecosystem.md:2090"
ai_ecosystem_context_packing: "guide/ecosystem/ai-ecosystem.md:2533"
ai_ecosystem_multi_ide_sync: "guide/ecosystem/ai-ecosystem.md:1282"
agents_md_support_status: "guide/ecosystem/ai-ecosystem.md:1348"
ai_ecosystem_build_vs_use: "guide/ecosystem/ai-ecosystem.md:2399" # Section 11.3 - When to Build vs Use (ADK, LangChain, Vercel AI SDK)
# Architecture Diagrams as Context (advanced pattern) - Added 2026-01-25