Skip to content
This repository was archived by the owner on May 18, 2026. It is now read-only.

Commit 3ecd475

Browse files
update: SDK v0.2.123 → v0.2.123 (2026-04-30)
## Version Update - Bump @anthropic-ai/claude-agent-sdk 0.2.123 → 0.2.123
1 parent 8f4c852 commit 3ecd475

5 files changed

Lines changed: 112 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 2026-04-30
4+
5+
- No version bump (TS v0.2.123 and PY v0.1.71 unchanged); monitor detected registry dedup artifacts only
6+
- Research agents ran (56 + 70 turns) but found no new Known Issues to document; date refresh only
7+
- Typecheck false-positive (stale-comma in import check); verify passed 2/2 on attempt 1 with 0 mend runs
8+
- [Full report](reports/2026-04-30.md)
9+
310
## 2026-04-29
411

512
- SDK TS v0.2.121 → v0.2.123; PY v0.1.69 → v0.1.71

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A self-updating Claude Code skill for building AI agents with the Claude Agent SDK — covering both [TypeScript](https://github.com/anthropics/claude-agent-sdk-typescript) and [Python](https://github.com/anthropics/claude-agent-sdk-python).
44

5-
**SDK Version**: TypeScript v0.2.123 | Python v0.1.71 | **This skill is auto-updated**: 2026-04-29
5+
**SDK Version**: TypeScript v0.2.123 | Python v0.1.71 | **This skill is auto-updated**: 2026-04-30
66

77
## What It Does
88

SKILL-typescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2099,4 +2099,4 @@ RUN mkdir -p /app/node_modules/@anthropic-ai/claude-agent-sdk-linux-x64-musl &&
20992099

21002100
---
21012101

2102-
**Last verified**: 2026-04-29 | **SDK version**: 0.2.123
2102+
**Last verified**: 2026-04-30 | **SDK version**: 0.2.123

agent/state.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1448,5 +1448,5 @@
14481448
"lastScannedIssueNumber": 776,
14491449
"lastAuditedVersion": "0.1.56"
14501450
},
1451-
"lastUpdated": "2026-04-29T08:41:36Z"
1451+
"lastUpdated": "2026-04-30T08:41:57Z"
14521452
}

reports/2026-04-30.md

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
# Daily Report — 2026-04-30
2+
3+
## Summary
4+
5+
No version bump today — TypeScript SDK remains at v0.2.123 and Python SDK at v0.1.71 (unchanged from 2026-04-29). Monitor detected registry dedup artifacts only (no real upstream changes). Update agent ran a verification/date refresh pass. Both research agents completed full scans (56 and 70 turns respectively) but found no new issues to document. The typecheck step reported a false-positive failure (recurring stale-comma syntax error in the Python import-resolution check), but verify passed on attempt 1 with zero mend runs. All pipeline outcomes recorded as success.
6+
7+
## Pipeline Status
8+
9+
| Step | Result | Duration | Notes |
10+
|------|--------|----------|-------|
11+
| Monitor | success | 7s | Changes detected (registry dedup artifacts only) |
12+
| Auth | success || Method: unknown |
13+
| Update | success | 66s | Date refresh only; no version change |
14+
| Research (TS) | success | 178s | 56 turns; no new issues added |
15+
| Research (PY) | success | 254s | 70 turns; no new issues added |
16+
| Typecheck | failed (false-positive) | 15s | Stale-comma syntax error in import check; outcomes overridden to success |
17+
| Verify | success | 0s | Passed on attempt 1; 0 mend runs |
18+
| Report | running || |
19+
20+
## Monitor
21+
22+
- **Changes detected**: yes (registry dedup artifacts only)
23+
- TS registry reported multiple historical versions (`0.2.123`, `0.2.94`, `0.2.112`) which were deduplicated to current: `0.2.123`
24+
- PY registry reported multiple historical versions (`0.1.71`, `0.1.45`) which were deduplicated to current: `0.1.71`
25+
- No issue state changes detected
26+
- No new bug issues detected
27+
28+
No actual upstream version change — both SDKs unchanged from yesterday.
29+
30+
## Update Agent
31+
32+
The update agent ran and confirmed no version bump was needed (TS 0.2.123 → 0.2.123, PY 0.1.71 → 0.1.71). Only changes made:
33+
34+
- **SKILL-typescript.md**: "Last verified" date updated from `2026-04-29``2026-04-30`
35+
- **agent/state.json**: `lastUpdated` timestamp updated to `2026-04-30T08:41:57Z`
36+
37+
Verification passed (2/2 checks) on attempt 1 with 0 mend runs.
38+
39+
## Research
40+
41+
Both research agents ran full scans. No new Known Issues or rules were added based on the git diff (only the date/timestamp files changed).
42+
43+
**TypeScript** (56 turns, 178s):
44+
- Scanned up to issue #236 (lastScannedIssueNumber unchanged)
45+
- No new issues added — all recently filed issues had already been researched or did not meet the bar for documentation
46+
47+
**Python** (70 turns, 254s):
48+
- Scanned up to issue #776 (lastScannedIssueNumber unchanged)
49+
- No new issues added — all recently filed issues had already been researched or did not meet the bar for documentation
50+
51+
## Errors
52+
53+
### Typecheck — exit code 1 (false-positive)
54+
55+
**Last output:**
56+
```
57+
=== Python import resolution check ===
58+
File "<string>", line 1
59+
from claude_agent_sdk import (,AgentDefinition,ClaudeAgentOptions,...
60+
^
61+
SyntaxError: invalid syntax
62+
FAIL: Some template imports don't resolve
63+
FAIL: Cannot import: (
64+
65+
=========================================
66+
Passed: 13
67+
Failed: 2
68+
=========================================
69+
70+
TEMPLATE CHECK FAILED — 2 issue(s)
71+
```
72+
73+
**Likely cause**: Recurring stale-comma false-positive in the typecheck script's Python import-resolution check. The script generates an import statement with a leading comma (from a comma-prefixed list construction), producing invalid syntax. This is a known issue with the typecheck harness itself, not with the skill templates.
74+
75+
**Impact**: None — `outcomes.typecheck` was recorded as `success`, verify passed on attempt 1 with 0 mend runs, and the actual skill files are valid.
76+
77+
**Suggested fix**: The typecheck script's Python import statement generator should strip leading/trailing commas before constructing the test import.
78+
79+
## Cost
80+
81+
| Agent | Cost | Turns |
82+
|-------|------|-------|
83+
| Update | $0.15 | 11 |
84+
| Research (TS) | $1.00 | 56 |
85+
| Research (PY) | $1.20 | 70 |
86+
| Report | N/A ||
87+
| **Total** | **$2.35** | **137** |
88+
89+
## State
90+
91+
Current tracked state after today's run:
92+
93+
- **TypeScript SDK version**: 0.2.123
94+
- **Python SDK version**: 0.1.71
95+
- **Last scanned TS issue**: #236
96+
- **Last scanned PY issue**: #776
97+
- **Last audited TS version**: 0.2.123
98+
- **Last audited PY version**: 0.1.56
99+
- **Total tracked TS issues**: 79 (across `trackedIssues` + `trackedIssuesExternal`)
100+
- **Total tracked PY issues**: 73
101+
- **Known Issues (TS)**: #2#19, #21#27, #29#34, #36#41, #54 (and others)
102+
- **Known Issues (PY)**: #1#17, #19#21, #23#27, #29, #35#36 (and others)

0 commit comments

Comments
 (0)