Skip to content

Commit ec85b3b

Browse files
author
guanjiawei
committed
chore: sync openclaw payload from main repo
1 parent 470a5de commit ec85b3b

14 files changed

Lines changed: 83 additions & 144 deletions

File tree

Lines changed: 15 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,24 @@
1-
# AIMA Doctor
1+
# AIMA Doctor Skill Pack
22

3-
**One-command diagnosis and repair for OpenClaw.**
3+
This folder is a ClawHub-publishable OpenClaw skill bundle for AIMA Doctor.
44

5-
When your OpenClaw agent is stuck, confused, or unable to complete a task, AIMA Doctor gives you a deterministic rescue path — no guessing, no manual debugging.
5+
## What this contains
66

7-
## Quick Start
7+
- `SKILL.md`: the OpenClaw skill entrypoint
8+
- `README.md`: packaging notes
89

9-
Install from ClawHub:
10+
The helper runtime is distributed separately from:
1011

11-
```bash
12-
clawhub install aima-doctor
13-
```
14-
15-
Then in any OpenClaw conversation:
16-
17-
```
18-
/aima my agent keeps failing to install the package
19-
```
20-
21-
AIMA Doctor will diagnose the issue, walk you through any needed fixes, and report back with clear results.
22-
23-
## Commands
12+
- `https://aimaservice.ai/doctor/runtime.zip`
2413

25-
| Command | What it does |
26-
|---------|-------------|
27-
| `/aima <symptom>` | Start a diagnosis with a description of the problem |
28-
| `/aima status` | Check the progress of a running diagnosis |
29-
| `/aima cancel` | Cancel the current diagnosis |
14+
## Local install
3015

31-
When AIMA Doctor asks a follow-up question, reply with `/aima <your answer>`.
16+
1. Copy this folder under `<workspace>/skills/` or `~/.openclaw/skills/`.
17+
2. Extract the helper runtime into `~/.openclaw/tools/aima-doctor/`.
18+
3. Start a new OpenClaw session or restart the gateway.
3219

33-
## What it can fix
20+
## Publish to ClawHub
3421

35-
- OpenClaw process health (hung, crashed, or unresponsive agents)
36-
- Configuration breakage (corrupted settings, missing config files)
37-
- AIMA device registration and token recovery
38-
- Guided local repair driven by AIMA platform diagnostics
39-
40-
## How it works
41-
42-
AIMA Doctor ships a packaged helper runtime that runs locally on your machine. It connects to the AIMA platform API to fetch diagnostics, then executes deterministic repair steps. No remote shell commands, no opaque scripts — everything runs from a versioned, auditable helper.
43-
44-
## Compatibility
45-
46-
- **OS**: macOS, Linux, Windows
47-
- **OpenClaw**: 2026.3.22+
48-
- **Runtime**: downloaded automatically on first use from `https://aimaservice.ai/doctor`
49-
50-
## Links
51-
52-
- Homepage: https://aimaservice.ai/doctor
53-
- Source: https://github.com/Approaching-AI/aima-openclaw
54-
- License: Apache-2.0
22+
```bash
23+
clawhub publish ./aima-doctor --slug aima-doctor --name "AIMA Doctor" --version 0.2
24+
```

clawhub-skill/aima-doctor/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
name: aima
3-
description: Diagnose and repair OpenClaw when your agent is stuck, confused, or failing. One-command rescue for process health, config breakage, and device registration.
3+
description: Deterministic fallback diagnosis and repair for OpenClaw when the normal agent path is degraded.
44
user-invocable: true
55
homepage: https://aimaservice.ai/doctor
6-
metadata: {"openclaw":{"homepage":"https://aimaservice.ai/doctor","skillKey":"aima","tags":["diagnosis","repair","troubleshooting","health","recovery"],"os":["darwin","linux","win32"],"install":[{"id":"aima-doctor-runtime","kind":"download","url":"https://aimaservice.ai/doctor/runtime.zip","archive":"zip","extract":true,"targetDir":"~/.openclaw/tools/aima-doctor"}]}}
6+
metadata: {"openclaw":{"homepage":"https://aimaservice.ai/doctor","skillKey":"aima","os":["darwin","linux","win32"],"install":[{"id":"aima-doctor-runtime","kind":"download","url":"https://aimaservice.ai/doctor/runtime.zip","archive":"zip","extract":true,"targetDir":"~/.openclaw/tools/aima-doctor"}]}}
77
---
88

