@asm-agent/coding-agent 0.8.6 → 0.8.8
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/asm-agent-runtime/src/rlm/__pycache__/__init__.cpython-313.pyc +0 -0
- package/dist/asm-agent-runtime/src/rlm/__pycache__/_winjob.cpython-313.pyc +0 -0
- package/dist/asm-agent-runtime/src/rlm/__pycache__/bash.cpython-313.pyc +0 -0
- package/dist/asm-agent-runtime/src/rlm/__pycache__/harness.cpython-313.pyc +0 -0
- package/dist/asm-agent-runtime/src/rlm/__pycache__/mcp.cpython-313.pyc +0 -0
- package/dist/asm-agent-runtime/src/rlm/__pycache__/mcp_base.cpython-313.pyc +0 -0
- package/dist/asm-agent-runtime/src/rlm/__pycache__/repl.cpython-313.pyc +0 -0
- package/dist/asm-agent-runtime/test/__pycache__/test_agent_message_skill.cpython-313.pyc +0 -0
- package/dist/asm-agent-runtime/test/__pycache__/test_bash.cpython-313.pyc +0 -0
- package/dist/asm-agent-runtime/test/__pycache__/test_harness.cpython-313.pyc +0 -0
- package/dist/asm-agent-runtime/test/__pycache__/test_mcp.cpython-313.pyc +0 -0
- package/dist/asm-agent-runtime/test/__pycache__/test_mcp_base.cpython-313.pyc +0 -0
- package/dist/asm-agent-runtime/test/__pycache__/test_repl.cpython-313.pyc +0 -0
- package/dist/asm-agent-runtime/test/__pycache__/test_subagent_registry.cpython-313.pyc +0 -0
- package/dist/asm-agent-runtime/test/__pycache__/test_winjob.cpython-313.pyc +0 -0
- package/dist/bundle/{anthropic-CILMWJ23.js → anthropic-OFECORE7.js} +1 -1
- package/dist/bundle/{azure-openai-responses-TPNZ54LG.js → azure-openai-responses-AOVTLR6N.js} +2 -2
- package/dist/bundle/{bundled-modules-SKYRKITN.js → bundled-modules-JQCJDEIY.js} +4 -4
- package/dist/bundle/{chunk-EFDSSG52.js → chunk-7TB7CGPV.js} +319 -292
- package/dist/bundle/{chunk-IYXHHLR6.js → chunk-A65OM3TZ.js} +1 -1
- package/dist/bundle/{chunk-J6ATXG62.js → chunk-CMMSLBAW.js} +12 -8
- package/dist/bundle/{chunk-YYVQTKC6.js → chunk-JC2TT4MZ.js} +88 -4
- package/dist/bundle/{chunk-7QIBGY2R.js → chunk-M67RGWDQ.js} +597 -191
- package/dist/bundle/{cli-main-O3HK7MNQ.js → cli-main-FNHDQGQD.js} +4 -4
- package/dist/bundle/cli.js +1 -1
- package/dist/bundle/{compile-UQNZ2TRI.js → compile-BYYUFOG3.js} +1 -1
- package/dist/bundle/{google-3TL5FKLN.js → google-RVJL6RIQ.js} +1 -1
- package/dist/bundle/{google-vertex-WVFMK6QO.js → google-vertex-EZTRRRH6.js} +1 -1
- package/dist/bundle/{main-4QYKME2K.js → main-IYXIIAJN.js} +4 -4
- package/dist/bundle/{mistral-QV2OSBWW.js → mistral-FSGKSMA7.js} +1 -1
- package/dist/bundle/{openai-codex-responses-J2GJ2FAO.js → openai-codex-responses-VM5Y564D.js} +2 -2
- package/dist/bundle/{openai-completions-W622H2EL.js → openai-completions-X46FOQDN.js} +5 -2
- package/dist/bundle/{openai-responses-V75QG5T7.js → openai-responses-SOQNEPBE.js} +2 -2
- package/dist/core/model-registry.d.ts.map +1 -1
- package/dist/core/model-registry.js +9 -1
- package/dist/core/model-registry.js.map +1 -1
- package/dist/core/ollama-models.d.ts +6 -0
- package/dist/core/ollama-models.d.ts.map +1 -0
- package/dist/core/ollama-models.js +77 -0
- package/dist/core/ollama-models.js.map +1 -0
- package/dist/core/provider-display-names.d.ts.map +1 -1
- package/dist/core/provider-display-names.js +1 -0
- package/dist/core/provider-display-names.js.map +1 -1
- package/dist/skills/request-report/SKILL.md +19 -0
- package/docs/models.md +2 -0
- 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/request-report/SKILL.md +19 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.8.8] - 2026-09-03
|
|
4
|
+
|
|
5
|
+
- Fixed selected Ollama models failing runtime authentication before requests were sent.
|
|
6
|
+
|
|
7
|
+
## [0.8.7] - 2026-09-03
|
|
8
|
+
|
|
9
|
+
- Added automatic Ollama model discovery and selection from the `/model` menu.
|
|
10
|
+
|
|
3
11
|
## [0.8.6] - 2026-08-31
|
|
4
12
|
|
|
5
13
|
- Added always-applied skills for SOLID source modularity, final response summaries, and numbered per-request reports.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/bundle/{azure-openai-responses-TPNZ54LG.js → azure-openai-responses-AOVTLR6N.js}
RENAMED
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
convertResponsesMessages,
|
|
4
4
|
convertResponsesTools,
|
|
5
5
|
processResponsesStream
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-A65OM3TZ.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-M67RGWDQ.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-JC2TT4MZ.js";
|
|
56
56
|
import {
|
|
57
57
|
AgentSession,
|
|
58
58
|
CURRENT_SESSION_VERSION,
|
|
@@ -136,20 +136,20 @@ import {
|
|
|
136
136
|
withFileMutationQueue,
|
|
137
137
|
wrapRegisteredTool,
|
|
138
138
|
wrapRegisteredTools
|
|
139
|
-
} from "./chunk-
|
|
139
|
+
} from "./chunk-7TB7CGPV.js";
|
|
140
140
|
import "./chunk-VWR3YFK5.js";
|
|
141
141
|
import "./chunk-N2CSAETN.js";
|
|
142
142
|
import "./chunk-5QCJ5DQU.js";
|
|
143
143
|
import {
|
|
144
144
|
compile_exports,
|
|
145
145
|
value_exports2 as value_exports
|
|
146
|
-
} from "./chunk-
|
|
146
|
+
} from "./chunk-CMMSLBAW.js";
|
|
147
147
|
import "./chunk-2T7M7VJ4.js";
|
|
148
148
|
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-M67RGWDQ.js";
|
|
153
153
|
import {
|
|
154
154
|
__export
|
|
155
155
|
} from "./chunk-BAWSWWEU.js";
|