@asm-agent/coding-agent 0.8.4 → 0.8.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 +8 -0
- package/dist/bundle/{anthropic-CWQBVVHC.js → anthropic-CILMWJ23.js} +1 -1
- package/dist/bundle/{azure-openai-responses-7JP64QDL.js → azure-openai-responses-TPNZ54LG.js} +2 -2
- package/dist/bundle/{bundled-modules-DZAECPSN.js → bundled-modules-SKYRKITN.js} +3 -3
- package/dist/bundle/{chunk-7HN2VZJJ.js → chunk-7QIBGY2R.js} +74 -74
- package/dist/bundle/{chunk-O7SB7LML.js → chunk-EFDSSG52.js} +69 -18
- package/dist/bundle/{chunk-FCQTXDPX.js → chunk-IYXHHLR6.js} +1 -1
- package/dist/bundle/{chunk-4KQVBOJB.js → chunk-YYVQTKC6.js} +2 -2
- package/dist/bundle/{cli-main-YXP4FEPB.js → cli-main-O3HK7MNQ.js} +3 -3
- package/dist/bundle/cli.js +1 -1
- package/dist/bundle/{google-DPYNVS7L.js → google-3TL5FKLN.js} +1 -1
- package/dist/bundle/{google-vertex-SKMI6LMM.js → google-vertex-WVFMK6QO.js} +1 -1
- package/dist/bundle/{main-DOLQ46ZM.js → main-4QYKME2K.js} +3 -3
- package/dist/bundle/{mistral-DUU7KDZ3.js → mistral-QV2OSBWW.js} +1 -1
- package/dist/bundle/{openai-codex-responses-D7FCP7DO.js → openai-codex-responses-J2GJ2FAO.js} +2 -2
- package/dist/bundle/{openai-completions-AH6TQF5C.js → openai-completions-W622H2EL.js} +1 -1
- package/dist/bundle/{openai-responses-DDC3EYTG.js → openai-responses-V75QG5T7.js} +2 -2
- package/dist/core/always-applied-skills.d.ts +3 -0
- package/dist/core/always-applied-skills.d.ts.map +1 -0
- package/dist/core/always-applied-skills.js +47 -0
- package/dist/core/always-applied-skills.js.map +1 -0
- package/dist/core/system-prompt.d.ts.map +1 -1
- package/dist/core/system-prompt.js +9 -0
- package/dist/core/system-prompt.js.map +1 -1
- package/dist/skills/final-response-summary/SKILL.md +39 -0
- package/dist/skills/request-report/SKILL.md +46 -0
- package/dist/skills/request-report/pyproject.toml +16 -0
- package/dist/skills/request-report/src/request_report/__init__.py +160 -0
- package/dist/skills/skill-creator/SKILL.md +2 -1
- package/dist/skills/solid-source-modularity/SKILL.md +48 -0
- package/dist/skills/solid-source-modularity/pyproject.toml +16 -0
- package/dist/skills/solid-source-modularity/src/solid_source_modularity/__init__.py +154 -0
- package/docs/skills.md +8 -3
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package-lock.json +2 -2
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/package.json +5 -5
- package/skills/final-response-summary/SKILL.md +39 -0
- package/skills/request-report/SKILL.md +46 -0
- package/skills/request-report/pyproject.toml +16 -0
- package/skills/request-report/src/request_report/__init__.py +160 -0
- package/skills/skill-creator/SKILL.md +2 -1
- package/skills/solid-source-modularity/SKILL.md +48 -0
- package/skills/solid-source-modularity/pyproject.toml +16 -0
- package/skills/solid-source-modularity/src/solid_source_modularity/__init__.py +154 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.8.6] - 2026-08-31
|
|
4
|
+
|
|
5
|
+
- Added always-applied skills for SOLID source modularity, final response summaries, and numbered per-request reports.
|
|
6
|
+
|
|
7
|
+
## [0.8.5] - 2026-08-29
|
|
8
|
+
|
|
9
|
+
- Fixed repository launches after a reboot by starting the local PostgreSQL service automatically and waiting until it is healthy.
|
|
10
|
+
|
|
3
11
|
## [0.8.4] - 2026-08-29
|
|
4
12
|
|
|
5
13
|
- Fixed npm 12 installations by running the verified ASM Agent runtime setup explicitly after package installation.
|
package/dist/bundle/{azure-openai-responses-7JP64QDL.js → azure-openai-responses-TPNZ54LG.js}
RENAMED
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
convertResponsesMessages,
|
|
4
4
|
convertResponsesTools,
|
|
5
5
|
processResponsesStream
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-IYXHHLR6.js";
|
|
7
7
|
import "./chunk-NQB5DCFC.js";
|
|
8
8
|
import {
|
|
9
9
|
AzureOpenAI
|
|
@@ -26,7 +26,7 @@ import {
|
|
|
26
26
|
import {
|
|
27
27
|
AssistantMessageEventStream,
|
|
28
28
|
clampThinkingLevel
|
|
29
|
-
} from "./chunk-
|
|
29
|
+
} from "./chunk-7QIBGY2R.js";
|
|
30
30
|
import "./chunk-BAWSWWEU.js";
|
|
31
31
|
|
|
32
32
|
// ../ai/src/providers/azure-openai-responses.ts
|
|
@@ -52,7 +52,7 @@ import {
|
|
|
52
52
|
oauth_exports,
|
|
53
53
|
runPrintMode,
|
|
54
54
|
runRpcMode
|
|
55
|
-
} from "./chunk-
|
|
55
|
+
} from "./chunk-YYVQTKC6.js";
|
|
56
56
|
import {
|
|
57
57
|
AgentSession,
|
|
58
58
|
CURRENT_SESSION_VERSION,
|
|
@@ -136,7 +136,7 @@ import {
|
|
|
136
136
|
withFileMutationQueue,
|
|
137
137
|
wrapRegisteredTool,
|
|
138
138
|
wrapRegisteredTools
|
|
139
|
-
} from "./chunk-
|
|
139
|
+
} from "./chunk-EFDSSG52.js";
|
|
140
140
|
import "./chunk-VWR3YFK5.js";
|
|
141
141
|
import "./chunk-N2CSAETN.js";
|
|
142
142
|
import "./chunk-5QCJ5DQU.js";
|
|
@@ -149,7 +149,7 @@ import "./chunk-UIRUOAIQ.js";
|
|
|
149
149
|
import "./chunk-HXOBFFJX.js";
|
|
150
150
|
import "./chunk-6GUVYK6P.js";
|
|
151
151
|
import "./chunk-UPDAFKL5.js";
|
|
152
|
-
import "./chunk-
|
|
152
|
+
import "./chunk-7QIBGY2R.js";
|
|
153
153
|
import {
|
|
154
154
|
__export
|
|
155
155
|
} from "./chunk-BAWSWWEU.js";
|
|
@@ -3936,7 +3936,7 @@ var MODELS = {
|
|
|
3936
3936
|
cacheWrite: 0
|
|
3937
3937
|
},
|
|
3938
3938
|
contextWindow: 1310720,
|
|
3939
|
-
maxTokens:
|
|
3939
|
+
maxTokens: 1048576
|
|
3940
3940
|
}
|
|
3941
3941
|
},
|
|
3942
3942
|
"deepseek": {
|
|
@@ -4048,6 +4048,23 @@ var MODELS = {
|
|
|
4048
4048
|
contextWindow: 1e6,
|
|
4049
4049
|
maxTokens: 131072
|
|
4050
4050
|
},
|
|
4051
|
+
"accounts/fireworks/models/glm-5p3-flash": {
|
|
4052
|
+
id: "accounts/fireworks/models/glm-5p3-flash",
|
|
4053
|
+
name: "GLM 5.3 Flash",
|
|
4054
|
+
api: "anthropic-messages",
|
|
4055
|
+
provider: "fireworks",
|
|
4056
|
+
baseUrl: "https://api.fireworks.ai/inference",
|
|
4057
|
+
reasoning: true,
|
|
4058
|
+
input: ["text", "image"],
|
|
4059
|
+
cost: {
|
|
4060
|
+
input: 0.15,
|
|
4061
|
+
output: 0.5,
|
|
4062
|
+
cacheRead: 0.029,
|
|
4063
|
+
cacheWrite: 0
|
|
4064
|
+
},
|
|
4065
|
+
contextWindow: 1e6,
|
|
4066
|
+
maxTokens: 131072
|
|
4067
|
+
},
|
|
4051
4068
|
"accounts/fireworks/models/gpt-oss-120b": {
|
|
4052
4069
|
id: "accounts/fireworks/models/gpt-oss-120b",
|
|
4053
4070
|
name: "GPT OSS 120B",
|
|
@@ -9616,23 +9633,6 @@ var MODELS = {
|
|
|
9616
9633
|
contextWindow: 256e3,
|
|
9617
9634
|
maxTokens: 256e3
|
|
9618
9635
|
},
|
|
9619
|
-
"hy3-free": {
|
|
9620
|
-
id: "hy3-free",
|
|
9621
|
-
name: "Hy3 Free",
|
|
9622
|
-
api: "openai-completions",
|
|
9623
|
-
provider: "opencode",
|
|
9624
|
-
baseUrl: "https://opencode.ai/zen/v1",
|
|
9625
|
-
reasoning: true,
|
|
9626
|
-
input: ["text"],
|
|
9627
|
-
cost: {
|
|
9628
|
-
input: 0,
|
|
9629
|
-
output: 0,
|
|
9630
|
-
cacheRead: 0,
|
|
9631
|
-
cacheWrite: 0
|
|
9632
|
-
},
|
|
9633
|
-
contextWindow: 19e4,
|
|
9634
|
-
maxTokens: 64e3
|
|
9635
|
-
},
|
|
9636
9636
|
"kimi-k2.5": {
|
|
9637
9637
|
id: "kimi-k2.5",
|
|
9638
9638
|
name: "Kimi K2.5",
|
|
@@ -10053,16 +10053,16 @@ var MODELS = {
|
|
|
10053
10053
|
},
|
|
10054
10054
|
"hy3": {
|
|
10055
10055
|
id: "hy3",
|
|
10056
|
-
name: "Hy3
|
|
10056
|
+
name: "Hy3",
|
|
10057
10057
|
api: "openai-completions",
|
|
10058
10058
|
provider: "opencode-go",
|
|
10059
10059
|
baseUrl: "https://opencode.ai/zen/go/v1",
|
|
10060
10060
|
reasoning: true,
|
|
10061
10061
|
input: ["text"],
|
|
10062
10062
|
cost: {
|
|
10063
|
-
input: 0.
|
|
10064
|
-
output: 0.
|
|
10065
|
-
cacheRead:
|
|
10063
|
+
input: 0.14,
|
|
10064
|
+
output: 0.58,
|
|
10065
|
+
cacheRead: 0.035,
|
|
10066
10066
|
cacheWrite: 0
|
|
10067
10067
|
},
|
|
10068
10068
|
contextWindow: 256e3,
|
|
@@ -10793,13 +10793,13 @@ var MODELS = {
|
|
|
10793
10793
|
thinkingLevelMap: { "off": null, "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": null, "max": null },
|
|
10794
10794
|
input: ["text"],
|
|
10795
10795
|
cost: {
|
|
10796
|
-
input: 0.
|
|
10797
|
-
output: 0.
|
|
10796
|
+
input: 0.25,
|
|
10797
|
+
output: 0.7999999999999999,
|
|
10798
10798
|
cacheRead: 0.06,
|
|
10799
10799
|
cacheWrite: 0
|
|
10800
10800
|
},
|
|
10801
10801
|
contextWindow: 262144,
|
|
10802
|
-
maxTokens:
|
|
10802
|
+
maxTokens: 8e4
|
|
10803
10803
|
},
|
|
10804
10804
|
"auto": {
|
|
10805
10805
|
id: "auto",
|
|
@@ -11103,13 +11103,13 @@ var MODELS = {
|
|
|
11103
11103
|
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": null, "max": null },
|
|
11104
11104
|
input: ["text"],
|
|
11105
11105
|
cost: {
|
|
11106
|
-
input: 0.
|
|
11107
|
-
output: 0.
|
|
11108
|
-
cacheRead: 0.
|
|
11106
|
+
input: 0.26899999999999996,
|
|
11107
|
+
output: 0.39999999999999997,
|
|
11108
|
+
cacheRead: 0.13449999999999998,
|
|
11109
11109
|
cacheWrite: 0
|
|
11110
11110
|
},
|
|
11111
11111
|
contextWindow: 163840,
|
|
11112
|
-
maxTokens:
|
|
11112
|
+
maxTokens: 65536
|
|
11113
11113
|
},
|
|
11114
11114
|
"deepseek/deepseek-v3.2-exp": {
|
|
11115
11115
|
id: "deepseek/deepseek-v3.2-exp",
|
|
@@ -11141,9 +11141,9 @@ var MODELS = {
|
|
|
11141
11141
|
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "max", "max": null },
|
|
11142
11142
|
input: ["text"],
|
|
11143
11143
|
cost: {
|
|
11144
|
-
input: 0.
|
|
11145
|
-
output: 0.
|
|
11146
|
-
cacheRead: 0.
|
|
11144
|
+
input: 0.088606,
|
|
11145
|
+
output: 0.177212,
|
|
11146
|
+
cacheRead: 0.017721200000000003,
|
|
11147
11147
|
cacheWrite: 0
|
|
11148
11148
|
},
|
|
11149
11149
|
contextWindow: 1048576,
|
|
@@ -11160,9 +11160,9 @@ var MODELS = {
|
|
|
11160
11160
|
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "max", "max": null },
|
|
11161
11161
|
input: ["text"],
|
|
11162
11162
|
cost: {
|
|
11163
|
-
input: 0.
|
|
11164
|
-
output: 0.
|
|
11165
|
-
cacheRead:
|
|
11163
|
+
input: 0.065,
|
|
11164
|
+
output: 0.18,
|
|
11165
|
+
cacheRead: 0.016,
|
|
11166
11166
|
cacheWrite: 0
|
|
11167
11167
|
},
|
|
11168
11168
|
contextWindow: 1310720,
|
|
@@ -11179,9 +11179,9 @@ var MODELS = {
|
|
|
11179
11179
|
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "max", "max": null },
|
|
11180
11180
|
input: ["text", "image"],
|
|
11181
11181
|
cost: {
|
|
11182
|
-
input: 0.
|
|
11183
|
-
output:
|
|
11184
|
-
cacheRead:
|
|
11182
|
+
input: 0.44,
|
|
11183
|
+
output: 1.32,
|
|
11184
|
+
cacheRead: 0.014,
|
|
11185
11185
|
cacheWrite: 0
|
|
11186
11186
|
},
|
|
11187
11187
|
contextWindow: 1048576,
|
|
@@ -11198,13 +11198,13 @@ var MODELS = {
|
|
|
11198
11198
|
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "max", "max": null },
|
|
11199
11199
|
input: ["text"],
|
|
11200
11200
|
cost: {
|
|
11201
|
-
input:
|
|
11202
|
-
output:
|
|
11203
|
-
cacheRead: 0.
|
|
11201
|
+
input: 1.5999999999999999,
|
|
11202
|
+
output: 3.1999999999999997,
|
|
11203
|
+
cacheRead: 0.135,
|
|
11204
11204
|
cacheWrite: 0
|
|
11205
11205
|
},
|
|
11206
11206
|
contextWindow: 1048576,
|
|
11207
|
-
maxTokens:
|
|
11207
|
+
maxTokens: 393216
|
|
11208
11208
|
},
|
|
11209
11209
|
"deepseek/deepseek-v4-pro-0813": {
|
|
11210
11210
|
id: "deepseek/deepseek-v4-pro-0813",
|
|
@@ -11217,9 +11217,9 @@ var MODELS = {
|
|
|
11217
11217
|
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "max", "max": null },
|
|
11218
11218
|
input: ["text"],
|
|
11219
11219
|
cost: {
|
|
11220
|
-
input:
|
|
11221
|
-
output:
|
|
11222
|
-
cacheRead: 0.
|
|
11220
|
+
input: 1.32,
|
|
11221
|
+
output: 3.9600000000000004,
|
|
11222
|
+
cacheRead: 0.044,
|
|
11223
11223
|
cacheWrite: 0
|
|
11224
11224
|
},
|
|
11225
11225
|
contextWindow: 1048576,
|
|
@@ -11853,12 +11853,12 @@ var MODELS = {
|
|
|
11853
11853
|
input: ["text", "image"],
|
|
11854
11854
|
cost: {
|
|
11855
11855
|
input: 0.19999999999999998,
|
|
11856
|
-
output: 0.
|
|
11856
|
+
output: 0.696,
|
|
11857
11857
|
cacheRead: 0,
|
|
11858
11858
|
cacheWrite: 0
|
|
11859
11859
|
},
|
|
11860
11860
|
contextWindow: 1048576,
|
|
11861
|
-
maxTokens:
|
|
11861
|
+
maxTokens: 115200
|
|
11862
11862
|
},
|
|
11863
11863
|
"meta-llama/llama-4-scout": {
|
|
11864
11864
|
id: "meta-llama/llama-4-scout",
|
|
@@ -12127,9 +12127,9 @@ var MODELS = {
|
|
|
12127
12127
|
reasoning: false,
|
|
12128
12128
|
input: ["text"],
|
|
12129
12129
|
cost: {
|
|
12130
|
-
input: 0.
|
|
12131
|
-
output: 2
|
|
12132
|
-
cacheRead: 0.
|
|
12130
|
+
input: 0.39999999999999997,
|
|
12131
|
+
output: 2,
|
|
12132
|
+
cacheRead: 0.04,
|
|
12133
12133
|
cacheWrite: 0
|
|
12134
12134
|
},
|
|
12135
12135
|
contextWindow: 262144,
|
|
@@ -12853,11 +12853,11 @@ var MODELS = {
|
|
|
12853
12853
|
cost: {
|
|
12854
12854
|
input: 0.09999999999999999,
|
|
12855
12855
|
output: 0.39999999999999997,
|
|
12856
|
-
cacheRead: 0.
|
|
12856
|
+
cacheRead: 0.024999999999999998,
|
|
12857
12857
|
cacheWrite: 0
|
|
12858
12858
|
},
|
|
12859
12859
|
contextWindow: 1047576,
|
|
12860
|
-
maxTokens:
|
|
12860
|
+
maxTokens: 32768
|
|
12861
12861
|
},
|
|
12862
12862
|
"openai/gpt-4o": {
|
|
12863
12863
|
id: "openai/gpt-4o",
|
|
@@ -14140,13 +14140,13 @@ var MODELS = {
|
|
|
14140
14140
|
reasoning: false,
|
|
14141
14141
|
input: ["text"],
|
|
14142
14142
|
cost: {
|
|
14143
|
-
input: 0.
|
|
14143
|
+
input: 0.09,
|
|
14144
14144
|
output: 1.1,
|
|
14145
|
-
cacheRead: 0
|
|
14145
|
+
cacheRead: 0,
|
|
14146
14146
|
cacheWrite: 0
|
|
14147
14147
|
},
|
|
14148
14148
|
contextWindow: 262144,
|
|
14149
|
-
maxTokens:
|
|
14149
|
+
maxTokens: 16384
|
|
14150
14150
|
},
|
|
14151
14151
|
"qwen/qwen3-next-80b-a3b-thinking": {
|
|
14152
14152
|
id: "qwen/qwen3-next-80b-a3b-thinking",
|
|
@@ -14874,13 +14874,13 @@ var MODELS = {
|
|
|
14874
14874
|
thinkingLevelMap: { "minimal": "minimal", "low": "low", "medium": "medium", "high": "high", "xhigh": null, "max": "max" },
|
|
14875
14875
|
input: ["text", "image"],
|
|
14876
14876
|
cost: {
|
|
14877
|
-
input:
|
|
14877
|
+
input: 1,
|
|
14878
14878
|
output: 4.05,
|
|
14879
|
-
cacheRead: 0.
|
|
14879
|
+
cacheRead: 0.16999999999999998,
|
|
14880
14880
|
cacheWrite: 0
|
|
14881
14881
|
},
|
|
14882
14882
|
contextWindow: 1048576,
|
|
14883
|
-
maxTokens:
|
|
14883
|
+
maxTokens: 471859
|
|
14884
14884
|
},
|
|
14885
14885
|
"thinkingmachines/inkling-small": {
|
|
14886
14886
|
id: "thinkingmachines/inkling-small",
|
|
@@ -15286,13 +15286,13 @@ var MODELS = {
|
|
|
15286
15286
|
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": null, "max": null },
|
|
15287
15287
|
input: ["text"],
|
|
15288
15288
|
cost: {
|
|
15289
|
-
input:
|
|
15290
|
-
output: 3.
|
|
15291
|
-
cacheRead: 0.
|
|
15289
|
+
input: 0.966,
|
|
15290
|
+
output: 3.036,
|
|
15291
|
+
cacheRead: 0.1794,
|
|
15292
15292
|
cacheWrite: 0
|
|
15293
15293
|
},
|
|
15294
15294
|
contextWindow: 204800,
|
|
15295
|
-
maxTokens:
|
|
15295
|
+
maxTokens: 128e3
|
|
15296
15296
|
},
|
|
15297
15297
|
"z-ai/glm-5.2": {
|
|
15298
15298
|
id: "z-ai/glm-5.2",
|
|
@@ -15470,12 +15470,12 @@ var MODELS = {
|
|
|
15470
15470
|
input: ["text"],
|
|
15471
15471
|
cost: {
|
|
15472
15472
|
input: 0.03,
|
|
15473
|
-
output: 0.
|
|
15474
|
-
cacheRead:
|
|
15473
|
+
output: 0.16,
|
|
15474
|
+
cacheRead: 0.013000000000000001,
|
|
15475
15475
|
cacheWrite: 0
|
|
15476
15476
|
},
|
|
15477
15477
|
contextWindow: 1310720,
|
|
15478
|
-
maxTokens:
|
|
15478
|
+
maxTokens: 393216
|
|
15479
15479
|
},
|
|
15480
15480
|
"~google/gemini-flash-latest": {
|
|
15481
15481
|
id: "~google/gemini-flash-latest",
|
|
@@ -15595,13 +15595,13 @@ var MODELS = {
|
|
|
15595
15595
|
thinkingLevelMap: { "off": null, "minimal": null, "low": "low", "medium": null, "high": "high", "xhigh": null, "max": "max" },
|
|
15596
15596
|
input: ["text"],
|
|
15597
15597
|
cost: {
|
|
15598
|
-
input: 1.
|
|
15599
|
-
output: 4,
|
|
15600
|
-
cacheRead: 0.
|
|
15598
|
+
input: 1.1875,
|
|
15599
|
+
output: 4.18,
|
|
15600
|
+
cacheRead: 0.24699999999999997,
|
|
15601
15601
|
cacheWrite: 0
|
|
15602
15602
|
},
|
|
15603
15603
|
contextWindow: 1310720,
|
|
15604
|
-
maxTokens:
|
|
15604
|
+
maxTokens: 131072
|
|
15605
15605
|
}
|
|
15606
15606
|
},
|
|
15607
15607
|
"prime-inference": {
|
|
@@ -15932,7 +15932,7 @@ var MODELS = {
|
|
|
15932
15932
|
cacheWrite: 0
|
|
15933
15933
|
},
|
|
15934
15934
|
contextWindow: 163840,
|
|
15935
|
-
maxTokens:
|
|
15935
|
+
maxTokens: 65536,
|
|
15936
15936
|
featured: true
|
|
15937
15937
|
},
|
|
15938
15938
|
"deepseek/deepseek-v3.2-exp": {
|
|
@@ -16010,7 +16010,7 @@ var MODELS = {
|
|
|
16010
16010
|
cacheWrite: 0
|
|
16011
16011
|
},
|
|
16012
16012
|
contextWindow: 1048576,
|
|
16013
|
-
maxTokens:
|
|
16013
|
+
maxTokens: 393216,
|
|
16014
16014
|
featured: true
|
|
16015
16015
|
},
|
|
16016
16016
|
"google/gemini-2.5-flash": {
|
|
@@ -16253,7 +16253,7 @@ var MODELS = {
|
|
|
16253
16253
|
cacheWrite: 0
|
|
16254
16254
|
},
|
|
16255
16255
|
contextWindow: 1048576,
|
|
16256
|
-
maxTokens:
|
|
16256
|
+
maxTokens: 115200
|
|
16257
16257
|
},
|
|
16258
16258
|
"meta/muse-spark-1.2": {
|
|
16259
16259
|
id: "meta/muse-spark-1.2",
|
|
@@ -16593,7 +16593,7 @@ var MODELS = {
|
|
|
16593
16593
|
cacheWrite: 0
|
|
16594
16594
|
},
|
|
16595
16595
|
contextWindow: 1047576,
|
|
16596
|
-
maxTokens:
|
|
16596
|
+
maxTokens: 32768
|
|
16597
16597
|
},
|
|
16598
16598
|
"openai/gpt-4o": {
|
|
16599
16599
|
id: "openai/gpt-4o",
|
|
@@ -17603,7 +17603,7 @@ var MODELS = {
|
|
|
17603
17603
|
cacheWrite: 0
|
|
17604
17604
|
},
|
|
17605
17605
|
contextWindow: 204800,
|
|
17606
|
-
maxTokens:
|
|
17606
|
+
maxTokens: 128e3,
|
|
17607
17607
|
featured: true
|
|
17608
17608
|
},
|
|
17609
17609
|
"z-ai/glm-5.2": {
|
|
@@ -331,7 +331,7 @@ import {
|
|
|
331
331
|
getSupportedThinkingLevels,
|
|
332
332
|
modelsAreEqual,
|
|
333
333
|
supportsFastMode
|
|
334
|
-
} from "./chunk-
|
|
334
|
+
} from "./chunk-7QIBGY2R.js";
|
|
335
335
|
import {
|
|
336
336
|
__commonJS,
|
|
337
337
|
__export,
|
|
@@ -13579,7 +13579,7 @@ function createLazySimpleStream(loadModule) {
|
|
|
13579
13579
|
};
|
|
13580
13580
|
}
|
|
13581
13581
|
function loadAnthropicProviderModule() {
|
|
13582
|
-
anthropicProviderModulePromise ||= import("./anthropic-
|
|
13582
|
+
anthropicProviderModulePromise ||= import("./anthropic-CILMWJ23.js").then((module) => {
|
|
13583
13583
|
const provider = module;
|
|
13584
13584
|
return {
|
|
13585
13585
|
stream: provider.streamAnthropic,
|
|
@@ -13589,7 +13589,7 @@ function loadAnthropicProviderModule() {
|
|
|
13589
13589
|
return anthropicProviderModulePromise;
|
|
13590
13590
|
}
|
|
13591
13591
|
function loadAzureOpenAIResponsesProviderModule() {
|
|
13592
|
-
azureOpenAIResponsesProviderModulePromise ||= import("./azure-openai-responses-
|
|
13592
|
+
azureOpenAIResponsesProviderModulePromise ||= import("./azure-openai-responses-TPNZ54LG.js").then((module) => {
|
|
13593
13593
|
const provider = module;
|
|
13594
13594
|
return {
|
|
13595
13595
|
stream: provider.streamAzureOpenAIResponses,
|
|
@@ -13599,7 +13599,7 @@ function loadAzureOpenAIResponsesProviderModule() {
|
|
|
13599
13599
|
return azureOpenAIResponsesProviderModulePromise;
|
|
13600
13600
|
}
|
|
13601
13601
|
function loadGoogleProviderModule() {
|
|
13602
|
-
googleProviderModulePromise ||= import("./google-
|
|
13602
|
+
googleProviderModulePromise ||= import("./google-3TL5FKLN.js").then((module) => {
|
|
13603
13603
|
const provider = module;
|
|
13604
13604
|
return {
|
|
13605
13605
|
stream: provider.streamGoogle,
|
|
@@ -13609,7 +13609,7 @@ function loadGoogleProviderModule() {
|
|
|
13609
13609
|
return googleProviderModulePromise;
|
|
13610
13610
|
}
|
|
13611
13611
|
function loadGoogleVertexProviderModule() {
|
|
13612
|
-
googleVertexProviderModulePromise ||= import("./google-vertex-
|
|
13612
|
+
googleVertexProviderModulePromise ||= import("./google-vertex-WVFMK6QO.js").then((module) => {
|
|
13613
13613
|
const provider = module;
|
|
13614
13614
|
return {
|
|
13615
13615
|
stream: provider.streamGoogleVertex,
|
|
@@ -13619,7 +13619,7 @@ function loadGoogleVertexProviderModule() {
|
|
|
13619
13619
|
return googleVertexProviderModulePromise;
|
|
13620
13620
|
}
|
|
13621
13621
|
function loadMistralProviderModule() {
|
|
13622
|
-
mistralProviderModulePromise ||= import("./mistral-
|
|
13622
|
+
mistralProviderModulePromise ||= import("./mistral-QV2OSBWW.js").then((module) => {
|
|
13623
13623
|
const provider = module;
|
|
13624
13624
|
return {
|
|
13625
13625
|
stream: provider.streamMistral,
|
|
@@ -13629,7 +13629,7 @@ function loadMistralProviderModule() {
|
|
|
13629
13629
|
return mistralProviderModulePromise;
|
|
13630
13630
|
}
|
|
13631
13631
|
function loadOpenAICodexResponsesProviderModule() {
|
|
13632
|
-
openAICodexResponsesProviderModulePromise ||= import("./openai-codex-responses-
|
|
13632
|
+
openAICodexResponsesProviderModulePromise ||= import("./openai-codex-responses-J2GJ2FAO.js").then((module) => {
|
|
13633
13633
|
const provider = module;
|
|
13634
13634
|
return {
|
|
13635
13635
|
stream: provider.streamOpenAICodexResponses,
|
|
@@ -13639,7 +13639,7 @@ function loadOpenAICodexResponsesProviderModule() {
|
|
|
13639
13639
|
return openAICodexResponsesProviderModulePromise;
|
|
13640
13640
|
}
|
|
13641
13641
|
function loadOpenAICompletionsProviderModule() {
|
|
13642
|
-
openAICompletionsProviderModulePromise ||= import("./openai-completions-
|
|
13642
|
+
openAICompletionsProviderModulePromise ||= import("./openai-completions-W622H2EL.js").then((module) => {
|
|
13643
13643
|
const provider = module;
|
|
13644
13644
|
return {
|
|
13645
13645
|
stream: provider.streamOpenAICompletions,
|
|
@@ -13649,7 +13649,7 @@ function loadOpenAICompletionsProviderModule() {
|
|
|
13649
13649
|
return openAICompletionsProviderModulePromise;
|
|
13650
13650
|
}
|
|
13651
13651
|
function loadOpenAIResponsesProviderModule() {
|
|
13652
|
-
openAIResponsesProviderModulePromise ||= import("./openai-responses-
|
|
13652
|
+
openAIResponsesProviderModulePromise ||= import("./openai-responses-V75QG5T7.js").then((module) => {
|
|
13653
13653
|
const provider = module;
|
|
13654
13654
|
return {
|
|
13655
13655
|
stream: provider.streamOpenAIResponses,
|
|
@@ -32815,7 +32815,7 @@ import { resolve as resolve15 } from "node:path";
|
|
|
32815
32815
|
// dist/core/agent-session.js
|
|
32816
32816
|
import { AsyncLocalStorage } from "node:async_hooks";
|
|
32817
32817
|
import { randomUUID as randomUUID8 } from "node:crypto";
|
|
32818
|
-
import { existsSync as existsSync20, mkdirSync as mkdirSync9, mkdtempSync, readFileSync as
|
|
32818
|
+
import { existsSync as existsSync20, mkdirSync as mkdirSync9, mkdtempSync, readFileSync as readFileSync19, writeFileSync as writeFileSync9 } from "node:fs";
|
|
32819
32819
|
import { tmpdir as tmpdir5 } from "node:os";
|
|
32820
32820
|
import { basename as basename12, dirname as dirname15, join as join25, resolve as resolve14 } from "node:path";
|
|
32821
32821
|
|
|
@@ -38608,7 +38608,7 @@ async function loadExtensionModule(extensionPath) {
|
|
|
38608
38608
|
// (file-path aliases would load a second, divergent copy of each package).
|
|
38609
38609
|
// Also disable tryNative so jiti handles ALL imports (not just the entry point)
|
|
38610
38610
|
// In Node.js/dev: use aliases to resolve to node_modules paths
|
|
38611
|
-
...isBunBinary || isBundledCli ? { virtualModules: (await import("./bundled-modules-
|
|
38611
|
+
...isBunBinary || isBundledCli ? { virtualModules: (await import("./bundled-modules-SKYRKITN.js")).VIRTUAL_MODULES, tryNative: false } : { alias: getAliases() }
|
|
38612
38612
|
});
|
|
38613
38613
|
const module = await jiti.import(extensionPath, { default: true });
|
|
38614
38614
|
const factory = module;
|
|
@@ -41670,10 +41670,49 @@ function loadSkills(options) {
|
|
|
41670
41670
|
};
|
|
41671
41671
|
}
|
|
41672
41672
|
|
|
41673
|
+
// dist/core/always-applied-skills.js
|
|
41674
|
+
import { readFileSync as readFileSync17 } from "node:fs";
|
|
41675
|
+
function loadAlwaysAppliedSkill(skill) {
|
|
41676
|
+
if (skill.disableModelInvocation)
|
|
41677
|
+
return void 0;
|
|
41678
|
+
try {
|
|
41679
|
+
const content = readFileSync17(skill.filePath, "utf-8");
|
|
41680
|
+
const { frontmatter, body } = parseFrontmatter(content);
|
|
41681
|
+
if (frontmatter["always-apply"] !== true || body.length === 0)
|
|
41682
|
+
return void 0;
|
|
41683
|
+
return { name: skill.name, filePath: skill.filePath, instructions: body };
|
|
41684
|
+
} catch {
|
|
41685
|
+
return void 0;
|
|
41686
|
+
}
|
|
41687
|
+
}
|
|
41688
|
+
function formatAlwaysAppliedSkills(skills) {
|
|
41689
|
+
const requiredSkills = skills.map((skill) => loadAlwaysAppliedSkill(skill)).filter((skill) => skill !== void 0);
|
|
41690
|
+
if (requiredSkills.length === 0)
|
|
41691
|
+
return "";
|
|
41692
|
+
const lines = [
|
|
41693
|
+
"The following always-applied skills are mandatory.",
|
|
41694
|
+
"Follow their full instructions without waiting for an explicit skill invocation.",
|
|
41695
|
+
"",
|
|
41696
|
+
"<always_applied_skills>"
|
|
41697
|
+
];
|
|
41698
|
+
for (const skill of requiredSkills) {
|
|
41699
|
+
lines.push(" <skill>");
|
|
41700
|
+
lines.push(` <name>${escapeXml2(skill.name)}</name>`);
|
|
41701
|
+
lines.push(` <location>${escapeXml2(skill.filePath)}</location>`);
|
|
41702
|
+
lines.push(` <instructions>${escapeXml2(skill.instructions)}</instructions>`);
|
|
41703
|
+
lines.push(" </skill>");
|
|
41704
|
+
}
|
|
41705
|
+
lines.push("</always_applied_skills>");
|
|
41706
|
+
return lines.join("\n");
|
|
41707
|
+
}
|
|
41708
|
+
function escapeXml2(value) {
|
|
41709
|
+
return value.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """).replace(/'/g, "'");
|
|
41710
|
+
}
|
|
41711
|
+
|
|
41673
41712
|
// dist/core/kernel/bootstrap.js
|
|
41674
41713
|
import { spawn as spawn6 } from "node:child_process";
|
|
41675
41714
|
import { createHash as createHash4 } from "node:crypto";
|
|
41676
|
-
import { constants as constants4, existsSync as existsSync17, readdirSync as readdirSync8, readFileSync as
|
|
41715
|
+
import { constants as constants4, existsSync as existsSync17, readdirSync as readdirSync8, readFileSync as readFileSync18 } from "node:fs";
|
|
41677
41716
|
import { access, mkdir, readdir as readdir3, readFile as readFile3, rm, stat as stat3, writeFile } from "node:fs/promises";
|
|
41678
41717
|
import os4 from "node:os";
|
|
41679
41718
|
import path5 from "node:path";
|
|
@@ -41758,7 +41797,7 @@ function expandHome(filePath) {
|
|
|
41758
41797
|
}
|
|
41759
41798
|
function fileContentHash(filePath) {
|
|
41760
41799
|
try {
|
|
41761
|
-
return `sha256:${createHash4("sha256").update(
|
|
41800
|
+
return `sha256:${createHash4("sha256").update(readFileSync18(filePath)).digest("hex")}`;
|
|
41762
41801
|
} catch {
|
|
41763
41802
|
return "unreadable";
|
|
41764
41803
|
}
|
|
@@ -41798,7 +41837,7 @@ function normalizePythonSkills(pythonSkills) {
|
|
|
41798
41837
|
}
|
|
41799
41838
|
function readTomlProjectSection(pyprojectPath) {
|
|
41800
41839
|
try {
|
|
41801
|
-
const text =
|
|
41840
|
+
const text = readFileSync18(pyprojectPath, "utf-8");
|
|
41802
41841
|
const match = text.match(/^\s*\[project\]\s*$/m);
|
|
41803
41842
|
if (!match || match.index === void 0) {
|
|
41804
41843
|
return void 0;
|
|
@@ -42569,6 +42608,12 @@ ${content}
|
|
|
42569
42608
|
if (customPromptHasFileAccess && skills.length > 0) {
|
|
42570
42609
|
prompt2 += formatSkillsForPrompt(skills);
|
|
42571
42610
|
}
|
|
42611
|
+
const alwaysAppliedSkills2 = formatAlwaysAppliedSkills(skills);
|
|
42612
|
+
if (alwaysAppliedSkills2) {
|
|
42613
|
+
prompt2 += `
|
|
42614
|
+
|
|
42615
|
+
${alwaysAppliedSkills2}`;
|
|
42616
|
+
}
|
|
42572
42617
|
prompt2 += `
|
|
42573
42618
|
Current date: ${date}`;
|
|
42574
42619
|
prompt2 += `
|
|
@@ -42651,6 +42696,12 @@ ${content}
|
|
|
42651
42696
|
if (hasFileAccess && skills.length > 0) {
|
|
42652
42697
|
prompt += formatSkillsForPrompt(skills);
|
|
42653
42698
|
}
|
|
42699
|
+
const alwaysAppliedSkills = formatAlwaysAppliedSkills(skills);
|
|
42700
|
+
if (alwaysAppliedSkills) {
|
|
42701
|
+
prompt += `
|
|
42702
|
+
|
|
42703
|
+
${alwaysAppliedSkills}`;
|
|
42704
|
+
}
|
|
42654
42705
|
if (appendSection) {
|
|
42655
42706
|
prompt += appendSection;
|
|
42656
42707
|
}
|
|
@@ -54338,7 +54389,7 @@ var AgentSession = class _AgentSession {
|
|
|
54338
54389
|
if (!skill)
|
|
54339
54390
|
return text;
|
|
54340
54391
|
try {
|
|
54341
|
-
const content =
|
|
54392
|
+
const content = readFileSync19(skill.filePath, "utf-8");
|
|
54342
54393
|
const body = stripFrontmatter(content).trim();
|
|
54343
54394
|
const skillBlock = `<skill name="${skill.name}" location="${skill.filePath}">
|
|
54344
54395
|
References are relative to ${skill.baseDir}.
|
|
@@ -59948,7 +59999,7 @@ function activeLifecycleForSession(activeSession) {
|
|
|
59948
59999
|
|
|
59949
60000
|
// dist/cli/daemon-launch.js
|
|
59950
60001
|
import { spawn as spawn9 } from "node:child_process";
|
|
59951
|
-
import { existsSync as existsSync21, readFileSync as
|
|
60002
|
+
import { existsSync as existsSync21, readFileSync as readFileSync20, statSync as statSync12 } from "node:fs";
|
|
59952
60003
|
import { resolve as resolve17 } from "node:path";
|
|
59953
60004
|
|
|
59954
60005
|
// dist/modes/daemon/daemon-runtime-identity.js
|
|
@@ -59956,7 +60007,7 @@ import { resolve as resolve16 } from "node:path";
|
|
|
59956
60007
|
var ASM_AGENT_BUILD_ID_ENV = "ASM_AGENT_BUILD_ID";
|
|
59957
60008
|
var ASM_AGENT_LAUNCHER_PATH_ENV = "ASM_AGENT_LAUNCHER_PATH";
|
|
59958
60009
|
function bundledBuildId() {
|
|
59959
|
-
return false ? void 0 : "v0.8.
|
|
60010
|
+
return false ? void 0 : "v0.8.6-dirty";
|
|
59960
60011
|
}
|
|
59961
60012
|
function getDaemonRuntimeIdentity(environment = process.env) {
|
|
59962
60013
|
const entrypoint = process.argv[1];
|
|
@@ -60271,7 +60322,7 @@ function readDaemonLogTail(socketPath, offset) {
|
|
|
60271
60322
|
const logPath = getDaemonLogPath(socketPath);
|
|
60272
60323
|
let tail = "";
|
|
60273
60324
|
try {
|
|
60274
|
-
const content =
|
|
60325
|
+
const content = readFileSync20(logPath);
|
|
60275
60326
|
tail = content.subarray(content.length < offset ? 0 : offset).subarray(-DAEMON_STARTUP_LOG_TAIL_BYTES).toString("utf8").trim();
|
|
60276
60327
|
} catch {
|
|
60277
60328
|
}
|
|
@@ -353,7 +353,7 @@ import {
|
|
|
353
353
|
waitForPromptAdmission,
|
|
354
354
|
watchWithErrorHandler,
|
|
355
355
|
wrapTextWithAnsi
|
|
356
|
-
} from "./chunk-
|
|
356
|
+
} from "./chunk-EFDSSG52.js";
|
|
357
357
|
import {
|
|
358
358
|
array,
|
|
359
359
|
boolean,
|
|
@@ -390,7 +390,7 @@ import {
|
|
|
390
390
|
getProviders,
|
|
391
391
|
modelsAreEqual,
|
|
392
392
|
supportsFastMode
|
|
393
|
-
} from "./chunk-
|
|
393
|
+
} from "./chunk-7QIBGY2R.js";
|
|
394
394
|
import {
|
|
395
395
|
__commonJS,
|
|
396
396
|
__export,
|