acme-engine 0.0.1 → 0.1.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.
package/README.md CHANGED
@@ -1,19 +1,22 @@
1
- # acme-engine
2
-
3
- Public npm distribution of the ACME model execution runtime used by A008.
4
-
5
- ## Install
6
-
7
- `ash
8
- npm install acme-engine
9
- `
10
-
11
- ## Runtime
12
-
13
- `ash
14
- npx acme-model-runtime
15
- `
16
-
17
- The runtime exposes the cme-model-runtime/2 protocol. Provider profiles and credentials are supplied through the documented ACME model-runtime environment variables.
18
-
19
- Full source, architecture and documentation: https://github.com/zackemannen81/acme-engine
1
+ # acme-engine
2
+
3
+ Provider-neutral model execution runtime for embedding ACME directly in Node applications.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install acme-engine
9
+ ```
10
+
11
+ ## Use
12
+
13
+ ```ts
14
+ import { createAcmeModelRuntime } from 'acme-engine';
15
+ ```
16
+
17
+ `acme-engine` is the convenience facade for the supported in-process
18
+ `@acme-engine/model-runtime` package. It does not own application cognition,
19
+ memory, prompts, tool policy, or model-selection strategy.
20
+
21
+ Version 0.1.0 intentionally replaces the experimental 0.0.1 CLI-only package
22
+ role with an importable library API.
@@ -0,0 +1,2 @@
1
+ export * from '@acme-engine/model-runtime';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export * from '@acme-engine/model-runtime';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC"}
package/package.json CHANGED
@@ -1,25 +1,38 @@
1
- {
2
- "name": "acme-engine",
3
- "version": "0.0.1",
4
- "description": "ACME model execution runtime for provider-neutral AI systems",
5
- "license": "Apache-2.0",
6
- "type": "module",
7
- "engines": {
8
- "node": ">=24.0.0 <25"
9
- },
10
- "bin": {
11
- "acme-model-runtime": "bin/acme-model-runtime.mjs"
12
- },
13
- "files": [
14
- "bin/acme-model-runtime.mjs",
15
- "README.md",
16
- "LICENSE"
17
- ],
18
- "repository": {
19
- "type": "git",
20
- "url": "git+https://github.com/zackemannen81/acme-engine.git"
21
- },
22
- "publishConfig": {
23
- "access": "public"
24
- }
25
- }
1
+ {
2
+ "name": "acme-engine",
3
+ "version": "0.1.1",
4
+ "description": "ACME model execution runtime for provider-neutral AI systems",
5
+ "type": "module",
6
+ "license": "Apache-2.0",
7
+ "files": [
8
+ "dist/**/*.js",
9
+ "dist/**/*.js.map",
10
+ "dist/**/*.d.ts",
11
+ "dist/**/*.d.ts.map",
12
+ "README.md"
13
+ ],
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/index.d.ts",
17
+ "default": "./dist/index.js"
18
+ }
19
+ },
20
+ "dependencies": {
21
+ "@acme-engine/model-runtime": "0.1.1"
22
+ },
23
+ "engines": {
24
+ "node": ">=24.0.0 <25"
25
+ },
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/zackemannen81/acme-engine.git",
29
+ "directory": "packages/acme-engine"
30
+ },
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
34
+ "scripts": {
35
+ "build": "tsc -b --pretty false",
36
+ "typecheck": "tsc -b --pretty false"
37
+ }
38
+ }