@studio-foundation/runner 0.20.0 → 0.20.1
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const PACKAGE_VERSION = "0.20.
|
|
1
|
+
export declare const PACKAGE_VERSION = "0.20.1";
|
|
2
2
|
/** Contents of runner/templates/, keyed by path relative to that directory. */
|
|
3
3
|
export declare const BUNDLED_ASSETS: Record<string, string>;
|
|
4
4
|
//# sourceMappingURL=bundled-assets.d.ts.map
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Generated by scripts/gen-bundled-assets.mjs — do not edit.
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
exports.BUNDLED_ASSETS = exports.PACKAGE_VERSION = void 0;
|
|
5
|
-
exports.PACKAGE_VERSION = "0.20.
|
|
5
|
+
exports.PACKAGE_VERSION = "0.20.1";
|
|
6
6
|
/** Contents of runner/templates/, keyed by path relative to that directory. */
|
|
7
7
|
exports.BUNDLED_ASSETS = {
|
|
8
8
|
"tools/repo-manager.tool.yaml": "name: repo_manager\ndescription: Read and write files in the workspace\nversion: 1\n\ncommands:\n - name: repo_manager-read_file\n description: Read a file from the workspace\n parameters:\n path:\n type: string\n required: true\n description: File path relative to the workspace root\n execute:\n type: builtin\n parse_output: json\n\n - name: repo_manager-write_file\n description: Write or create a file in the workspace\n parameters:\n path:\n type: string\n required: true\n description: File path relative to the workspace root\n content:\n type: string\n required: true\n description: Full content to write to the file\n execute:\n type: builtin\n parse_output: json\n\n - name: repo_manager-list_files\n description: List files in the workspace\n parameters:\n path:\n type: string\n required: false\n description: Directory to list (default is workspace root)\n recursive:\n type: boolean\n required: false\n description: Whether to list recursively\n execute:\n type: builtin\n parse_output: json\n\n - name: repo_manager-apply_patch\n description: Apply a unified diff patch to a file\n parameters:\n path:\n type: string\n required: true\n description: File path to patch\n patch:\n type: string\n required: true\n description: Unified diff patch content\n execute:\n type: builtin\n parse_output: json\n\nprompt_snippet: |\n You have access to file management tools. Read files before modifying them.\n Use repo_manager-write_file to create or update files — provide the full file content.\n",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@studio-foundation/runner",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.1",
|
|
4
4
|
"description": "Multi-provider LLM agent runner with tool plugin execution (Anthropic, OpenAI, mock). Used by Studio.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
25
25
|
"js-yaml": "^4.1.0",
|
|
26
26
|
"openai": "^4.77.0",
|
|
27
|
-
"@studio-foundation/anonymizer": "0.20.
|
|
28
|
-
"@studio-foundation/contracts": "0.20.
|
|
27
|
+
"@studio-foundation/anonymizer": "0.20.1",
|
|
28
|
+
"@studio-foundation/contracts": "0.20.1"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/js-yaml": "^4.0.9",
|