一键导入
edgar-search
Query the SEC EDGAR database to retrieve official company filings including 10-K, 10-Q, 8-K, and proxy statements.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Query the SEC EDGAR database to retrieve official company filings including 10-K, 10-Q, 8-K, and proxy statements.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | Edgar Search |
| description | Query the SEC EDGAR database to retrieve official company filings including 10-K, 10-Q, 8-K, and proxy statements. |
Use this skill for:
| Type | Description |
|---|---|
| 10-K | Annual report |
| 10-Q | Quarterly report |
| 8-K | Current report (material events) |
| DEF 14A | Proxy statement |
| S-1 | Registration statement (IPO) |
def edgar_search(company: str, filing_type: str = '10-K', limit: int = 3) -> list[dict]:
"""Search SEC EDGAR for company filings.
Args:
company: Company name or CIK number
filing_type: Type of filing (10-K, 10-Q, 8-K, etc.)
limit: Maximum filings to return
Returns:
List of filing metadata with download URLs
"""
filings = edgar_client.search(
company=company,
form_type=filing_type,
count=limit,
)
return [
{
"filing_date": f.date,
"form_type": f.form_type,
"url": f.document_url,
"description": f.description,
}
for f in filings
]
User-Agent header to a valid contact email when calling the API directly.This skill outlines two methods to change the root password in Linux: one when you have the current password, and another when you need to reset it without the current password.
This skill outlines the workflow for generating a Know Your Customer (KYC) report, encompassing company website research, GLEIF/LEI lookup, and adverse media/news screening to build a foundational client profile.
This skill describes how to perform an LEI search on the GLEIF website to find a company's LEI number for KYC analysis.
This skill describes how to reset a forgotten Linux root password by booting into single-user mode through the Grub menu.
This skill summarizes the "Social Media Manager Confidential" podcast, which offers realistic, positive, and insightful resources for social media managers. It covers strategies, content tips, and transparent advice for building ethical and profitable businesses that support their lifestyle goals. The podcast also extends an invitation to an exclusive, free private community for social media managers.
Understand the basic structure of an Excel file, differentiating between a workbook and its constituent worksheets, and how to navigate between them. It is foundational for anyone new to Excel or needing a refresher on its basic organization.