@xenosystem/acp-agent 0.2.2 → 0.2.3

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/dist/cli.js CHANGED
File without changes
package/dist/version.d.ts CHANGED
@@ -7,7 +7,7 @@
7
7
  * now asserts the two agree, because a constant sitting beside a manifest will
8
8
  * drift again the next time only one of them is edited.
9
9
  */
10
- export declare const VERSION = "0.2.2";
10
+ export declare const VERSION = "0.2.3";
11
11
  export declare const AGENT_NAME = "xeno-acp-agent";
12
12
  export declare const AGENT_TITLE = "XENO ACP Agent";
13
13
  /** The ACP protocol version this endpoint speaks. */
package/dist/version.js CHANGED
@@ -7,7 +7,7 @@
7
7
  * now asserts the two agree, because a constant sitting beside a manifest will
8
8
  * drift again the next time only one of them is edited.
9
9
  */
10
- export const VERSION = "0.2.2";
10
+ export const VERSION = "0.2.3";
11
11
  export const AGENT_NAME = "xeno-acp-agent";
12
12
  export const AGENT_TITLE = "XENO ACP Agent";
13
13
  /** The ACP protocol version this endpoint speaks. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xenosystem/acp-agent",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "XENO-owned ACP agent-side stdio endpoint with fixture and approval-gated local provider adapters. NOT official Codex/Claude/Gemini/OpenCode ACP.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -15,30 +15,44 @@
15
15
  "import": "./dist/index.js"
16
16
  }
17
17
  },
18
- "files": ["dist", "README.md", "LICENSE", "NOTICE"],
18
+ "files": [
19
+ "dist",
20
+ "README.md",
21
+ "LICENSE",
22
+ "NOTICE"
23
+ ],
19
24
  "engines": {
20
25
  "node": ">=20"
21
26
  },
22
- "scripts": {
23
- "build": "tsc -p tsconfig.json",
24
- "typecheck": "tsc -p tsconfig.json --noEmit",
25
- "prepack": "pnpm run build",
26
- "clean": "rimraf dist *.tsbuildinfo"
27
- },
28
- "keywords": ["acp", "agent-client-protocol", "ai-agent", "stdio", "xeno"],
27
+ "keywords": [
28
+ "acp",
29
+ "agent-client-protocol",
30
+ "ai-agent",
31
+ "stdio",
32
+ "xeno"
33
+ ],
29
34
  "homepage": "https://xenostudio.ai/product/acp",
30
35
  "repository": {
31
36
  "type": "git",
32
37
  "url": "git+https://github.com/XENO-CORPORATION/xeno-acp.git",
33
38
  "directory": "packages/agent"
34
39
  },
35
- "bugs": { "url": "https://github.com/XENO-CORPORATION/xeno-acp/issues" },
36
- "publishConfig": { "access": "public" },
40
+ "bugs": {
41
+ "url": "https://github.com/XENO-CORPORATION/xeno-acp/issues"
42
+ },
43
+ "publishConfig": {
44
+ "access": "public"
45
+ },
37
46
  "devDependencies": {
38
47
  "@types/node": "^22.9.0",
39
48
  "typescript": "^5.6.3"
40
49
  },
41
50
  "dependencies": {
42
51
  "@xenosystem/agent-sdk": "^0.9.14"
52
+ },
53
+ "scripts": {
54
+ "build": "tsc -p tsconfig.json",
55
+ "typecheck": "tsc -p tsconfig.json --noEmit",
56
+ "clean": "rimraf dist *.tsbuildinfo"
43
57
  }
44
- }
58
+ }