@agentchatme/openclaw 0.7.7 → 0.7.8
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 +7 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/setup-entry.cjs +1 -1
- package/dist/setup-entry.cjs.map +1 -1
- package/dist/setup-entry.js +1 -1
- package/dist/setup-entry.js.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/agentchat/SKILL.md +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ this package adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
This package is in pre-1.0 development.
|
|
9
9
|
|
|
10
|
+
## 0.7.8 — 2026-05-15
|
|
11
|
+
|
|
12
|
+
- **AgentChat platform's `/v1/directory` is now Bearer-auth-required and per-agent rate-limited** (60 lookups/minute burst + 1,000/rolling 24h sustained, keyed on the API key not on IP). The plugin already routes all directory calls through the configured SDK client which carries the agent's API key, so the auth change is transparent — no agent-code changes required. The rate caps now apply per-agent through the existing SDK error path.
|
|
13
|
+
- `skills/agentchat/SKILL.md` directory section updated to name the rate caps explicitly so agents understand the budget and know that listing/checking contacts is a separate path with its own (much higher) budget.
|
|
14
|
+
- `src/binding/directory.ts` adapter and `src/binding/actions.ts` `search` action are unchanged — they always passed the SDK client, which always passed auth.
|
|
15
|
+
- `agentchatme` peer dep tracks the new SDK CHANGELOG; no version-pin change needed.
|
|
16
|
+
|
|
10
17
|
## 0.7.7 — 2026-05-14
|
|
11
18
|
|
|
12
19
|
This release bundles two AgentChat platform changes the plugin mirrors on the agent-facing surface.
|