← 返回 Skills 市场
occupythemilkyway

Ra Pro

作者 OccupyTheMilkyWay · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
33
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install ra-pro
功能描述
Ra Pro -- Deep Research Intelligence. 12+ sources, multi-angle analysis, competitive breakdowns, executive brief + detailed report, .md and .docx export. The...
使用说明 (SKILL.md)

Ra Pro -- Deep Research Intelligence

The most powerful research skill on ClawHub. 12+ sources, multi-angle analysis, competitive breakdowns, and professional-grade reports in markdown and DOCX.

Bundle deal: All 5 Egyptian skills for $29 -> ko-fi.com/s/7625accf3f (save $16)


Step 1 -- Install

pip3 install rich --break-system-packages --quiet

Step 2 -- Validate license and setup

import os, sys, re
from datetime import datetime
from rich.console import Console
from rich.panel import Panel
from rich.rule import Rule
from rich.table import Table
from rich import box

console = Console()

LICENSE_KEY = os.environ.get("LICENSE_KEY", "").strip()
if not LICENSE_KEY or not LICENSE_KEY.startswith("RA-PRO-"):
    console.print(Panel(
        "[red bold]Ra Pro requires a license key.[/red bold]\
\
"
        "Get your key at: [bold cyan]ko-fi.com/occupythemilkyway[/bold cyan]\
\
"
        "Or use Ra Standard ($5): [dim]openclaw skills install ra[/dim]\
"
        "Or use Ra Lite (free): [dim]openclaw skills install ra-lite[/dim]",
        title="License Required",
        border_style="red"
    ))
    sys.exit(1)

TOPIC       = os.environ.get("RESEARCH_TOPIC", "").strip()
DEPTH       = os.environ.get("DEPTH", "deep").lower().strip()
ANGLE       = os.environ.get("ANGLE", "balanced").lower().strip()
COMPETITIVE = os.environ.get("COMPETITIVE", "no").lower().strip() == "yes"
CITE_STYLE  = os.environ.get("CITATION_STYLE", "bibliography").lower().strip()
OUTBASE     = os.environ.get("OUTPUT_FILE", "").strip()

if not TOPIC:
    console.print(Panel("[red]RESEARCH_TOPIC is required.[/red]", title="Setup Error", border_style="red"))
    sys.exit(1)

DEPTH_SOURCES = {"standard": 10, "deep": 14, "exhaustive": 20}
num_sources   = DEPTH_SOURCES.get(DEPTH, 14)

safe_topic = re.sub(r"[^a-z0-9]+", "_", TOPIC.lower())[:40]
date_str   = datetime.now().strftime("%Y%m%d")
if not OUTBASE:
    OUTBASE = f"ra_pro_{safe_topic}_{date_str}"

OUTFILE_MD   = OUTBASE + ".md"
OUTFILE_DOCX = OUTBASE + ".docx"

console.print()
console.print(Panel.fit(
    f"[bold yellow]☀️ Ra Pro -- Deep Research Intelligence[/bold yellow]\
"
    f"Topic:      [cyan]{TOPIC}[/cyan]\
"
    f"Depth:      [white]{DEPTH}[/white]  ({num_sources} sources)\
"
    f"Angle:      [white]{ANGLE}[/white]\
"
    f"Competitive: [white]{'Yes' if COMPETITIVE else 'No'}[/white]\
"
    f"Citations:  [white]{CITE_STYLE}[/white]\
"
    f"Output:     [dim]{OUTFILE_MD}[/dim]",
    border_style="yellow"
))

cfg = Table(box=box.SIMPLE, show_header=False, border_style="dim")
cfg.add_column("Setting", style="dim")
cfg.add_column("Value", style="cyan")
cfg.add_row("Sources", str(num_sources))
cfg.add_row("Angle", ANGLE.capitalize())
cfg.add_row("Competitive analysis", "Yes" if COMPETITIVE else "No")
cfg.add_row("Citation style", CITE_STYLE.upper())
console.print(cfg)
console.print(Rule("[yellow]Beginning deep research...[/yellow]"))

Step 3 -- Full research cycle

Research the topic: {RESEARCH_TOPIC}

Search the web extensively. Find {num_sources} authoritative sources. Then produce this full pro report:

