glove-foundry 0.0.0
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/LICENSE.md +7 -0
- package/README.md +220 -0
- package/THIRD_PARTY_NOTICES.md +28 -0
- package/dist/chunk-3GCUECPA.js +368 -0
- package/dist/chunk-CRWY7M66.js +3275 -0
- package/dist/chunk-UNHGCCSA.js +4211 -0
- package/dist/chunk-ZFNMFE3T.js +23 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +760 -0
- package/dist/client-CLkZREDr.d.ts +2186 -0
- package/dist/client.d.ts +14 -0
- package/dist/client.js +10 -0
- package/dist/config.d.ts +49 -0
- package/dist/config.js +8 -0
- package/dist/eslint.d.ts +122 -0
- package/dist/eslint.js +172 -0
- package/dist/execution-agent.d.ts +6 -0
- package/dist/execution-agent.js +23 -0
- package/dist/index.d.ts +103 -0
- package/dist/index.js +402 -0
- package/docs/README.md +13 -0
- package/docs/architecture.md +175 -0
- package/docs/building-with-foundry.md +403 -0
- package/docs/evaluation-checklist.md +89 -0
- package/docs/implementation-backlog.md +67 -0
- package/docs/inspector.md +56 -0
- package/package.json +92 -0
package/package.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "glove-foundry",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "An Effect-native, file-routed framework for typed, observable Glove agent applications",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/porkytheblack/glove.git",
|
|
10
|
+
"directory": "packages/glove-foundry"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/porkytheblack/glove",
|
|
13
|
+
"bugs": "https://github.com/porkytheblack/glove/issues",
|
|
14
|
+
"sideEffects": false,
|
|
15
|
+
"main": "./dist/index.js",
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"bin": {
|
|
18
|
+
"glove": "./dist/cli.js",
|
|
19
|
+
"glove-foundry": "./dist/cli.js"
|
|
20
|
+
},
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"import": "./dist/index.js"
|
|
25
|
+
},
|
|
26
|
+
"./client": {
|
|
27
|
+
"types": "./dist/client.d.ts",
|
|
28
|
+
"import": "./dist/client.js"
|
|
29
|
+
},
|
|
30
|
+
"./config": {
|
|
31
|
+
"types": "./dist/config.d.ts",
|
|
32
|
+
"import": "./dist/config.js"
|
|
33
|
+
},
|
|
34
|
+
"./eslint": {
|
|
35
|
+
"types": "./dist/eslint.d.ts",
|
|
36
|
+
"import": "./dist/eslint.js"
|
|
37
|
+
},
|
|
38
|
+
"./package.json": "./package.json"
|
|
39
|
+
},
|
|
40
|
+
"files": [
|
|
41
|
+
"dist",
|
|
42
|
+
"docs",
|
|
43
|
+
"THIRD_PARTY_NOTICES.md"
|
|
44
|
+
],
|
|
45
|
+
"keywords": [
|
|
46
|
+
"glove",
|
|
47
|
+
"agents",
|
|
48
|
+
"framework",
|
|
49
|
+
"runtime",
|
|
50
|
+
"observability",
|
|
51
|
+
"file-routing",
|
|
52
|
+
"effect",
|
|
53
|
+
"agent-applications"
|
|
54
|
+
],
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=20"
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"effect": "^3.22.1",
|
|
60
|
+
"station-env": "^2.2.0",
|
|
61
|
+
"station-signal": "^2.2.0",
|
|
62
|
+
"station-schedules": "^2.2.0",
|
|
63
|
+
"tsx": "^4.21.0",
|
|
64
|
+
"zod": "^4.3.6",
|
|
65
|
+
"glove-core": "3.6.0",
|
|
66
|
+
"glove-js": "0.4.0",
|
|
67
|
+
"glove-mcp": "1.1.0",
|
|
68
|
+
"glove-lisp": "0.4.0",
|
|
69
|
+
"glove-mesh": "0.1.1",
|
|
70
|
+
"glove-memory": "1.1.0",
|
|
71
|
+
"glove-working-environment": "0.6.0",
|
|
72
|
+
"glove-python": "0.3.0"
|
|
73
|
+
},
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"@types/node": "^25.2.3",
|
|
76
|
+
"tsup": "^8.5.1",
|
|
77
|
+
"typescript": "^5.9.3"
|
|
78
|
+
},
|
|
79
|
+
"peerDependencies": {
|
|
80
|
+
"eslint": ">=9"
|
|
81
|
+
},
|
|
82
|
+
"peerDependenciesMeta": {
|
|
83
|
+
"eslint": {
|
|
84
|
+
"optional": true
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"scripts": {
|
|
88
|
+
"build": "tsup",
|
|
89
|
+
"typecheck": "tsc --noEmit",
|
|
90
|
+
"test": "node --test --test-concurrency=1 --import tsx tests/*.test.ts"
|
|
91
|
+
}
|
|
92
|
+
}
|