@bohuyeshan/openagent-labforge-core 3.11.1 → 3.11.3

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 (226) hide show
  1. package/README.ja.md +34 -27
  2. package/README.ko.md +34 -27
  3. package/README.md +245 -188
  4. package/README.ru.md +28 -21
  5. package/README.zh-cn.md +245 -188
  6. package/bin/platform.test.ts +21 -20
  7. package/dist/agents/atlas/default.d.ts +1 -1
  8. package/dist/agents/atlas/gemini.d.ts +1 -1
  9. package/dist/agents/atlas/gpt.d.ts +1 -1
  10. package/dist/agents/bio-methodologist.d.ts +1 -1
  11. package/dist/agents/bio-pipeline-operator.d.ts +1 -1
  12. package/dist/agents/builtin-agents/general-agents.d.ts +1 -0
  13. package/dist/agents/dynamic-agent-prompt-builder.d.ts +2 -0
  14. package/dist/agents/env-context.d.ts +1 -1
  15. package/dist/agents/index.d.ts +1 -0
  16. package/dist/agents/metis.d.ts +1 -1
  17. package/dist/agents/prometheus/gemini.d.ts +1 -1
  18. package/dist/agents/prometheus/gpt.d.ts +1 -1
  19. package/dist/agents/prometheus/interview-mode.d.ts +1 -1
  20. package/dist/agents/prometheus/plan-generation.d.ts +1 -1
  21. package/dist/agents/prometheus/plan-template.d.ts +1 -1
  22. package/dist/agents/prometheus/system-prompt.d.ts +1 -1
  23. package/dist/agents/types.d.ts +1 -1
  24. package/dist/cli/config-manager/bun-install.d.ts +6 -1
  25. package/dist/cli/config-manager/plugin-name-with-version.d.ts +1 -1
  26. package/dist/cli/doctor/constants.d.ts +1 -1
  27. package/dist/cli/index.js +763 -467
  28. package/dist/cli/install-validators.d.ts +1 -0
  29. package/dist/cli/model-fallback-types.d.ts +1 -0
  30. package/dist/cli/openai-only-model-catalog.d.ts +3 -0
  31. package/dist/cli/run/index.d.ts +1 -0
  32. package/dist/cli/run/model-resolver.d.ts +4 -0
  33. package/dist/cli/run/types.d.ts +1 -0
  34. package/dist/cli/types.d.ts +3 -0
  35. package/dist/config/schema/agent-names.d.ts +3 -1
  36. package/dist/config/schema/background-task.d.ts +2 -0
  37. package/dist/config/schema/git-env-prefix.d.ts +5 -0
  38. package/dist/config/schema/git-master.d.ts +1 -0
  39. package/dist/config/schema/hooks.d.ts +2 -0
  40. package/dist/config/schema/oh-my-opencode-config.d.ts +54 -1
  41. package/dist/config/schema.d.ts +1 -0
  42. package/dist/create-hooks.d.ts +13 -0
  43. package/dist/features/background-agent/compaction-aware-message-resolver.d.ts +16 -1
  44. package/dist/features/background-agent/constants.d.ts +1 -1
  45. package/dist/features/background-agent/manager.d.ts +20 -4
  46. package/dist/features/background-agent/process-cleanup.d.ts +1 -1
  47. package/dist/features/background-agent/remove-task-toast-tracking.d.ts +1 -0
  48. package/dist/features/background-agent/subagent-spawn-limits.d.ts +23 -0
  49. package/dist/features/background-agent/task-history.d.ts +1 -0
  50. package/dist/features/background-agent/task-poller.d.ts +1 -0
  51. package/dist/features/background-agent/types.d.ts +4 -0
  52. package/dist/features/claude-code-agent-loader/claude-model-mapper.d.ts +4 -0
  53. package/dist/features/claude-code-agent-loader/loader.d.ts +3 -3
  54. package/dist/features/claude-code-agent-loader/types.d.ts +8 -1
  55. package/dist/features/claude-code-plugin-loader/agent-loader.d.ts +2 -2
  56. package/dist/features/claude-code-plugin-loader/loader.d.ts +2 -2
  57. package/dist/features/claude-code-plugin-loader/types.d.ts +1 -1
  58. package/dist/features/opencode-skill-loader/git-master-template-injection.d.ts +1 -1
  59. package/dist/features/skill-mcp-manager/types.d.ts +4 -0
  60. package/dist/features/tmux-subagent/index.d.ts +1 -0
  61. package/dist/features/tmux-subagent/manager.d.ts +5 -0
  62. package/dist/features/tmux-subagent/pane-state-parser.d.ts +8 -0
  63. package/dist/features/tmux-subagent/tracked-session-state.d.ts +8 -0
  64. package/dist/features/tmux-subagent/types.d.ts +2 -0
  65. package/dist/hooks/atlas/boulder-session-lineage.d.ts +6 -0
  66. package/dist/hooks/atlas/final-wave-approval-gate.d.ts +4 -0
  67. package/dist/hooks/atlas/idle-event.d.ts +8 -0
  68. package/dist/hooks/atlas/resolve-active-boulder-session.d.ts +11 -0
  69. package/dist/hooks/atlas/tool-execute-after.d.ts +2 -0
  70. package/dist/hooks/atlas/types.d.ts +2 -0
  71. package/dist/hooks/atlas/verification-reminders.d.ts +4 -0
  72. package/dist/hooks/auto-slash-command/hook.d.ts +7 -0
  73. package/dist/hooks/auto-slash-command/processed-command-store.d.ts +7 -0
  74. package/dist/hooks/auto-update-checker/checker/sync-package-json.d.ts +7 -0
  75. package/dist/hooks/auto-update-checker/checker.d.ts +3 -1
  76. package/dist/hooks/auto-update-checker/constants.d.ts +2 -2
  77. package/dist/hooks/comment-checker/downloader.d.ts +1 -1
  78. package/dist/hooks/compaction-context-injector/compaction-context-prompt.d.ts +1 -0
  79. package/dist/hooks/compaction-context-injector/constants.d.ts +5 -0
  80. package/dist/hooks/compaction-context-injector/hook.d.ts +5 -1
  81. package/dist/hooks/compaction-context-injector/recovery-prompt-config.d.ts +6 -0
  82. package/dist/hooks/compaction-context-injector/recovery.d.ts +6 -0
  83. package/dist/hooks/compaction-context-injector/session-id.d.ts +2 -0
  84. package/dist/hooks/compaction-context-injector/session-prompt-config-resolver.d.ts +16 -0
  85. package/dist/hooks/compaction-context-injector/tail-monitor.d.ts +13 -0
  86. package/dist/hooks/compaction-context-injector/types.d.ts +43 -0
  87. package/dist/hooks/compaction-context-injector/validated-model.d.ts +13 -0
  88. package/dist/hooks/context-window-monitor.d.ts +2 -5
  89. package/dist/hooks/delegate-task-english-directive/hook.d.ts +14 -0
  90. package/dist/hooks/delegate-task-english-directive/index.d.ts +1 -0
  91. package/dist/hooks/gpt-permission-continuation/assistant-message.d.ts +23 -0
  92. package/dist/hooks/gpt-permission-continuation/constants.d.ts +4 -0
  93. package/dist/hooks/gpt-permission-continuation/detector.d.ts +1 -0
  94. package/dist/hooks/gpt-permission-continuation/handler.d.ts +12 -0
  95. package/dist/hooks/gpt-permission-continuation/index.d.ts +13 -0
  96. package/dist/hooks/gpt-permission-continuation/session-state.d.ts +15 -0
  97. package/dist/hooks/index.d.ts +2 -0
  98. package/dist/hooks/keyword-detector/hook.d.ts +1 -0
  99. package/dist/hooks/preemptive-compaction.d.ts +2 -5
  100. package/dist/hooks/ralph-loop/pending-verification-handler.d.ts +16 -0
  101. package/dist/hooks/runtime-fallback/fallback-bootstrap-model.d.ts +10 -0
  102. package/dist/hooks/runtime-fallback/fallback-retry-dispatcher.d.ts +11 -0
  103. package/dist/hooks/runtime-fallback/hook.d.ts +2 -3
  104. package/dist/hooks/runtime-fallback/last-user-retry-parts.d.ts +4 -0
  105. package/dist/hooks/runtime-fallback/message-update-handler.d.ts +1 -2
  106. package/dist/hooks/runtime-fallback/retry-model-payload.d.ts +7 -0
  107. package/dist/hooks/runtime-fallback/session-messages.d.ts +9 -0
  108. package/dist/hooks/runtime-fallback/session-status-handler.d.ts +3 -0
  109. package/dist/hooks/runtime-fallback/types.d.ts +57 -3
  110. package/dist/hooks/runtime-fallback/visible-assistant-response.d.ts +3 -0
  111. package/dist/hooks/session-notification-content.d.ts +30 -0
  112. package/dist/hooks/session-notification-scheduler.d.ts +5 -3
  113. package/dist/hooks/session-notification.d.ts +2 -0
  114. package/dist/hooks/start-work/index.d.ts +1 -1
  115. package/dist/hooks/start-work/worktree-detector.d.ts +7 -0
  116. package/dist/hooks/todo-continuation-enforcer/constants.d.ts +6 -2
  117. package/dist/hooks/todo-continuation-enforcer/handler.d.ts +1 -0
  118. package/dist/hooks/todo-continuation-enforcer/idle-event.d.ts +1 -0
  119. package/dist/hooks/todo-continuation-enforcer/session-state.d.ts +10 -1
  120. package/dist/hooks/todo-continuation-enforcer/stagnation-detection.d.ts +6 -0
  121. package/dist/hooks/todo-continuation-enforcer/types.d.ts +5 -0
  122. package/dist/hooks/tool-output-truncator.d.ts +1 -0
  123. package/dist/index.d.ts +2 -2
  124. package/dist/index.js +10581 -7245
  125. package/dist/openagent-labforge.schema.json +70 -4
  126. package/dist/plugin/hooks/create-continuation-hooks.d.ts +2 -1
  127. package/dist/plugin/hooks/create-core-hooks.d.ts +1 -0
  128. package/dist/plugin/hooks/create-session-hooks.d.ts +2 -1
  129. package/dist/plugin/normalize-tool-arg-schemas.d.ts +2 -0
  130. package/dist/plugin/ultrawork-model-override.d.ts +1 -15
  131. package/dist/plugin/ultrawork-variant-availability.d.ts +6 -0
  132. package/dist/plugin-dispose.d.ts +10 -0
  133. package/dist/plugin-handlers/agent-override-protection.d.ts +3 -0
  134. package/dist/plugin-state.d.ts +5 -0
  135. package/dist/shared/compaction-agent-config-checkpoint.d.ts +11 -0
  136. package/dist/shared/context-limit-resolver.d.ts +5 -0
  137. package/dist/shared/data-path.d.ts +2 -2
  138. package/dist/shared/dynamic-truncator.d.ts +4 -7
  139. package/dist/shared/external-plugin-detector.d.ts +1 -1
  140. package/dist/shared/fallback-chain-from-models.d.ts +3 -0
  141. package/dist/shared/index.d.ts +3 -0
  142. package/dist/shared/model-error-classifier.d.ts +2 -1
  143. package/dist/shared/opencode-command-dirs.d.ts +3 -0
  144. package/dist/shared/plugin-identity.d.ts +7 -0
  145. package/dist/shared/question-denied-session-permission.d.ts +6 -0
  146. package/dist/shared/retry-status-utils.d.ts +2 -0
  147. package/dist/shared/system-directive.d.ts +6 -5
  148. package/dist/shared/vision-capable-models-cache.d.ts +4 -0
  149. package/dist/tools/call-omo-agent/background-executor.d.ts +2 -1
  150. package/dist/tools/call-omo-agent/constants.d.ts +1 -1
  151. package/dist/tools/call-omo-agent/sync-executor.d.ts +11 -3
  152. package/dist/tools/call-omo-agent/tools.d.ts +2 -1
  153. package/dist/tools/delegate-task/cancel-unstable-agent-task.d.ts +2 -0
  154. package/dist/tools/delegate-task/model-selection.d.ts +1 -0
  155. package/dist/tools/delegate-task/model-string-parser.d.ts +1 -3
  156. package/dist/tools/look-at/multimodal-fallback-chain.d.ts +4 -0
  157. package/dist/tools/lsp/constants.d.ts +1 -0
  158. package/dist/tools/lsp/directory-diagnostics.d.ts +1 -0
  159. package/dist/tools/lsp/lsp-client-transport.d.ts +4 -2
  160. package/dist/tools/lsp/lsp-client-wrapper.d.ts +2 -1
  161. package/dist/tools/lsp/server-path-bases.d.ts +1 -0
  162. package/generated/skills-bundles/catalog.json +282 -39
  163. package/generated/skills-bundles/full/INDEX.md +38 -10
  164. package/generated/skills-bundles/full/skills/data-analysis/experiment-monitoring/auto-claude__monitor-experiment/SKILL.md +63 -0
  165. package/generated/skills-bundles/full/skills/data-analysis/experiment-ops/auto-claude__run-experiment/SKILL.md +112 -0
  166. package/generated/skills-bundles/full/skills/data-analysis/optimization/auto-claude__dse-loop/SKILL.md +279 -0
  167. package/generated/skills-bundles/full/skills/data-analysis/statistics/auto-claude__analyze-results/SKILL.md +47 -0
  168. package/generated/skills-bundles/full/skills/data-analysis/visualization/auto-claude__paper-figure/SKILL.md +281 -0
  169. package/generated/skills-bundles/full/skills/productivity/communication/auto-claude__feishu-notify/SKILL.md +154 -0
  170. package/generated/skills-bundles/full/skills/productivity/visual-design/auto-claude__pixel-art/SKILL.md +138 -0
  171. package/generated/skills-bundles/full/skills/research/document-authoring/auto-claude__paper-compile/SKILL.md +252 -0
  172. package/generated/skills-bundles/full/skills/research/document-authoring/auto-claude__paper-plan/SKILL.md +254 -0
  173. package/generated/skills-bundles/full/skills/research/document-authoring/auto-claude__paper-write/SKILL.md +310 -0
  174. package/generated/skills-bundles/full/skills/research/document-authoring/auto-claude__paper-write/templates/iclr2026.tex +84 -0
  175. package/generated/skills-bundles/full/skills/research/document-authoring/auto-claude__paper-write/templates/icml2025.tex +87 -0
  176. package/generated/skills-bundles/full/skills/research/document-authoring/auto-claude__paper-write/templates/math_commands.tex +48 -0
  177. package/generated/skills-bundles/full/skills/research/document-authoring/auto-claude__paper-write/templates/neurips2025.tex +80 -0
  178. package/generated/skills-bundles/full/skills/research/document-authoring/auto-claude__paper-writing/SKILL.md +255 -0
  179. package/generated/skills-bundles/full/skills/research/literature-and-web-search/auto-claude__arxiv/SKILL.md +133 -0
  180. package/generated/skills-bundles/full/skills/research/literature-and-web-search/auto-claude__novelty-check/SKILL.md +87 -0
  181. package/generated/skills-bundles/full/skills/research/literature-and-web-search/auto-claude__research-lit/SKILL.md +194 -0
  182. package/generated/skills-bundles/full/skills/research/research-ideation/auto-claude__idea-creator/SKILL.md +228 -0
  183. package/generated/skills-bundles/full/skills/research/research-ideation/auto-claude__idea-discovery/SKILL.md +186 -0
  184. package/generated/skills-bundles/full/skills/research/research-ideation/auto-claude__idea-discovery-robot/SKILL.md +351 -0
  185. package/generated/skills-bundles/full/skills/research/research-ideation/auto-claude__research-pipeline/SKILL.md +174 -0
  186. package/generated/skills-bundles/full/skills/research/theory-writing/auto-claude__proof-writer/SKILL.md +224 -0
  187. package/generated/skills-bundles/paper/INDEX.md +40 -0
  188. package/generated/skills-bundles/paper/skills/data-analysis/experiment-monitoring/auto-claude__monitor-experiment/SKILL.md +63 -0
  189. package/generated/skills-bundles/paper/skills/data-analysis/experiment-ops/auto-claude__run-experiment/SKILL.md +112 -0
  190. package/generated/skills-bundles/paper/skills/data-analysis/optimization/auto-claude__dse-loop/SKILL.md +279 -0
  191. package/generated/skills-bundles/paper/skills/data-analysis/statistics/auto-claude__analyze-results/SKILL.md +47 -0
  192. package/generated/skills-bundles/paper/skills/data-analysis/visualization/auto-claude__paper-figure/SKILL.md +281 -0
  193. package/generated/skills-bundles/paper/skills/productivity/communication/auto-claude__feishu-notify/SKILL.md +154 -0
  194. package/generated/skills-bundles/paper/skills/productivity/visual-design/auto-claude__pixel-art/SKILL.md +138 -0
  195. package/generated/skills-bundles/paper/skills/research/document-authoring/auto-claude__paper-compile/SKILL.md +252 -0
  196. package/generated/skills-bundles/paper/skills/research/document-authoring/auto-claude__paper-plan/SKILL.md +254 -0
  197. package/generated/skills-bundles/paper/skills/research/document-authoring/auto-claude__paper-write/SKILL.md +310 -0
  198. package/generated/skills-bundles/paper/skills/research/document-authoring/auto-claude__paper-write/templates/iclr2026.tex +84 -0
  199. package/generated/skills-bundles/paper/skills/research/document-authoring/auto-claude__paper-write/templates/icml2025.tex +87 -0
  200. package/generated/skills-bundles/paper/skills/research/document-authoring/auto-claude__paper-write/templates/math_commands.tex +48 -0
  201. package/generated/skills-bundles/paper/skills/research/document-authoring/auto-claude__paper-write/templates/neurips2025.tex +80 -0
  202. package/generated/skills-bundles/paper/skills/research/document-authoring/auto-claude__paper-writing/SKILL.md +255 -0
  203. package/generated/skills-bundles/paper/skills/research/literature-and-web-search/auto-claude__arxiv/SKILL.md +133 -0
  204. package/generated/skills-bundles/paper/skills/research/literature-and-web-search/auto-claude__novelty-check/SKILL.md +87 -0
  205. package/generated/skills-bundles/paper/skills/research/literature-and-web-search/auto-claude__research-lit/SKILL.md +194 -0
  206. package/generated/skills-bundles/paper/skills/research/research-ideation/auto-claude__idea-creator/SKILL.md +228 -0
  207. package/generated/skills-bundles/paper/skills/research/research-ideation/auto-claude__idea-discovery/SKILL.md +186 -0
  208. package/generated/skills-bundles/paper/skills/research/research-ideation/auto-claude__idea-discovery-robot/SKILL.md +351 -0
  209. package/generated/skills-bundles/paper/skills/research/research-ideation/auto-claude__research-pipeline/SKILL.md +174 -0
  210. package/generated/skills-bundles/paper/skills/research/theory-writing/auto-claude__proof-writer/SKILL.md +224 -0
  211. package/package.json +21 -21
  212. package/generated/skills-bundles/full/skills/engineering/virtualization/skills-main__virtualbox/LICENSE.txt +0 -21
  213. package/generated/skills-bundles/full/skills/engineering/virtualization/skills-main__virtualbox/SKILL.md +0 -615
  214. package/generated/skills-bundles/full/skills/engineering/virtualization/skills-main__virtualbox/_meta.json +0 -11
  215. package/generated/skills-bundles/full/skills/engineering/virtualization/skills-main__virtualbox/scripts/virtualbox-utils.ts +0 -586
  216. package/generated/skills-bundles/full/skills/productivity/voice-and-accessibility/skills-main__voiceclaw/.clawhubsafe +0 -0
  217. package/generated/skills-bundles/full/skills/productivity/voice-and-accessibility/skills-main__voiceclaw/LICENSE +0 -21
  218. package/generated/skills-bundles/full/skills/productivity/voice-and-accessibility/skills-main__voiceclaw/README.md +0 -127
  219. package/generated/skills-bundles/full/skills/productivity/voice-and-accessibility/skills-main__voiceclaw/SECURITY.md +0 -68
  220. package/generated/skills-bundles/full/skills/productivity/voice-and-accessibility/skills-main__voiceclaw/SKILL.md +0 -141
  221. package/generated/skills-bundles/full/skills/productivity/voice-and-accessibility/skills-main__voiceclaw/_meta.json +0 -11
  222. package/generated/skills-bundles/full/skills/productivity/voice-and-accessibility/skills-main__voiceclaw/scripts/speak.sh +0 -52
  223. package/generated/skills-bundles/full/skills/productivity/voice-and-accessibility/skills-main__voiceclaw/scripts/transcribe.sh +0 -50
  224. package/generated/skills-bundles/full/skills/research/media-search/skills-main__youtube-search/LICENSE.txt +0 -21
  225. package/generated/skills-bundles/full/skills/research/media-search/skills-main__youtube-search/SKILL.md +0 -416
  226. package/generated/skills-bundles/full/skills/research/media-search/skills-main__youtube-search/_meta.json +0 -11
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "schema": "labforge-skills-catalog/v1",
3
- "generatedAt": "2026-03-09T10:15:44.705Z",
3
+ "generatedAt": "2026-03-15T16:01:52.088Z",
4
4
  "bundles": {
5
5
  "full": {
6
- "skillCount": 49,
6
+ "skillCount": 65,
7
7
  "categories": [
8
8
  "data-analysis",
9
9
  "engineering",
@@ -12,7 +12,7 @@
12
12
  ]
13
13
  },
14
14
  "paper": {
15
- "skillCount": 45,
15
+ "skillCount": 64,
16
16
  "categories": [
17
17
  "data-analysis",
18
18
  "engineering",
@@ -22,6 +22,36 @@
22
22
  }
23
23
  },
24
24
  "entries": [
25
+ {
26
+ "name": "auto-claude/monitor-experiment",
27
+ "description": "Monitor running experiments, check progress, collect results. Use when user says \"check results\", \"is it done\", \"monitor\", or wants experiment output.",
28
+ "slug": "auto-claude__monitor-experiment",
29
+ "category": "data-analysis",
30
+ "subcategory": "experiment-monitoring",
31
+ "origin": "external",
32
+ "source": "auto-claude",
33
+ "license": "external\\auto-claude-skills\\LICENSE",
34
+ "bundleTargets": [
35
+ "full",
36
+ "paper"
37
+ ],
38
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\monitor-experiment"
39
+ },
40
+ {
41
+ "name": "auto-claude/run-experiment",
42
+ "description": "Deploy and run ML experiments on local or remote GPU servers. Use when user says \"run experiment\", \"deploy to server\", \"跑实验\", or needs to launch training jobs.",
43
+ "slug": "auto-claude__run-experiment",
44
+ "category": "data-analysis",
45
+ "subcategory": "experiment-ops",
46
+ "origin": "external",
47
+ "source": "auto-claude",
48
+ "license": "external\\auto-claude-skills\\LICENSE",
49
+ "bundleTargets": [
50
+ "full",
51
+ "paper"
52
+ ],
53
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\run-experiment"
54
+ },
25
55
  {
26
56
  "name": "openai-curated/jupyter-notebook",
27
57
  "description": "Use when the user asks to create, scaffold, or edit Jupyter notebooks (`.ipynb`) for experiments, explorations, or tutorials; prefer the bundled templates and run the helper script `new_notebook.py` to generate a clean starting notebook.",
@@ -37,6 +67,36 @@
37
67
  ],
38
68
  "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\openai-skills\\skills\\.curated\\jupyter-notebook"
39
69
  },
70
+ {
71
+ "name": "auto-claude/dse-loop",
72
+ "description": "Autonomous design space exploration loop for computer architecture and EDA. Runs a program, analyzes results, tunes parameters, and iterates until objective is met or timeout. Use when user says \\\"DSE\\\", \\\"design space exploration\\\", \\\"sweep parameters\\\", \\\"optimize\\\", \\\"find best config\\\", or wants iterative parameter tuning.",
73
+ "slug": "auto-claude__dse-loop",
74
+ "category": "data-analysis",
75
+ "subcategory": "optimization",
76
+ "origin": "external",
77
+ "source": "auto-claude",
78
+ "license": "external\\auto-claude-skills\\LICENSE",
79
+ "bundleTargets": [
80
+ "full",
81
+ "paper"
82
+ ],
83
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\dse-loop"
84
+ },
85
+ {
86
+ "name": "auto-claude/analyze-results",
87
+ "description": "Analyze ML experiment results, compute statistics, generate comparison tables and insights. Use when user says \"analyze results\", \"compare\", or needs to interpret experimental data.",
88
+ "slug": "auto-claude__analyze-results",
89
+ "category": "data-analysis",
90
+ "subcategory": "statistics",
91
+ "origin": "external",
92
+ "source": "auto-claude",
93
+ "license": "external\\auto-claude-skills\\LICENSE",
94
+ "bundleTargets": [
95
+ "full",
96
+ "paper"
97
+ ],
98
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\analyze-results"
99
+ },
40
100
  {
41
101
  "name": "data-analysis",
42
102
  "description": "Statistical analysis workflow with reproducible outputs.",
@@ -80,6 +140,21 @@
80
140
  ],
81
141
  "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\src\\features\\builtin-skills\\skills\\xlsx.ts"
82
142
  },