99
# AIMA Doctor
1010

11-
Use this skill when your OpenClaw agent is stuck, confused, or failing — it provides a deterministic rescue path to diagnose and repair the issue.
11+
Use this skill when OpenClaw needs diagnosis or repair and the normal agent flow is degraded, confused, or stuck.
1212

1313
## Runtime contract
1414

dist/0.2/SHA256SUMS.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
aba13e1d3cdf43bf50f23b973a7ece426802e3a0f6c90ae77fec7c4f19f1d2af aima-doctor-plugin.zip
2-
ca52c9d0e13d913dba6dd404eb69bbf2177fe2131b56621742a4232806fb600f aima-doctor-runtime.zip
3-
80edaca09bea3b716c3767d4715688c6f4e570bfad472396c8003d99d1153dc2 aima-doctor-skill.zip
1+
c1dc2e5fbaeaaf670d32eed81f2655ee317811cd7a297cc265c3a5c3c3e154b9 aima-doctor-plugin.zip
2+
4f601dfaeb25d339509da8a3a5c80746d2cc98098c75357cfe0c9a064d065a49 aima-doctor-runtime.zip
3+
131da536ea50cb34407562df92e04bedd264d490d22f0be163e231368855c00a aima-doctor-skill.zip

dist/0.2/aima-doctor-plugin.zip

-68 Bytes
Binary file not shown.

dist/0.2/aima-doctor-runtime.zip

-14 Bytes
Binary file not shown.

dist/0.2/aima-doctor-skill.zip

-588 Bytes
Binary file not shown.
Lines changed: 15 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,24 @@
1-
# AIMA Doctor
1+
# AIMA Doctor Skill Pack
22

3-
**One-command diagnosis and repair for OpenClaw.**
3+
This folder is a ClawHub-publishable OpenClaw skill bundle for AIMA Doctor.
44

5-
When your OpenClaw agent is stuck, confused, or unable to complete a task, AIMA Doctor gives you a deterministic rescue path — no guessing, no manual debugging.
5+
## What this contains
66

7-
## Quick Start
7+
- `SKILL.md`: the OpenClaw skill entrypoint
8+
- `README.md`: packaging notes
89

9-
Install from ClawHub:
10+
The helper runtime is distributed separately from:
1011

11-
```bash
12-
clawhub install aima-doctor
13-
```
14-
15-
Then in any OpenClaw conversation:
16-
17-
```
18-
/aima my agent keeps failing to install the package
19-
```
20-
21-
AIMA Doctor will diagnose the issue, walk you through any needed fixes, and report back with clear results.
22-
23-
## Commands
12+
- `https://aimaservice.ai/doctor/runtime.zip`
2413

25-
| Command | What it does |
26-
|---------|-------------|
27-
| `/aima <symptom>` | Start a diagnosis with a description of the problem |
28-
| `/aima status` | Check the progress of a running diagnosis |
29-
| `/aima cancel` | Cancel the current diagnosis |
14+
## Local install
3015

31-
When AIMA Doctor asks a follow-up question, reply with `/aima <your answer>`.
16+
1. Copy this folder under `<workspace>/skills/` or `~/.openclaw/skills/`.
17+
2. Extract the helper runtime into `~/.openclaw/tools/aima-doctor/`.
18+
3. Start a new OpenClaw session or restart the gateway.
3219

33-
## What it can fix
20+
## Publish to ClawHub
3421

35-
- OpenClaw process health (hung, crashed, or unresponsive agents)
36-
- Configuration breakage (corrupted settings, missing config files)
37-
- AIMA device registration and token recovery
38-
- Guided local repair driven by AIMA platform diagnostics
39-
40-
## How it works
41-
42-
AIMA Doctor ships a packaged helper runtime that runs locally on your machine. It connects to the AIMA platform API to fetch diagnostics, then executes deterministic repair steps. No remote shell commands, no opaque scripts — everything runs from a versioned, auditable helper.
43-
44-
## Compatibility
45-
46-
- **OS**: macOS, Linux, Windows
47-
- **OpenClaw**: 2026.3.22+
48-
- **Runtime**: downloaded automatically on first use from `https://aimaservice.ai/doctor`
49-
50-
## Links
51-
52-
- Homepage: https://aimaservice.ai/doctor
53-
- Source: https://github.com/Approaching-AI/aima-openclaw
54-
- License: Apache-2.0
22+
```bash
23+
clawhub publish ./aima-doctor --slug aima-doctor --name "AIMA Doctor" --version 0.2
24+
```

