@code-yeongyu/senpi 2026.7.29-5 → 2026.7.29-6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/node_modules/@anthropic-ai/claude-agent-sdk/package.json +73 -82
- package/node_modules/@code-yeongyu/senpi-codemode/CHANGELOG.md +12 -0
- package/node_modules/@code-yeongyu/senpi-codemode/package.json +3 -3
- package/node_modules/@earendil-works/pi-agent-core/package.json +2 -2
- package/node_modules/@earendil-works/pi-ai/dist/providers/data/.manifest.json +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/data/openrouter.json +1 -1
- package/node_modules/@earendil-works/pi-ai/package.json +1 -1
- package/node_modules/@earendil-works/pi-pty/package.json +1 -1
- package/node_modules/@earendil-works/pi-tui/package.json +1 -1
- package/node_modules/@mariozechner/clipboard/package.json +43 -54
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,22 @@
|
|
|
14
14
|
|
|
15
15
|
### Removed
|
|
16
16
|
|
|
17
|
+
## [2026.7.29-6] - 2026-07-29
|
|
18
|
+
|
|
19
|
+
### New Features
|
|
20
|
+
|
|
21
|
+
### Breaking Changes
|
|
22
|
+
|
|
23
|
+
### Added
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
|
|
29
|
+
- Make promoted native sidecars root-owned during npm installation so bundled portable packages cannot leave invalid empty platform-package directories instead of fetching the consumer's executable ([#446](https://github.com/code-yeongyu/senpi/issues/446)).
|
|
30
|
+
|
|
31
|
+
### Removed
|
|
32
|
+
|
|
17
33
|
## [2026.7.29-5] - 2026-07-29
|
|
18
34
|
|
|
19
35
|
### New Features
|
|
@@ -1,84 +1,75 @@
|
|
|
1
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
|
-
"bridge.d.ts",
|
|
76
|
-
"browser-sdk.js",
|
|
77
|
-
"browser-sdk.d.ts",
|
|
78
|
-
"extractFromBunfs.js",
|
|
79
|
-
"extractFromBunfs.d.ts",
|
|
80
|
-
"manifest.json",
|
|
81
|
-
"manifest.zst.json"
|
|
82
|
-
],
|
|
83
|
-
"claudeCodeVersion": "2.1.220"
|
|
2
|
+
"name": "@anthropic-ai/claude-agent-sdk",
|
|
3
|
+
"version": "0.3.220",
|
|
4
|
+
"main": "sdk.mjs",
|
|
5
|
+
"types": "sdk.d.ts",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./sdk.d.ts",
|
|
9
|
+
"default": "./sdk.mjs"
|
|
10
|
+
},
|
|
11
|
+
"./extract": {
|
|
12
|
+
"types": "./extractFromBunfs.d.ts",
|
|
13
|
+
"default": "./extractFromBunfs.js"
|
|
14
|
+
},
|
|
15
|
+
"./browser": {
|
|
16
|
+
"types": "./browser-sdk.d.ts",
|
|
17
|
+
"default": "./browser-sdk.js"
|
|
18
|
+
},
|
|
19
|
+
"./bridge": {
|
|
20
|
+
"types": "./bridge.d.ts",
|
|
21
|
+
"default": "./bridge.mjs"
|
|
22
|
+
},
|
|
23
|
+
"./sdk-tools": {
|
|
24
|
+
"types": "./sdk-tools.d.ts"
|
|
25
|
+
},
|
|
26
|
+
"./sdk-tools.js": {
|
|
27
|
+
"types": "./sdk-tools.d.ts"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=18.0.0"
|
|
32
|
+
},
|
|
33
|
+
"type": "module",
|
|
34
|
+
"author": "Anthropic <support@anthropic.com>",
|
|
35
|
+
"license": "SEE LICENSE IN README.md",
|
|
36
|
+
"description": "SDK for building AI agents with Claude Code's capabilities. Programmatically interact with Claude to build autonomous agents that can understand codebases, edit files, and execute workflows.",
|
|
37
|
+
"homepage": "https://github.com/anthropics/claude-agent-sdk-typescript",
|
|
38
|
+
"repository": {
|
|
39
|
+
"type": "git",
|
|
40
|
+
"url": "https://github.com/anthropics/claude-agent-sdk-typescript.git"
|
|
41
|
+
},
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/anthropics/claude-agent-sdk-typescript/issues"
|
|
44
|
+
},
|
|
45
|
+
"keywords": [
|
|
46
|
+
"ai",
|
|
47
|
+
"agent",
|
|
48
|
+
"sdk",
|
|
49
|
+
"claude",
|
|
50
|
+
"anthropic",
|
|
51
|
+
"automation",
|
|
52
|
+
"code-generation"
|
|
53
|
+
],
|
|
54
|
+
"peerDependencies": {
|
|
55
|
+
"@anthropic-ai/sdk": ">=0.93.0",
|
|
56
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
57
|
+
"zod": "^4.0.0"
|
|
58
|
+
},
|
|
59
|
+
"optionalDependencies": {},
|
|
60
|
+
"files": [
|
|
61
|
+
"sdk.mjs",
|
|
62
|
+
"sdk.d.ts",
|
|
63
|
+
"sdk-tools.d.ts",
|
|
64
|
+
"agentSdkTypes.d.ts",
|
|
65
|
+
"bridge.mjs",
|
|
66
|
+
"bridge.d.ts",
|
|
67
|
+
"browser-sdk.js",
|
|
68
|
+
"browser-sdk.d.ts",
|
|
69
|
+
"extractFromBunfs.js",
|
|
70
|
+
"extractFromBunfs.d.ts",
|
|
71
|
+
"manifest.json",
|
|
72
|
+
"manifest.zst.json"
|
|
73
|
+
],
|
|
74
|
+
"claudeCodeVersion": "2.1.220"
|
|
84
75
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@code-yeongyu/senpi-codemode",
|
|
3
|
-
"version": "2026.7.29-
|
|
3
|
+
"version": "2026.7.29-6",
|
|
4
4
|
"description": "Source-only senpi extension package for codemode evaluation tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.ts",
|
|
@@ -30,14 +30,14 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@babel/parser": "8.0.4",
|
|
33
|
-
"@earendil-works/pi-ai": "^2026.7.29-
|
|
33
|
+
"@earendil-works/pi-ai": "^2026.7.29-6",
|
|
34
34
|
"typebox": "1.3.8"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"@code-yeongyu/senpi": "*"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@code-yeongyu/senpi": "2026.7.29-
|
|
40
|
+
"@code-yeongyu/senpi": "2026.7.29-6"
|
|
41
41
|
},
|
|
42
42
|
"keywords": [
|
|
43
43
|
"senpi",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@earendil-works/pi-agent-core",
|
|
3
3
|
"private": true,
|
|
4
|
-
"version": "2026.7.29-
|
|
4
|
+
"version": "2026.7.29-6",
|
|
5
5
|
"description": "General-purpose agent with transport abstraction, state management, and attachment support",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"prepublishOnly": "npm run build"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@earendil-works/pi-ai": "^2026.7.29-
|
|
33
|
+
"@earendil-works/pi-ai": "^2026.7.29-6",
|
|
34
34
|
"diff": "9.0.0",
|
|
35
35
|
"ignore": "7.0.6",
|
|
36
36
|
"typebox": "1.3.8",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"schemaVersion":3,"generatedAt":"2026-07-
|
|
1
|
+
{"schemaVersion":3,"generatedAt":"2026-07-29T20:15:52.393Z","structureHash":"b5dbf1be4a068c44378ff8d83933d7687dd578dfb665397ecffb89eece418cdb","files":{"alibaba-token-plan.json":"035d203854e829da426a10815b6584f993afe02e5a6e6ced3691af8ac7fee34f","amazon-bedrock.json":"c708d628e0cbfbe019a5a6bd8dce5f2a8935435b7d84e88e6c04c99e1da50966","ant-ling.json":"4979fe79d99ed97382d7ce40170c6132e932e77906de1eb54464c042e7d63633","anthropic.json":"507e001822a65921f50e3d355545435a6427ed079dc1ca91028a448f62d37c5c","azure-openai-responses.json":"2d13ecc23826b5be73f3628fca5f70cc2c5c15ff609b41e4acba8167cd40934b","cerebras.json":"3fd3e19b83ab4be07d27817e25e5be0ffe4158b1394f0311d6a22d9f03847728","cloudflare-ai-gateway.json":"0d51c8703213e583906369957ccf9302b4822859ad08771ac84207c2d5b9b0ca","cloudflare-workers-ai.json":"03b19d69433c843512e953390d51d4578e9b91f19098a9b14ff820c001623598","deepseek.json":"0dcc807a4e5827b488c6ceac87884ff6e735e01cf4f2ddfec9dd812e6fde041b","fireworks.json":"befd3127f292d32e62306da05469e93e10d8b0e6572dbc2df991e3f9671e12f2","github-copilot.json":"c2bd7951844e5aef1c186aec482b99954cfd02f89416de4fda94203cd6f43e11","google-vertex.json":"99d0b89ac9d8dc460ed922236abffbe88c9381af4d35046d2ad3a8f08fa2560c","google.json":"bcf8a8d59ccbb75bc6fb4a261a37ac4b7c806f40ee7313b4411178964be5fa37","groq.json":"868c90a897f75f866e09a585f6aee5cb991e40a9c3281497b5842a23de7d9add","huggingface.json":"d1952ba962c983a9f52a50323cf2475081a69b26b79467b3a9a9a06f8ab68899","kimi-coding.json":"9d73ca15313628bb8cf80c21e6466164e350d68471e2d7205b5e21bcd2c141f3","minimax-cn.json":"8ccd71ff838f4b78bb88809babb0dc32a4fcfaec2bc4f4083841000428df4f77","minimax.json":"253edd4c910a41c8bb252400ba099f3a4de0a8900ce154319288ab091b372987","mistral.json":"44531201e872713923b7544a1f75a048d31fa25292e3e1f9f896f608a52e412d","moonshotai-cn.json":"1e6146ff3477883636448c0f44222f0a52b3c4562ef8f4eecf7e941cdd59d12e","moonshotai.json":"d8d5209873058ddccd37c1f026833e2ea3f9476c3dc9628b4a940d407acc0b2e","nvidia.json":"33c498ab62940fe9ca659826c35cc922a77938a5f7edbe4443c10d9133323e87","openai-codex.json":"c3313710bc6910e6bbcb06d5867247e97ec3fa6c2af9bc780f8a3eefb03e32e1","openai.json":"7f0ec20441abeb6448162581294a5c8a7eb8d1e1ad672a9e13f601483a4f395a","opencode-go.json":"57a677764bc885c83fbbba46ad5d418baabe012a062424a0f6d8d488352102ce","opencode.json":"2cb45e5daef984d1af2c9a9e1306bf4eda6da6b642dc40e67d96e9159afb4405","openrouter.json":"07a8bfee593fe41ecc4432c94ee90550b86edacbc6e15b205967960653c9c65d","qwen-token-plan-cn.json":"a1495ccc21835c51d438207652f948aa9ecf4a3d784e81deaf313e484bdab1ec","qwen-token-plan.json":"597fae649f549a8ffb0b6a28426ea6761b7ece41a78b6fdef49ca970ac029970","together.json":"7192caa28dc8b59bca1d62d291708903413aac63e44d7b76362294171f2df018","vercel-ai-gateway.json":"61a283a7da10523a4cad819a43cef4932ffc1190d7718732c4d19ef8bedbd90c","xai.json":"4cbdbfbbf915246369b9bacbc6f1feeb56accdac9f3444456343f750547f2f38","xiaomi-token-plan-ams.json":"b1886b741867c90a838c377e86ad64b26ca6b0e349f1a75bc5fd4ed99df03c21","xiaomi-token-plan-cn.json":"11f459b794eddd64a9d9d102f2799c364732b7f0d562e22573f4995a5d1e1a30","xiaomi-token-plan-sgp.json":"0b9953d03b75260aba0ad604cc76d7ed26d6841448819e8c7488bf0d90948d2c","xiaomi.json":"edf39e0edd9dcae23e669635ea782e5870c0b9663d4b918b8ff9bd307cfe35f8","zai-coding-cn.json":"28fcb04ce65b4c6612a6b866902e0c832e18b685e5374578c4e2872569131d39","zai.json":"474670a0cf1109f4c296ea93d2c5c6eb8f53541dc9c0bddbb0e6cb054b971ebe"}}
|