wao 0.40.0 → 0.40.2
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/cjs/ao.js +4 -4
- package/cjs/create.js +32 -27
- package/cjs/workspace/.claude/agents/builder.md +4 -2
- package/cjs/workspace/.claude/skills/build/SKILL.md +34 -12
- package/cjs/workspace/.claude/skills/build-aos/SKILL.md +10 -1
- package/cjs/workspace/.claude/skills/build-device/SKILL.md +37 -23
- package/cjs/workspace/.claude/skills/build-frontend/SKILL.md +17 -14
- package/cjs/workspace/.claude/skills/build-module/SKILL.md +10 -1
- package/cjs/workspace/.claude/skills/plan/SKILL.md +12 -4
- package/cjs/workspace/.claude/skills/readme/SKILL.md +151 -45
- package/cjs/workspace/.claude/skills/report/SKILL.md +2 -1
- package/cjs/workspace/dashboard/index.html +154 -3
- package/cjs/workspace/dashboard/public/favicon.ico +0 -0
- package/cjs/workspace/dashboard/public/favicon.png +0 -0
- package/cjs/workspace/dashboard/server.js +93 -12
- package/cjs/workspace/dashboard/src/App.jsx +2297 -372
- package/cjs/workspace/docs/wao-sdk.md +1 -1
- package/cjs/workspace/package.json +1 -1
- package/esm/ao.js +3 -3
- package/esm/create.js +3 -0
- package/esm/workspace/.claude/agents/builder.md +4 -2
- package/esm/workspace/.claude/skills/build/SKILL.md +34 -12
- package/esm/workspace/.claude/skills/build-aos/SKILL.md +10 -1
- package/esm/workspace/.claude/skills/build-device/SKILL.md +37 -23
- package/esm/workspace/.claude/skills/build-frontend/SKILL.md +17 -14
- package/esm/workspace/.claude/skills/build-module/SKILL.md +10 -1
- package/esm/workspace/.claude/skills/plan/SKILL.md +12 -4
- package/esm/workspace/.claude/skills/readme/SKILL.md +151 -45
- package/esm/workspace/.claude/skills/report/SKILL.md +2 -1
- package/esm/workspace/dashboard/index.html +154 -3
- package/esm/workspace/dashboard/public/favicon.ico +0 -0
- package/esm/workspace/dashboard/public/favicon.png +0 -0
- package/esm/workspace/dashboard/server.js +93 -12
- package/esm/workspace/dashboard/src/App.jsx +2297 -372
- package/esm/workspace/docs/wao-sdk.md +1 -1
- package/esm/workspace/package.json +1 -1
- package/package.json +1 -1
|
@@ -100,7 +100,7 @@ const { mid, res, err, out } = await ao.res({
|
|
|
100
100
|
Paginated results for a process.
|
|
101
101
|
|
|
102
102
|
```js
|
|
103
|
-
const { err, out, res, next } = await ao.ress({ pid, limit: 10, asc: true,
|
|
103
|
+
const { err, out, res, next } = await ao.ress({ pid, limit: 10, asc: true, from: null })
|
|
104
104
|
const page2 = next ? await next() : null
|
|
105
105
|
```
|
|
106
106
|
|