agentwheel 0.7.0 → 0.8.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/README.md +29 -9
- package/dist/index.js +4692 -764
- package/openpack.json +8 -0
- package/package.json +3 -1
- package/skills/agentwheel/SKILL.md +397 -0
package/README.md
CHANGED
|
@@ -101,14 +101,24 @@ For a control-plane setup, define named agents in config. Global config lives at
|
|
|
101
101
|
```jsonc
|
|
102
102
|
{
|
|
103
103
|
"agents": {
|
|
104
|
-
"lab-openclaw": { "adapter": "openclaw", "root": "/Users/me/.openclaw-home" },
|
|
105
|
-
"
|
|
104
|
+
"lab-openclaw": { "adapter": "openclaw", "root": "/Users/me/.openclaw-home", "transport": "local" },
|
|
105
|
+
"remote-codex": {
|
|
106
|
+
"adapter": "codex",
|
|
107
|
+
"root": "/home/agent/project",
|
|
108
|
+
"transport": "ssh",
|
|
109
|
+
"host": "agent-host.example",
|
|
110
|
+
"user": "agent",
|
|
111
|
+
"port": 22,
|
|
112
|
+
"identityFile": "~/.ssh/id_ed25519"
|
|
113
|
+
}
|
|
106
114
|
},
|
|
107
115
|
"profiles": {
|
|
108
|
-
"daily":
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
116
|
+
"daily": {
|
|
117
|
+
"runtimes": [
|
|
118
|
+
{ "agent": "lab-openclaw" },
|
|
119
|
+
{ "agent": "remote-codex" }
|
|
120
|
+
]
|
|
121
|
+
}
|
|
112
122
|
}
|
|
113
123
|
}
|
|
114
124
|
```
|
|
@@ -119,6 +129,16 @@ agentwheel sync --all
|
|
|
119
129
|
agentwheel sync --profile daily
|
|
120
130
|
```
|
|
121
131
|
|
|
132
|
+
SSH targets use the same manifest and drift model as local targets. `plan --dry-run` reads the
|
|
133
|
+
remote install manifest and hashes remote files before deciding whether a file is up to date,
|
|
134
|
+
drifted, or conflicting. SSH hosts need `ssh`, `tar`, and `node` available on `PATH`.
|
|
135
|
+
|
|
136
|
+
To scaffold a control-plane example:
|
|
137
|
+
|
|
138
|
+
```bash
|
|
139
|
+
agentwheel init --fleet-example
|
|
140
|
+
```
|
|
141
|
+
|
|
122
142
|
Target resolution order is exact: `--target-root` wins, then `--agent`, then auto-detect from the
|
|
123
143
|
current directory, then fallback to the current directory.
|
|
124
144
|
|
|
@@ -139,9 +159,9 @@ Flow: **author + your workspace → `sync` → runtime**.
|
|
|
139
159
|
A package is a git repo (or folder) with a JSON manifest and a canonical layout:
|
|
140
160
|
|
|
141
161
|
```jsonc
|
|
142
|
-
//
|
|
162
|
+
// openpack.json (plain JSON or JSONC — both work; agentwheel.json remains a legacy alias)
|
|
143
163
|
{
|
|
144
|
-
"schemaVersion":
|
|
164
|
+
"schemaVersion": 2,
|
|
145
165
|
"name": "your-org/agent-pack",
|
|
146
166
|
"version": "0.1.0",
|
|
147
167
|
"provides": [
|
|
@@ -204,7 +224,7 @@ optional, and `agentwheel add <url|path>` always works without it.
|
|
|
204
224
|
The public package registry lives at
|
|
205
225
|
[`NestDevLab/agentwheel-registry`](https://github.com/NestDevLab/agentwheel-registry).
|
|
206
226
|
|
|
207
|
-
1. Create a public repo with `
|
|
227
|
+
1. Create a public repo with `openpack.json` and a standard layout such as `instructions/`, `rules/`, `skills/`, `commands/`, `mcp/`, or `hooks/`.
|
|
208
228
|
2. Open a pull request to `agentwheel-registry` that adds an entry to `index.json`.
|
|
209
229
|
3. Users install by short name:
|
|
210
230
|
|