@asm-agent/coding-agent 0.9.2 → 0.9.4
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 +4 -0
- package/bundled-extensions/00-COMECE-AQUI.txt +233 -0
- package/bundled-extensions/00-INDEX.md +267 -0
- package/bundled-extensions/OLLAMA-TOOL-FORCING-IMPLEMENTATION.md +323 -0
- package/bundled-extensions/OLLAMA-TOOL-FORCING-QUICK-START.txt +113 -0
- package/bundled-extensions/OLLAMA-TOOL-FORCING-TESTS.md +217 -0
- package/bundled-extensions/OLLAMA-TOOL-FORCING.md +155 -0
- package/bundled-extensions/README.txt +178 -0
- package/bundled-extensions/ollama-tool-forcing.ts +90 -0
- package/dist/asm-agent-runtime/run_test.py +19 -0
- package/dist/asm-agent-runtime/src/rlm/__pycache__/__init__.cpython-312.pyc +0 -0
- package/dist/asm-agent-runtime/src/rlm/__pycache__/__init__.cpython-313.pyc +0 -0
- package/dist/asm-agent-runtime/src/rlm/__pycache__/bash.cpython-312.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__/repl.cpython-312.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_bash.cpython-312.pyc +0 -0
- package/dist/asm-agent-runtime/test/test_bash.py +5 -3
- package/dist/bundle/{anthropic-2VRH36LG.js → anthropic-MHZBPOI3.js} +1 -1
- package/dist/bundle/{azure-openai-responses-COYWHJPT.js → azure-openai-responses-STVL56NS.js} +1 -1
- package/dist/bundle/{bundled-modules-N3FE2F3V.js → bundled-modules-ABB56VC3.js} +3 -3
- package/dist/bundle/{chunk-6GUVYK6P.js → chunk-EBIKTZ7C.js} +1 -0
- package/dist/bundle/{chunk-ZFAQZSZL.js → chunk-GUPU2EEK.js} +420 -31
- package/dist/bundle/{chunk-LRHUL5TM.js → chunk-NESKY6T7.js} +10 -10
- package/dist/bundle/{cli-main-PA7BZMDO.js → cli-main-ZYCGVTZE.js} +3 -3
- package/dist/bundle/cli.js +1 -1
- package/dist/bundle/{google-CSTXROSV.js → google-GMTMUI2A.js} +12 -3
- package/dist/bundle/{main-Y475CMOX.js → main-J36EPND6.js} +3 -3
- package/dist/bundle/{mistral-VAF7JADB.js → mistral-UCXDQPIP.js} +1 -1
- package/dist/bundle/{openai-codex-responses-RWZ6P4I3.js → openai-codex-responses-EGZH34H4.js} +1 -1
- package/dist/bundle/{openai-completions-CFB3BOTU.js → openai-completions-N3OFURZC.js} +1 -1
- package/dist/bundle/{openai-responses-4OPGGCBI.js → openai-responses-DTSHMHFQ.js} +1 -1
- package/dist/core/auth-storage.d.ts +1 -1
- package/dist/core/auth-storage.d.ts.map +1 -1
- package/dist/core/auth-storage.js +22 -5
- package/dist/core/auth-storage.js.map +1 -1
- package/dist/core/model-registry.d.ts.map +1 -1
- package/dist/core/model-registry.js +10 -1
- package/dist/core/model-registry.js.map +1 -1
- 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/postinstall.d.ts.map +1 -1
- package/dist/postinstall.js +40 -3
- package/dist/postinstall.js.map +1 -1
- 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 +7 -6
package/dist/postinstall.js
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
import { spawnSync } from "node:child_process";
|
|
2
|
-
import { existsSync } from "node:fs";
|
|
3
|
-
import {
|
|
2
|
+
import { cpSync, existsSync, mkdirSync, readdirSync } from "node:fs";
|
|
3
|
+
import { homedir } from "node:os";
|
|
4
|
+
import { join, resolve } from "node:path";
|
|
4
5
|
import { fileURLToPath } from "node:url";
|
|
5
6
|
import { ensureKernelPython } from "./core/kernel/bootstrap.js";
|
|
6
7
|
import { ensureTool } from "./utils/tools-manager.js";
|
|
7
8
|
const bootstrapKernel = process.env.ASM_AGENT_BOOTSTRAP_KERNEL_ON_INSTALL === "1";
|
|
8
9
|
const bootstrapTools = process.env.ASM_AGENT_BOOTSTRAP_TOOLS_ON_INSTALL === "1";
|
|
9
10
|
const bootstrapAsmCm = process.env.ASM_AGENT_BOOTSTRAP_ASM_CM_ON_INSTALL === "1";
|
|
10
|
-
|
|
11
|
+
const bootstrapExtensions = process.env.ASM_AGENT_SKIP_BUNDLED_EXTENSIONS !== "1";
|
|
12
|
+
if (!bootstrapKernel && !bootstrapTools && !bootstrapAsmCm && !bootstrapExtensions) {
|
|
11
13
|
process.exit(0);
|
|
12
14
|
}
|
|
13
15
|
function bootstrapAsmCmRuntime() {
|
|
@@ -25,6 +27,38 @@ function bootstrapAsmCmRuntime() {
|
|
|
25
27
|
throw new Error(`uv ${args.join(" ")} failed`);
|
|
26
28
|
}
|
|
27
29
|
}
|
|
30
|
+
/**
|
|
31
|
+
* Installs bundled extensions to ~/.asm-agent/extensions/
|
|
32
|
+
* Does not overwrite existing files to preserve user customizations.
|
|
33
|
+
*/
|
|
34
|
+
function installBundledExtensions() {
|
|
35
|
+
const packageRoot = resolve(fileURLToPath(new URL("..", import.meta.url)));
|
|
36
|
+
const bundledDir = resolve(packageRoot, "bundled-extensions");
|
|
37
|
+
const targetDir = join(homedir(), ".asm-agent", "extensions");
|
|
38
|
+
if (!existsSync(bundledDir)) {
|
|
39
|
+
return;
|
|
40
|
+
}
|
|
41
|
+
mkdirSync(targetDir, { recursive: true });
|
|
42
|
+
const files = readdirSync(bundledDir);
|
|
43
|
+
let installed = 0;
|
|
44
|
+
let skipped = 0;
|
|
45
|
+
for (const file of files) {
|
|
46
|
+
const source = join(bundledDir, file);
|
|
47
|
+
const target = join(targetDir, file);
|
|
48
|
+
if (existsSync(target)) {
|
|
49
|
+
skipped++;
|
|
50
|
+
continue;
|
|
51
|
+
}
|
|
52
|
+
cpSync(source, target);
|
|
53
|
+
installed++;
|
|
54
|
+
}
|
|
55
|
+
if (installed > 0) {
|
|
56
|
+
console.log(`asm-agent: installed ${installed} bundled extension(s) to ${targetDir}`);
|
|
57
|
+
}
|
|
58
|
+
if (skipped > 0) {
|
|
59
|
+
console.log(`asm-agent: skipped ${skipped} existing extension(s)`);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
28
62
|
if (bootstrapKernel && process.env.ASM_AGENT_INSTALL_UV === undefined) {
|
|
29
63
|
process.env.ASM_AGENT_INSTALL_UV = "1";
|
|
30
64
|
}
|
|
@@ -35,6 +69,9 @@ function oneLine(message) {
|
|
|
35
69
|
return message.replace(/\s+/g, " ").trim();
|
|
36
70
|
}
|
|
37
71
|
try {
|
|
72
|
+
if (bootstrapExtensions) {
|
|
73
|
+
installBundledExtensions();
|
|
74
|
+
}
|
|
38
75
|
if (bootstrapTools) {
|
|
39
76
|
await Promise.all([ensureTool("fd", true), ensureTool("rg", true)]);
|
|
40
77
|
}
|
package/dist/postinstall.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"postinstall.js","sourceRoot":"","sources":["../src/postinstall.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC/C,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"postinstall.js","sourceRoot":"","sources":["../src/postinstall.ts"],"names":[],"mappings":"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","sourcesContent":["import { spawnSync } from \"node:child_process\";\nimport { cpSync, existsSync, mkdirSync, readdirSync } from \"node:fs\";\nimport { homedir } from \"node:os\";\nimport { join, resolve } from \"node:path\";\nimport { fileURLToPath } from \"node:url\";\nimport { ensureKernelPython } from \"./core/kernel/bootstrap.js\";\nimport { ensureTool } from \"./utils/tools-manager.js\";\n\nconst bootstrapKernel = process.env.ASM_AGENT_BOOTSTRAP_KERNEL_ON_INSTALL === \"1\";\nconst bootstrapTools = process.env.ASM_AGENT_BOOTSTRAP_TOOLS_ON_INSTALL === \"1\";\nconst bootstrapAsmCm = process.env.ASM_AGENT_BOOTSTRAP_ASM_CM_ON_INSTALL === \"1\";\nconst bootstrapExtensions = process.env.ASM_AGENT_SKIP_BUNDLED_EXTENSIONS !== \"1\";\n\nif (!bootstrapKernel && !bootstrapTools && !bootstrapAsmCm && !bootstrapExtensions) {\n\tprocess.exit(0);\n}\n\nfunction bootstrapAsmCmRuntime(): void {\n\tconst packageRoot = resolve(fileURLToPath(new URL(\"..\", import.meta.url)));\n\tconst runtimeRoot = resolve(packageRoot, \"asm-agent-runtime\");\n\tconst python = resolve(runtimeRoot, \".asm-cm-venv/bin/python\");\n\tif (!existsSync(resolve(runtimeRoot, \"vendor/asm/src/drm_language_emitter/checkpoint.py\")))\n\t\tthrow new Error(\"vendored ASM-CM source is unavailable\");\n\tfor (const args of [\n\t\t[\"venv\", resolve(runtimeRoot, \".asm-cm-venv\"), \"--python\", \"3.12\"],\n\t\t[\"pip\", \"install\", \"--python\", python, \"torch>=2.0\", \"numpy\"],\n\t]) {\n\t\tconst result = spawnSync(\"uv\", args, { stdio: \"inherit\" });\n\t\tif (result.status !== 0) throw new Error(`uv ${args.join(\" \")} failed`);\n\t}\n}\n\n/**\n * Installs bundled extensions to ~/.asm-agent/extensions/\n * Does not overwrite existing files to preserve user customizations.\n */\nfunction installBundledExtensions(): void {\n\tconst packageRoot = resolve(fileURLToPath(new URL(\"..\", import.meta.url)));\n\tconst bundledDir = resolve(packageRoot, \"bundled-extensions\");\n\tconst targetDir = join(homedir(), \".asm-agent\", \"extensions\");\n\n\tif (!existsSync(bundledDir)) {\n\t\treturn;\n\t}\n\n\tmkdirSync(targetDir, { recursive: true });\n\n\tconst files = readdirSync(bundledDir);\n\tlet installed = 0;\n\tlet skipped = 0;\n\n\tfor (const file of files) {\n\t\tconst source = join(bundledDir, file);\n\t\tconst target = join(targetDir, file);\n\n\t\tif (existsSync(target)) {\n\t\t\tskipped++;\n\t\t\tcontinue;\n\t\t}\n\n\t\tcpSync(source, target);\n\t\tinstalled++;\n\t}\n\n\tif (installed > 0) {\n\t\tconsole.log(`asm-agent: installed ${installed} bundled extension(s) to ${targetDir}`);\n\t}\n\tif (skipped > 0) {\n\t\tconsole.log(`asm-agent: skipped ${skipped} existing extension(s)`);\n\t}\n}\n\nif (bootstrapKernel && process.env.ASM_AGENT_INSTALL_UV === undefined) {\n\tprocess.env.ASM_AGENT_INSTALL_UV = \"1\";\n}\n\nfunction errorMessage(error: unknown): string {\n\treturn error instanceof Error ? error.message : String(error);\n}\n\nfunction oneLine(message: string): string {\n\treturn message.replace(/\\s+/g, \" \").trim();\n}\n\ntry {\n\tif (bootstrapExtensions) {\n\t\tinstallBundledExtensions();\n\t}\n\tif (bootstrapTools) {\n\t\tawait Promise.all([ensureTool(\"fd\", true), ensureTool(\"rg\", true)]);\n\t}\n\tif (bootstrapKernel) {\n\t\tawait ensureKernelPython();\n\t}\n\tif (bootstrapAsmCm) {\n\t\tbootstrapAsmCmRuntime();\n\t}\n} catch (error) {\n\tconsole.error(`asm-agent: postinstall setup skipped: ${oneLine(errorMessage(error))}`);\n\tif (bootstrapAsmCm) process.exitCode = 1;\n}\n"]}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-extension-custom-provider",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "pi-extension-custom-provider",
|
|
9
|
-
"version": "0.9.
|
|
9
|
+
"version": "0.9.4",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@anthropic-ai/sdk": "^0.52.0"
|
|
12
12
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-extension-sandbox",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "pi-extension-sandbox",
|
|
9
|
-
"version": "0.9.
|
|
9
|
+
"version": "0.9.4",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@anthropic-ai/sandbox-runtime": "^0.0.55"
|
|
12
12
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-extension-with-deps",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "pi-extension-with-deps",
|
|
9
|
-
"version": "0.9.
|
|
9
|
+
"version": "0.9.4",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"ms": "^2.1.3"
|
|
12
12
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asm-agent/coding-agent",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"description": "Coding agent CLI with a persistent Python REPL kernel and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"asmAgentConfig": {
|
|
@@ -28,7 +28,8 @@
|
|
|
28
28
|
"examples",
|
|
29
29
|
"skills",
|
|
30
30
|
"postinstall.cjs",
|
|
31
|
-
"CHANGELOG.md"
|
|
31
|
+
"CHANGELOG.md",
|
|
32
|
+
"bundled-extensions"
|
|
32
33
|
],
|
|
33
34
|
"scripts": {
|
|
34
35
|
"clean": "shx rm -rf dist",
|
|
@@ -48,10 +49,10 @@
|
|
|
48
49
|
},
|
|
49
50
|
"dependencies": {
|
|
50
51
|
"@agentclientprotocol/sdk": "^1.3.0",
|
|
51
|
-
"@asm-agent/agent": "^0.9.
|
|
52
|
-
"@asm-agent/ai": "^0.9.
|
|
53
|
-
"@asm-agent/postgres": "^0.9.
|
|
54
|
-
"@asm-agent/tui": "^0.9.
|
|
52
|
+
"@asm-agent/agent": "^0.9.4",
|
|
53
|
+
"@asm-agent/ai": "^0.9.4",
|
|
54
|
+
"@asm-agent/postgres": "^0.9.4",
|
|
55
|
+
"@asm-agent/tui": "^0.9.4",
|
|
55
56
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
56
57
|
"chalk": "^5.5.0",
|
|
57
58
|
"cli-highlight": "^2.1.11",
|