143
+ {
144
+ "name": "auto-claude/paper-figure",
145
+ "description": "Generate publication-quality figures and tables from experiment results. Use when user says \\\"画图\\\", \\\"作图\\\", \\\"generate figures\\\", \\\"paper figures\\\", or needs plots for a paper.",
146
+ "slug": "auto-claude__paper-figure",
147
+ "category": "data-analysis",
148
+ "subcategory": "visualization",
149
+ "origin": "external",
150
+ "source": "auto-claude",
151
+ "license": "external\\auto-claude-skills\\LICENSE",
152
+ "bundleTargets": [
153
+ "full",
154
+ "paper"
155
+ ],
156
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\paper-figure"
157
+ },
83
158
  {
84
159
  "name": "openai-curated/chatgpt-apps",
85
160
  "description": "Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",
@@ -509,20 +584,6 @@
509
584
  ],
510
585
  "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\src\\features\\builtin-skills\\skills\\git-master.ts"
511
586
  },
512
- {
513
- "name": "skills-main/virtualbox",
514
- "description": "Control and manage VirtualBox virtual machines directly from openclaw. Start, stop, snapshot, clone, configure and monitor VMs using VBoxManage CLI. Supports full lifecycle management including VM creation, network configuration, shared folders, and performance monitoring.",
515
- "slug": "skills-main__virtualbox",
516
- "category": "engineering",
517
- "subcategory": "virtualization",
518
- "origin": "external",
519
- "source": "skills-main",
520
- "license": "external\\skills-main\\skills-main\\skills\\0xfratex\\virtualboxmanager\\LICENSE.txt",
521
- "bundleTargets": [
522
- "full"
523
- ],
524
- "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\skills-main\\skills-main\\skills\\0xfratex\\virtualboxmanager"
525
- },
526
587
  {
527
588
  "name": "anthropic/internal-comms",
528
589
  "description": "A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",
@@ -538,6 +599,21 @@
538
599
  ],
