@orkestrel/tool 0.0.4 → 0.0.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orkestrel/tool",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Concrete LLM-callable tools for the @orkestrel line — workflow authoring, workspace editing, and sub-agent delegation, over the agent tool runtime, with pluggable stores. Part of the @orkestrel line.",
5
5
  "keywords": [
6
6
  "agent",
@@ -18,7 +18,7 @@
18
18
  "url": "git+https://github.com/orkestrel/tool.git"
19
19
  },
20
20
  "files": [
21
- "dist",
21
+ "dist/src",
22
22
  "README.md"
23
23
  ],
24
24
  "type": "module",
@@ -52,22 +52,22 @@
52
52
  "access": "public"
53
53
  },
54
54
  "scripts": {
55
- "clean": "node -e \"try{require('node:fs').rmSync('dist',{recursive:true,force:true})}catch{}\"",
55
+ "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
56
56
  "copy": "node -e \"const fs=require('node:fs'),p=require('node:path'),a=process.argv[1],b=process.argv[2];fs.mkdirSync(p.dirname(b),{recursive:true});fs.cpSync(a,b,{force:true});console.log('Copied: '+a+' to '+b)\"",
57
- "tmp:txt": "node -e \"const fs=require('node:fs'),p=require('node:path');function walk(d){for(const e of fs.readdirSync(d,{withFileTypes:true})){const f=p.join(d,e.name);if(e.isDirectory()){walk(f)}else if(!e.name.endsWith('.md')&&!e.name.endsWith('.txt')){const t=f+'.txt';if(!fs.existsSync(t)){fs.renameSync(f,t)}else{console.warn('Skipping '+f+' — target exists: '+t)}}}}try{walk('tmp')}catch(e){if(e.code!=='ENOENT')throw e}\"",
58
57
  "scaffold": "scaffold",
59
- "lint": "oxlint --config .oxlintrc.json --fix .",
58
+ "lint": "oxlint --config .oxlintrc.json --fix --deny-warnings .",
60
59
  "check": "tsc --noEmit --project tsconfig.json && npm run check:src",
61
60
  "check:src": "npm run check:src:core && npm run check:src:server",
62
61
  "check:src:core": "tsc --noEmit -p configs/src/tsconfig.core.json",
63
62
  "check:src:server": "tsc --noEmit -p configs/src/tsconfig.server.json",
64
63
  "format": "oxfmt --config .oxfmtrc.json --write .",
65
64
  "format:check": "oxfmt --config .oxfmtrc.json --check .",
66
- "lint:check": "oxlint --config .oxlintrc.json .",
67
- "test": "npm run test:src && npm run test:guides",
65
+ "lint:check": "oxlint --config .oxlintrc.json --deny-warnings .",
66
+ "test": "npm run test:src && npm run test:policy && npm run test:guides",
68
67
  "test:src": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core --project src:server",
69
68
  "test:src:core": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core",
70
69
  "test:src:server": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:server",
70
+ "test:policy": "vitest run --config vite.config.ts --no-cache --reporter=dot --project policy",
71
71
  "test:guides": "vitest run --config vite.config.ts --reporter=dot --project guides",
72
72
  "build": "npm run clean && npm run build:src",
73
73
  "build:src": "npm run build:src:core && npm run build:src:server",
@@ -76,28 +76,28 @@
76
76
  "prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test"
77
77
  },
78
78
  "dependencies": {
79
- "@orkestrel/agent": "^0.0.8",
80
- "@orkestrel/contract": "^0.0.7",
81
- "@orkestrel/database": "^0.0.5",
82
- "@orkestrel/relation": "^0.0.3",
83
- "@orkestrel/server": "^0.0.6",
84
- "@orkestrel/terminal": "^0.0.4",
85
- "@orkestrel/workflow": "^0.0.6"
79
+ "@orkestrel/agent": "^0.0.9",
80
+ "@orkestrel/contract": "^0.0.8",
81
+ "@orkestrel/database": "^0.0.6",
82
+ "@orkestrel/relation": "^0.0.6",
83
+ "@orkestrel/server": "^0.0.7",
84
+ "@orkestrel/terminal": "^0.0.5",
85
+ "@orkestrel/workflow": "^0.0.7"
86
86
  },
87
87
  "devDependencies": {
88
88
  "@microsoft/api-extractor": "^7.58.12",
89
- "@orkestrel/guide": "^0.0.5",
90
- "@orkestrel/scaffold": "^0.0.2",
91
- "@types/node": "^26.1.1",
89
+ "@orkestrel/guide": "^0.0.7",
90
+ "@orkestrel/scaffold": "^0.0.7",
91
+ "@types/node": "^26.1.2",
92
92
  "@vitest/browser-playwright": "^4.1.10",
93
- "oxfmt": "^0.59.0",
94
- "oxlint": "^1.74.0",
93
+ "oxfmt": "^0.61.0",
94
+ "oxlint": "^1.76.0",
95
95
  "typescript": "^6.0.3",
96
96
  "vite": "^8.1.5",
97
97
  "vite-plugin-dts": "^5.0.3",
98
98
  "vitest": "^4.1.10"
99
99
  },
100
100
  "engines": {
101
- "node": ">=22"
101
+ "node": ">=22.12.0"
102
102
  }
103
103
  }