-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.metadata.json
More file actions
8282 lines (8282 loc) · 323 KB
/
.metadata.json
File metadata and controls
8282 lines (8282 loc) · 323 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
{
"metadata": {
"version": "1.0",
"fetch_date": "2026-04-13T11:58:25.161821Z"
},
"items": [
{
"url": "https://platform.claude.com/docs/en/intro",
"status": "success",
"path": "en/intro.md",
"sha256": "bc97e117ec735d4acefa973cbc98be587d08271cc8aca6034c48435f692c9d6f",
"size": 3893
},
{
"url": "https://platform.claude.com/docs/en/get-started",
"status": "success",
"path": "en/get-started.md",
"sha256": "c173b9740127d9005f770160bfcc06afe490f5933b3a2b4b8c1d9532f5bb2676",
"size": 13809
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/overview",
"status": "success",
"path": "en/build-with-claude/overview.md",
"sha256": "15636e39318b479a65fbf1cc6af04d334fdb57b9ab204c649352c4b1cd51baeb",
"size": 12997
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/working-with-messages",
"status": "success",
"path": "en/build-with-claude/working-with-messages.md",
"sha256": "b9e9b2d551201e2e519bd4e821397a22d15f27268698b909194ccde75ed68dc2",
"size": 34431
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/handling-stop-reasons",
"status": "success",
"path": "en/build-with-claude/handling-stop-reasons.md",
"sha256": "d8102d8b7c9cba1887f0a7b739e2e5887c23e051ccb88dd1be9ed178c635a2a4",
"size": 24559
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/extended-thinking",
"status": "success",
"path": "en/build-with-claude/extended-thinking.md",
"sha256": "b75580d6218a6afa608d25ae431cf7e26dbf1dedca39c5555cc08a88aadcd06c",
"size": 141629
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/adaptive-thinking",
"status": "success",
"path": "en/build-with-claude/adaptive-thinking.md",
"sha256": "fa1242fa01a7fac4fbec229751ef734d5d2d4ea576f0dfd7d0497f2a0949a1be",
"size": 34320
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/effort",
"status": "success",
"path": "en/build-with-claude/effort.md",
"sha256": "2257478112eac890dacc5b48de8491cbcf2e7a7a8dad1ab3748c39d2bfc6346b",
"size": 13218
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/fast-mode",
"status": "success",
"path": "en/build-with-claude/fast-mode.md",
"sha256": "cc2363876a07e1776314435e8db4d9b1cb3fbe6648f3172f665a1d4c1be9c74e",
"size": 25028
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/structured-outputs",
"status": "success",
"path": "en/build-with-claude/structured-outputs.md",
"sha256": "cfe1d8d46f19fe8780e3206df321b4788870005e3a702bfc44f51cf6cf421fa2",
"size": 99995
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/citations",
"status": "success",
"path": "en/build-with-claude/citations.md",
"sha256": "6a34f028adf565d5ef7e48a26da5a1d317f1db2dd20b46dfd8b9d5805c56709b",
"size": 21694
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/streaming",
"status": "success",
"path": "en/build-with-claude/streaming.md",
"sha256": "9151ecbbeeb955b38f90087f427ee85627bb8c72ea7ba72f0cae66d87c0b36a6",
"size": 53335
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/batch-processing",
"status": "success",
"path": "en/build-with-claude/batch-processing.md",
"sha256": "a3b6c274838ae2a883883f794c6d07e00a5c29128839ca368863b5b31b5551db",
"size": 73227
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/search-results",
"status": "success",
"path": "en/build-with-claude/search-results.md",
"sha256": "78a8c66b72b812cc86ae40bfed952d16e5e488596e56349b68bdc153f213d9aa",
"size": 51825
},
{
"url": "https://platform.claude.com/docs/en/test-and-evaluate/strengthen-guardrails/handle-streaming-refusals",
"status": "success",
"path": "en/test-and-evaluate/strengthen-guardrails/handle-streaming-refusals.md",
"sha256": "7e435c6d28bf7b3af668ca0052394f44b46ae0d15c075c5b11dba98c07545216",
"size": 10245
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/multilingual-support",
"status": "success",
"path": "en/build-with-claude/multilingual-support.md",
"sha256": "1fda7688add21d09411abbbe754e5a651f6e23795f7cb7d1f7624b015fd8f36e",
"size": 3788
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/embeddings",
"status": "success",
"path": "en/build-with-claude/embeddings.md",
"sha256": "1e94a92de3d5332b1bebf9de4f9b2c250fc216a3b535038081a42231e831a3d0",
"size": 16342
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/tool-use/overview",
"status": "success",
"path": "en/agents-and-tools/tool-use/overview.md",
"sha256": "471c863cda26c756b77c7f8032cf753fe6597d2ad51bee2ebc01644800e3c65f",
"size": 8551
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/tool-use/how-tool-use-works",
"status": "success",
"path": "en/agents-and-tools/tool-use/how-tool-use-works.md",
"sha256": "fdcca0c84400350cad257fd4be100f18d94e68ce0f78392f73637064209923b7",
"size": 8562
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/tool-use/web-search-tool",
"status": "success",
"path": "en/agents-and-tools/tool-use/web-search-tool.md",
"sha256": "f844f0fb43d570987b715115e6c8b472f67128174844fd7b9a610ce0ed70da73",
"size": 20936
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/tool-use/web-fetch-tool",
"status": "success",
"path": "en/agents-and-tools/tool-use/web-fetch-tool.md",
"sha256": "4fb89733a07e946d8a2b39e3806cd30b524bb26878281c7c53fb24cbec6bbe7a",
"size": 23874
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/tool-use/code-execution-tool",
"status": "success",
"path": "en/agents-and-tools/tool-use/code-execution-tool.md",
"sha256": "210a2df437a22b83d5cd29a67f46946034178954ab471e0a629222d732c6534b",
"size": 55684
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/tool-use/advisor-tool",
"status": "success",
"path": "en/agents-and-tools/tool-use/advisor-tool.md",
"sha256": "8eb3de89a1686e5965cc775790ed0be7e646d1f7b703831c52711fbd59f2661a",
"size": 29028
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/tool-use/memory-tool",
"status": "success",
"path": "en/agents-and-tools/tool-use/memory-tool.md",
"sha256": "358d94ffad5fcc97f65c3ec71706892a7a84f25870d3ce0c60845bb31d87fcb6",
"size": 23610
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/tool-use/bash-tool",
"status": "success",
"path": "en/agents-and-tools/tool-use/bash-tool.md",
"sha256": "c163b24480a6cad553a51a4bf6ac2f07d433c0d4012724a74992da170fc8e88c",
"size": 14189
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/tool-use/computer-use-tool",
"status": "success",
"path": "en/agents-and-tools/tool-use/computer-use-tool.md",
"sha256": "cb320e68dbdb0a4076456c8e070a0c67a78d443141effab78b79132d9fa7eb87",
"size": 41168
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/tool-use/text-editor-tool",
"status": "success",
"path": "en/agents-and-tools/tool-use/text-editor-tool.md",
"sha256": "d9db7b0aef16767d0e6d39d8512d549dd36dce32b4b1442a96df130da310a6d3",
"size": 44358
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/tool-use/tool-reference",
"status": "success",
"path": "en/agents-and-tools/tool-use/tool-reference.md",
"sha256": "73b4586472957d6d7c543bc0c044f274ede9f90098f0c1589d6925bb395806cf",
"size": 10592
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/tool-use/tool-search-tool",
"status": "success",
"path": "en/agents-and-tools/tool-use/tool-search-tool.md",
"sha256": "4f5c5b8446026ebd4aa6870a9cbcb3e2d815369b81685b932053f8b7bee0f4a2",
"size": 30516
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/tool-use/programmatic-tool-calling",
"status": "success",
"path": "en/agents-and-tools/tool-use/programmatic-tool-calling.md",
"sha256": "8292ac109376f71c84cae4be278aab8a69c3e42156f2b5cdb0c5c38caecd8d18",
"size": 47478
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/tool-use/fine-grained-tool-streaming",
"status": "success",
"path": "en/agents-and-tools/tool-use/fine-grained-tool-streaming.md",
"sha256": "7655d35e839ae089521f5b8f641c30eb263f147e02c4b59e59037b900ebc0f75",
"size": 11528
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/context-windows",
"status": "success",
"path": "en/build-with-claude/context-windows.md",
"sha256": "ffa3ee57c040ef5983148b01c009c37a7c556be0f927ceaf3a87ef98301e52b0",
"size": 13497
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/compaction",
"status": "success",
"path": "en/build-with-claude/compaction.md",
"sha256": "04bd7adfcad797366dc0c58e848226a5fd4ac39d797e9e678d206dc051539c5f",
"size": 100572
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/context-editing",
"status": "success",
"path": "en/build-with-claude/context-editing.md",
"sha256": "7135d1992f2f5720f3320689914fc9bcee061638ceae9f899dd2a9a7c22c214e",
"size": 79741
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/prompt-caching",
"status": "success",
"path": "en/build-with-claude/prompt-caching.md",
"sha256": "6701067cdaa580f900fdfa40763bbc7e30084ea38de52a4f2b80ef428e18301a",
"size": 117892
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/token-counting",
"status": "success",
"path": "en/build-with-claude/token-counting.md",
"sha256": "62a9fd208c940b247cf0b36e3831c73da34a04664e5eba460805e85322fcb1c5",
"size": 43759
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/files",
"status": "success",
"path": "en/build-with-claude/files.md",
"sha256": "8f86a2e46a35c8ca2aacabe52da4f3eb09df3274b81a919d0bfc854b1cc2c7e8",
"size": 27867
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/pdf-support",
"status": "success",
"path": "en/build-with-claude/pdf-support.md",
"sha256": "ae0cf46a3bf8e1df0442f2a3dad9ab235aa76c91f9d75a19aa1aafcd4fc39de4",
"size": 38560
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/vision",
"status": "success",
"path": "en/build-with-claude/vision.md",
"sha256": "5d34bbc1299d32522b8bc35824e64629bba4b3d2f01d94107f6a6fcbc8a721bf",
"size": 50353
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/agent-skills/overview",
"status": "success",
"path": "en/agents-and-tools/agent-skills/overview.md",
"sha256": "a6ba167cbe3cd3d5464eaaad762d5b1ef8e17fca55b771fec376f740a7c4ed63",
"size": 18221
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/agent-skills/quickstart",
"status": "success",
"path": "en/agents-and-tools/agent-skills/quickstart.md",
"sha256": "2131bf5438c9e1bf5360b8ae7edcfdc1330f0de327644e5b007e557c94f9e934",
"size": 16770
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/agent-skills/best-practices",
"status": "success",
"path": "en/agents-and-tools/agent-skills/best-practices.md",
"sha256": "d1da876439d60b3c813f6fac53745a0b518a7cc4af7973e6e9318dda64bee23a",
"size": 41372
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/agent-skills/enterprise",
"status": "success",
"path": "en/agents-and-tools/agent-skills/enterprise.md",
"sha256": "6168dda2cca527a98efb5609477325d9cd4b4f5f2e297eb9aad5e563d3f5d9b8",
"size": 12590
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/skills-guide",
"status": "success",
"path": "en/build-with-claude/skills-guide.md",
"sha256": "b013a3cc251f20972d3f337fbbfdaa0f1ef5581689b916877e694d7a56fee79e",
"size": 153861
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/remote-mcp-servers",
"status": "success",
"path": "en/agents-and-tools/remote-mcp-servers.md",
"sha256": "42aeab377e3bd764a9661a58119f60b92a3da01cdcd96feefd935df1c4b47c98",
"size": 1271
},
{
"url": "https://platform.claude.com/docs/en/agents-and-tools/mcp-connector",
"status": "success",
"path": "en/agents-and-tools/mcp-connector.md",
"sha256": "3e2f7aa9524eebfb99133ff19548e1abd9b7ca568e6db726a4cd6aa38d134b26",
"size": 25256
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/prompt-engineering/overview",
"status": "success",
"path": "en/build-with-claude/prompt-engineering/overview.md",
"sha256": "1ab62e934b9215243b1088059525048e47411f6758feb4ad397f50afcf53ed6b",
"size": 2392
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/prompt-engineering/claude-prompting-best-practices",
"status": "success",
"path": "en/build-with-claude/prompt-engineering/claude-prompting-best-practices.md",
"sha256": "6de2d20ca96d4d0886a33080dfc79e56a66b60f6409dbc77ebe3afc99cf1e43f",
"size": 46888
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/prompt-engineering/prompting-tools",
"status": "success",
"path": "en/build-with-claude/prompt-engineering/prompting-tools.md",
"sha256": "91eb182b1eda6cfba521739fdfff08de17d773c224a735a66ec5f84e0ae7577f",
"size": 10236
},
{
"url": "https://platform.claude.com/docs/en/test-and-evaluate/develop-tests",
"status": "success",
"path": "en/test-and-evaluate/develop-tests.md",
"sha256": "f53d8f3ae7a46cae179b8b3472bf1de9e05060914a69baf5dc3579e3d08984cc",
"size": 27264
},
{
"url": "https://platform.claude.com/docs/en/test-and-evaluate/eval-tool",
"status": "success",
"path": "en/test-and-evaluate/eval-tool.md",
"sha256": "c4e35d37b91ddff07c53cb655c84cb1a13570de04328b3382dfeb96a65c4c614",
"size": 5418
},
{
"url": "https://platform.claude.com/docs/en/test-and-evaluate/strengthen-guardrails/reduce-latency",
"status": "success",
"path": "en/test-and-evaluate/strengthen-guardrails/reduce-latency.md",
"sha256": "322e8242bcffa4ca042bd15971e9d8b1b24b67ba86c98c1ad173d98f06b3872e",
"size": 5221
},
{
"url": "https://platform.claude.com/docs/en/test-and-evaluate/strengthen-guardrails/reduce-hallucinations",
"status": "success",
"path": "en/test-and-evaluate/strengthen-guardrails/reduce-hallucinations.md",
"sha256": "32760d421159fe18dc2c87912338efeab5582a43f66aa5a5d2adef3c7d834074",
"size": 3732
},
{
"url": "https://platform.claude.com/docs/en/test-and-evaluate/strengthen-guardrails/increase-consistency",
"status": "success",
"path": "en/test-and-evaluate/strengthen-guardrails/increase-consistency.md",
"sha256": "d52112e5bf7003f6f14a81bfcc6cd1ba4a012f3b4c394b3caf101bc25a1fcc43",
"size": 14351
},
{
"url": "https://platform.claude.com/docs/en/test-and-evaluate/strengthen-guardrails/mitigate-jailbreaks",
"status": "success",
"path": "en/test-and-evaluate/strengthen-guardrails/mitigate-jailbreaks.md",
"sha256": "19976860e0270df8f58366c46d9ac25e2f87b42d7ecf81d14c708508518aa110",
"size": 4699
},
{
"url": "https://platform.claude.com/docs/en/test-and-evaluate/strengthen-guardrails/reduce-prompt-leak",
"status": "success",
"path": "en/test-and-evaluate/strengthen-guardrails/reduce-prompt-leak.md",
"sha256": "8c621321a8b5942ce0ce990687a5973919c04482a300a7852f5dcaafcc74d41e",
"size": 3090
},
{
"url": "https://platform.claude.com/docs/en/about-claude/glossary",
"status": "success",
"path": "en/about-claude/glossary.md",
"sha256": "1405208f57672548ba8389fec2db9a8cd4ec5baa99ecb09a08956b7929a1c55b",
"size": 9009
},
{
"url": "https://platform.claude.com/docs/en/about-claude/use-case-guides/overview",
"status": "success",
"path": "en/about-claude/use-case-guides/overview.md",
"sha256": "43239e353a3665f7f27444745f3ff3b76094016a7948fb6de3b2565925404d0b",
"size": 1108
},
{
"url": "https://platform.claude.com/docs/en/about-claude/use-case-guides/ticket-routing",
"status": "success",
"path": "en/about-claude/use-case-guides/ticket-routing.md",
"sha256": "95526bdf0d535c79aaec136ed81f0ee05620a37d4c1c0cb168b1f39cc68935fa",
"size": 29672
},
{
"url": "https://platform.claude.com/docs/en/about-claude/use-case-guides/customer-support-chat",
"status": "success",
"path": "en/about-claude/use-case-guides/customer-support-chat.md",
"sha256": "9a135f75f371fe2595a34d32f83b8e396f7092f144911d5febed74503d566567",
"size": 33730
},
{
"url": "https://platform.claude.com/docs/en/about-claude/use-case-guides/content-moderation",
"status": "success",
"path": "en/about-claude/use-case-guides/content-moderation.md",
"sha256": "5ac9b36d2e8c4a555d348b5e72c211932939b3c2a79cef97aaa840f3cf15bc03",
"size": 25358
},
{
"url": "https://platform.claude.com/docs/en/about-claude/use-case-guides/legal-summarization",
"status": "success",
"path": "en/about-claude/use-case-guides/legal-summarization.md",
"sha256": "73f370cb258f687e0caa0c263bb940b5db95bb935652dfbc4f465ab8731d15ba",
"size": 21703
},
{
"url": "https://platform.claude.com/docs/en/release-notes/overview",
"status": "success",
"path": "en/release-notes/overview.md",
"sha256": "bbcc6c596363ee83889140306f2a92ed40d92607a774a818e4f710f97fabd7f5",
"size": 39703
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/overview",
"status": "success",
"path": "en/managed-agents/overview.md",
"sha256": "52ca456014fa9569533b03db76576d2eacd71135331ee46325384d32385dd23b",
"size": 5646
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/quickstart",
"status": "success",
"path": "en/managed-agents/quickstart.md",
"sha256": "47241d8199d753613c265485b5979dee5c12a0dfabe1b0bbe8c73a0916b8b2df",
"size": 23985
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/onboarding",
"status": "success",
"path": "en/managed-agents/onboarding.md",
"sha256": "8df87205bd38cb099e205174476958cccef251455d096cf8f06a653c12360de8",
"size": 4025
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/agent-setup",
"status": "success",
"path": "en/managed-agents/agent-setup.md",
"sha256": "8bd21f8a0b538392d4119bfcb3d89dc13a13eabc7f81ba2b65211ce74560570d",
"size": 13893
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/tools",
"status": "success",
"path": "en/managed-agents/tools.md",
"sha256": "21580e46b68fe6228271024f3f6ff39584d25b23fd088d58081c3485c3528ffc",
"size": 14484
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/mcp-connector",
"status": "success",
"path": "en/managed-agents/mcp-connector.md",
"sha256": "8401150371f4b464b65957e7751ed58c3838bfc35edd6db18bd4d983d0eed00c",
"size": 9724
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/permission-policies",
"status": "success",
"path": "en/managed-agents/permission-policies.md",
"sha256": "7f43690053ca80c01884703e05cbb7ab1076145190ff06b8b5330307525e9e34",
"size": 25580
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/skills",
"status": "success",
"path": "en/managed-agents/skills.md",
"sha256": "6f5a9018995628e2f9de0fdf6ac419acc1f5511c85a4df3e11add145f9695689",
"size": 5971
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/environments",
"status": "success",
"path": "en/managed-agents/environments.md",
"sha256": "8a675d3732d3cc83b01202691b254188e48344ea258442f31f887c53758562aa",
"size": 17133
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/cloud-containers",
"status": "success",
"path": "en/managed-agents/cloud-containers.md",
"sha256": "18695a12bff72365ab03c88e350b3fd6cc6a5a880c3cbbdb2443c2d4dec8ec77",
"size": 2166
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/sessions",
"status": "success",
"path": "en/managed-agents/sessions.md",
"sha256": "309763a513acee8a9987e88c4317e6bbd382fe9dc2bff98d3d3066e3ed91ec5b",
"size": 17271
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/events-and-streaming",
"status": "success",
"path": "en/managed-agents/events-and-streaming.md",
"sha256": "a74e7e8d362c6e80f9aa4fb67467e4b35cc51a5eef4913e952a11709c08ef83f",
"size": 51864
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/define-outcomes",
"status": "success",
"path": "en/managed-agents/define-outcomes.md",
"sha256": "8d50c2a236b5121a8644f2dae78287086870ad1e91e2de5145d8b047f168ae16",
"size": 19751
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/vaults",
"status": "success",
"path": "en/managed-agents/vaults.md",
"sha256": "b3a92fd98d4397e2da1cbaee4832ce498196d6a6d640341d72328578cb11a0b1",
"size": 22217
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/github",
"status": "success",
"path": "en/managed-agents/github.md",
"sha256": "a8b8300e85a331e0cf8b98c1226cb3e212533695e228798bb579fe4ecfdcb780",
"size": 23524
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/files",
"status": "success",
"path": "en/managed-agents/files.md",
"sha256": "b505fffa4ff5b00cf1fa9fa88c95d7fa4e32f928e93394cb1a933e4159cdc29c",
"size": 18510
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/memory",
"status": "success",
"path": "en/managed-agents/memory.md",
"sha256": "15631817eacdac7aefc137bd0f3f312e3b3eddee601a3e086e470bf2b93e00fe",
"size": 37063
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/multi-agent",
"status": "success",
"path": "en/managed-agents/multi-agent.md",
"sha256": "f4632ec8ed31078f1247afcd7e81d9952cb0e7a50741153fbe936bc947135e7b",
"size": 24156
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/administration-api",
"status": "success",
"path": "en/build-with-claude/administration-api.md",
"sha256": "d23302bcb818d5fb7f2101d31f87831f46590234d23d6870e9c9f9ab8f2479b3",
"size": 7811
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/workspaces",
"status": "success",
"path": "en/build-with-claude/workspaces.md",
"sha256": "713ddcfccb42812a5501d80f2b0defa6df26f742ca022265a8a521b2730846c4",
"size": 12472
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/data-residency",
"status": "success",
"path": "en/build-with-claude/data-residency.md",
"sha256": "d515a5238cb4e7c5676c5de9b86bff73c733899bc3c24ae8d7a877e51d4339ed",
"size": 8703
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/api-and-data-retention",
"status": "success",
"path": "en/build-with-claude/api-and-data-retention.md",
"sha256": "ec540a13b7cdcbd985832a22fc2a8fd74468bc4db90d500a035fef4d3dcc1305",
"size": 22566
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/claude-code-analytics-api",
"status": "success",
"path": "en/build-with-claude/claude-code-analytics-api.md",
"sha256": "8a6bec99447e6d2fa9928dcc4b63faf68c78bb4e081ec5c81d1e9ad64f5f4722",
"size": 11250
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/usage-cost-api",
"status": "success",
"path": "en/build-with-claude/usage-cost-api.md",
"sha256": "eb143a3d95490552ba968b0cacd7a603ba575873071139facb27a68c4a1e58f4",
"size": 13322
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/claude-on-amazon-bedrock",
"status": "success",
"path": "en/build-with-claude/claude-on-amazon-bedrock.md",
"sha256": "e8ca8b67215301e464767bf3763b29ab1151927fd03f67ac2ee98ee029c44267",
"size": 29048
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/claude-in-amazon-bedrock-research-preview",
"status": "success",
"path": "en/build-with-claude/claude-in-amazon-bedrock-research-preview.md",
"sha256": "4299facffa25025242890227d1e3025ff2c707b6729b73175863c5adce5861d5",
"size": 11799
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/claude-in-microsoft-foundry",
"status": "success",
"path": "en/build-with-claude/claude-in-microsoft-foundry.md",
"sha256": "2a7584e48b73fd7e2f96d7c044ae185dea1309a188d8e1df432cb1f44c8316d0",
"size": 21152
},
{
"url": "https://platform.claude.com/docs/en/build-with-claude/claude-on-vertex-ai",
"status": "success",
"path": "en/build-with-claude/claude-on-vertex-ai.md",
"sha256": "1baa98f1e8f0407865d8b7671bd9c8b60353880f708486240e6c8a3441a41435",
"size": 23609
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/migration",
"status": "success",
"path": "en/managed-agents/migration.md",
"sha256": "ccabe72569b243603adc6bd5dd6b8b4ce95abde6ffb0ef88dd2e6de4a0d172a3",
"size": 27723
},
{
"url": "https://platform.claude.com/docs/en/managed-agents/observability",
"status": "success",
"path": "en/managed-agents/observability.md",
"sha256": "4cebacf6c95de773d96a86ad458ff854fb6fe169f9cc9073faf7b74200181f9e",
"size": 13162
},
{
"url": "https://platform.claude.com/docs/en/about-claude/models/overview",
"status": "success",
"path": "en/about-claude/models/overview.md",
"sha256": "db4358115c019eb7eb23012ec34de4ba0683159aa25a96b626f8f0e5d565c560",
"size": 10037
},
{
"url": "https://platform.claude.com/docs/en/about-claude/models/choosing-a-model",
"status": "success",
"path": "en/about-claude/models/choosing-a-model.md",
"sha256": "96c928e062ca62bc43029b5b68166cb7c0e2e46a22f25ff3de68cc1c722813d2",
"size": 4348
},
{
"url": "https://platform.claude.com/docs/en/about-claude/models/whats-new-claude-4-6",
"status": "success",
"path": "en/about-claude/models/whats-new-claude-4-6.md",
"sha256": "da607a8b04577fae1d51236c8e917de343a6783b4858d95bc4473c88cb33b7af",
"size": 9825
},
{
"url": "https://platform.claude.com/docs/en/about-claude/models/migration-guide",
"status": "success",
"path": "en/about-claude/models/migration-guide.md",
"sha256": "2ced9168d6a1abc93e792020574330c580ae009a1e2a687bb668bf8dcf69a906",
"size": 46740
},
{
"url": "https://platform.claude.com/docs/en/about-claude/model-deprecations",
"status": "success",
"path": "en/about-claude/model-deprecations.md",
"sha256": "cebc827b87f099d1c5f132fb76e95cc707451139199787123018263346d1c403",
"size": 9176
},
{
"url": "https://platform.claude.com/docs/en/resources/overview",
"status": "success",
"path": "en/resources/overview.md",
"sha256": "68da2bcc5c51e039029dd8625879914a2671e5693762a7dcccc9a6ac76c3d5aa",
"size": 3177
},
{
"url": "https://platform.claude.com/docs/en/release-notes/system-prompts",
"status": "success",
"path": "en/release-notes/system-prompts.md",
"sha256": "688eebd75e8703bbe002655b7fbdb37215ea6d8276e5fff6c8370fe6b8c81d40",
"size": 369074
},
{
"url": "https://platform.claude.com/docs/en/about-claude/pricing",
"status": "success",
"path": "en/about-claude/pricing.md",
"sha256": "2bce1e4f67f569d3dfd82c39ef9b1ddaefc8bd99697788170184b606dc32ffc6",
"size": 22439
},
{
"url": "https://platform.claude.com/docs/en/api/client-sdks",
"status": "success",
"path": "en/api/client-sdks.md",
"sha256": "98ef0394646957eb5500e0479e992c15c556809d2751de16e113dcc048696e37",
"size": 8505
},
{
"url": "https://platform.claude.com/docs/en/api/sdks/cli",
"status": "success",
"path": "en/api/sdks/cli.md",
"sha256": "c0ef693ee27cf5b886346948a787b9ee08339c163942f72ca02e3091dd18cf09",
"size": 16652
},
{
"url": "https://platform.claude.com/docs/en/api/sdks/python",
"status": "success",
"path": "en/api/sdks/python.md",
"sha256": "493ba93faf691b8e3db31757a9d925008a7d32fbe72b37c439469b0ac0251e50",
"size": 24258
},
{
"url": "https://platform.claude.com/docs/en/api/sdks/typescript",
"status": "success",
"path": "en/api/sdks/typescript.md",
"sha256": "17c4d30b92537ff281a95931402c2ca5d45c09f4812bddf9b922a8a2855738f1",
"size": 28713
},
{
"url": "https://platform.claude.com/docs/en/api/sdks/java",
"status": "success",
"path": "en/api/sdks/java.md",
"sha256": "19eaf1fe30959fd6eb4b2f50964d2ec35e643b147aa34b16e84e922fcea2c913",
"size": 45233
},
{
"url": "https://platform.claude.com/docs/en/api/sdks/go",
"status": "success",
"path": "en/api/sdks/go.md",
"sha256": "35afe453460a44d3e875f99f0c926f93937b235c978ee3f861129c3733681ebf",
"size": 27673
},
{
"url": "https://platform.claude.com/docs/en/api/sdks/ruby",
"status": "success",
"path": "en/api/sdks/ruby.md",
"sha256": "de860a0859e8270a7096425c827b146049fbfa04258155cdfc7a0a965778b307",
"size": 13318
},
{
"url": "https://platform.claude.com/docs/en/api/sdks/csharp",
"status": "success",
"path": "en/api/sdks/csharp.md",
"sha256": "a3e86414a12cd79dd09c644de418fb8abbc3abeab21b73bfbd93a5626c7083cb",
"size": 14640
},
{
"url": "https://platform.claude.com/docs/en/api/sdks/php",
"status": "success",
"path": "en/api/sdks/php.md",
"sha256": "d0496b4436ad3fd6619b40d89d196dce45fa829257e9bd00bc4658f6987cb4ec",
"size": 7018
},
{
"url": "https://platform.claude.com/docs/en/api/openai-sdk",
"status": "success",
"path": "en/api/openai-sdk.md",
"sha256": "d1763cb7d8e83847f9790352e65c133409d22ec420b58dbb92a8fd6516500e41",
"size": 12088
},
{
"url": "https://platform.claude.com/docs/en/api/overview",
"status": "success",
"path": "en/api/overview.md",
"sha256": "a90d405ea6b3a492e13b4c7f5fc80c11d66bdf7c434556f9c258178b2d46319f",
"size": 7543
},
{
"url": "https://platform.claude.com/docs/en/api/beta-headers",
"status": "success",
"path": "en/api/beta-headers.md",
"sha256": "19103d593aea77c0ae69aa9e01385b93d91dded83b163d12f0e8bfc3039c5818",
"size": 3606
},
{
"url": "https://platform.claude.com/docs/en/api/errors",
"status": "success",
"path": "en/api/errors.md",
"sha256": "663e1ead08480e0a38a8e7dc85e80e49bab7c5fb6eff5c5d4b6f536ff0c23684",
"size": 6945
},
{
"url": "https://platform.claude.com/docs/en/api/rate-limits",
"status": "success",
"path": "en/api/rate-limits.md",
"sha256": "f55461470e4f0952eda3c20b533c6506e56abf29f72d8bc8034c6a05cb6e2b73",
"size": 26686
},
{
"url": "https://platform.claude.com/docs/en/api/service-tiers",
"status": "success",
"path": "en/api/service-tiers.md",
"sha256": "2e86065494139b593e4798f4b67e327653843379fec766c7767737e490477444",
"size": 5582
},
{
"url": "https://platform.claude.com/docs/en/api/versioning",
"status": "success",
"path": "en/api/versioning.md",
"sha256": "f7848bbf23822ff845b28fbe28f5c2ad26627d93f8fde03b7d48b6c7e254acac",
"size": 1657
},
{
"url": "https://platform.claude.com/docs/en/api/ip-addresses",
"status": "success",
"path": "en/api/ip-addresses.md",
"sha256": "cc3c763ed7e1903ab2e670e5cf9ef8a578ce59194dcf9b1e57626762c2eafec0",
"size": 913
},
{
"url": "https://platform.claude.com/docs/en/api/supported-regions",
"status": "success",
"path": "en/api/supported-regions.md",
"sha256": "efff04f8b82996c132cd66435bcaa55ec0066240de3d3e8222af1399988aea7c",
"size": 2241
},
{
"url": "https://platform.claude.com/docs/en/api/completions",
"status": "success",
"path": "en/api/completions.md",
"sha256": "27371959f2510c4be9426fa41f374da2e1fdf48d6b2ce05fa13f5f2a90352638",
"size": 11893
},
{
"url": "https://platform.claude.com/docs/en/api/completions/create",
"status": "success",
"path": "en/api/completions/create.md",
"sha256": "bc47553c1a450bd726d322f277716f346dce3d9fe42b76f3641b7c5856e7086f",
"size": 9199
},
{
"url": "https://platform.claude.com/docs/en/api/messages",
"status": "success",
"path": "en/api/messages.md",
"sha256": "444d6858f3d62fa6e4058f3eff76fff40ccb0c222e70b8fb37dde95517cc2051",
"size": 898856
},
{
"url": "https://platform.claude.com/docs/en/api/messages/create",
"status": "success",
"path": "en/api/messages/create.md",
"sha256": "aafae94a53651303c80eb77b1531d46ff6d92f5215a01a12743d9fe4f3f99136",
"size": 122360
},
{
"url": "https://platform.claude.com/docs/en/api/messages/count_tokens",
"status": "success",
"path": "en/api/messages/count_tokens.md",
"sha256": "10be790030adbfb0c622fc846f8469431644392d82d8bac6d17fc3fa23b1b550",
"size": 96847
},
{
"url": "https://platform.claude.com/docs/en/api/messages/batches",
"status": "success",
"path": "en/api/messages/batches.md",
"sha256": "95729648967e950b904959a9f378de9cea716005aac2670b20aed34ac9d86fd9",
"size": 236229
},
{
"url": "https://platform.claude.com/docs/en/api/messages/batches/create",
"status": "success",
"path": "en/api/messages/batches/create.md",
"sha256": "89b1dc1d5cbf4243142c8e23ef561a12348eed489f804cc8a22ed265a640bbaa",
"size": 111484
},
{
"url": "https://platform.claude.com/docs/en/api/messages/batches/retrieve",
"status": "success",
"path": "en/api/messages/batches/retrieve.md",
"sha256": "8b771332536ec16e9b397153a1239441d453fc8e0b45adf98eea45cac14b5148",
"size": 3447
},
{
"url": "https://platform.claude.com/docs/en/api/messages/batches/list",
"status": "success",
"path": "en/api/messages/batches/list.md",
"sha256": "f5de1aac629dd2df55421d69a71e75b3c442983eb5760aa6b7d6d0a19f18abaa",
"size": 3959
},
{
"url": "https://platform.claude.com/docs/en/api/messages/batches/cancel",
"status": "success",
"path": "en/api/messages/batches/cancel.md",
"sha256": "2140b04da15b463641d01f22027327707d6eb3a1803f6940c75a9d3943c65400",
"size": 3784
},
{
"url": "https://platform.claude.com/docs/en/api/messages/batches/delete",
"status": "success",
"path": "en/api/messages/batches/delete.md",
"sha256": "fe9c8a3d0bd2aefdbe5a086a2e45db2e835609b2055871c74bfff6586032031e",
"size": 906
},
{
"url": "https://platform.claude.com/docs/en/api/messages/batches/results",
"status": "success",
"path": "en/api/messages/batches/results.md",
"sha256": "d78446bfd805b16814c6aa1a910d1c7fd008c6c36fe8c363895878a949d4a681",
"size": 28706
},
{
"url": "https://platform.claude.com/docs/en/api/models",
"status": "success",
"path": "en/api/models.md",
"sha256": "4198291c1d799788a5ed28e6063a03290d5490737ca2eadfd040703b1fd32f97",
"size": 23214
},
{
"url": "https://platform.claude.com/docs/en/api/models/list",
"status": "success",
"path": "en/api/models/list.md",
"sha256": "b413cb243df9ffa014e3316a013133478b23502acc9ad59fec66b3c7b4870f97",
"size": 6468
},
{
"url": "https://platform.claude.com/docs/en/api/models/retrieve",
"status": "success",
"path": "en/api/models/retrieve.md",
"sha256": "3fb773e9f6be4c6633509c76960c5ef143b0e8ba6ee4044b2983b8aeb8a52b7d",
"size": 5817
},
{
"url": "https://platform.claude.com/docs/en/api/beta",
"status": "success",
"path": "en/api/beta.md",
"sha256": "372a79f98eafa65183b885070818472e571dbcd6c2babb85bb8c1f49a9451336",
"size": 1834639
},
{
"url": "https://platform.claude.com/docs/en/api/beta/models",
"status": "success",
"path": "en/api/beta/models.md",
"sha256": "a2ec582f9dd86fe8c14b5f75c8c55a72ce422c1b1c8af66b072908620aa492c6",
"size": 23649
},
{
"url": "https://platform.claude.com/docs/en/api/beta/models/list",
"status": "success",
"path": "en/api/beta/models/list.md",
"sha256": "ae1bbbc10a3d081aef6758f55ef7efb21e236669fb4e763cf6a71d7be4d1d14d",
"size": 6552
},
{
"url": "https://platform.claude.com/docs/en/api/beta/models/retrieve",
"status": "success",
"path": "en/api/beta/models/retrieve.md",
"sha256": "14ec84a11d7cfcc5a03cba392d1203f4a9aacf3636ce7536af9826c7607fee60",
"size": 5901
},
{
"url": "https://platform.claude.com/docs/en/api/beta/messages",
"status": "success",
"path": "en/api/beta/messages.md",
"sha256": "f7b8dc6cfd00d1b8de177aa57116406dd9dd622c3b8a6cd9cad7f9cba10c794b",
"size": 1207039
},
{
"url": "https://platform.claude.com/docs/en/api/beta/messages/create",
"status": "success",
"path": "en/api/beta/messages/create.md",
"sha256": "c2c81bc91941d92cb3b8cfbc42163ecd041fee0237a29d628380e35e945b260d",
"size": 164022
},
{
"url": "https://platform.claude.com/docs/en/api/beta/messages/count_tokens",
"status": "success",
"path": "en/api/beta/messages/count_tokens.md",
"sha256": "e26ffcf935d1935b3036be04ffb713c1943a1ad05dbf469258aec900d91e173d",
"size": 125170
},
{
"url": "https://platform.claude.com/docs/en/api/beta/messages/batches",
"status": "success",
"path": "en/api/beta/messages/batches.md",
"sha256": "061b08260e402ed459974e07ff56b24550cd7075e12c163147010bf238f4884e",
"size": 329630
},