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.
Files changed (37) hide show
  1. package/cjs/ao.js +4 -4
  2. package/cjs/create.js +32 -27
  3. package/cjs/workspace/.claude/agents/builder.md +4 -2
  4. package/cjs/workspace/.claude/skills/build/SKILL.md +34 -12
  5. package/cjs/workspace/.claude/skills/build-aos/SKILL.md +10 -1
  6. package/cjs/workspace/.claude/skills/build-device/SKILL.md +37 -23
  7. package/cjs/workspace/.claude/skills/build-frontend/SKILL.md +17 -14
  8. package/cjs/workspace/.claude/skills/build-module/SKILL.md +10 -1
  9. package/cjs/workspace/.claude/skills/plan/SKILL.md +12 -4
  10. package/cjs/workspace/.claude/skills/readme/SKILL.md +151 -45
  11. package/cjs/workspace/.claude/skills/report/SKILL.md +2 -1
  12. package/cjs/workspace/dashboard/index.html +154 -3
  13. package/cjs/workspace/dashboard/public/favicon.ico +0 -0
  14. package/cjs/workspace/dashboard/public/favicon.png +0 -0
  15. package/cjs/workspace/dashboard/server.js +93 -12
  16. package/cjs/workspace/dashboard/src/App.jsx +2297 -372
  17. package/cjs/workspace/docs/wao-sdk.md +1 -1
  18. package/cjs/workspace/package.json +1 -1
  19. package/esm/ao.js +3 -3
  20. package/esm/create.js +3 -0
  21. package/esm/workspace/.claude/agents/builder.md +4 -2
  22. package/esm/workspace/.claude/skills/build/SKILL.md +34 -12
  23. package/esm/workspace/.claude/skills/build-aos/SKILL.md +10 -1
  24. package/esm/workspace/.claude/skills/build-device/SKILL.md +37 -23
  25. package/esm/workspace/.claude/skills/build-frontend/SKILL.md +17 -14
  26. package/esm/workspace/.claude/skills/build-module/SKILL.md +10 -1
  27. package/esm/workspace/.claude/skills/plan/SKILL.md +12 -4
  28. package/esm/workspace/.claude/skills/readme/SKILL.md +151 -45
  29. package/esm/workspace/.claude/skills/report/SKILL.md +2 -1
  30. package/esm/workspace/dashboard/index.html +154 -3
  31. package/esm/workspace/dashboard/public/favicon.ico +0 -0
  32. package/esm/workspace/dashboard/public/favicon.png +0 -0
  33. package/esm/workspace/dashboard/server.js +93 -12
  34. package/esm/workspace/dashboard/src/App.jsx +2297 -372
  35. package/esm/workspace/docs/wao-sdk.md +1 -1
  36. package/esm/workspace/package.json +1 -1
  37. 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, cursor: null })
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
 
@@ -13,6 +13,6 @@
13
13
  },
14
14
  "dependencies": {
15
15
  "hbsig": "0.3.0",
16
- "wao": "0.40.0"
16
+ "wao": "0.40.2"
17
17
  }
18
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wao",
3
- "version": "0.40.0",
3
+ "version": "0.40.2",
4
4
  "bin": {
5
5
  "wao": "./cjs/cli.js",
6
6
  "wao-esm": "./esm/cli.js"