claw-insights 0.0.1

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.
Files changed (3) hide show
  1. package/README.md +5 -0
  2. package/index.js +1 -0
  3. package/package.json +21 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # claw-insights
2
+
3
+ Analytics dashboard for [OpenClaw](https://openclaw.ai).
4
+
5
+ 🚧 **Work in progress** — not yet available for install.
package/index.js ADDED
@@ -0,0 +1 @@
1
+ console.log("claw-insights is not yet published. Stay tuned!");
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "claw-insights",
3
+ "version": "0.0.1",
4
+ "description": "Analytics dashboard for OpenClaw. Coming soon.",
5
+ "main": "index.js",
6
+ "files": [
7
+ "index.js",
8
+ "README.md"
9
+ ],
10
+ "keywords": [
11
+ "openclaw",
12
+ "analytics",
13
+ "insights",
14
+ "dashboard"
15
+ ],
16
+ "license": "MIT",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/openclaw/claw-insights"
20
+ }
21
+ }