@analyticscli/growth-engineer 0.1.0-preview.13 → 0.1.0-preview.14
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/dist/config.d.ts +161 -34
- package/dist/config.js +21 -3
- package/dist/config.js.map +1 -1
- package/dist/runtime/export-asc-summary.mjs +294 -3
- package/dist/runtime/export-asc-summary.mjs.map +1 -1
- package/dist/runtime/openclaw-exporters-lib.d.mts +1 -0
- package/dist/runtime/openclaw-exporters-lib.mjs +8 -6
- package/dist/runtime/openclaw-exporters-lib.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-preflight.mjs +7 -2
- package/dist/runtime/openclaw-growth-preflight.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-runner.mjs +197 -70
- package/dist/runtime/openclaw-growth-runner.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-shared.d.mts +6 -0
- package/dist/runtime/openclaw-growth-shared.mjs +54 -0
- package/dist/runtime/openclaw-growth-shared.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-start.mjs +169 -4
- package/dist/runtime/openclaw-growth-start.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-status.mjs +3 -25
- package/dist/runtime/openclaw-growth-status.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-wizard.mjs +157 -123
- package/dist/runtime/openclaw-growth-wizard.mjs.map +1 -1
- package/package.json +1 -1
- package/templates/config.example.json +14 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@analyticscli/growth-engineer",
|
|
3
|
-
"version": "0.1.0-preview.
|
|
3
|
+
"version": "0.1.0-preview.14",
|
|
4
4
|
"description": "Growth Engineer CLI for connector setup, scheduling, health checks, and OpenClaw-compatible growth runs.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -146,6 +146,11 @@
|
|
|
146
146
|
"urlEnv": "OPENCLAW_WEBHOOK_URL",
|
|
147
147
|
"method": "POST",
|
|
148
148
|
"headers": {}
|
|
149
|
+
},
|
|
150
|
+
"command": {
|
|
151
|
+
"enabled": false,
|
|
152
|
+
"label": "command",
|
|
153
|
+
"command": ""
|
|
149
154
|
}
|
|
150
155
|
},
|
|
151
156
|
"charting": {
|
|
@@ -176,6 +181,15 @@
|
|
|
176
181
|
]
|
|
177
182
|
}
|
|
178
183
|
},
|
|
184
|
+
"automation": {
|
|
185
|
+
"openclawCron": {
|
|
186
|
+
"enabled": true,
|
|
187
|
+
"mode": "main",
|
|
188
|
+
"schedule": "*/30 * * * *",
|
|
189
|
+
"timezone": "UTC",
|
|
190
|
+
"name": "OpenClaw Growth Engineer scheduler"
|
|
191
|
+
}
|
|
192
|
+
},
|
|
179
193
|
"security": {
|
|
180
194
|
"connectorSecrets": {
|
|
181
195
|
"mode": "openclaw-secret-refs",
|