539
600
  "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\anthropics-skills\\skills\\internal-comms"
540
601
  },
602
+ {
603
+ "name": "auto-claude/feishu-notify",
604
+ "description": "Send notifications to Feishu/Lark. Internal utility used by other skills, or manually via /feishu-notify. Supports push-only (webhook) and interactive (bidirectional) modes. Use when user says \\\"发飞书\\\", \\\"notify feishu\\\", or other skills need to send status updates.",
605
+ "slug": "auto-claude__feishu-notify",
606
+ "category": "productivity",
607
+ "subcategory": "communication",
608
+ "origin": "external",
609
+ "source": "auto-claude",
610
+ "license": "external\\auto-claude-skills\\LICENSE",
611
+ "bundleTargets": [
612
+ "full",
613
+ "paper"
614
+ ],
615
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\feishu-notify"
616
+ },
541
617
  {
542
618
  "name": "microsoft/github-issue-creator",
543
619
  "description": "Convert raw notes, error logs, voice dictation, or screenshots into crisp GitHub-flavored markdown issue reports. Use when the user pastes bug info, error messages, or informal descriptions and wants a structured GitHub issue. Supports images/GIFs for visual evidence.",
@@ -569,18 +645,19 @@
569
645
  "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\openai-skills\\skills\\.curated\\linear"
570
646
  },
