Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

idea-discovery-robot想法发现机器人

Agent Skill

idea-discovery-robot 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,983

周安装

81

GitHub Stars

7,828

下载量

635
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:idea-discovery-robot(想法发现机器人)
来源仓库:https://github.com/wanshuiyin/auto-claude-code-research-in-sleep
仓库路径:skills/idea-discovery-robot
安装命令:
npx skills add https://github.com/wanshuiyin/auto-claude-code-research-in-sleep --skill idea-discovery-robot
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/wanshuiyin/auto-claude-code-research-in-sleep --skill idea-discovery-robot

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网、命令执行或文件读写。
  • idea-discovery-robot 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Robotics Idea Discovery Pipeline

Orchestrate a robotics-specific idea discovery workflow for: $ARGUMENTS

Overview

This skill chains four sub-skills into a single automated pipeline:

/research-lit → /idea-creator (robotics framing) → /novelty-check → /research-review
  (survey)              (filter + pilot plan)         (verify novel)    (critical feedback)

But every phase must be grounded in robotics-specific constraints:

  • Embodiment: arm, mobile manipulator, drone, humanoid, quadruped, autonomous car, etc.
  • Task family: grasping, insertion, locomotion, navigation, manipulation, rearrangement, multi-step planning
  • Observation + action interface: RGB/RGB-D/tactile/language; torque/velocity/waypoints/end-effector actions
  • Simulator / benchmark availability: simulation-first by default
  • Real robot constraints: hardware availability, reset cost, safety, operator time
  • Evaluation quality: success rate plus failure cases, safety violations, intervention count, latency, sample efficiency
  • Sim2real story: whether the idea can stay in sim, needs offline logs, or truly requires hardware

The goal is not to produce flashy demos. The goal is to produce ideas that are:

  • benchmarkable
  • falsifiable
  • feasible with available robotics infrastructure
  • interesting even if the answer is negative

Constants

  • MAX_PILOT_IDEAS = 3 — Validate at most 3 top ideas deeply
  • PILOT_MODE = sim-first — Prefer simulation or offline-log pilots before any hardware execution
  • REAL_ROBOT_PILOTS = explicit approval only — Never assume physical robot access or approval
  • AUTO_PROCEED = true — If user does not respond at checkpoints, proceed with the best sim-first option
  • REVIEWER_MODEL = gpt-5.4 — External reviewer model via Codex MCP
  • TARGET_VENUES = CoRL, RSS, ICRA, IROS, RA-L — Default novelty and reviewer framing
Override inline, e.g. /idea-discovery-robot "bimanual manipulation" — only sim ideas, no real robot or /idea-discovery-robot "drone navigation" — focus on CoRL/RSS, 2 pilot ideas max

Execution Rule

Follow the phases in order. Do not stop after a checkpoint unless:

  • the user explicitly says to stop, or
  • the user asks to change scope and re-run an earlier phase

If AUTO_PROCEED=true and the user does not respond, continue immediately to the next phase using the strongest sim-first, benchmark-grounded option.

Phase 0: Frame the Robotics Problem

Before generating ideas, extract or infer this Robotics Problem Frame from $ARGUMENTS and local project context:

  • Embodiment
  • Task family
  • Environment type: tabletop, warehouse, home, outdoor, aerial, driving, legged terrain
  • Observation modalities
  • Action interface / controller abstraction
  • Learning regime: RL, imitation, behavior cloning, world model, planning, VLA/VLM, classical robotics, hybrid
  • Available assets: simulator, benchmark suite, teleop data, offline logs, existing codebase, real hardware
  • Compute budget
  • Safety constraints
  • Desired contribution type: method, benchmark, diagnosis, systems, sim2real, data curation

If some fields are missing, make explicit assumptions and default to:

  • simulation-first
  • public benchmark preferred
  • no real robot execution

Write this frame into working notes before moving on. Every later decision should reference it.

Phase 1: Robotics Literature Survey

Invoke:

/research-lit "$ARGUMENTS — focus venues: CoRL, RSS, ICRA, IROS, RA-L, TRO, Science Robotics"

Then reorganize the findings using a robotics lens instead of a generic ML lens.

Build a Robotics Landscape Matrix

For each relevant paper, classify:

AxisExamples
Embodimentsingle-arm, mobile manipulator, humanoid, drone, quadruped
Taskpick-place, insertion, navigation, locomotion, long-horizon rearrangement
Learning setupRL, BC, IL, offline RL, world model, planning, diffusion policy
ObservationRGB, RGB-D, proprioception, tactile, language
Action abstractiontorque, joint velocity, end-effector delta pose, waypoint planner
Eval regimepure sim, sim+real, real-only, offline benchmark
BenchmarkManiSkill, RLBench, Isaac Lab, Habitat, Meta-World, CALVIN, LIBERO, custom
Metricssuccess rate, collision rate, intervention count, path length, latency, energy
Main bottlenecksample inefficiency, brittleness, reset cost, perception drift, sim2real gap

