-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathcontent-manifest.json
More file actions
1615 lines (1615 loc) · 68 KB
/
Copy pathcontent-manifest.json
File metadata and controls
1615 lines (1615 loc) · 68 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
{
"schema_version": 1,
"documents": [
{
"id": "add-a-python-api",
"type": "playbook",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-02",
"locales": [
{
"lang": "en-US",
"path": "playbooks/add-an-api/README.md",
"title": "Add or Change a Python API",
"summary": "Define the public contract first, then implement and verify success, error, and compatibility behavior.",
"sha256": "75d12e8f14e5d5450fb7eeff10c11d86477758ae46a55fa8954f9105eb26d730"
},
{
"lang": "zh-CN",
"path": "playbooks/add-an-api/README_cn.md",
"title": "增加或修改 Python API",
"summary": "先定义公共契约,再实现并验证成功、错误和兼容性行为。",
"sha256": "5c844ed892f4bfa591f11a7be9a329306c3b191b645935fe13bb3a536067b691"
}
]
},
{
"id": "ai-coding-context-budget",
"type": "guide",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-02",
"locales": [
{
"lang": "en-US",
"path": "guides/ai-coding/context-budget.md",
"title": "Context Budgeting and Bounded Tasks for Coding Agents",
"summary": "Maximize coding agent accuracy by controlling context size, writing explicit task contracts, and enforcing automated verification loops.",
"sha256": "61f2cb3e8629978ddf69d0e9800b4bafde26467b1e44f8ac26384b9ad10a80cc"
},
{
"lang": "zh-CN",
"path": "guides/ai-coding/context-budget_cn.md",
"title": "Coding Agent 上下文预算与精准任务设计",
"summary": "通过控制上下文体积、编写明确任务契约与建立自动化验证闭环,最大化 Agent 编码准确率。",
"sha256": "302168b4422f89d79fa38b63c1a49c5691ad170f684f6523df490c2bf2670be6"
}
]
},
{
"id": "course-agent-rules",
"type": "course",
"content_version": 2,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/agent-rules-single-source/COURSE.md",
"title": "One source of truth for agent rules",
"summary": "Stop maintaining diverging AGENTS.md, CLAUDE.md, and .cursorrules files — build a checker that proves your repository has exactly one rule source, taught hands-on with your coding agent.",
"sha256": "d7dd7ed26db699c576046c2e103d6d94a2299805dca0d6b6153a4d6ccafcba6e"
},
{
"lang": "zh-CN",
"path": "courses/agent-rules-single-source/COURSE_cn.md",
"title": "Agent 规则的单一真源",
"summary": "不再同时维护彼此打架的 AGENTS.md、CLAUDE.md 与 .cursorrules——亲手构建一个能证明仓库只有一处规则真源的检查器,由你的编码 Agent 授课。",
"sha256": "bf81ca5856328e1ef4f204707ad002f49704486ab2589d3b52cf366285e8222f"
}
]
},
{
"id": "course-agent-rules-l01",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/agent-rules-single-source/lessons/L01.md",
"title": "Measure the drift you already have",
"summary": "Run the checker against the three scenario repositories and read drift as a test failure, not a vibe.",
"sha256": "5daf164c4b622a483df4bbf1e1df4a5753779fb43e6f70a9456124c959e012e6"
},
{
"lang": "zh-CN",
"path": "courses/agent-rules-single-source/lessons/L01_cn.md",
"title": "量化你已经存在的漂移",
"summary": "对三个场景仓库运行检查器,把漂移读成测试失败,而不是一种感觉。",
"sha256": "a935a17b1e9d09f2f161580f480221ab36eb079c86711524bdf5e4508ed069d5"
}
]
},
{
"id": "course-agent-rules-l02",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/agent-rules-single-source/lessons/L02.md",
"title": "Decide the source of truth",
"summary": "AGENTS.md becomes the one file agents read; everything else is a pointer or a copy — decide, then write it down.",
"sha256": "298d598f44af59a493f44a402d3faf9ab384a4f83088509bcfae70fc7a006999"
},
{
"lang": "zh-CN",
"path": "courses/agent-rules-single-source/lessons/L02_cn.md",
"title": "确定唯一真源",
"summary": "AGENTS.md 成为 Agent 唯一阅读的文件;其余都只能是指针或副本——先决定,再写下来。",
"sha256": "1a9a3a076663df37d3f45c110ad4de1b805db7a220dcdefb413d9eb241748ce1"
}
]
},
{
"id": "course-agent-rules-l03",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/agent-rules-single-source/lessons/L03.md",
"title": "Drive a bounded change, test by test",
"summary": "Make the starter detect source, pointer, copy, and drift — one failing test group at a time.",
"sha256": "b1b6dacafce0158965fc1721910514ceede367fd1b0d213adb8163d9e72dc4fc"
},
{
"lang": "zh-CN",
"path": "courses/agent-rules-single-source/lessons/L03_cn.md",
"title": "按测试驱动一次有边界的变更",
"summary": "让 starter 依次识别真源、指针、副本与漂移——一次一组失败测试。",
"sha256": "4a58994b8080514e435124259416d325af4622275e5e3a70ecc0564f8949969d"
}
]
},
{
"id": "course-agent-rules-l04",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/agent-rules-single-source/lessons/L04.md",
"title": "Verify and wire it in",
"summary": "Prove both verifier directions, run all three skins, then add the checker to your repository's review loop.",
"sha256": "24245a7159551c4565456f9f702a37595dcb895a2b153f6ea9191d9e2229521d"
},
{
"lang": "zh-CN",
"path": "courses/agent-rules-single-source/lessons/L04_cn.md",
"title": "验证并接入流程",
"summary": "证明验证器双向通过、跑完三个皮肤,然后把检查器接入你仓库的审查环。",
"sha256": "bcdc8ecf6d6f864c157f81339f73517e8f3b76d94b23e8446d9737d415f3882b"
}
]
},
{
"id": "course-agent-rules-l05",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/agent-rules-single-source/lessons/L05.md",
"title": "Apply this to your repository",
"summary": "One AGENTS.md, thin pointers everywhere else, and a failing check when it breaks.",
"sha256": "ce747d851a4844298b00415593f2153510605f0f0a69f3e289e7acb3370a0082"
},
{
"lang": "zh-CN",
"path": "courses/agent-rules-single-source/lessons/L05_cn.md",
"title": "把这套方法带回你的仓库",
"summary": "一个 AGENTS.md,其余全是瘦指针,一旦破坏检查就失败。",
"sha256": "f3dd9ef2c01e90f90897ebbdf7c048961fed8469173fa8a92bb1617eb353213f"
}
]
},
{
"id": "course-claude-code",
"type": "course",
"content_version": 2,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/hands-on-python-with-claude-code/COURSE.md",
"title": "Hands-on Python with Claude Code",
"summary": "An agent-taught course that takes you from a cloned folder to a tested, verified Python report tool using Claude Code — including the task contract, the bounded change, and the objective pass/fail evidence.",
"sha256": "50165b3b9aa9979d565ab34057977b7b7264cec739be1900ec3988876731c132"
},
{
"lang": "zh-CN",
"path": "courses/hands-on-python-with-claude-code/COURSE_cn.md",
"title": "用 Claude Code 实战 Python",
"summary": "一门由 Agent 授课的课程:从下载课程文件夹到交付一个经过测试与验证的 Python 报表工具——包括任务契约、最小变更和客观的通过/失败证据。",
"sha256": "8c73c31d5901ff9bbe9e79e97342688b6737657ab05f1b71a767125ca398e2d3"
}
]
},
{
"id": "course-claude-code-l01",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/hands-on-python-with-claude-code/lessons/L01.md",
"title": "Lesson 1: Reproduce the failure before you fix anything",
"summary": "Clone the folder, meet the starter, and make the failure objective with verify.py — the habit that separates \"it runs\" from \"it ships\".",
"sha256": "824df537303329d4b3b48e3d4e03402a3025e8de6d38f85d2e8e8701b3a700c6"
},
{
"lang": "zh-CN",
"path": "courses/hands-on-python-with-claude-code/lessons/L01_cn.md",
"title": "第 1 课:先复现故障,再谈修复",
"summary": "打开课程文件夹,认识 starter,用 verify.py 把\"坏了\"变成客观证据——这是\"能跑\"与\"能交付\"的分水岭。",
"sha256": "055e8764b490399ce1a107448f5a8e9471aabba91d239448894f96d76a74b3f7"
}
]
},
{
"id": "course-claude-code-l02",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/hands-on-python-with-claude-code/lessons/L02.md",
"title": "Lesson 2: Write the task contract before the change",
"summary": "Turn \"make it better\" into a bounded, testable contract — the single highest-leverage skill for working with coding agents.",
"sha256": "61e96ecb739482e545f4480a6dd4c6ed6017e2d41cdb268156ec91131de2e320"
},
{
"lang": "zh-CN",
"path": "courses/hands-on-python-with-claude-code/lessons/L02_cn.md",
"title": "第 2 课:动手之前先写任务契约",
"summary": "把\"优化一下\"变成有边界、可测试的契约——这是与编码 Agent 协作杠杆最大的一项技能。",
"sha256": "83944c2772438743f920ad177cbce098f8777a3c12d267c74081be0c2280493b"
}
]
},
{
"id": "course-claude-code-l03",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/hands-on-python-with-claude-code/lessons/L03.md",
"title": "Lesson 3: Drive a bounded change, test by test",
"summary": "Let the agent edit the starter under contract — smallest change, no new dependencies, red to green one group at a time.",
"sha256": "8fe1f81ea3aeaa03d63bd2d016248df0178846c6100644f067241bea4bddf792"
},
{
"lang": "zh-CN",
"path": "courses/hands-on-python-with-claude-code/lessons/L03_cn.md",
"title": "第 3 课:按测试驱动一次有边界的变更",
"summary": "让 Agent 在契约约束下修改 starter——最小变更、不新增依赖、一次一组测试从红到绿。",
"sha256": "136f483cfaefbdf7fea0328973a301faad639fb2edc0b633fbe037524afb9aef"
}
]
},
{
"id": "course-claude-code-l04",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/hands-on-python-with-claude-code/lessons/L04.md",
"title": "Lesson 4: Verify like an engineer, review like a skeptic",
"summary": "Run the full verification loop, review the agent's diff for scope and side effects, and record what you did — and did not — prove.",
"sha256": "ec724dbdb8172c284a6c970c499056d084b5e36bb3d3e6b4a32f5c14bb39494c"
},
{
"lang": "zh-CN",
"path": "courses/hands-on-python-with-claude-code/lessons/L04_cn.md",
"title": "第 4 课:像工程师一样验证,像怀疑者一样审查",
"summary": "跑完整验证闭环,审查 Agent 的 diff 是否越界、有无副作用,并如实记录证明了什么、没证明什么。",
"sha256": "0c1f0532498a4f78a5c1255ad4309138890deed62039912677e6e44e5410ba23"
}
]
},
{
"id": "course-claude-code-l05",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/hands-on-python-with-claude-code/lessons/L05.md",
"title": "Lesson 5: Apply this to your own project",
"summary": "Port the workflow — not the code — to one script you own: contract, isolation, rounding, atomic writes, and an honest verification record.",
"sha256": "740a67fa1ce064eeca4b870578f036d4d241a96e730a9898fbc5d720e9bdcf79"
},
{
"lang": "zh-CN",
"path": "courses/hands-on-python-with-claude-code/lessons/L05_cn.md",
"title": "第 5 课:把这套方法带回你自己的项目",
"summary": "迁移工作流——而不是代码——到你拥有的一个脚本上:契约、错误隔离、舍入、原子写入,以及一份诚实的验证记录。",
"sha256": "62bf3fe25f4b27f6aff3b1bddded715f2fdd2ac674d2d2c69144b34d4648b41a"
}
]
},
{
"id": "course-codex-cli",
"type": "course",
"content_version": 2,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/hands-on-with-openai-codex-cli/COURSE.md",
"title": "Hands-on with OpenAI Codex CLI",
"summary": "The same verified Python workflow as the Claude Code course — task contract, bounded change, objective verify.py evidence — taught hands-on with the OpenAI Codex CLI instead.",
"sha256": "48e81f530f58ef69fe92e6312b08f01b4661f311cf07371809ce206e2eecd474"
},
{
"lang": "zh-CN",
"path": "courses/hands-on-with-openai-codex-cli/COURSE_cn.md",
"title": "OpenAI Codex CLI 实战",
"summary": "与 Claude Code 课程相同的已验证 Python 工作流——任务契约、最小变更、客观 verify.py 证据——改用 OpenAI Codex CLI 完成实战。",
"sha256": "bbdf5d8a71d8243f1cb7a3c30d2aa4ddb656cb932d36aaae3d543e3b5f7ea3c2"
}
]
},
{
"id": "course-codex-cli-l01",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/hands-on-with-openai-codex-cli/lessons/L01.md",
"title": "Lesson 1: Reproduce the failure with Codex in the loop",
"summary": "Run the verifier both ways, map each failing test to a real-world failure class, and learn how to hand the folder to Codex.",
"sha256": "1c316f7b5575741ce42c299d89e2075e10a162099c53cd6344e75ccf2487a5cf"
},
{
"lang": "zh-CN",
"path": "courses/hands-on-with-openai-codex-cli/lessons/L01_cn.md",
"title": "第 1 课:让 Codex 进环,先复现故障",
"summary": "双向运行验证器,把每个失败测试对应到真实故障,并学会如何把文件夹交给 Codex。",
"sha256": "878513b4bb6218655088cdec3fa873c4318e9c729b86ce176e5b14a93b8eee9a"
}
]
},
{
"id": "course-codex-cli-l02",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/hands-on-with-openai-codex-cli/lessons/L02.md",
"title": "Lesson 2: Write the task contract before the change",
"summary": "Turn \"make it better\" into bounded, testable statements — the single highest-leverage skill for driving Codex.",
"sha256": "e3d75d35a8585c4765f76f506d907c65136359306657943b1c657239495bab07"
},
{
"lang": "zh-CN",
"path": "courses/hands-on-with-openai-codex-cli/lessons/L02_cn.md",
"title": "第 2 课:动手之前先写任务契约",
"summary": "把“优化一下”变成有边界、可测试的陈述——驱动 Codex 杠杆最大的一项技能。",
"sha256": "9c0cc619fe1e9c4ec07733e02d7832c11709dcb491cbf0e3a2f574dc2dc47ea2"
}
]
},
{
"id": "course-codex-cli-l03",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/hands-on-with-openai-codex-cli/lessons/L03.md",
"title": "Lesson 3: Drive a bounded change, test by test",
"summary": "Supervise Codex through seven small diffs — smallest change, no new dependencies, one failing test group at a time.",
"sha256": "41adb2f3560d29b38d7d1a8254a51197323637e589aa463e4c8417f9c61e8686"
},
{
"lang": "zh-CN",
"path": "courses/hands-on-with-openai-codex-cli/lessons/L03_cn.md",
"title": "第 3 课:按测试驱动一次有边界的变更",
"summary": "监督 Codex 完成七个小 diff——最小变更、不新增依赖、一次一组失败测试。",
"sha256": "4f440f36af4c3eba76bd307085a3bf48020931b168b5a04edc9a6c190ec02c10"
}
]
},
{
"id": "course-codex-cli-l04",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/hands-on-with-openai-codex-cli/lessons/L04.md",
"title": "Lesson 4: Verify like an engineer, review like a skeptic",
"summary": "Complete the evidence loop — both verification directions, all three skins, a scope-creep diff review, and a written record of what is not proven.",
"sha256": "ac228870e7c4ef0df522664c27fb7895535c72090833c59c86e8b33e527a2703"
},
{
"lang": "zh-CN",
"path": "courses/hands-on-with-openai-codex-cli/lessons/L04_cn.md",
"title": "第 4 课:像工程师一样验证,像怀疑者一样审查",
"summary": "完成证据闭环——双向验证、三个皮肤、范围蔓延 diff 审查,以及一份写明未证明内容的记录。",
"sha256": "cb9d5ba62f101fa47d03740f5806930dd51986e310be04f255e93b422f9e1edc"
}
]
},
{
"id": "course-codex-cli-l05",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/hands-on-with-openai-codex-cli/lessons/L05.md",
"title": "Lesson 5: Apply this to your own project",
"summary": "Port the workflow — not the code — to one script you own, with tests, a verify command, and honest limits.",
"sha256": "352ea47aa0ae5093e3d4f38f0f82218323fadf393dcc4da0f63a6851ea9dd6b4"
},
{
"lang": "zh-CN",
"path": "courses/hands-on-with-openai-codex-cli/lessons/L05_cn.md",
"title": "第 5 课:把这套方法带回你自己的项目",
"summary": "迁移工作流——而不是代码——到你拥有的一个脚本上,附测试、验证命令与诚实的局限说明。",
"sha256": "61565be72cae4e5ff14b5059bb108363d750a41e22073003d0d4de357a6944eb"
}
]
},
{
"id": "course-da-eda",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-eda/COURSE.md",
"title": "Exploratory Data Analysis with an Agent",
"summary": "A challenge course — point your agent at a messy shop export and produce a verified EDA summary (results.json) whose numbers are checked against ground truth. First non-stdlib course in the catalog; pandas is managed with uv.",
"sha256": "3d5a7d05b6b48a667eeca51f7c6232e95c231d7cb4f78d3826de02c6a0a55b85"
},
{
"lang": "zh-CN",
"path": "courses/da-eda/COURSE_cn.md",
"title": "用 Agent 做探索性数据分析",
"summary": "挑战式课程——让你的 Agent 处理一份脏的商店导出数据,产出一份经过真值校验的 EDA 摘要(results.json)。目录中第一门非标准库课程;pandas 由 uv 管理。",
"sha256": "ef5272a728fc540f4bedb3c650a1789d50a32cc90883aacd3202ba10360b4f00"
}
]
},
{
"id": "course-da-eda-l01",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-eda/lessons/L01.md",
"title": "Challenge 01: What messy data looks like",
"summary": "Profile the shop export before touching pandas: exact duplicates, unparseable amounts, one bad date — count the dirt first.",
"sha256": "8c57798d7811e0ee23535e79bd03d17c963d25396892b78eb69047b4e290bfa4"
},
{
"lang": "zh-CN",
"path": "courses/da-eda/lessons/L01_cn.md",
"title": "挑战 01:脏数据长什么样",
"summary": "动手写 pandas 之前先给商店导出数据画像:完全重复、无法解析的金额、一条坏日期——先把脏数清楚。",
"sha256": "735a4a37b713c45c4ae342afcddbf7f9410dfd8019b5833b8db608a673153448"
}
]
},
{
"id": "course-da-eda-l02",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-eda/lessons/L02.md",
"title": "Challenge 02: Define the answer first",
"summary": "Sketch results.json — keys, types, rounding — before letting the agent write eda.py.",
"sha256": "4383de459c198d45aa36c148cf5239d32f8e3061855fd91ce4043011acf94d79"
},
{
"lang": "zh-CN",
"path": "courses/da-eda/lessons/L02_cn.md",
"title": "挑战 02:先定答案",
"summary": "先勾出 results.json 的键、类型与舍入规则,再让 Agent 写 eda.py。",
"sha256": "70a68166ca660c84362157c8bea7e92abd16e22827f07f20a6cf1a5ca650e6d4"
}
]
},
{
"id": "course-da-eda-l03",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-eda/lessons/L03.md",
"title": "Challenge 03: Clean and summarize",
"summary": "Implement load_transactions, clean_transactions, summarize, write_results, main until all twelve tests pass.",
"sha256": "347a34a7afa47c33b3db027e1fcb0824fb1e0de313281d03b5e241e7a8b72fee"
},
{
"lang": "zh-CN",
"path": "courses/da-eda/lessons/L03_cn.md",
"title": "挑战 03:清洗与统计",
"summary": "实现 load_transactions、clean_transactions、summarize、write_results、main,十二个测试全绿。",
"sha256": "98b835ab40e7c9bf537a6c20b9ee7783a69761f71493699b9793a4e84bc6e40f"
}
]
},
{
"id": "course-da-eda-l04",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-eda/lessons/L04.md",
"title": "Challenge 04: Check against ground truth",
"summary": "The suite asserts exact numbers — 142 in, 137 clean, revenue 33347.89, top category Books; plausible-but-different fails.",
"sha256": "bed37fda0b4c2e51adf9f6f5f9adeb0479e7089ce9de29786b2857e5904ce2d8"
},
{
"lang": "zh-CN",
"path": "courses/da-eda/lessons/L04_cn.md",
"title": "挑战 04:核对真值",
"summary": "套件断言精确数字——142 进 137 净、营收 33347.89、品类第一 Books;看着合理但不同即失败。",
"sha256": "fe7c5b6dd9d8ee37db271b152b21a647565c3a913ae6953d680d43a36a1ff381"
}
]
},
{
"id": "course-da-eda-l05",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-eda/lessons/L05.md",
"title": "Challenge 05: Run it on your own data",
"summary": "Port the pipeline to a real export you own and record which assumptions break.",
"sha256": "58eed4e2eb41ce3771a9508e772d003279d4664a92a6a1bc8f7db50675a6e4c6"
},
{
"lang": "zh-CN",
"path": "courses/da-eda/lessons/L05_cn.md",
"title": "挑战 05:换成你自己的数据",
"summary": "把流水线搬到你自己一份真实导出上,记下哪些假设崩了。",
"sha256": "e8b859e7ff90b5c13f354374a14fb6f40bd1efef1bc3f440ca8889bdea47cbec"
}
]
},
{
"id": "course-da-report",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-report/COURSE.md",
"title": "From Analysis to Report with an Agent",
"summary": "Challenge course — turn a verified EDA summary into a structured report (report.json + report.md) where every number traces back to its input. Verification checks structure and number consistency, not writing quality.",
"sha256": "d2b978ad0e561b90734d747c4551cda91dddf8619e4d388799b67a4b59344496"
},
{
"lang": "zh-CN",
"path": "courses/da-report/COURSE_cn.md",
"title": "用 Agent 从分析到报告",
"summary": "挑战课程——把经过验证的 EDA 摘要变成结构化报告(report.json + report.md),其中每个数字都可回溯到输入。验证检查结构与数字一致性,不评价文笔。",
"sha256": "c825ca0039fd828e4133a1a14956907a7cf8a74ff0c2e736f387c16fd26723e7"
}
]
},
{
"id": "course-da-report-l01",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-report/lessons/L01.md",
"title": "Challenge 01: A report is a contract with the reader",
"summary": "List which numbers the report must carry and where each comes from in results.json.",
"sha256": "0aedc261a20d54aa9fb79c6b294f5710b52bf7df421efb18c3ce913db52a542f"
},
{
"lang": "zh-CN",
"path": "courses/da-report/lessons/L01_cn.md",
"title": "挑战 01:报告是与读者的契约",
"summary": "列出报告必须携带哪些数字,以及各自来自 results.json 的哪个字段。",
"sha256": "e0a0df3a5e537aa2f58feb5552d47ae3f1ba87cd0fe965ebbe440767ef189204"
}
]
},
{
"id": "course-da-report-l02",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-report/lessons/L02.md",
"title": "Challenge 02: Structure before prose",
"summary": "Title, exact section order Data quality → Findings → Appendix, and the metrics block — before any sentence.",
"sha256": "b307e17338d44f3860b29fbedd3f12365a23ff3d28bac7fed0aacb8ba6590292"
},
{
"lang": "zh-CN",
"path": "courses/da-report/lessons/L02_cn.md",
"title": "挑战 02:先结构,后文字",
"summary": "标题、Data quality → Findings → Appendix 的确切顺序、metrics 块——先于任何句子。",
"sha256": "a48efa135060f1e092dbecc061fcaedf5babb0710fbaaa1afdb28bfb0a51a992"
}
]
},
{
"id": "course-da-report-l03",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-report/lessons/L03.md",
"title": "Challenge 03: Build and render the report",
"summary": "Carry metrics through unchanged, emit # title then ## sections in order, money at two decimals.",
"sha256": "3b9eb25b0c3377062114cdfff2ad560d6ba9241ccba55c0dcac695a83a0414e9"
},
{
"lang": "zh-CN",
"path": "courses/da-report/lessons/L03_cn.md",
"title": "挑战 03:构建并渲染报告",
"summary": "metrics 原样透传,先 # 标题再按序 ## 小节,金额两位小数。",
"sha256": "01571a51e5c21976bac10b5d655e292b3de882b5acdd6fd0c197fbe257a98155"
}
]
},
{
"id": "course-da-report-l04",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-report/lessons/L04.md",
"title": "Challenge 04: Numbers traceable to inputs",
"summary": "Every metric in report.json equals its source field — the audit answer is a field name, not an explanation.",
"sha256": "501e1fbb684a5e94701559311ad098ea1a3f31fb63da46cd5ddb3f3a37ce2bcf"
},
{
"lang": "zh-CN",
"path": "courses/da-report/lessons/L04_cn.md",
"title": "挑战 04:数字可回溯到输入",
"summary": "report.json 每个指标等于源字段——审计答案是字段名,不是解释。",
"sha256": "6603a3bb907ed7f72ef685e2edc68d7a9f21c68cc8b8471347c71e9f8acfa00a"
}
]
},
{
"id": "course-da-report-l05",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-report/lessons/L05.md",
"title": "Challenge 05: What report verification cannot see",
"summary": "Structure and number consistency are checked; insight and honest conclusions are not — write the boundary sentence.",
"sha256": "e267e245dbb43dfaf905189469fc1507fb46f814fc4778666363837e55b7eab4"
},
{
"lang": "zh-CN",
"path": "courses/da-report/lessons/L05_cn.md",
"title": "挑战 05:报告验证看不到的东西",
"summary": "结构与数字一致性被查;洞察与结论诚实不在其中——写下边界句。",
"sha256": "60e8b47da3754b8bd76a9306a09cdb7a056f9c5b601132e71457c80113654b28"
}
]
},
{
"id": "course-da-visualization",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-visualization/COURSE.md",
"title": "Data Visualization with an Agent",
"summary": "Challenge course — turn a clean sales dataset into three spec'd charts plus a summary.json whose numbers are verified against the data. Charts must be generated from data, never hardcoded.",
"sha256": "950c213e5093c415a6a78988fa7bb1c0056fd23b2d27225a762b977a70af3a5f"
},
{
"lang": "zh-CN",
"path": "courses/da-visualization/COURSE_cn.md",
"title": "用 Agent 做数据可视化",
"summary": "挑战课程——把干净的销售数据变成三张有规格的图和一份 summary.json,其中数字会与数据集校验。图必须由数据生成,不许硬编码。",
"sha256": "6c614cb91314a2b75b51e677d50a6d214355047eeb48def66fa0fc3105c3a690"
}
]
},
{
"id": "course-da-visualization-l01",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-visualization/lessons/L01.md",
"title": "Challenge 01: A chart is packaged evidence",
"summary": "Say what claim each required PNG makes before writing code — the JSON summary is the auditable layer.",
"sha256": "d3640c032fca4b748b83fef983ebda39fd0e7cda5dff210dac3113bfe0a9809e"
},
{
"lang": "zh-CN",
"path": "courses/da-visualization/lessons/L01_cn.md",
"title": "挑战 01:图是证据的包装",
"summary": "写码前先说出每张 PNG 声明什么——JSON 摘要才是可审计层。",
"sha256": "5b1acf730a1aa6d73e127370cf29c497550c74c3b6be1884f1c066d673304ed0"
}
]
},
{
"id": "course-da-visualization-l02",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-visualization/lessons/L02.md",
"title": "Challenge 02: Spec first, chart second",
"summary": "Write which aggregation feeds each chart and what summary.json must contain before matplotlib opens.",
"sha256": "ac12fed1fec38f46ab665999e219c570f6cb765088a3da3a8532e0d8cab478bb"
},
{
"lang": "zh-CN",
"path": "courses/da-visualization/lessons/L02_cn.md",
"title": "挑战 02:先写规格,再画图",
"summary": "在打开 matplotlib 之前写清每张图吃哪个聚合、summary.json 必须装什么。",
"sha256": "5f860f5b8de7bad0cf408a690752246820ef56bc44ad1bb43e74e26c27ef3420"
}
]
},
{
"id": "course-da-visualization-l03",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-visualization/lessons/L03.md",
"title": "Challenge 03: Three charts and a summary",
"summary": "Implement the contract in starter/charts.py — Agg before pyplot, parsed dates, real PNG bytes.",
"sha256": "16ddbb48daf45a5c9802424690ab028ce86bc6ea42c8f4b677b7d03da3b36b51"
},
{
"lang": "zh-CN",
"path": "courses/da-visualization/lessons/L03_cn.md",
"title": "挑战 03:三张图与摘要",
"summary": "在 starter/charts.py 实现契约——Agg 先于 pyplot、日期先解析、真 PNG 字节。",
"sha256": "53532ad9115b7b3295ba0f693b59ea8f961b54a489a1aa8f0ecc1880dfe90ef9"
}
]
},
{
"id": "course-da-visualization-l04",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-visualization/lessons/L04.md",
"title": "Challenge 04: Numbers match the charts",
"summary": "summary.json is checked against ground truth; a chart disagreeing with the JSON is a failed chart.",
"sha256": "5669523f09d8877d325c54f561dd595d713bf521a70d768095e009400c2ac4ca"
},
{
"lang": "zh-CN",
"path": "courses/da-visualization/lessons/L04_cn.md",
"title": "挑战 04:数字与图一致",
"summary": "summary.json 对照真值校验;图与 JSON 不一致就是失败的图。",
"sha256": "08f3321adfa7764d58b5e81eec1aa1cb513ba7bfbfbd16ad2b98488d74b0cf28"
}
]
},
{
"id": "course-da-visualization-l05",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/da-visualization/lessons/L05.md",
"title": "Challenge 05: Honest boundary",
"summary": "The suite checks files and numbers — not readability or honest scales; state what was not verified.",
"sha256": "2a2a7ce46664f4653b73b6c719071757a76456b0a10eb35694cee60fac4df6e8"
},
{
"lang": "zh-CN",
"path": "courses/da-visualization/lessons/L05_cn.md",
"title": "挑战 05:诚实边界",
"summary": "套件查文件与数字——不查可读性与刻度诚实;写清没验证什么。",
"sha256": "7ac94ceda7e8e89e5c192399fcb0a1b0d9c410924d1ba0531ee9c4481e1ce595"
}
]
},
{
"id": "course-mcp-tools",
"type": "course",
"content_version": 2,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/mcp-server-in-python/COURSE.md",
"title": "Give your agent tools with MCP (Python)",
"summary": "Build a stateless Model Context Protocol tool server in pure Python — JSON-RPC 2.0 dispatch, schema validation, error isolation, and the 2026-07-28 input_required round-trip — and learn where a real tool belongs.",
"sha256": "de677071dab7c06244ad0634a7266372619af38a8de60b8257af0570de1b9cb4"
},
{
"lang": "zh-CN",
"path": "courses/mcp-server-in-python/COURSE_cn.md",
"title": "用 MCP 给你的 Agent 装上工具(Python)",
"summary": "用纯 Python 构建一个无状态的 Model Context Protocol 工具服务——JSON-RPC 2.0 分发、schema 校验、错误隔离与 2026-07-28 的 input_required 多轮交互——并理解真正的工具该放在哪里。",
"sha256": "d125779e096e3b76b97caf51db25577869ee9fadd23447e02f9aea1d5d5066ee"
}
]
},
{
"id": "course-mcp-tools-l01",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/mcp-server-in-python/lessons/L01.md",
"title": "What MCP actually is (2026-07-28)",
"summary": "A stateless JSON-RPC 2.0 surface for tools — no handshake, no sessions, versions in _meta.",
"sha256": "a50dbc4673a7178344e7ff3d19dac2f53abbabe584ed3bfa4639b5b263064fc0"
},
{
"lang": "zh-CN",
"path": "courses/mcp-server-in-python/lessons/L01_cn.md",
"title": "MCP 到底是什么(2026-07-28)",
"summary": "一个面向工具的无状态 JSON-RPC 2.0 接口——无握手、无会话、版本放在 _meta 里。",
"sha256": "1f89bd8f063956870cb01fe57593779ab0eb2566f52404c4a2bc9e76c48dc29f"
}
]
},
{
"id": "course-mcp-tools-l02",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/mcp-server-in-python/lessons/L02.md",
"title": "The JSON-RPC dispatch contract",
"summary": "Valid requests echo their id; invalid ones get -32600; unknown or removed methods get -32601.",
"sha256": "2b0b57cd587d214f17f24864ba0b7fd632b1f8f18af113469e07843503fa8baf"
},
{
"lang": "zh-CN",
"path": "courses/mcp-server-in-python/lessons/L02_cn.md",
"title": "JSON-RPC 分发契约",
"summary": "合法请求回显 id;非法请求得 -32600;未知或已移除的方法得 -32601。",
"sha256": "9cea20a365eb994ffd0a6db1d07df4b494dea86593d77f078c0825c9e9aa9995"
}
]
},
{
"id": "course-mcp-tools-l03",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/mcp-server-in-python/lessons/L03.md",
"title": "Validation and error isolation",
"summary": "Arguments are untrusted input: validate before execution, and never let a handler crash the transport.",
"sha256": "7d55d1fab063f988ffc819f1f2dfa945ceeb4bc5208d7dadbf0e009c7dfa7196"
},
{
"lang": "zh-CN",
"path": "courses/mcp-server-in-python/lessons/L03_cn.md",
"title": "校验与错误隔离",
"summary": "参数是不可信输入:先校验再执行,绝不让处理函数打断传输。",
"sha256": "bd546854dc1b42f03baafddf00eed80a7c601d0ed228a5f951d7e3daef8d4a0f"
}
]
},
{
"id": "course-mcp-tools-l04",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{
"lang": "en-US",
"path": "courses/mcp-server-in-python/lessons/L04.md",
"title": "The input_required round-trip",
"summary": "A tool can ask the client a question mid-call — return the requests, finish on the retry carrying answers.",
"sha256": "2ba1145cdc807afabd09737b860c9531acdbdbf933870e51f640c5f1bbb3a631"
},
{
"lang": "zh-CN",
"path": "courses/mcp-server-in-python/lessons/L04_cn.md",
"title": "input_required 多轮交互",
"summary": "工具可以在调用中途向客户端提问——先返回问题,客户端带答案重试后完成。",
"sha256": "8170e1bbec1865410e7ea0c8feb1b8cc182b3e119ce608f3c4e8fdc822ddcc70"
}
]
},
{
"id": "course-mcp-tools-l05",
"type": "course",
"content_version": 1,
"status": "reviewed",
"reviewed_on": "2026-09-12",
"locales": [
{