ワンクリックで
claude-code-dispatch
Delegate complex coding tasks to Claude Code CLI
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Delegate complex coding tasks to Claude Code CLI
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Search traceable academic papers, download legally accessible PDFs from arXiv and open-access sources, convert PDFs or page images to Markdown with a PaddleOCR layout-parsing API (or local pdfminer fallback), and organize the results into an AI-readable literature library. Use when Claude Code needs to build a paper corpus, batch OCR PDFs to Markdown, ingest real literature into a knowledge base, fetch arXiv or Hugging Face paper leads, or turn a directory of papers into structured Markdown plus metadata.
Delegate coding tasks to OpenAI Codex CLI
通过 compute-helper CLI 在远程服务器上自主执行、调试、迭代
Generates 2-4 candidate research directions from survey results, presents them with pros/cons for user selection, and converges to a publishable angle.
Academic research assistant for literature reviews, paper analysis, and scholarly writing.
# bioinformatics-init-analysis
| name | claude-code-dispatch |
| description | Delegate complex coding tasks to Claude Code CLI |
| version | 1.0 |
| stages | ["experiment","analysis"] |
| tools | ["bash"] |
| primaryIntent | Invoke Claude Code as a sub-agent for complex coding tasks |
当你需要完成以下类型的复杂编码任务时,通过 exec 工具调用 Claude Code CLI:
claude --print --dangerously-skip-permissions \
--model claude-opus-4-6 \
-p "<详细任务描述,包含上下文、文件路径、预期结果>" \
--cwd {baseDir}
# 优化数据加载器性能
claude --print --dangerously-skip-permissions \
-p "优化 src/data/loader.py 中的 DataLoader 类,当前加载 10GB 数据集需要 5 分钟,目标是减少到 1 分钟以内。可以考虑使用 memory mapping、多进程预加载、或更高效的序列化格式。" \
--cwd {baseDir}