← 返回 Skills 市场
alexrudloff

Deep Research with Caesar.org

作者 alexrudloff · GitHub ↗ · v0.0.1
cross-platform ✓ 安全检测通过
685
总下载
2
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install caesar-research
功能描述
Deep research using the Caesar API — run queries, follow up with chat, brainstorm, and manage collections.
使用说明 (SKILL.md)

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 \x3Cjob-id>
caesar research watch \x3Cjob-id>
caesar research events \x3Cjob-id>

Research Options

Flag Description
--no-wait Return immediately with job ID
--model \x3Cname> gpt-5.2, gemini-3-pro, gemini-3-flash, claude-opus-4.5
--loops N Max reasoning loops (default 1, higher = deeper research)
--reasoning Enable advanced reasoning mode
--auto Let Caesar auto-configure based on query
--exclude-social Skip social media sources
--exclude-domain x.com Exclude specific domains (repeatable)
--system-prompt "..." Custom synthesis prompt
--brainstorm \x3Cid> Use a brainstorm session for context

Status Lifecycle

queuedsearchingsummarizinganalyzingresearchingcompleted or failed

Chat (Follow-Up Questions)

Ask follow-up questions about a completed research job:

caesar chat send \x3Cjob-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 \x3Cjob-id> "question" --wait=false
caesar chat history \x3Cjob-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 \x3Csession-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 \x3Cid> | jq '.content'
  • Chain brainstorm → research for best results on ambiguous queries.
安全使用建议
This skill appears to be a straightforward CLI client for the Caesar research API. Before installing: (1) verify you trust the CAESAR_API_KEY provider and avoid pasting real secrets into public repos; (2) if you build the binary from source, review the repository (already included) or build with 'go install' from the official upstream; (3) ensure the 'caesar' binary you put on PATH is the expected build (to avoid replacing it with a malicious binary); (4) be aware the CLI will send your queries and any provided collection data to https://api.caesar.xyz under your API key, so don't include sensitive secrets in queries or uploaded collections unless you trust the service.
功能分析
Type: OpenClaw Skill Name: caesar-research Version: 0.0.1 The OpenClaw AgentSkills skill bundle for 'caesar-research' is benign. The Go CLI tool interacts with a remote API (`https://api.caesar.xyz`) for research, chat, and collection management, authenticating via the `CAESAR_API_KEY` environment variable. All network communication is directed to this single, hardcoded API endpoint. There is no evidence of data exfiltration to unauthorized destinations, arbitrary command execution, or unauthorized file system access. The `SKILL.md` and `CLAUDE.md` files contain only descriptive and instructional content for using and developing the tool, with no signs of prompt injection attempts designed to manipulate an AI agent into malicious behavior.
能力评估
Purpose & Capability
The name/description (Caesar research CLI) matches the declared requirements: it needs a 'caesar' binary and CAESAR_API_KEY. The repository contains a Go CLI that calls https://api.caesar.xyz and implements research, chat, brainstorm, and collections endpoints described in the SKILL.md.
Instruction Scope
SKILL.md instructs installing/building the caesar CLI and setting CAESAR_API_KEY, then running the CLI commands. The runtime instructions only interact with the Caesar API via the CLI and do not direct the agent to read unrelated files, search the filesystem, or exfiltrate data to unexpected endpoints.
Install Mechanism
There is no automated install spec; SKILL.md suggests 'go install' or building from source. The source is included and uses standard Go tooling. This is a low-risk, traceable install route (no arbitrary downloads or obscure URLs).
Credentials
Only one environment variable (CAESAR_API_KEY) is required and the code reads exactly that variable for Bearer auth. There are no other credential or config path requirements, so requested access is proportionate to the stated API usage.
Persistence & Privilege
The skill is not always-included and does not request elevated or persistent system privileges. It does not modify other skills or system-wide agent settings. Autonomous invocation is allowed by default (platform default) but combined with no other red flags this is expected.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install caesar-research
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /caesar-research 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.0.1
- Initial release of caesar-research for deep multi-source research using the Caesar API. - Supports running research queries, follow-up chat, brainstorming sessions, and managing collections via CLI. - Includes flexible options for model selection, reasoning depth, source exclusion, and custom prompts. - Enables iterative workflows: brainstorm for clarifying questions, then create research jobs with context. - Provides lifecycle status tracking, citations, and JSON output for easy data handling.
元数据
Slug caesar-research
版本 0.0.1
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Deep Research with Caesar.org 是什么?

Deep research using the Caesar API — run queries, follow up with chat, brainstorm, and manage collections. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 685 次。

如何安装 Deep Research with Caesar.org?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install caesar-research」即可一键安装,无需额外配置。

Deep Research with Caesar.org 是免费的吗?

是的,Deep Research with Caesar.org 完全免费(开源免费),可自由下载、安装和使用。

Deep Research with Caesar.org 支持哪些平台?

Deep Research with Caesar.org 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Deep Research with Caesar.org?

由 alexrudloff(@alexrudloff)开发并维护,当前版本 v0.0.1。

💬 留言讨论