Skip to content

Commit d17cbf1

Browse files
authored
Merge pull request #2 from Kyle-Ye/docs/update-readme-wwdc26
docs: update README coverage for WWDC26
2 parents b9555db + 0c6f71d commit d17cbf1

2 files changed

Lines changed: 36 additions & 32 deletions

File tree

README-CN.md

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ data/
5151
├── wwdc22/
5252
├── wwdc23/
5353
├── wwdc24/
54-
└── wwdc25/
54+
├── wwdc25/
55+
└── wwdc26/
5556
```
5657

5758
`skills/` 是唯一真源。`playground` 下的两个软链接让需要 `.agents/skills``.claude/skills` 的 Agent 运行时都能加载同一份 skill。仓库根目录不再保留 `.agents/skills` 副本。
@@ -62,11 +63,11 @@ data/
6263

6364
```sh
6465
node skills/wwdc-quick-look/scripts/query.mjs list-years
65-
node skills/wwdc-quick-look/scripts/query.mjs search --year 2025 --keyword "visionOS"
66-
node skills/wwdc-quick-look/scripts/query.mjs show-session --year 2025 --code 290
67-
node skills/wwdc-quick-look/scripts/query.mjs resources --year 2025 --code 290
68-
node skills/wwdc-quick-look/scripts/query.mjs code --year 2025 --code 290 --limit 3
69-
node skills/wwdc-quick-look/scripts/query.mjs transcript --year 2025 --code 290 --limit 20
66+
node skills/wwdc-quick-look/scripts/query.mjs search --year 2026 --keyword "Foundation Models"
67+
node skills/wwdc-quick-look/scripts/query.mjs show-session --year 2026 --code 339
68+
node skills/wwdc-quick-look/scripts/query.mjs resources --year 2026 --code 339
69+
node skills/wwdc-quick-look/scripts/query.mjs code --year 2026 --code 339 --limit 3
70+
node skills/wwdc-quick-look/scripts/query.mjs transcript --year 2026 --code 339 --limit 20
7071
```
7172

7273
查询脚本默认读取公开 CDN 数据:
@@ -84,16 +85,17 @@ WWDC_QUICK_LOOK_BASE_URL=http://127.0.0.1:8765 \
8485

8586
## 数据覆盖
8687

87-
本地已提交的数据覆盖 WWDC 2020 到 WWDC 2025
88+
本地已提交的数据覆盖 WWDC 2020 到 WWDC 2026
8889

89-
| 年份 | Sessions | Transcript 文件 | 含 Resources 的 sessions | 含 Code snippets 的 sessions |
90-
|------|----------|-----------------|---------------------------|------------------------------|
91-
| 2020 | 209 | 206 | 150 | 124 |
92-
| 2021 | 207 | 204 | 176 | 127 |
90+
| 年份 | Sessions | 可用 transcripts | 含 Resources 的 sessions | 含 Code snippets 的 sessions |
91+
|------|----------|------------------|---------------------------|------------------------------|
92+
| 2020 | 209 | 209 | 150 | 124 |
93+
| 2021 | 202 | 202 | 176 | 127 |
9394
| 2022 | 316 | 184 | 142 | 118 |
9495
| 2023 | 316 | 181 | 122 | 100 |
9596
| 2024 | 123 | 123 | 117 | 78 |
96-
| 2025 | 122 | 120 | 113 | 80 |
97+
| 2025 | 122 | 122 | 113 | 81 |
98+
| 2026 | 137 | 118 | 92 | 87 |
9799

98100
部分 Apple Developer 条目是 Q&A、Meet the Presenter、Study Hall、keynote、ASL 或社区活动页面。Apple 页面没有公开 timestamp transcript 时,manifest 会把该条目标记为 `missing`,不会伪造文本。
99101

@@ -103,7 +105,7 @@ WWDC_QUICK_LOOK_BASE_URL=http://127.0.0.1:8765 \
103105

104106
```sh
105107
# 爬取某一年并写入发布数据目录。
106-
node ./bin/wwdc-quick-look.js crawl --year 2025 --locale en --out-dir data/wwdc25
108+
node ./bin/wwdc-quick-look.js crawl --year 2026 --locale en --out-dir data/wwdc26
107109

108110
# 重建年份索引。
109111
node scripts/build-index.mjs
@@ -118,13 +120,13 @@ node scripts/build-index.mjs
118120
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/index.json
119121
120122
# 单年 session 元数据
121-
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc25/raw_data.json
123+
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc26/raw_data.json
122124
123125
# Transcript manifest
124-
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc25/transcripts-en/_manifest.json
126+
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc26/transcripts-en/_manifest.json
125127
126128
# 单个 transcript
127-
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc25/transcripts-en/290.txt
129+
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc26/transcripts-en/339.txt
128130
```
129131

130132
jsDelivr 会缓存路径。需要字节级稳定归档时,请使用绑定 commit 的 URL。

README.md

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ data/
5151
├── wwdc22/
5252
├── wwdc23/
5353
├── wwdc24/
54-
└── wwdc25/
54+
├── wwdc25/
55+
└── wwdc26/
5556
```
5657