# Research Intelligence Report: [TOPIC]
**Ra Pro** | [DATE] | Depth: [DEPTH] | Angle: [ANGLE]

---

## Executive Brief
5-6 sentences. Headline finding, key data point, bottom-line implication. Written for a busy executive who reads only this section.

## Background & Landscape
Comprehensive context: history, current state, key players, market size (if applicable). 3-4 paragraphs.

## Core Findings
### 1. [Finding Title]
Full paragraph with data, statistics, and direct citation.

### 2. [Finding Title]
Full paragraph...

[Continue for all major findings, minimum 5]

## [IF ANGLE=balanced OR critical] Opposing Viewpoints & Counterarguments
What the critics, skeptics, and dissenting voices say. Be fair and complete.

## [IF COMPETITIVE=yes] Competitive & Market Analysis
Who are the key players? What are they doing? Market share, positioning, gaps.

## Synthesis
What do all findings mean together? Where is the consensus? Where is the tension?

## Strategic Implications
What should someone DO with this research? Concrete recommendations or decisions this data supports.

## Conclusion
2-3 sentences wrapping the whole report.

## [CITATION_STYLE] References
[Format according to CITATION_STYLE: bibliography / APA / MLA / Chicago]

Use every source. Write with depth and precision. No fluff.


Step 4 -- Save report and wrap up

from rich.console import Console
from rich.panel import Panel
console = Console()

# Claude saves the full report to OUTFILE_MD using its file tool
console.print()
console.print(Panel(
    f"[bold green]Research complete.[/bold green]\
\
"
    f"Markdown report: [cyan]{OUTFILE_MD}[/cyan]\
"
    f"Sources analyzed: [yellow]{num_sources}[/yellow]\
\
"
    f"[dim]Tip: Use the docx skill to convert {OUTFILE_MD} to a formatted Word document.[/dim]",
    title="[green]Ra Pro -- Done[/green]",
    border_style="green"
))

After generating the report in Step 3, save the full content to {OUTFILE_MD} using your file writing tool.

安全使用建议
Before installing, be aware this skill set is meant for trusted developer and maintainer contexts. Review commands before running moderation, production Convex, GitHub publishing, or autoreview flows, and consider using the autoreview helper's no-yolo option if you do not want nested review to run with broad local access.
能力评估
Purpose & Capability
The artifacts cover Convex setup/auth/migrations/performance work plus ClawHub review, UI proof, and moderation workflows; the sensitive capabilities, such as moderation changes, publishing proof artifacts, deployment-related Convex commands, and nested review commands, match those stated purposes.
Instruction Scope
Runtime instructions are scoped to user-requested workflows, require explicit targets for moderation, call out confirmation or human setup steps where needed, and do not contain prompt-injection, role override, or hidden instruction patterns.
Install Mechanism
No skill install hook, plugin manifest, background service, or persistence installer was found in the skill artifacts; the only executable skill helper is an explicit autoreview script.
Credentials
Network, credentials, GitHub, Convex, and ClawHub CLI/API usage is expected for the described maintainer and app-development workflows, though users should understand these actions can affect real projects or accounts when run with production credentials.
Persistence & Privilege
No unbounded persistence was found. The autoreview helper defaults to running nested Codex review with full-access sandbox bypass, but this is disclosed, purpose-aligned, and has a no-yolo opt-out; moderation commands also require normal auth and audit paths.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install ra-pro
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /ra-pro 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of Ra Pro: Deep Research Intelligence. - Supports advanced research reports with executive brief, multi-angle and competitive analysis, using 12+ authoritative sources. - Output reports in both Markdown and DOCX formats, with customizable citation styles. - Requires license key and research topic for use; supports adjustable depth, analysis angle, and more via environment variables. - Integration with ClawHub platform.
元数据
Slug ra-pro
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Ra Pro 是什么?

Ra Pro -- Deep Research Intelligence. 12+ sources, multi-angle analysis, competitive breakdowns, executive brief + detailed report, .md and .docx export. The... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 33 次。

如何安装 Ra Pro?

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

Ra Pro 是免费的吗?

是的,Ra Pro 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Ra Pro 支持哪些平台?

Ra Pro 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Ra Pro?

由 OccupyTheMilkyWay(@occupythemilkyway)开发并维护,当前版本 v1.0.0。

💬 留言讨论