a2ald 0.1.2 → 0.1.6

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 +41 -0
  2. package/package.json +19 -13
package/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # a2ald
2
+
3
+ npm distribution of the **A2AL daemon** (`a2ald`): decentralized agent networking for AI agents.
4
+
5
+ The main package pulls in the correct **platform binary** via optional dependencies (`@a2al/a2ald-*`). Install once; the right binary is selected for Linux, macOS, or Windows (x64/arm64 where applicable).
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ npm install a2ald
11
+ ```
12
+
13
+ ## Programmatic use
14
+
15
+ ```js
16
+ const { getBinaryPath } = require("a2ald");
17
+ const bin = getBinaryPath();
18
+ // spawn or exec `bin` as your process needs
19
+ ```
20
+
21
+ ## CLI
22
+
23
+ After install, the `a2ald` binary is available where npm links local binaries (e.g. `npx a2ald` or your `node_modules/.bin`).
24
+
25
+ ```bash
26
+ npx a2ald --help
27
+ ```
28
+
29
+ ## Documentation
30
+
31
+ - Repository & full docs: [github.com/a2al/a2al](https://github.com/a2al/a2al)
32
+ - User-facing guides live under the repo `doc/` directory.
33
+
34
+ ## Official websites
35
+
36
+ - **A2AL** — [a2al.org](https://a2al.org) — project site and documentation hub
37
+ - **Tangled Network** — [tanglednet.com](https://tanglednet.com) · short link [tngld.net](https://tngld.net)
38
+
39
+ ## License
40
+
41
+ [MPL-2.0](https://www.mozilla.org/MPL/2.0/)
package/package.json CHANGED
@@ -1,21 +1,26 @@
1
1
  {
2
2
  "name": "a2ald",
3
- "version": "0.1.2",
3
+ "version": "0.1.6",
4
4
  "description": "A2AL daemon — decentralized agent networking for AI agents",
5
5
  "license": "MPL-2.0",
6
- "homepage": "https://github.com/a2al/a2al",
6
+ "homepage": "https://a2al.org",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "https://github.com/a2al/a2al.git",
10
10
  "directory": "npm/a2ald"
11
11
  },
12
12
  "keywords": [
13
- "a2al",
14
- "agent",
15
- "mcp",
16
- "p2p",
13
+ "service-discovery",
14
+ "service-registry",
17
15
  "decentralized",
18
- "ai"
16
+ "agent-networking",
17
+ "agent-to-agent",
18
+ "ai-agents",
19
+ "p2p",
20
+ "a2a",
21
+ "mcp",
22
+ "mcp-server",
23
+ "agents"
19
24
  ],
20
25
  "bin": {
21
26
  "a2ald": "bin/a2ald"
@@ -23,13 +28,14 @@
23
28
  "main": "index.js",
24
29
  "files": [
25
30
  "bin",
26
- "index.js"
31
+ "index.js",
32
+ "README.md"
27
33
  ],
28
34
  "optionalDependencies": {
29
- "@a2al/a2ald-linux-x64": "0.1.2",
30
- "@a2al/a2ald-linux-arm64": "0.1.2",
31
- "@a2al/a2ald-darwin-x64": "0.1.2",
32
- "@a2al/a2ald-darwin-arm64": "0.1.2",
33
- "@a2al/a2ald-win32-x64": "0.1.2"
35
+ "@a2al/a2ald-linux-x64": "0.1.6",
36
+ "@a2al/a2ald-linux-arm64": "0.1.6",
37
+ "@a2al/a2ald-darwin-x64": "0.1.6",
38
+ "@a2al/a2ald-darwin-arm64": "0.1.6",
39
+ "@a2al/a2ald-win32-x64": "0.1.6"
34
40
  }
35
41
  }