agentwheel 0.14.6 → 0.14.7
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 +3 -2
- package/dist/index.js +443 -276
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -75,7 +75,8 @@ for project/workspace installs and `user` for documented user-level installs. If
|
|
|
75
75
|
installed in more than one type, agentwheel requires `--installation-type` instead of guessing.
|
|
76
76
|
|
|
77
77
|
- **OpenClaw** — workspace `skills/`, local plugin directories; user `~/.openclaw/skills`,
|
|
78
|
-
`~/.openclaw/workspace/AGENTS.md`,
|
|
78
|
+
`~/.openclaw/workspace/AGENTS.md`, `~/.openclaw/workspace-subagents/<name>/AGENTS.md`,
|
|
79
|
+
and `~/.openclaw/openclaw.json`
|
|
79
80
|
- **Claude Code** — `CLAUDE.md`, `.claude/`, `.mcp.json`, and user `~/.claude/`
|
|
80
81
|
- **Codex CLI** — `AGENTS.md`, `.agents/skills`, `plugins/`, `.codex/`, and user equivalents
|
|
81
82
|
- **GitHub Copilot CLI** — `.github/`, user `~/.copilot/`, and documented `.agents` skill alternatives
|
|
@@ -522,7 +523,7 @@ Built-in runtime targets:
|
|
|
522
523
|
|
|
523
524
|
| Runtime | Native supported targets |
|
|
524
525
|
|---|---|
|
|
525
|
-
| **OpenClaw** | `local: skills/, .openclaw/plugins/`; `user: ~/.openclaw/workspace/AGENTS.md, ~/.openclaw/skills, ~/.openclaw/openclaw.json`; no built-in `rules` target |
|
|
526
|
+
| **OpenClaw** | `local: skills/, .openclaw/plugins/`; `user: ~/.openclaw/workspace/AGENTS.md, ~/.openclaw/workspace-subagents/<name>/AGENTS.md, ~/.openclaw/skills, ~/.openclaw/openclaw.json`; no built-in `rules` target |
|
|
526
527
|
| **Claude Code** | `local: CLAUDE.md, .claude/skills, .claude/rules, .claude/commands, .claude/agents, .claude/plugins, .mcp.json, .claude/settings.json`; `user: ~/.claude/...` except project MCP; rules are behavioral/path-scoped |
|
|
527
528
|
| **Codex CLI** | `local: AGENTS.md, .agents/skills, plugins/, .codex/agents, .codex/config.toml, .codex/hooks.json`; `user: ~/.codex/AGENTS.md, ~/.agents/skills, ~/.codex/plugins, ~/.codex/agents, ~/.codex/config.toml, ~/.codex/hooks.json`; no built-in `rules` target; generic settings are planned, not implemented |
|
|
528
529
|
| **Hermes** | `local: AGENTS.md`; `user: ~/.hermes/SOUL.md, ~/.hermes/skills, ~/.hermes/plugins, ~/.hermes/config.yaml`; rules require explicit adapter config |
|