@h-ear/openclaw 0.1.8 → 0.2.0-dev.202604040406
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/SKILL.md +5 -6
- package/package.json +2 -2
package/SKILL.md
CHANGED
|
@@ -4,11 +4,7 @@ description: "H-ear.world transforms sound into an actionable, meaningful transl
|
|
|
4
4
|
version: 0.1.0
|
|
5
5
|
author: H-ear World
|
|
6
6
|
homepage: https://h-ear.world
|
|
7
|
-
openclaw:
|
|
8
|
-
requires:
|
|
9
|
-
env: [HEAR_API_KEY, HEAR_ENV]
|
|
10
|
-
bins: []
|
|
11
|
-
primaryEnv: HEAR_API_KEY
|
|
7
|
+
metadata: {"openclaw": {"requires": {"env": ["HEAR_API_KEY", "HEAR_ENV"], "bins": []}, "primaryEnv": "HEAR_API_KEY"}}
|
|
12
8
|
---
|
|
13
9
|
|
|
14
10
|
# H-ear — Sound Intelligence for AI Agents
|
|
@@ -33,10 +29,13 @@ H-ear.world transforms sound into an actionable, meaningful translation layer of
|
|
|
33
29
|
|
|
34
30
|
| Variable | Required | Default | Description |
|
|
35
31
|
|----------|----------|---------|-------------|
|
|
36
|
-
| `HEAR_API_KEY` | Yes | | H-ear Enterprise API key. Get one at [h-ear.world](https://h-ear.world). |
|
|
32
|
+
| `HEAR_API_KEY` | Yes* | | H-ear Enterprise API key (`ncm_sk_...`). Required unless `HEAR_BEARER_TOKEN` is set. Get one at [h-ear.world](https://h-ear.world). |
|
|
33
|
+
| `HEAR_BEARER_TOKEN` | Yes* | | OAuth bearer token. Alternative to `HEAR_API_KEY` — one of the two must be set. |
|
|
37
34
|
| `HEAR_ENV` | Yes | | Target environment: `dev`, `staging`, or `prod`. |
|
|
38
35
|
| `HEAR_BASE_URL` | No | Per-environment default | Override API base URL (advanced). |
|
|
39
36
|
|
|
37
|
+
*One of `HEAR_API_KEY` or `HEAR_BEARER_TOKEN` is required.
|
|
38
|
+
|
|
40
39
|
## Webhook Delivery
|
|
41
40
|
|
|
42
41
|
Batch classification (`classify batch`) and sound alerts (`alerts on`) use webhook callbacks for asynchronous result delivery. The OpenClaw gateway manages webhook endpoints automatically -- the skill registers callbacks against the gateway's own webhook receiver, which routes results back to your connected messaging channel. No external endpoint configuration is required by the user.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h-ear/openclaw",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0-dev.202604040406",
|
|
4
4
|
"description": "OpenClaw skill for H-ear World audio classification — sound intelligence in WhatsApp, Telegram, Slack, Discord, and Teams",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"prepublishOnly": "npm run build"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@h-ear/core": "
|
|
26
|
+
"@h-ear/core": "^0.2.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@eslint/js": "^10.0.1",
|