agentsmesh 0.14.0 → 0.15.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/CHANGELOG.md +6 -0
- package/README.md +26 -1
- package/dist/cli.js +112 -112
- package/dist/engine.js +23 -3
- package/dist/engine.js.map +1 -1
- package/dist/index.js +23 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1edb936: Homebrew tap and standalone-binary distribution. `brew tap samplexbro/agentsmesh && brew install agentsmesh` installs from a Homebrew formula auto-rendered against the published npm tarball; `curl -fsSL https://github.com/sampleXbro/agentsmesh/releases/latest/download/install.sh | sh` downloads a Node-free Bun-compiled binary for macOS (arm64/x64) and Linux (arm64/x64), verifies SHA256, installs to `~/.agentsmesh/bin`, and adds it to PATH for zsh, bash, and fish. The release workflow builds binaries for every supported platform on each `master` push, attaches them to a GitHub Release alongside `SHA256SUMS`, and pushes the formula to the tap repo; `workflow_dispatch` re-runs rebuild assets against an existing tag. Installer fails closed on missing/unverifiable checksums and rejects shell-unsafe `AGENTSMESH_INSTALL` paths.
|
|
8
|
+
|
|
3
9
|
## 0.14.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -24,6 +24,31 @@ AI coding assistants now ship with their own configuration formats — `CLAUDE.m
|
|
|
24
24
|
|
|
25
25
|
---
|
|
26
26
|
|
|
27
|
+
## Install
|
|
28
|
+
|
|
29
|
+
### npm (recommended for Node.js projects)
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npm install -g agentsmesh
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### Homebrew (macOS / Linux)
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
brew tap samplexbro/agentsmesh
|
|
39
|
+
brew install agentsmesh
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### Standalone binary (no Node.js required)
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
curl -fsSL https://github.com/sampleXbro/agentsmesh/releases/latest/download/install.sh | sh
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Or download a binary directly from [GitHub Releases](https://github.com/sampleXbro/agentsmesh/releases/latest).
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
27
52
|
## Before / After
|
|
28
53
|
|
|
29
54
|
**Before — fragmented assistant-native config in one repo:**
|
|
@@ -64,7 +89,7 @@ The native files above are still emitted — AgentsMesh writes them for you from
|
|
|
64
89
|
|
|
65
90
|
## 60-second quickstart
|
|
66
91
|
|
|
67
|
-
|
|
92
|
+
Works on Linux, macOS, and Windows. The `npx` commands below require Node.js 20+; see [Install](#install) for alternatives that don't need Node.js.
|
|
68
93
|
|
|
69
94
|
```bash
|
|
70
95
|
npx agentsmesh init # scaffold .agentsmesh/ + agentsmesh.yaml
|