Agent Skills
› alphaXiv/OpenResearch
› orx-instances
orx-instances
GitHub用于通过 CLI 创建持久化的 OpenResearch 计算实例,支持 GPU/CPU 配置及不同云提供商,适用于需 SSH 手动操作的场景。
触发场景
用户需要创建持久化计算环境
用户希望通过 SSH 连接并手动工作
安装
npx skills add alphaXiv/OpenResearch --skill orx-instances -g -y
SKILL.md
Frontmatter
{
"name": "orx-instances",
"description": "Create standalone OpenResearch compute instances with `orx instance create`. Use when the user wants a persistent machine for manual or ad-hoc work rather than an experiment run."
}
Standalone instances
Provision a persistent instance in an organization when the user wants to SSH
in and work manually. Experiment runs use orx exp run instead.
orx instance create <orgId> --gpu H100_SXM --count 1 [--disk 100]
orx instance create <orgId> --gpu H100_SXM --provider runpod
orx instance create <orgId> --cpu cpu5g --vcpus 8
<orgId>comes fromorx orgs.- Choose exactly one of
--gpuor--cpu. --countand--diskapply to GPU instances;--vcpusapplies to CPU.- Omitting
--providerchooses the cheapest matching offer; pass it to pin a provider. - Provisioning is asynchronous. The command prints the instance id and status; its SSH host appears when the machine becomes ready.
版本历史
- 24e404e 当前 2026-09-21 23:53


