@assemblyline-agents/sdk 0.1.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 +21 -0
- package/README.md +19 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +3 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -0
- package/dist/legacy-cli.d.ts +3 -0
- package/dist/legacy-cli.d.ts.map +1 -0
- package/dist/legacy-cli.js +8 -0
- package/dist/legacy-cli.js.map +1 -0
- package/package.json +58 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 OpenEve contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @assemblyline-agents/sdk
|
|
2
|
+
|
|
3
|
+
The main entry point for Assembly Line, a vendor-neutral, filesystem-first framework for durable AI agents.
|
|
4
|
+
|
|
5
|
+
Installing this package gives you the `assembly-line` CLI plus re-exports of the framework's core building blocks: `@assemblyline-agents/core` (definitions and contracts), `@assemblyline-agents/compiler` (agent compilation), `@assemblyline-agents/runtime` (the durable run loop), `@assemblyline-agents/node` (the Node.js host), and the canonical Pi agent harness from `@assemblyline-agents/pi`. Most projects depend on this single package rather than the individual framework packages.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm install @assemblyline-agents/sdk
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Part of Assembly Line
|
|
14
|
+
|
|
15
|
+
This package is part of [Assembly Line](https://github.com/jasonbadeaux/openeve), a vendor-neutral, filesystem-first framework for durable AI agents. See the developer documentation in [docs/developers/](https://github.com/jasonbadeaux/openeve/tree/main/docs/developers) for setup, agent authoring, and deployment guides.
|
|
16
|
+
|
|
17
|
+
## License
|
|
18
|
+
|
|
19
|
+
MIT
|
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AACA,OAAO,0BAA0B,CAAC"}
|
package/dist/cli.js
ADDED
package/dist/cli.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AACA,OAAO,0BAA0B,CAAC"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from "@assemblyline-agents/core";
|
|
2
|
+
export * from "@assemblyline-agents/compiler";
|
|
3
|
+
export * from "@assemblyline-agents/runtime";
|
|
4
|
+
export * from "@assemblyline-agents/node";
|
|
5
|
+
export { PI_CONTINUATION_VERSION, PI_HARNESS_ID, piAgentHarness } from "@assemblyline-agents/pi";
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,2BAA2B,CAAC;AAC1C,OAAO,EAAE,uBAAuB,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from "@assemblyline-agents/core";
|
|
2
|
+
export * from "@assemblyline-agents/compiler";
|
|
3
|
+
export * from "@assemblyline-agents/runtime";
|
|
4
|
+
export * from "@assemblyline-agents/node";
|
|
5
|
+
export { PI_CONTINUATION_VERSION, PI_HARNESS_ID, piAgentHarness } from "@assemblyline-agents/pi";
|
|
6
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,2BAA2B,CAAC;AAC1C,OAAO,EAAE,uBAAuB,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"legacy-cli.d.ts","sourceRoot":"","sources":["../src/legacy-cli.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Temporary compatibility bin for the OpenEve → Assembly Line rename.
|
|
3
|
+
// Kept through the compatibility soak; removal is tracked in
|
|
4
|
+
// docs/rename/manifest.md.
|
|
5
|
+
console.error("openeve: this command is now `assembly-line`; the `openeve` alias will be removed in a future release.");
|
|
6
|
+
await import("@assemblyline-agents/cli");
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=legacy-cli.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"legacy-cli.js","sourceRoot":"","sources":["../src/legacy-cli.ts"],"names":[],"mappings":";AACA,sEAAsE;AACtE,6DAA6D;AAC7D,2BAA2B;AAC3B,OAAO,CAAC,KAAK,CAAC,wGAAwG,CAAC,CAAC;AACxH,MAAM,MAAM,CAAC,0BAA0B,CAAC,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@assemblyline-agents/sdk",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Vendor-neutral, filesystem-first framework for durable AI agents.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/jasonbadeaux/openeve.git",
|
|
8
|
+
"directory": "packages/sdk"
|
|
9
|
+
},
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/jasonbadeaux/openeve/issues"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://github.com/jasonbadeaux/openeve#readme",
|
|
14
|
+
"author": "OpenEve contributors",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"assembly-line",
|
|
17
|
+
"assemblyline",
|
|
18
|
+
"ai",
|
|
19
|
+
"agents",
|
|
20
|
+
"framework",
|
|
21
|
+
"durable-agents",
|
|
22
|
+
"cli",
|
|
23
|
+
"filesystem-first"
|
|
24
|
+
],
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public"
|
|
27
|
+
},
|
|
28
|
+
"type": "module",
|
|
29
|
+
"bin": {
|
|
30
|
+
"assembly-line": "./dist/cli.js",
|
|
31
|
+
"openeve": "./dist/legacy-cli.js"
|
|
32
|
+
},
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"default": "./dist/index.js"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"files": [
|
|
40
|
+
"dist"
|
|
41
|
+
],
|
|
42
|
+
"engines": {
|
|
43
|
+
"node": ">=22.19.0"
|
|
44
|
+
},
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@assemblyline-agents/cli": "0.1.0",
|
|
48
|
+
"@assemblyline-agents/core": "0.1.0",
|
|
49
|
+
"@assemblyline-agents/compiler": "0.1.0",
|
|
50
|
+
"@assemblyline-agents/node": "0.1.0",
|
|
51
|
+
"@assemblyline-agents/pi": "0.1.0",
|
|
52
|
+
"@assemblyline-agents/runtime": "0.1.0"
|
|
53
|
+
},
|
|
54
|
+
"scripts": {
|
|
55
|
+
"build": "tsc -p tsconfig.json",
|
|
56
|
+
"check": "tsc -p tsconfig.json --noEmit"
|
|
57
|
+
}
|
|
58
|
+
}
|