571
647
  {
572
- "name": "skills-main/voiceclaw",
573
- "description": "Local voice I/O for OpenClaw agents. Transcribe inbound audio/voice messages using local Whisper (whisper.cpp) and generate voice replies using local Piper TTS. Requires whisper, piper, and ffmpeg pre-installed on the system. All inference runs on-device — no network calls, no cloud APIs, no API keys. Use when an agent receives a voice/audio message and should respond in both voice and text, or when any text response should be synthesized and sent as audio. Triggers on: voice messages, audio attachments, respond in voice, send as audio, speak this, voiceclaw.",
574
- "slug": "skills-main__voiceclaw",
648
+ "name": "auto-claude/pixel-art",
649
+ "description": "Generate pixel art SVG illustrations for READMEs, docs, or slides. Use when user says \"画像素图\", \"pixel art\", \"make an SVG illustration\", \"README hero image\", or wants a cute visual.",
650
+ "slug": "auto-claude__pixel-art",
575
651
  "category": "productivity",
576
- "subcategory": "voice-and-accessibility",
652
+ "subcategory": "visual-design",
577
653
  "origin": "external",
578
- "source": "skills-main",
579
- "license": "external\\skills-main\\skills-main\\skills\\asif2bd\\voiceclaw\\LICENSE",
654
+ "source": "auto-claude",
655
+ "license": "external\\auto-claude-skills\\LICENSE",
580
656
  "bundleTargets": [
581
- "full"
657
+ "full",
658
+ "paper"
582
659
  ],
583
- "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\skills-main\\skills-main\\skills\\asif2bd\\voiceclaw"
660
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\pixel-art"
584
661
  },
