@assemblyline-agents/sdk 3.0.0 → 3.2.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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -6,6 +6,21 @@ Installing this package gives you the `assembly-line` CLI plus re-exports of the
6
6
 
7
7
  ## Install
8
8
 
9
+ Give Codex or Claude Code this one line to prepare a repository without creating
10
+ an agent:
11
+
12
+ ```txt
13
+ Run `npx @assemblyline-agents/sdk@latest setup` in this repository. Set up Assembly Line only; do not create an agent.
14
+ ```
15
+
16
+ Or run the setup command directly:
17
+
18
+ ```sh
19
+ npx @assemblyline-agents/sdk@latest setup
20
+ ```
21
+
22
+ For manual dependency installation:
23
+
9
24
  ```sh
10
25
  npm install @assemblyline-agents/sdk
11
26
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@assemblyline-agents/sdk",
3
- "version": "3.0.0",
3
+ "version": "3.2.0",
4
4
  "description": "Vendor-neutral, filesystem-first framework for durable AI agents.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -43,12 +43,12 @@
43
43
  },
44
44
  "license": "MIT",
45
45
  "dependencies": {
46
- "@assemblyline-agents/core": "3.0.0",
47
- "@assemblyline-agents/pi": "3.0.0",
48
- "@assemblyline-agents/runtime": "3.0.0",
49
- "@assemblyline-agents/node": "3.0.0",
50
- "@assemblyline-agents/compiler": "3.0.0",
51
- "@assemblyline-agents/cli": "3.0.0"
46
+ "@assemblyline-agents/core": "3.2.0",
47
+ "@assemblyline-agents/node": "3.2.0",
48
+ "@assemblyline-agents/pi": "3.2.0",
49
+ "@assemblyline-agents/runtime": "3.2.0",
50
+ "@assemblyline-agents/compiler": "3.2.0",
51
+ "@assemblyline-agents/cli": "3.2.0"
52
52
  },
53
53
  "scripts": {
54
54
  "build": "tsc -p tsconfig.json",