dist/0.2/clawhub-skill/aima-doctor/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
name: aima
3-
description: Diagnose and repair OpenClaw when your agent is stuck, confused, or failing. One-command rescue for process health, config breakage, and device registration.
3+
description: Deterministic fallback diagnosis and repair for OpenClaw when the normal agent path is degraded.
44
user-invocable: true
55
homepage: https://aimaservice.ai/doctor
6-
metadata: {"openclaw":{"homepage":"https://aimaservice.ai/doctor","skillKey":"aima","tags":["diagnosis","repair","troubleshooting","health","recovery"],"os":["darwin","linux","win32"],"install":[{"id":"aima-doctor-runtime","kind":"download","url":"https://aimaservice.ai/doctor/runtime.zip","archive":"zip","extract":true,"targetDir":"~/.openclaw/tools/aima-doctor"}]}}
6+
metadata: {"openclaw":{"homepage":"https://aimaservice.ai/doctor","skillKey":"aima","os":["darwin","linux","win32"],"install":[{"id":"aima-doctor-runtime","kind":"download","url":"https://aimaservice.ai/doctor/runtime.zip","archive":"zip","extract":true,"targetDir":"~/.openclaw/tools/aima-doctor"}]}}
77
---
88

99
# AIMA Doctor
1010

11-
Use this skill when your OpenClaw agent is stuck, confused, or failing — it provides a deterministic rescue path to diagnose and repair the issue.
11+
Use this skill when OpenClaw needs diagnosis or repair and the normal agent flow is degraded, confused, or stuck.
1212

1313
## Runtime contract
1414

Lines changed: 19 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# AIMA Doctor Plugin
22

3-
**One-command diagnosis and repair for OpenClaw.** This is the primary native plugin for OpenClaw 2026.3.22+.
3+
This archive is the primary OpenClaw `2026.3.22+` install artifact for AIMA Doctor.
4+
5+
## What this contains
6+
7+
- `openclaw.plugin.json`: native OpenClaw plugin manifest
8+
- `index.js`: gateway plugin entrypoint
9+
- `skills/aima-doctor/SKILL.md`: bundled reference skill
10+
- `runtime/run.sh`: packaged doctor helper for macOS/Linux
11+
- `runtime/run.ps1`: packaged doctor helper for Windows
12+
- `runtime/config.json`: default AIMA platform URL
413

514
## Install
615

@@ -9,28 +18,17 @@ openclaw plugins install ./aima-doctor-plugin.zip
918
openclaw plugins enable aima-doctor
1019
```
1120

12-
## Commands
13-
14-
| Command | What it does |
15-
|---------|-------------|
16-
| `/aima <symptom>` | Start a diagnosis with a description of the problem |
17-
| `/aima status` | Check progress of a running diagnosis |
18-
| `/aima cancel` | Cancel the current diagnosis |
19-
20-
When the helper asks a follow-up question, reply with `/aima <your answer>`.
21-
22-
Legacy `/askforhelp*` and `/doctor*` aliases remain available for compatibility.
21+
Then use these IM commands:
2322

24-
## What's inside
23+
- `/aima [symptom]`
24+
- `/aima status`
25+
- `/aima cancel`
2526

26-
- `openclaw.plugin.json` — native OpenClaw plugin manifest
27-
- `index.js` — gateway plugin entrypoint
28-
- `skills/aima-doctor/SKILL.md` — bundled reference skill
29-
- `runtime/run.sh` — helper for macOS/Linux
30-
- `runtime/run.ps1` — helper for Windows
31-
- `runtime/config.json` — default AIMA platform URL
27+
When the helper asks a question, answer with `/aima <your reply>`.
3228

3329
## Notes
3430

35-
- The plugin package owns execution; the bundled skill is for discovery/documentation only.
36-
- Homepage: https://aimaservice.ai/doctor
31+
- The plugin package owns execution.
32+
- The bundled skill is for discovery/documentation and does not replace the native `/aima` command family.
33+
- Legacy `/askforhelp*` and `/doctor*` aliases remain available for compatibility.
34+
- Homepage: `https://aimaservice.ai/doctor`

dist/0.2/plugin-package/aima-doctor/runtime/run.sh

100644100755
File mode changed.

0 commit comments

Comments
 (0)