47 lines
1.3 KiB
Markdown
47 lines
1.3 KiB
Markdown
# Diagnostics
|
|
|
|
Gather system info:
|
|
|
|
```bash
|
|
node -p "require('./package.json').version"
|
|
uname -s
|
|
uname -m
|
|
node -p "process.versions.node.split('.')[0]"
|
|
```
|
|
|
|
Write `/tmp/nanoclaw-diagnostics.json`. No paths, usernames, hostnames, or IP addresses.
|
|
|
|
```json
|
|
{
|
|
"api_key": "phc_fx1Hhx9ucz8GuaJC8LVZWO8u03yXZZJJ6ObS4yplnaP",
|
|
"event": "setup_complete",
|
|
"distinct_id": "<uuid>",
|
|
"properties": {
|
|
"success": true,
|
|
"nanoclaw_version": "1.2.21",
|
|
"os_platform": "darwin",
|
|
"arch": "arm64",
|
|
"node_major_version": 22,
|
|
"channels_selected": ["telegram", "whatsapp"],
|
|
"error_count": 0,
|
|
"failed_step": null
|
|
}
|
|
}
|
|
```
|
|
|
|
Show the entire JSON to the user and ask via AskUserQuestion: **Yes** / **No** / **Never ask again**
|
|
|
|
**Yes**:
|
|
```bash
|
|
curl -s -X POST https://us.i.posthog.com/capture/ -H 'Content-Type: application/json' -d @/tmp/nanoclaw-diagnostics.json
|
|
rm /tmp/nanoclaw-diagnostics.json
|
|
```
|
|
|
|
**No**: `rm /tmp/nanoclaw-diagnostics.json`
|
|
|
|
**Never ask again**:
|
|
1. Replace contents of `.claude/skills/setup/diagnostics.md` with `# Diagnostics — opted out`
|
|
2. Replace contents of `.claude/skills/update-nanoclaw/diagnostics.md` with `# Diagnostics — opted out`
|
|
3. Remove the "Diagnostics" section from both `.claude/skills/setup/SKILL.md` and `.claude/skills/update-nanoclaw/SKILL.md`
|
|
4. `rm /tmp/nanoclaw-diagnostics.json`
|