585
662
  {
586
663
  "name": "openai-curated/openai-docs",
@@ -612,6 +689,66 @@
612
689
  ],
613
690
  "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\openai-skills\\skills\\.system\\openai-docs"
614
691
  },
692
+ {
693
+ "name": "auto-claude/paper-compile",
694
+ "description": "Compile LaTeX paper to PDF, fix errors, and verify output. Use when user says \\\"编译论文\\\", \\\"compile paper\\\", \\\"build PDF\\\", \\\"生成PDF\\\", or wants to compile LaTeX into a submission-ready PDF.",
695
+ "slug": "auto-claude__paper-compile",
696
+ "category": "research",
697
+ "subcategory": "document-authoring",
698
+ "origin": "external",
699
+ "source": "auto-claude",
700
+ "license": "external\\auto-claude-skills\\LICENSE",
701
+ "bundleTargets": [
702
+ "full",
703
+ "paper"
704
+ ],
705
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\paper-compile"
706
+ },
707
+ {
708
+ "name": "auto-claude/paper-plan",
709
+ "description": "Generate a structured paper outline from review conclusions and experiment results. Use when user says \\\"写大纲\\\", \\\"paper outline\\\", \\\"plan the paper\\\", \\\"论文规划\\\", or wants to create a paper plan before writing.",
710
+ "slug": "auto-claude__paper-plan",
711
+ "category": "research",
712
+ "subcategory": "document-authoring",
713
+ "origin": "external",
714
+ "source": "auto-claude",
715
+ "license": "external\\auto-claude-skills\\LICENSE",
716
+ "bundleTargets": [
717
+ "full",
718
+ "paper"
719
+ ],
720
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\paper-plan"
721
+ },
722
+ {
723
+ "name": "auto-claude/paper-write",
724
+ "description": "Draft LaTeX paper section by section from an outline. Use when user says \\\"写论文\\\", \\\"write paper\\\", \\\"draft LaTeX\\\", \\\"开始写\\\", or wants to generate LaTeX content from a paper plan.",
725
+ "slug": "auto-claude__paper-write",
726
+ "category": "research",
727
+ "subcategory": "document-authoring",
728
+ "origin": "external",
729
+ "source": "auto-claude",
730
+ "license": "external\\auto-claude-skills\\LICENSE",
731
+ "bundleTargets": [
732
+ "full",
733
+ "paper"
734
+ ],
735
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\paper-write"
736
+ },
737
+ {
738
+ "name": "auto-claude/paper-writing",
739
+ "description": "Workflow 3: Full paper writing pipeline. Orchestrates paper-plan → paper-figure → paper-write → paper-compile → ULTRAWORK QA to go from a narrative report to a polished, submission-ready PDF. Use when user says \\\"写论文全流程\\\", \\\"write paper pipeline\\\", \\\"从报告到PDF\\\", \\\"paper writing\\\", or wants the complete paper generation workflow.",
740
+ "slug": "auto-claude__paper-writing",
741
+ "category": "research",
742
+ "subcategory": "document-authoring",
743
+ "origin": "external",
744
+ "source": "auto-claude",
745
+ "license": "external\\auto-claude-skills\\LICENSE",
746
+ "bundleTargets": [
747
+ "full",
748
+ "paper"
749
+ ],
750
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\paper-writing"
751
+ },
615
752
  {
616
753
  "name": "docx-workbench",
617
754
  "description": "Create, edit, and review DOCX documents with reproducible formatting.",
@@ -671,32 +808,63 @@
671
808
  "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\src\\features\\builtin-skills\\skills\\pdf.ts"
672
809
  },
673
810
  {
674
- "name": "web-research",
675
- "description": "Structured web research and source triage with citations.",
676
- "slug": "builtin__web-research__web-research",
811
+ "name": "auto-claude/arxiv",
812
+ "description": "Search, download, and summarize academic papers from arXiv using MCP tools. Use when user says \"search arxiv\", \"download paper\", \"fetch arxiv\", \"arxiv search\", \"get paper pdf\", or wants to find and save papers from arXiv to the local paper library.",
813
+ "slug": "auto-claude__arxiv",
677
814
  "category": "research",
678
815
  "subcategory": "literature-and-web-search",
679
- "origin": "builtin",
680
- "source": "builtin:web-research",
816
+ "origin": "external",
817
+ "source": "auto-claude",
818
+ "license": "external\\auto-claude-skills\\LICENSE",
681
819
  "bundleTargets": [
682
820
  "full",
683
821
  "paper"
684
822
  ],
685
- "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\src\\features\\builtin-skills\\skills\\web-research.ts"
823
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\arxiv"
686
824
  },
