← 返回
未分类 中文

SEC Data Pull Forms 10K, 10Q, 8K and others fillings for companies and stocks - Finance

AI-Powered SEC Filing Integration skill. 40+ SEC filing tools. Access 10-K, 10-Q, 8-K, insider trading, beneficial ownership (13D/G), company facts, XBRL dat...
AI-Powered SEC Filing Integration skill. 40+ SEC filing tools. Access 10-K, 10-Q, 8-K, insider trading, beneficial ownership (13D/G), company facts, XBRL dat...
lkcair
未分类 clawhub v1.3.3 2 版本 100000 Key: 无需
★ 1
Stars
📥 566
下载
💾 0
安装
2
版本
#latest

概述

SEC-AI Skill

40+ SEC filing tools. Access 10-K, 10-Q, 8-K, 13D/G beneficial ownership, insider transactions, company XBRL facts, and institutional holdings.

Github Open-Source

Please star Github if you like the skill.

Also available for OpenWebUI.

https://github.com/lkcair/sec-finance-ai

Setup

Run from the skill directory:

python3 -m venv .venv
.venv/bin/python3 -m pip install -r requirements.txt

> Windows: use .venv\Scripts\python3 instead of .venv/bin/python3.

AGNOSTIC OS / One-shot Design ( Goals )

  • This skill is designed to be agnostic to OS and execution environment.
  • It loads only essential context on first use and uses a single-shot interaction pattern for reliability.
  • Basic usage pattern provided and All Functions list in SKILL.md body.

Quotation / Command Execution Reliability (common pitfall)

  • If a command invocation uses complex shell quoting, it may fail in various environments. Use a here-doc style or a tiny helper script to avoid escaping issues.
  • Crucially, ensure you are executing Python scripts using the interpreter from the skill's virtual environment. Simply calling python3 might not use the correct interpreter if the venv is not activated, leading to ModuleNotFoundError.
  • Always use the full path to the venv's Python interpreter for execution, e.g.:

/home/openclaw/.openclaw/venv/sec-finance-ai/bin/python3

  • Ensure that all necessary packages (like pandas, pydantic, requests, beautifulsoup4) are installed within this specific venv using its associated pip command.

Agent Quick-Start

After setup, copy the template below into your agent's TOOLS.md.

Replace SKILL_DIR with the absolute path to this skill's directory.

# SEC-AI Skill

## Usage

cd SKILL_DIR && SKILL_DIR/.venv/bin/python3 -c "

import asyncio, sys

sys.path.insert(0, '.')

from sec_finance_ai import Tools

t = Tools()

async def main():

result = await t.METHOD(ARGS)

print(result)

asyncio.run(main())

" 2>/dev/null


Replace METHOD(ARGS) with any call below.

## Common Calls

| Need | Method |
|---|---|
| Annual Report (US) | `get_latest_10k(ticker='AAPL')` |
| Quarterly Report (US) | `get_latest_10q(ticker='AAPL')` |
| Current Report | `get_recent_8k_filings(ticker='AAPL')` |
| Beneficial Ownership | `get_beneficial_ownership(ticker='GME')` |
| Insider Transactions | `get_insider_transactions(ticker='TSLA')` |
| Company Facts | `get_company_facts(ticker='AAPL')` |
| Filing Content | `get_filing_content(ticker='AAPL', get_full_content=True)` |
| Search Filings | `search_filings(query='Apple')` |
| Download Text | `download_filing_text(filing_url='...')` |

## Routing

- "Get 10-K" → `get_latest_10k`
- "Get 10-Q" → `get_latest_10q`
- "Get 8-K" → `get_recent_8k_filings`
- "Beneficial ownership" → `get_beneficial_ownership`
- "Insider trading" → `get_insider_transactions`
- "Financials/Facts" → `get_company_facts`
- "Search SEC" → `search_filings`
- "Download filing" → `download_filing_text`
- "Read full 10-K" → `get_filing_content(ticker='...', filing_type='10-K', get_full_content=True)`
- "Get links only" → `get_company_filings`

All Functions

By Categories:

  • Filing Access: get_company_filings, get_latest_10k, get_latest_10q, get_recent_8k_filings, analyze_8k_filing, get_proxy_statements
  • Ownership/Insider: get_insider_transactions, get_beneficial_ownership
  • Financial Facts: get_company_facts, get_company_concept, get_available_metrics
  • Content Retrieval: get_filing_content, download_filing_text
  • Utility: search_filings, get_recent_ipos, get_sec_api_status, run_self_test, get_available_functions

Notes

  • Data directly from official SEC EDGAR database.
  • All functions are async — the asyncio.run() wrapper handles this.
  • Remember to update SEC_HEADERS in sec_finance_ai.py with your User-Agent info.

版本历史

共 2 个版本

  • v1.3.3 当前
    2026-05-23 23:11 安全 安全
  • v1.2.3
    2026-05-21 14:08 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,353 📥 317,955
security-compliance

Skill Vetter

spclaudehome
AI智能体技能安全预审工具。安装ClawdHub、GitHub等来源技能前,检查风险信号、权限范围及可疑模式。
★ 1,212 📥 266,367
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 668 📥 323,981