Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

okra-public-docs秋葵公共文档

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

3,494

周安装

140

GitHub Stars

公开资料未说明

下载量

1,131
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:okra-public-docs(秋葵公共文档)
来源仓库:https://github.com/steventsao/okra-public-docs
安装命令:
openclaw skills install okra-public-docs
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install okra-public-docs

简介

通过 OkraPDF MCP 查询预提取的公共文档如 arXiv 论文或 SEC 文件。

  • 支持结构化数据抽取与问题解答。
  • 适用于研究与尽调场景的信息整合。
  • 安装命令:openclaw skills install okra-public-docs;注意未上架内容的可用性风险。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
okra-public-docs
description
Query pre-extracted public documents via OkraPDF MCP — arxiv AI papers, SEC 10-K/10-Q filings, and more. Read, ask questions, extract structured data. No upload needed.

OkraPDF Public Documents

Pre-extracted public document corpora queryable via MCP. No upload, no waiting — documents are already parsed and indexed. Just pass an ID and start asking questions.

Available Channels

ChannelCoverageAuthID Format
Arxiv AI papers400+ papers from cs.AI, cs.CL, cs.LG (updated weekly)API key requiredarxiv:2603.26653
SEC filingsMag7 + FinanceBench (~80 companies), 10-K and 10-QNo auth neededTicker-based (NVDA)

Setup

Arxiv papers (authenticated MCP)

Add to ~/.claude/mcp.json (Claude Code) or .cursor/mcp.json (Cursor):

{
  "mcpServers": {
    "okra-pdf": {
      "type": "url",
      "url": "https://api.okrapdf.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_API_KEY" }
    }
  }
}

Get a free API key at okrapdf.com (Settings > API Keys).

SEC filings (zero-auth MCP)

{
  "mcpServers": {
    "okra-sec": {
      "type": "url",
      "url": "https://mcp.okrapdf.com/mcp"
    }
  }
}

No API key, no signup. Restart your agent after adding.


Arxiv Papers

400+ recent AI research papers parsed with Docling OCR on GPU — tables, equations, figures, and full text preserved as structured markdown.

Read a paper

read_document(document_id: "arxiv:2603.26653")
read_document(document_id: "arxiv:2603.26653", pages: "1-5")
read_document(document_id: "https://arxiv.org/pdf/2603.26653")

No upload needed — papers are pre-indexed as public sources. Just pass the arxiv ID.

Ask questions

ask_document(document_id: "arxiv:2603.26653", question: "What is the main contribution?")
ask_document(document_id: "arxiv:2603.26653", question: "What were the benchmark results on MMLU?")
ask_document(document_id: "arxiv:2603.18272", question: "How is retrieval-augmented experience used?")

Returns answer with page citations.

Extract structured data

extract_data(
  document_id: "arxiv:2603.26653",
  prompt: "Extract all benchmark results with model names, dataset names, and scores",
  json_schema: {
    "type": "object",
    "properties": {
      "benchmarks": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "model": {"type": "string"},
            "dataset": {"type": "string"},
            "metric": {"type": "string"},
            "score": {"type": "number"}
          }
        }
      }
    }
  }
)

Literature survey workflow

# Read abstracts from several papers
read_document(document_id: "arxiv:2603.26499", pages: "1")
read_document(document_id: "arxiv:2603.26266", pages: "1")

# Ask targeted questions
ask_document(document_id: "arxiv:2603.26499", question: "What bottlenecks in AI research does this address?")

# Same question across papers for comparison
ask_document(document_id: "arxiv:2603.18272", question: "How does this handle multi-agent coordination?")
ask_document(document_id: "arxiv:2603.07379", question: "How does this handle multi-agent coordination?")

Discover papers

Semantic Scholar (free, no key needed for basic use):

curl -s "https://api.semanticscholar.org/graph/v1/paper/search?query=agentic+RAG&year=2026&fields=externalIds,title,citationCount&limit=10" \
  | jq '.data[] | {arxiv: .externalIds.ArXiv, title, citations: .citationCount}'

Arxiv RSS feeds (same feeds used to build the collection):

https://rss.arxiv.org/rss/cs.AI    # Artificial Intelligence
https://rss.arxiv.org/rss/cs.CL    # Computation and Language (NLP)
https://rss.arxiv.org/rss/cs.LG    # Machine Learning

Papers With Code:

curl -s "https://paperswithcode.com/api/v1/papers/?q=agentic+RAG&items_per_page=5" | jq '.results[] | {title, arxiv_id}'

Current snapshot

411 papers from cs.AI (~200), cs.CL (~100), cs.LG (~200). Full manifest in papers.json.

If a paper isn't found, upload it yourself with upload_document.

Tips

  • Use arxiv:XXXX.XXXXX format (not full URL) for cleaner queries
  • pages: "1" reads just the abstract/intro quickly
  • For survey papers (50+ pages), use ask_document instead of reading everything
  • extract_data with JSON schemas is ideal for pulling benchmark tables

SEC Filings

Pre-extracted SEC 10-K and 10-Q filings. No API key, no signup, completely free.

Available tools

ToolPurpose
read_filing_indexBrowse available filings, filter by ticker/type
read_filing_contentsGet full extracted text as markdown
ask_questionAI-powered Q&A with citations, single or cross-company
get_verification_summaryCheck extraction quality page-by-page
verify_pagesApprove or flag pages for quality control

Browse filings

read_filing_index()
read_filing_index(ticker: "NVDA")
read_filing_index(ticker: "AAPL", filing_type: "10-K")

Always start here to see what's available.

Ask questions (single company)

ask_question(question: "What was NVIDIA's data center revenue?", tickers: ["NVDA"])
ask_question(question: "List all risk factors related to AI regulation", tickers: ["MSFT"])
ask_question(question: "What are the outstanding debt obligations?", tickers: ["TSLA"], filing: "10-k-2024")

Cross-company comparison (up to 10 tickers)

ask_question(
  question: "Compare R&D spending as a percentage of revenue",
  tickers: ["AAPL", "MSFT", "GOOGL", "NVDA", "META", "AMZN", "TSLA"]
)

ask_question(
  question: "Which company has the highest gross margin?",
  tickers: ["AAPL", "MSFT", "GOOGL"]
)

ask_question(
  question: "Summarize each company's AI strategy",
  tickers: ["NVDA", "AMD", "INTC"]
)

Fans out to each company's filing in parallel, then synthesizes a cross-company answer.

Read full filing text

read_filing_contents(ticker: "TSLA", filing: "10-k-2024")

Filing slug formats (all equivalent): 10-k-2024, 10-K/2024, 2024-10K.

Extraction quality audit

get_verification_summary(document_id: "doc-xxx")
get_verification_summary(document_id: "doc-xxx", status: "needs_review")
verify_pages(document_id: "doc-xxx", action: "approve", confidence_above: 0.9)
verify_pages(document_id: "doc-xxx", action: "flag", pages: [67], reason: "Table has merged cells")

Available companies

Mag7: AAPL, MSFT, GOOGL, AMZN, NVDA, META, TSLA

FinanceBench: ~80 companies including major banks (JPM, BAC, GS), pharma (PFE, JNJ, ABBV), industrials (GE, MMM, CAT), and more.

Use read_filing_index() to browse the full catalog. New filings added as published.

Tips

  • Start with read_filing_index before querying
  • ask_question with multiple tickers is the fastest way to compare — no need to read each filing
  • Cross-company queries work best with clear, quantitative questions
  • Verification tools require document_id (not ticker) — get it from other tool responses

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95.51%
按下载量换算1,080

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills