con un clic
research
Generate a research report for a detected item via the FeedRadar CLI.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Generate a research report for a detected item via the FeedRadar CLI.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Register (or idempotently re-apply) a feedradar Claude Routine from its committed YAML via the claude.ai RemoteTrigger API. Claude Code only.
items/<id>.yaml の検出記事を入力に、最新情報を Web で確認しながら Markdown research レポートを research/<YYYYMMDD>_<slug>_v1.md として生成する。
既存 research レポート (research/<id>.md) を別エージェント視点でクロスレビューし、本文末尾にレビューコメントを追記、frontmatter の reviewedAt / reviewedBy を更新する。items.yaml の status 遷移は CLI が担当する。
既存 research レポートを最新情報で再生成し、_v(N+1).md として新バージョンを作成する。旧バージョンは保持 (immutable history)。CLI から渡される前版 frontmatter と本文を読み、rewrite-and-supersede 戦略で全文を書き直し、frontmatter の supersedes に前版 id を記録する。
Mark detected items as dismissed (no research/review) via the FeedRadar CLI. Accepts one or more ids, or --batch.
Cross-review an existing research report with a different agent via the FeedRadar CLI.
| name | research |
| description | Generate a research report for a detected item via the FeedRadar CLI. |
| argument-hint | <item-id> [--agent claude-code|codex-cli|gemini-cli|copilot] [--template <id>] [--emit-payload] |
Generate a Markdown research report for an radar workspace item.
This skill is a thin wrapper: it delegates to the radar CLI, which
handles item lookup, template loading, adapter dispatch (spawning the chosen
agent CLI), schema validation, and the detected → researched status
transition. The canonical research procedure (frontmatter format, body
layout, <untrusted_item> boundary handling) lives in
.agents/skills/research/SKILL.md (the SSoT) and is invoked by the agent
adapter that the CLI spawns. Do not duplicate that procedure here.
Resolve $ARGUMENTS. If empty or --help, run:
radar research --help
and report the usage. Otherwise pass $ARGUMENTS through verbatim.
Execute:
radar research $ARGUMENTS
Report the resulting research file path (printed on stdout by the CLI as
research: wrote <path> and research: <item-id> status -> researched)
and surface any stderr to the user.
Only when the user explicitly chooses host mode (otherwise use the default spawn flow above). Instead of letting the CLI spawn an agent, run the research procedure yourself in this session:
radar research <id> --emit-payload. The CLI prints the research
payload to stdout instead of spawning an agent..agents/skills/research/SKILL.md (the
SSoT) — using the templateBody / items / outputPath from the
payload.outputPath.radar research --commit <path>. The CLI validates the frontmatter
and performs the detected → researched transition.research/<id>.md, the
user typically follows up with /review <id> --agent <different-agent>.claude-code; override with --agent.--emit-payload + --commit) is an interactive-only
opt-in; CI / headless runs MUST use the default spawn flow. In host mode
untrusted item content enters this interactive session itself, so strictly
follow the engine SKILL's M2a / M2b / M3b untrusted-content boundary rules.