687
825
  {
688
- "name": "skills-main/youtube-search",
689
- "description": "|",
690
- "slug": "skills-main__youtube-search",
826
+ "name": "auto-claude/novelty-check",
827
+ "description": "Verify research idea novelty against recent literature. Use when user says \"查新\", \"novelty check\", \"有没有人做过\", \"check novelty\", or wants to verify a research idea is novel before implementing.",
828
+ "slug": "auto-claude__novelty-check",
691
829
  "category": "research",
692
- "subcategory": "media-search",
830
+ "subcategory": "literature-and-web-search",
693
831
  "origin": "external",
694
- "source": "skills-main",
695
- "license": "external\\skills-main\\skills-main\\skills\\0xjordansg-yolo\\openclaw-aisa-youtube\\LICENSE.txt",
832
+ "source": "auto-claude",
833
+ "license": "external\\auto-claude-skills\\LICENSE",
696
834
  "bundleTargets": [
697
- "full"
835
+ "full",
836
+ "paper"
698
837
  ],
699
- "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\skills-main\\skills-main\\skills\\0xjordansg-yolo\\openclaw-aisa-youtube"
838
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\novelty-check"
839
+ },
840
+ {
841
+ "name": "auto-claude/research-lit",
842
+ "description": "Search and analyze research papers, find related work, summarize key ideas. Use when user says \"find papers\", \"related work\", \"literature review\", \"what does this paper say\", or needs to understand academic papers.",
843
+ "slug": "auto-claude__research-lit",
844
+ "category": "research",
845
+ "subcategory": "literature-and-web-search",
846
+ "origin": "external",
847
+ "source": "auto-claude",
848
+ "license": "external\\auto-claude-skills\\LICENSE",
849
+ "bundleTargets": [
850
+ "full",
851
+ "paper"
852
+ ],
853
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\research-lit"
854
+ },
855
+ {
856
+ "name": "web-research",
857
+ "description": "Structured web research and source triage with citations.",
858
+ "slug": "builtin__web-research__web-research",
859
+ "category": "research",
860
+ "subcategory": "literature-and-web-search",
861
+ "origin": "builtin",
862
+ "source": "builtin:web-research",
863
+ "bundleTargets": [
864
+ "full",
865
+ "paper"
866
+ ],
867
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\src\\features\\builtin-skills\\skills\\web-research.ts"
700
868
  },
701
869
  {
702
870
  "name": "openai-curated/transcribe",
@@ -741,6 +909,81 @@
741
909
  "paper"
742
910
  ],
743
911
  "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\src\\features\\builtin-skills\\skills\\pptx.ts"
912
+ },
913
+ {
914
+ "name": "auto-claude/idea-creator",
915
+ "description": "Generate and rank research ideas given a broad direction. Use when user says \"找idea\", \"brainstorm ideas\", \"generate research ideas\", \"what can we work on\", or wants to explore a research area for publishable directions.",
916
+ "slug": "auto-claude__idea-creator",
917
+ "category": "research",
918
+ "subcategory": "research-ideation",
919
+ "origin": "external",
920
+ "source": "auto-claude",
921
+ "license": "external\\auto-claude-skills\\LICENSE",
922
+ "bundleTargets": [
923
+ "full",
924
+ "paper"
925
+ ],
926
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\idea-creator"
927
+ },
928
+ {
929
+ "name": "auto-claude/idea-discovery",
930
+ "description": "Workflow 1: Full idea discovery pipeline. Orchestrates research-lit → idea-creator → novelty-check to go from a broad research direction to validated, pilot-tested ideas. Use when user says \\\"找idea全流程\\\", \\\"idea discovery pipeline\\\", \\\"从零开始找方向\\\", or wants the complete idea exploration workflow.",
931
+ "slug": "auto-claude__idea-discovery",
932
+ "category": "research",
933
+ "subcategory": "research-ideation",
934
+ "origin": "external",
935
+ "source": "auto-claude",
936
+ "license": "external\\auto-claude-skills\\LICENSE",
937
+ "bundleTargets": [
938
+ "full",
939
+ "paper"
940
+ ],
941
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\idea-discovery"
942
+ },
943
+ {
944
+ "name": "auto-claude/idea-discovery-robot",
945
+ "description": "Workflow 1 adaptation for robotics and embodied AI. Orchestrates robotics-aware literature survey, idea generation, novelty check, and internal critique to go from a broad robotics direction to benchmark-grounded, simulation-first ideas. Use when user says \\\"robotics idea discovery\\\", \\\"机器人找idea\\\", \\\"embodied AI idea\\\", \\\"机器人方向探索\\\", \\\"sim2real 选题\\\", or wants ideas for manipulation, locomotion, navigation, drones, humanoids, or general robot learning.",
946
+ "slug": "auto-claude__idea-discovery-robot",
947
+ "category": "research",
948
+ "subcategory": "research-ideation",
949
+ "origin": "external",
950
+ "source": "auto-claude",
951
+ "license": "external\\auto-claude-skills\\LICENSE",
952
+ "bundleTargets": [
953
+ "full",
954
+ "paper"
955
+ ],
956
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\idea-discovery-robot"
957
+ },
958
+ {
959
+ "name": "auto-claude/research-pipeline",
960
+ "description": "Full research pipeline: Workflow 1 (idea discovery) → implementation → Workflow 2 (ULTRAWORK loop). Goes from a broad research direction all the way to a submission-ready paper. Use when user says \\\"全流程\\\", \\\"full pipeline\\\", \\\"从找idea到投稿\\\", \\\"end-to-end research\\\", or wants the complete autonomous research lifecycle.",
961
+ "slug": "auto-claude__research-pipeline",
962
+ "category": "research",
963
+ "subcategory": "research-ideation",
964
+ "origin": "external",
965
+ "source": "auto-claude",
966
+ "license": "external\\auto-claude-skills\\LICENSE",
967
+ "bundleTargets": [
968
+ "full",
969
+ "paper"
970
+ ],
971
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\research-pipeline"
972
+ },
973
+ {
974
+ "name": "auto-claude/proof-writer",
975
+ "description": "Writes rigorous mathematical proofs for ML/AI theory. Use when asked to prove a theorem, lemma, proposition, or corollary, fill in missing proof steps, formalize a proof sketch, 补全证明, 写证明, 证明某个命题, or determine whether a claimed proof can actually be completed under the stated assumptions.",
976
+ "slug": "auto-claude__proof-writer",
977
+ "category": "research",
978
+ "subcategory": "theory-writing",
979
+ "origin": "external",
980
+ "source": "auto-claude",
981
+ "license": "external\\auto-claude-skills\\LICENSE",
982
+ "bundleTargets": [
983
+ "full",
984
+ "paper"
985
+ ],
986
+ "path": "D:\\-Users-\\Documents\\GitHub\\chat-model\\openagent-labforge\\external\\auto-claude-skills\\skills\\proof-writer"
744
987
  }
745
988
  ]
746
989
  }
@@ -2,12 +2,25 @@
2
2
 
3
3
  This file is generated. Skills are grouped by function for low-token preview before reading full instructions.
4
4
 
5
+ ## data-analysis / experiment-monitoring
6
+
7
+ - `auto-claude/monitor-experiment` [auto-claude__monitor-experiment] — Monitor running experiments, check progress, collect results. Use when user says "check results", "is it done", "monitor", or wants experiment output. _(source: auto-claude)_
8
+
9
+ ## data-analysis / experiment-ops
10
+
11
+ - `auto-claude/run-experiment` [auto-claude__run-experiment] — Deploy and run ML experiments on local or remote GPU servers. Use when user says "run experiment", "deploy to server", "跑实验", or needs to launch training jobs. _(source: auto-claude)_
12
+
5
13
  ## data-analysis / notebooks
6
14
 
7
15
  - `openai-curated/jupyter-notebook` [openai-curated__jupyter-notebook] — Use when the user asks to create, scaffold, or edit Jupyter notebooks (`.ipynb`) for experiments, explorations, or tutorials; prefer the bundled templates and run the helper script `new_notebook.py` to generate a clean starting notebook. _(source: openai-curated)_
8
16
 