Search Priorities

When refining the survey, prioritize:

  • recent work from CoRL, RSS, ICRA, IROS, RA-L
  • recent arXiv papers from the last 6-12 months
  • benchmark papers and follow-up reproductions
  • negative-result or diagnosis papers if they reveal system bottlenecks

What to Look For

Do not stop at "who got the best success rate." Explicitly identify:

  • recurring failure modes papers do not fix
  • benchmarks that are saturated or misleading
  • places where embodiment changes invalidate prior conclusions
  • methods that only work with privileged observations
  • ideas whose reported gains come from reset engineering, reward shaping, or hidden infrastructure
  • task families where evaluation quality is weak even if performance numbers look high

Checkpoint: Present the landscape to the user in robotics terms:

🤖 Robotics survey complete. I grouped the field by embodiment, benchmark, action interface, and sim2real setup.

Main gaps:
1. [...]
2. [...]
3. [...]

Should I generate ideas under this framing, or should I narrow to a specific robot / benchmark / modality?
  • User approves (or no response + AUTO_PROCEED=true) → proceed to Phase 2 with the best robotics frame.
  • User requests changes (e.g. narrower embodiment, different benchmark family, no sim2real, no hardware) → refine the robotics frame, re-run Phase 1, and present again.

Phase 2: Robotics-Specific Idea Generation and Filtering

Generate ideas only after the robotics frame is explicit.

Invoke the existing idea generator, but pass the Robotics Problem Frame and landscape matrix into the prompt so it does not produce generic ML ideas:

/idea-creator "$ARGUMENTS — robotics frame: [paste Robotics Problem Frame] — focus venues: CoRL, RSS, ICRA, IROS, RA-L — benchmark-specific ideas only — sim-first pilots — no real-robot execution without explicit approval — require failure metrics and baseline clarity"

Then rewrite and filter the output using the robotics-specific rules below.

Each candidate idea must include:

  • One-sentence summary
  • Target embodiment
  • Target benchmark / simulator / dataset
  • Core bottleneck being addressed
  • Minimum sim-first pilot
  • Mandatory metrics
  • Expected failure mode if the idea does not work
  • Whether the idea truly needs real hardware

Good Robotics Idea Patterns

Prefer ideas that:

  • expose a real bottleneck in perception-action coupling
  • improve robustness under embodiment or environment shift
  • reduce operator time, reset cost, or demonstration cost
  • strengthen sim2real transfer with measurable mechanisms
  • improve recovery, retry behavior, or failure detection
  • create a better benchmark, diagnostic, or evaluation protocol
  • test an assumption the community repeats but rarely measures

Weak Robotics Idea Patterns

Downrank ideas that are mostly:

  • "apply a foundation model / VLM / diffusion model to robot X" with no new bottleneck analysis
  • demo-driven but not benchmarkable
  • dependent on inaccessible hardware, custom sensors, or massive private datasets
  • impossible to evaluate without a months-long infrastructure build
  • only interesting if everything works perfectly

Filtering Rules

For each idea, reject or heavily downrank if:

  • no concrete simulator or benchmark is available
  • no credible baseline exists
  • no measurable metric beyond "looks better"
  • real robot execution is required but hardware access is unclear
  • the setup depends on privileged observations that make the claim weak
  • the expected contribution disappears if evaluation is made fair

Checkpoint: Present the ranked robotics ideas before novelty checking:

💡 Robotics ideas generated. Top candidates:

1. [Idea 1] — Embodiment: [...] — Benchmark: [...] — Pilot: sim/offline — Risk: LOW/MEDIUM/HIGH
2. [Idea 2] — Embodiment: [...] — Benchmark: [...] — Pilot: sim/offline — Risk: LOW/MEDIUM/HIGH
3. [Idea 3] — requires hardware / weak benchmark / high risk

