@amalgm/agents 0.1.3 → 0.2.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.
Files changed (2) hide show
  1. package/PURPOSE.md +3 -0
  2. package/package.json +4 -4
package/PURPOSE.md CHANGED
@@ -28,6 +28,9 @@ hosts supply explicit ports for resources owned by other products.
28
28
 
29
29
  ## Axioms
30
30
 
31
+ Managed releases bind to one exact published Core version and build from the
32
+ locked dependency graph on the supported Node toolchain.
33
+
31
34
  1. A user can create, list, inspect, edit, and delete agents.
32
35
  2. A user or another agent can start, inspect, and continue an agent session
33
36
  without creating or depending on a Chat conversation.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amalgm/agents",
3
- "version": "0.1.3",
3
+ "version": "0.2.1",
4
4
  "description": "Local-first agent definitions, immutable revisions, and durable sessions.",
5
5
  "license": "UNLICENSED",
6
6
  "private": false,
@@ -42,17 +42,17 @@
42
42
  "README.md"
43
43
  ],
44
44
  "scripts": {
45
- "build": "rm -rf dist && tsc -p tsconfig.build.json && tsx scripts/mark-executables.ts",
45
+ "build": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json && tsx scripts/mark-executables.ts",
46
46
  "check": "tsx scripts/check-tree.ts && tsc -p tsconfig.json && tsc -p tsconfig.test.json",
47
47
  "test": "tsx --test --test-concurrency=1 --test-timeout=30000 test/*.test.ts",
48
48
  "verify": "npm run check && npm run build && npm test",
49
49
  "prepack": "npm run build"
50
50
  },
51
51
  "engines": {
52
- "node": ">=20"
52
+ "node": ">=24"
53
53
  },
54
54
  "dependencies": {
55
- "@amalgm/core": "^0.1.0",
55
+ "@amalgm/core": "0.4.7",
56
56
  "@types/better-sqlite3": "^7.6.13",
57
57
  "@types/node": "^20.19.43",
58
58
  "better-sqlite3": "^12.6.2"