17
+ ## data-analysis / optimization
18
+
19
+ - `auto-claude/dse-loop` [auto-claude__dse-loop] — Autonomous design space exploration loop for computer architecture and EDA. Runs a program, analyzes results, tunes parameters, and iterates until objective is met or timeout. Use when user says \"DSE\", \"design space exploration\", \"sweep parameters\", \"optimize\", \"find best config\", or wants iterative parameter tuning. _(source: auto-claude)_
20
+
9
21
  ## data-analysis / statistics
10
22
 
23
+ - `auto-claude/analyze-results` [auto-claude__analyze-results] — Analyze ML experiment results, compute statistics, generate comparison tables and insights. Use when user says "analyze results", "compare", or needs to interpret experimental data. _(source: auto-claude)_
11
24
  - `data-analysis` [builtin__data-analysis__data-analysis] — Statistical analysis workflow with reproducible outputs. _(source: builtin:data-analysis)_
12
25
 
13
26
  ## data-analysis / tabular-analysis
@@ -15,6 +28,10 @@ This file is generated. Skills are grouped by function for low-token preview bef
15
28
  - `openai-curated/spreadsheet` [openai-curated__spreadsheet] — Use when tasks involve creating, editing, analyzing, or formatting spreadsheets (`.xlsx`, `.csv`, `.tsv`) with formula-aware workflows, cached recalculation, and visual review. _(source: openai-curated)_
16
29
  - `xlsx-analyst` [builtin__xlsx-analyst__xlsx-analyst] — Analyze and format XLSX files with reproducible calculations. _(source: builtin:xlsx-analyst)_
17
30
 
31
+ ## data-analysis / visualization
32
+
33
+ - `auto-claude/paper-figure` [auto-claude__paper-figure] — Generate publication-quality figures and tables from experiment results. Use when user says \"画图\", \"作图\", \"generate figures\", \"paper figures\", or needs plots for a paper. _(source: auto-claude)_
34
+
18
35
  ## engineering / app-integration
19
36
 
20
37
  - `openai-curated/chatgpt-apps` [openai-curated__chatgpt-apps] — Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code. _(source: openai-curated)_
@@ -83,22 +100,19 @@ This file is generated. Skills are grouped by function for low-token preview bef
83
100
 
84
101
  - `git-master` [builtin__git-master__git-master] — Advanced git workflow skill for commit splitting, history search, and rebase operations. _(source: builtin:git-master)_
85
102
 
86
- ## engineering / virtualization
87
-
88
- - `skills-main/virtualbox` [skills-main__virtualbox] — Control and manage VirtualBox virtual machines directly from openclaw. Start, stop, snapshot, clone, configure and monitor VMs using VBoxManage CLI. Supports full lifecycle management including VM creation, network configuration, shared folders, and performance monitoring. _(source: skills-main)_
89
-
90
103
  ## productivity / communication
91
104
 
92
105
  - `anthropic/internal-comms` [anthropic__internal-comms] — A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.). _(source: anthropic)_
106
+ - `auto-claude/feishu-notify` [auto-claude__feishu-notify] — Send notifications to Feishu/Lark. Internal utility used by other skills, or manually via /feishu-notify. Supports push-only (webhook) and interactive (bidirectional) modes. Use when user says \"发飞书\", \"notify feishu\", or other skills need to send status updates. _(source: auto-claude)_
93
107
 
94
108
  ## productivity / issue-tracking
95
109
 
96
110
  - `microsoft/github-issue-creator` [microsoft__github-issue-creator] — Convert raw notes, error logs, voice dictation, or screenshots into crisp GitHub-flavored markdown issue reports. Use when the user pastes bug info, error messages, or informal descriptions and wants a structured GitHub issue. Supports images/GIFs for visual evidence. _(source: microsoft)_
97
111
  - `openai-curated/linear` [openai-curated__linear] — Manage issues, projects & team workflows in Linear. Use when the user wants to read, create or updates tickets in Linear. _(source: openai-curated)_
98
112
 
99
- ## productivity / voice-and-accessibility
113
+ ## productivity / visual-design
100
114
 
101
- - `skills-main/voiceclaw` [skills-main__voiceclaw] — Local voice I/O for OpenClaw agents. Transcribe inbound audio/voice messages using local Whisper (whisper.cpp) and generate voice replies using local Piper TTS. Requires whisper, piper, and ffmpeg pre-installed on the system. All inference runs on-device — no network calls, no cloud APIs, no API keys. Use when an agent receives a voice/audio message and should respond in both voice and text, or when any text response should be synthesized and sent as audio. Triggers on: voice messages, audio attachments, respond in voice, send as audio, speak this, voiceclaw. _(source: skills-main)_
115
+ - `auto-claude/pixel-art` [auto-claude__pixel-art] — Generate pixel art SVG illustrations for READMEs, docs, or slides. Use when user says "画像素图", "pixel art", "make an SVG illustration", "README hero image", or wants a cute visual. _(source: auto-claude)_
102
116
 
103
117
  ## research / api-documentation
104
118
 
@@ -107,6 +121,10 @@ This file is generated. Skills are grouped by function for low-token preview bef
107
121
 
108
122
  ## research / document-authoring
109
123
 
124
+ - `auto-claude/paper-compile` [auto-claude__paper-compile] — Compile LaTeX paper to PDF, fix errors, and verify output. Use when user says \"编译论文\", \"compile paper\", \"build PDF\", \"生成PDF\", or wants to compile LaTeX into a submission-ready PDF. _(source: auto-claude)_
125
+ - `auto-claude/paper-plan` [auto-claude__paper-plan] — Generate a structured paper outline from review conclusions and experiment results. Use when user says \"写大纲\", \"paper outline\", \"plan the paper\", \"论文规划\", or wants to create a paper plan before writing. _(source: auto-claude)_
126
+ - `auto-claude/paper-write` [auto-claude__paper-write] — Draft LaTeX paper section by section from an outline. Use when user says \"写论文\", \"write paper\", \"draft LaTeX\", \"开始写\", or wants to generate LaTeX content from a paper plan. _(source: auto-claude)_
127
+ - `auto-claude/paper-writing` [auto-claude__paper-writing] — Workflow 3: Full paper writing pipeline. Orchestrates paper-plan → paper-figure → paper-write → paper-compile → ULTRAWORK QA to go from a narrative report to a polished, submission-ready PDF. Use when user says \"写论文全流程\", \"write paper pipeline\", \"从报告到PDF\", \"paper writing\", or wants the complete paper generation workflow. _(source: auto-claude)_
110
128
  - `docx-workbench` [builtin__docx-workbench__docx-workbench] — Create, edit, and review DOCX documents with reproducible formatting. _(source: builtin:docx-workbench)_
111
129
  - `openai-curated/doc` [openai-curated__doc] — Use when the task involves reading, creating, or editing `.docx` documents, especially when formatting or layout fidelity matters; prefer `python-docx` plus the bundled `scripts/render_docx.py` for visual checks. _(source: openai-curated)_
112
130
  - `openai-curated/pdf` [openai-curated__pdf] — Use when tasks involve reading, creating, or reviewing PDF files where rendering and layout matter; prefer visual checks by rendering pages (Poppler) and use Python tools such as `reportlab`, `pdfplumber`, and `pypdf` for generation and extraction. _(source: openai-curated)_
