Run Data Collection logo

Run Data Collection

OrganizationPopular
AgibotTech
run-data-collection

Launch a data_collection automated trajectory-collection task on a GPU host using the `geniesim autocollect run` CLI verb (which wraps scripts/run_data_collection.sh: docker run -d + in-container server+client). Trigger: when the user asks to "采集数据", "跑数据采集", "run data collection", "collect a task", "生产轨迹", "launch a tasks/geniesim_2025/<...>.json", or wants to produce agibot-format episodes from a data_collection task template.

Overview

PublisherAgibotTech
Repositorygenie_sim
Skill namerun-data-collection
Stars
1.4K
Forks
119
Bundled files
Instructions only
LicenseMPL-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by AgibotTech on GitHub. Read the source before you install it.

Installation

Install the Run Data Collection AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/AgibotTech/genie_sim.git /tmp/genie_sim
mkdir -p .claude/skills
cp -r /tmp/genie_sim/source/data_collection/skills/run-data-collection .claude/skills/run-data-collection
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Run Data Collection in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Run Data Collection on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Run Data Collection is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

When to Use

  • User wants to produce trajectory episodes from a data_collection task template on a workstation with Docker + an NVIDIA GPU.
  • User references a task under source/data_collection/tasks/.

Do not use for:

  • Running a benchmark/evaluation task → run-benchmark.
  • Just listing/inspecting tasks → geniesim autocollect list directly.

Critical Patterns

  1. run is host-orchestrated, not an in-container exec. It shells out to scripts/run_data_collection.sh, which does docker run -d against geniesim3-data-collection:latest and the entrypoint launches two processes (Isaac Sim server + task client). Don't treat it like benchmark run.
  2. Collect the inputs first: the task (basename / path / unique substring) and the run flags (--headless, --no-record, --standalone, --container-name). Use --dry-run to confirm resolution before launching.
  3. Prerequisites: Docker + NVIDIA GPU; the image registry.agibot.com/genie-sim/geniesim3-data-collection:latest built/pulled; geniesim_assets pip-installed (editable) on the host — the CLI discovers it via find_spec and bind-mounts it at /geniesim_assets.
  4. Unattended works. run_data_collection.sh grants uid 1234 access preferring sudo setfacl, degrading to chmod -R a+rwX when sudo isn't usable — so headless/background runs work without a tty. (The fallback world-writes the output dirs on the host.)
  5. Confirm before launching. A real run spawns a GPU container, takes minutes, and writes ~1.5 GB per episode. Ask before kicking it off.

Workflow

Step 1 — Resolve the task

bash
geniesim autocollect list --robot=g2 <substr>     # discover
geniesim autocollect run <TASK> --headless --standalone --dry-run   # preview

--dry-run prints the resolved task path + the exact run_data_collection.sh command without launching. Disambiguate if it reports multiple matches.

Step 2 — Check prerequisites

bash
docker images | grep geniesim3-data-collection      # image present?
nvidia-smi                                             # GPU free?
python3 -c "import importlib.util as u; print('geniesim_assets OK' if u.find_spec('geniesim_assets') else 'NOT INSTALLED')"   # assets pkg editable-installed?

Step 3 — Launch

Interactive terminal (sudo can prompt):

bash
pip install -e /path/to/geniesim_assets   # once on the host (editable)
geniesim autocollect run <TASK> --headless --standalone

Unattended / detached (no tty) — works directly (the script degrades to chmod when sudo is unavailable; no PTY trick needed):

bash
cd <repo-root>
PYTHONPATH=source/geniesim_cli/src \
  nohup python3 -m geniesim_cli autocollect run <TASK> --headless --standalone \
  > /tmp/dc-run.log 2>&1 &

(Use python3 -m geniesim_cli … if the geniesim console script isn't on PATH.)

Step 4 — Monitor & verify

bash
tail -f source/data_collection/logs/<TASK>/data_collector_server.log   # Isaac Sim startup
tail -f source/data_collection/logs/<TASK>/run_data_collection.log     # stages / TASK SUCCESS / job done
docker ps | grep data_collection                                       # container up
ls source/data_collection/recording_data/                              # episodes landing

Success looks like job done in the client log, the container auto-removed (EXIT trap), and one recording_data/[{TASK}_{INDEX}]/ dir per episode with aligned_joints*.h5, observations/videos/*, state.json, data_info.json.

Notes

  • --no-record disables recording (drops --publish_ros + --use_recording); omit it to record.
  • Recording produces ~1.5 GB/episode — watch disk; clean recording_data/ after validating.
  • The container is ephemeral; only the mounted recording_data/, logs/, saved_task/ and the Isaac cache survive a run.
  • Full task-config authoring: source/data_collection/TASK_CONFIG_GUIDE.md. Module reference: source/data_collection/AGENTS.md.

Frequently asked questions

What does the Run Data Collection AI skill do?

Launch a data_collection automated trajectory-collection task on a GPU host using the `geniesim autocollect run` CLI verb (which wraps scripts/run_data_collection.sh: docker run -d + in-container server+client). Trigger: when the user asks to "采集数据", "跑数据采集", "run data collection", "collect a task", "生产轨迹", "launch a tasks/geniesim_2025/<...>.json", or wants to produce agibot-format episodes from a data_collection task template.

Why use Run Data Collection on TypingMind?

Because you install it once and use it with any model. Run Data Collection is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Run Data Collection in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/AgibotTech/genie_sim/tree/main/source/data_collection/skills/run-data-collection. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Run Data Collection?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Run Data Collection?

As many as you like. As long as a model supports skills, you can use Run Data Collection with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Run Data Collection AI skill free?

Yes. It is published on GitHub by AgibotTech under the MPL-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