# Send Deep Research with Caesar.org to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "caesar-research",
    "name": "Deep Research with Caesar.org",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/alexrudloff/caesar-research",
    "canonicalUrl": "https://clawhub.ai/alexrudloff/caesar-research",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/caesar-research",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=caesar-research",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "main.go",
      "CLAUDE.md",
      "internal/client/types.go",
      "internal/client/client.go"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "caesar-research",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T10:40:18.775Z",
      "expiresAt": "2026-05-09T10:40:18.775Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=caesar-research",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=caesar-research",
        "contentDisposition": "attachment; filename=\"caesar-research-0.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "caesar-research"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/caesar-research"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/caesar-research",
    "downloadUrl": "https://openagent3.xyz/downloads/caesar-research",
    "agentUrl": "https://openagent3.xyz/skills/caesar-research/agent",
    "manifestUrl": "https://openagent3.xyz/skills/caesar-research/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/caesar-research/agent.md"
  }
}
```
## Documentation

### Caesar Research

CLI for Caesar deep research. Runs multi-source research jobs with citations, follow-up chat, and brainstorming.

### Setup

go install github.com/alexrudloff/caesar-cli@latest
export CAESAR_API_KEY=your_key_here

### Research

Run a query (waits for completion by default, prints events as they happen):

caesar research create "What are the latest advances in mRNA vaccines?"

Returns JSON with content (synthesized answer with [n] citations) and a results array of sources.

Fire-and-forget:

caesar research create "query" --no-wait
# Returns: { "id": "uuid", "status": "queued" }

Then check on it:

caesar research get <job-id>
caesar research watch <job-id>
caesar research events <job-id>

### Research Options

FlagDescription--no-waitReturn immediately with job ID--model <name>gpt-5.2, gemini-3-pro, gemini-3-flash, claude-opus-4.5--loops NMax reasoning loops (default 1, higher = deeper research)--reasoningEnable advanced reasoning mode--autoLet Caesar auto-configure based on query--exclude-socialSkip social media sources--exclude-domain x.comExclude specific domains (repeatable)--system-prompt "..."Custom synthesis prompt--brainstorm <id>Use a brainstorm session for context

### Status Lifecycle

queued → searching → summarizing → analyzing → researching → completed or failed

### Chat (Follow-Up Questions)

Ask follow-up questions about a completed research job:

caesar chat send <job-id> "How does this compare to traditional vaccines?"

Waits for the response by default. The answer includes inline [n] citations referencing the original research sources.

caesar chat send <job-id> "question" --wait=false
caesar chat history <job-id>

### Brainstorm

Get clarifying questions before research to improve results:

caesar brainstorm "How does CRISPR gene editing work?"
# Prints questions with multiple-choice options and a session ID

Then use the session ID:

caesar research create --brainstorm <session-id> "How does CRISPR gene editing work?"

### Collections

Group files for research context:

caesar collections create "Dataset Name" --description "Optional description"

### Tips

For broad topics, use --auto to let Caesar pick optimal settings.
Use --loops 3 or higher for complex multi-faceted questions.
Use --reasoning for questions requiring deep analysis.
Pipe output through jq to extract specific fields: caesar research get <id> | jq '.content'
Chain brainstorm → research for best results on ambiguous queries.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: alexrudloff
- Version: 0.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T10:40:18.775Z
- Expires at: 2026-05-09T10:40:18.775Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/caesar-research)
- [Send to Agent page](https://openagent3.xyz/skills/caesar-research/agent)
- [JSON manifest](https://openagent3.xyz/skills/caesar-research/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/caesar-research/agent.md)
- [Download page](https://openagent3.xyz/downloads/caesar-research)