@@ -114,12 +132,11 @@ This file is generated. Skills are grouped by function for low-token preview bef
114
132
 
115
133
  ## research / literature-and-web-search
116
134
 
135
+ - `auto-claude/arxiv` [auto-claude__arxiv] — Search, download, and summarize academic papers from arXiv using MCP tools. Use when user says "search arxiv", "download paper", "fetch arxiv", "arxiv search", "get paper pdf", or wants to find and save papers from arXiv to the local paper library. _(source: auto-claude)_
136
+ - `auto-claude/novelty-check` [auto-claude__novelty-check] — Verify research idea novelty against recent literature. Use when user says "查新", "novelty check", "有没有人做过", "check novelty", or wants to verify a research idea is novel before implementing. _(source: auto-claude)_
137
+ - `auto-claude/research-lit` [auto-claude__research-lit] — Search and analyze research papers, find related work, summarize key ideas. Use when user says "find papers", "related work", "literature review", "what does this paper say", or needs to understand academic papers. _(source: auto-claude)_
117
138
  - `web-research` [builtin__web-research__web-research] — Structured web research and source triage with citations. _(source: builtin:web-research)_
118
139
 
119
- ## research / media-search
120
-
121
- - `skills-main/youtube-search` [skills-main__youtube-search] — | _(source: skills-main)_
122
-
123
140
  ## research / media-transcription
124
141
 
125
142
  - `openai-curated/transcribe` [openai-curated__transcribe] — Transcribe audio files to text with optional diarization and known-speaker hints. Use when a user asks to transcribe speech from audio/video, extract text from recordings, or label speakers in interviews or meetings. _(source: openai-curated)_
@@ -128,3 +145,14 @@ This file is generated. Skills are grouped by function for low-token preview bef
128
145
 
129
146
  - `openai-curated/slides` [openai-curated__slides] — Create and edit presentation slide decks (`.pptx`) with PptxGenJS, bundled layout helpers, and render/validation utilities. Use when tasks involve building a new PowerPoint deck, recreating slides from screenshots/PDFs/reference decks, modifying slide content while preserving editable output, adding charts/diagrams/visuals, or diagnosing layout issues such as overflow, overlaps, and font substitution. _(source: openai-curated)_
130
147
  - `pptx-studio` [builtin__pptx-studio__pptx-studio] — Generate and edit PPTX decks with structured layouts. _(source: builtin:pptx-studio)_
148
+
149
+ ## research / research-ideation
150
+
151
+ - `auto-claude/idea-creator` [auto-claude__idea-creator] — Generate and rank research ideas given a broad direction. Use when user says "找idea", "brainstorm ideas", "generate research ideas", "what can we work on", or wants to explore a research area for publishable directions. _(source: auto-claude)_
152
+ - `auto-claude/idea-discovery` [auto-claude__idea-discovery] — Workflow 1: Full idea discovery pipeline. Orchestrates research-lit → idea-creator → novelty-check to go from a broad research direction to validated, pilot-tested ideas. Use when user says \"找idea全流程\", \"idea discovery pipeline\", \"从零开始找方向\", or wants the complete idea exploration workflow. _(source: auto-claude)_
153
+ - `auto-claude/idea-discovery-robot` [auto-claude__idea-discovery-robot] — Workflow 1 adaptation for robotics and embodied AI. Orchestrates robotics-aware literature survey, idea generation, novelty check, and internal critique to go from a broad robotics direction to benchmark-grounded, simulation-first ideas. Use when user says \"robotics idea discovery\", \"机器人找idea\", \"embodied AI idea\", \"机器人方向探索\", \"sim2real 选题\", or wants ideas for manipulation, locomotion, navigation, drones, humanoids, or general robot learning. _(source: auto-claude)_
154
+ - `auto-claude/research-pipeline` [auto-claude__research-pipeline] — Full research pipeline: Workflow 1 (idea discovery) → implementation → Workflow 2 (ULTRAWORK loop). Goes from a broad research direction all the way to a submission-ready paper. Use when user says \"全流程\", \"full pipeline\", \"从找idea到投稿\", \"end-to-end research\", or wants the complete autonomous research lifecycle. _(source: auto-claude)_
155
+
156
+ ## research / theory-writing
157
+
158
+ - `auto-claude/proof-writer` [auto-claude__proof-writer] — Writes rigorous mathematical proofs for ML/AI theory. Use when asked to prove a theorem, lemma, proposition, or corollary, fill in missing proof steps, formalize a proof sketch, 补全证明, 写证明, 证明某个命题, or determine whether a claimed proof can actually be completed under the stated assumptions. _(source: auto-claude)_
@@ -0,0 +1,63 @@
1
+ ---
2
+ name: "auto-claude/monitor-experiment"
3
+ description: "Monitor running experiments, check progress, collect results. Use when user says \"check results\", \"is it done\", \"monitor\", or wants experiment output."
4
+ argument-hint: ["server-alias or screen-name"]
5
+ allowed-tools: "Bash(ssh *), Bash(echo *), Read, Write, Edit"
6
+ metadata:
7
+ category: "data-analysis/experiment-monitoring"
8
+ ---
9
+ # Monitor Experiment Results
10
+
11
+ Monitor: $ARGUMENTS
12
+
13
+ ## Workflow
14
+
15
+ ### Step 1: Check What's Running
16
+ ```bash
17
+ ssh <server> "screen -ls"
18
+ ```
19
+
20
+ ### Step 2: Collect Output from Each Screen
21
+ For each screen session, capture the last N lines:
22
+ ```bash
23
+ ssh <server> "screen -S <name> -X hardcopy /tmp/screen_<name>.txt && tail -50 /tmp/screen_<name>.txt"
24
+ ```
25
+
26
+ If hardcopy fails, check for log files or tee output.
27
+
28
+ ### Step 3: Check for JSON Result Files
29
+ ```bash
30
+ ssh <server> "ls -lt <results_dir>/*.json 2>/dev/null | head -20"
31
+ ```
32
+
33
+ If JSON results exist, fetch and parse them:
34
+ ```bash
35
+ ssh <server> "cat <results_dir>/<latest>.json"
36
+ ```
37
+
38
+ ### Step 4: Summarize Results
39
+
40
+ Present results in a comparison table:
41
+ ```
42
+ | Experiment | Metric | Delta vs Baseline | Status |
43
+ |-----------|--------|-------------------|--------|
44
+ | Baseline | X.XX | — | done |
45
+ | Method A | X.XX | +Y.Y | done |
46
+ ```
47
+
48
+ ### Step 5: Interpret
49
+ - Compare against known baselines
50
+ - Flag unexpected results (negative delta, NaN, divergence)
51
+ - Suggest next steps based on findings
52
+
53
+ ### Step 6: Feishu Notification (if configured)
54
+
55
+ After results are collected, check `~/.claude/feishu.json`:
56
+ - Send `experiment_done` notification: results summary table, delta vs baseline
57
+ - If config absent or mode `"off"`: skip entirely (no-op)
58
+
59
+ ## Key Rules
60
+ - Always show raw numbers before interpretation
61
+ - Compare against the correct baseline (same config)
62
+ - Note if experiments are still running (check progress bars, iteration counts)
63
+ - If results look wrong, check training logs for errors before concluding