agentlife 1.0.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.
@@ -0,0 +1,16 @@
1
+ {
2
+ "id": "agentlife",
3
+ "name": "Agent Life Dashboard",
4
+ "description": "Agents render dashboard cards via a2ui on Agent Life",
5
+ "configSchema": {
6
+ "type": "object",
7
+ "additionalProperties": false,
8
+ "properties": {
9
+ "agents": {
10
+ "type": "array",
11
+ "items": { "type": "string" },
12
+ "description": "Agent IDs to inject into. Empty = all agents with a connected Agent Life node."
13
+ }
14
+ }
15
+ }
16
+ }
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "agentlife",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "openclaw": {
6
+ "extensions": ["./index.ts"]
7
+ },
8
+ "peerDependencies": {
9
+ "openclaw": "*"
10
+ }
11
+ }