5758
`skills/` is the single source of truth. The playground links expose the same skill to agent runtimes that expect either `.agents/skills` or `.claude/skills`. The repository root intentionally does not keep a `.agents/skills` copy.
@@ -62,11 +63,11 @@ After installing the skill, agents call this script for you. For local testing o
6263

6364
```sh
6465
node skills/wwdc-quick-look/scripts/query.mjs list-years
65-
node skills/wwdc-quick-look/scripts/query.mjs search --year 2025 --keyword "visionOS"
66-
node skills/wwdc-quick-look/scripts/query.mjs show-session --year 2025 --code 290
67-
node skills/wwdc-quick-look/scripts/query.mjs resources --year 2025 --code 290
68-
node skills/wwdc-quick-look/scripts/query.mjs code --year 2025 --code 290 --limit 3
69-
node skills/wwdc-quick-look/scripts/query.mjs transcript --year 2025 --code 290 --limit 20
66+
node skills/wwdc-quick-look/scripts/query.mjs search --year 2026 --keyword "Foundation Models"
67+
node skills/wwdc-quick-look/scripts/query.mjs show-session --year 2026 --code 339
68+
node skills/wwdc-quick-look/scripts/query.mjs resources --year 2026 --code 339
69+
node skills/wwdc-quick-look/scripts/query.mjs code --year 2026 --code 339 --limit 3
70+
node skills/wwdc-quick-look/scripts/query.mjs transcript --year 2026 --code 339 --limit 20
7071
```
7172

7273
By default the query script reads the published CDN dataset:
@@ -84,16 +85,17 @@ WWDC_QUICK_LOOK_BASE_URL=http://127.0.0.1:8765 \
8485

8586
## Dataset Coverage
8687

87-
The committed local dataset covers WWDC 2020 through WWDC 2025.
88+
The committed local dataset covers WWDC 2020 through WWDC 2026.
8889

89-
| Year | Sessions | Transcript files | Sessions with Resources | Sessions with Code snippets |
90-
|------|----------|------------------|--------------------------|-----------------------------|
91-
| 2020 | 209 | 206 | 150 | 124 |
92-
| 2021 | 207 | 204 | 176 | 127 |
90+
| Year | Sessions | Available transcripts | Sessions with Resources | Sessions with Code snippets |
91+
|------|----------|-----------------------|--------------------------|-----------------------------|
92+
| 2020 | 209 | 209 | 150 | 124 |
93+
| 2021 | 202 | 202 | 176 | 127 |
9394
| 2022 | 316 | 184 | 142 | 118 |
9495
| 2023 | 316 | 181 | 122 | 100 |
9596
| 2024 | 123 | 123 | 117 | 78 |
96-
| 2025 | 122 | 120 | 113 | 80 |
97+
| 2025 | 122 | 122 | 113 | 81 |
98+
| 2026 | 137 | 118 | 92 | 87 |
9799

98100
Some Apple Developer entries are Q&A, Meet the Presenter, Study Hall, keynote, ASL, or community activity pages. When Apple publishes no timestamped transcript on the page, the manifest records that entry as `missing` instead of inventing text.
99101

@@ -103,7 +105,7 @@ The crawler remains available for maintaining the dataset:
103105

104106
```sh
105107
# Crawl one year into the published data directory.
106-
node ./bin/wwdc-quick-look.js crawl --year 2025 --locale en --out-dir data/wwdc25
108+
node ./bin/wwdc-quick-look.js crawl --year 2026 --locale en --out-dir data/wwdc26
107109

108110
# Rebuild the public year catalog.
109111
node scripts/build-index.mjs
@@ -118,13 +120,13 @@ The combined crawl fetches public Apple Developer collection cards, enriches eac
118120
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/index.json
119121
120122
# Per-year session metadata
121-
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc25/raw_data.json
123+
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc26/raw_data.json
122124
123125
# Transcript manifest
124-
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc25/transcripts-en/_manifest.json
126+
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc26/transcripts-en/_manifest.json
125127
126128
# Single transcript
127-
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc25/transcripts-en/290.txt
129+
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc26/transcripts-en/339.txt
128130
```
129131

130132
jsDelivr caches paths. Use a commit-pinned URL when byte-stable archival output matters.

0 commit comments

Comments
 (0)