Should I carry the top sim-first ideas into novelty checking and external review?
(If no response, I'll continue with the strongest benchmark-grounded ideas.)
  • User picks ideas (or no response + AUTO_PROCEED=true) → proceed to Phase 3 with the top sim-first ideas, then continue to Phase 4 and Phase 5.
  • User wants different constraints → update the robotics frame and re-run Phase 2.
  • User wants narrower scope → go back to Phase 1 with a tighter embodiment / task / benchmark focus.

Phase 3: Feasibility and Pilot Design

For the top ideas, design a minimal validation package.

If the repository already contains a usable simulator, benchmark harness, or offline dataset pipeline, you may validate the top 1-3 ideas there. If not, do not force execution. Produce a concrete pilot plan instead.

By default, pilots should be one of:

  • simulation pilot
  • offline log / dataset pilot
  • analysis-only pilot using existing benchmark outputs

Only propose a real-robot pilot if the user explicitly wants that.

For each surviving idea, specify:

- Embodiment:
- Benchmark / simulator:
- Baselines:
- Pilot type: sim / offline / real
- Compute estimate:
- Human/operator time:
- Success metrics:
- Failure metrics:
- Safety concerns:
- What result would count as positive signal:
- What negative result would still be publishable:

Real Robot Rule

Never auto-proceed to physical robot testing. If an idea needs hardware:

  • mark it as needs physical validation
  • design the sim or offline precursor first
  • ask for explicit user confirmation before any real-robot step

If no cheap sim/offline pilot exists, keep the idea in the report but label it high execution risk.

After Phase 3, continue to Phase 4 even if you only produced a pilot plan rather than running a pilot. Lack of immediate execution is not a reason to stop the workflow.

Phase 4: Deep Novelty Verification

For each top idea, run:

/novelty-check "[idea description with embodiment + task family + benchmark + sensor stack + controller/policy class + sim2real angle + target venues: CoRL/RSS/ICRA/IROS/RA-L]"

Robotics novelty checks must include:

  • embodiment
  • task family
  • benchmark / simulator
  • sensor stack
  • controller / policy type
  • sim2real or safety angle if relevant

Be especially skeptical of ideas that are just:

  • old method + new benchmark
  • VLA/VLM + standard manipulation benchmark
  • sim2real claim without new transfer mechanism

If the method is not novel but the finding or evaluation protocol is, say that explicitly.

Phase 5: External Robotics Review

Invoke:

/research-review "[top idea with robotics framing, embodiment, benchmark, baselines, pilot plan, evaluation metrics, and sim2real/hardware risks — review as CoRL/RSS/ICRA reviewer]"

Frame the reviewer as a senior CoRL / RSS / ICRA reviewer. Ask them to focus on:

  • whether the contribution is really new for robotics, not just ML
  • the minimum benchmark package needed for credibility
  • whether the sim2real story is justified
  • missing baselines or failure analyses
  • whether the idea survives realistic infrastructure constraints

Update the report with the reviewer's minimum viable evidence package.

Phase 6: Final Report

Write or update idea-stage/IDEA_REPORT.md with a robotics-specific structure so it stays compatible with downstream workflows.

# Robotics Idea Discovery Report

**Direction**: $ARGUMENTS
**Date**: [today]
**Pipeline**: research-lit → idea-creator (robotics framing) → novelty-check → research-review

## Robotics Problem Frame
- Embodiment:
- Task family:
- Observation / action interface:
- Available assets:
- Constraints:

## Landscape Matrix
[grouped by embodiment, benchmark, and bottleneck]

## Ranked Ideas

### Idea 1: [title] — RECOMMENDED
- Embodiment:
- Benchmark / simulator:
- Bottleneck addressed:
- Pilot type: sim / offline / real
- Positive signal:
- Novelty:
- Reviewer score:
- Hardware risk:
- Next step:

## Eliminated Ideas
- [idea] — killed because benchmark unclear / hardware inaccessible / novelty weak / no fair evaluation

## Evidence Package for the Top Idea
- Required baselines:
- Required metrics:
- Required failure cases:
- Whether real robot evidence is mandatory:

## Next Steps
- [ ] Implement sim-first pilot
- [ ] Run /novelty-check on the final idea wording
- [ ] Only after approval: consider hardware validation

Key Rules

  • Simulation first. Hardware is never the default.
  • Benchmark specificity is mandatory. No benchmark, no serious idea.
  • Evaluation must include failures. Success rate alone is not enough.
  • Embodiment matters. Do not assume a result on one robot transfers to another.
  • Avoid foundation-model theater. Novel terminology is not novelty.
  • Infrastructure realism matters. Operator time, reset burden, and safety count as research constraints.
  • If the contribution is mainly diagnostic or evaluative, say so. That can still be publishable.

Composing with Later Work

After this workflow identifies a strong robotics idea:

/idea-discovery-robot "direction"   ← you are here
implement sim-first pilot
/run-experiment                     ← if infrastructure exists
/auto-review-loop "top robotics idea"

If no simulator or benchmark is available yet, stop at the report and ask the user to choose whether to build infrastructure or pivot to a more executable idea.

Output Protocols

Follow these shared protocols for all output files: - Output Versioning Protocol — write timestamped file first, then copy to fixed name - Output Manifest Protocol — log every output to MANIFEST.md - Output Language Protocol — respect the project's language setting

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.49%
按下载量换算206

Claude

30.87%
按下载量换算196

Cursor

19.69%
按下载量换算125

Gemini CLI

10.33%
按下载量换算66

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills