Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

research-report-fetcher研究报告获取器

Agent Skill

research-report-fetcher 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

190

周安装

8

GitHub Stars

6

下载量

67
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:research-report-fetcher(研究报告获取器)
来源仓库:https://github.com/qizfeng/research-report-fetcher
仓库路径:skills/research-report-fetcher
安装命令:
npx skills add https://github.com/qizfeng/research-report-fetcher --skill research-report-fetcher
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/qizfeng/research-report-fetcher --skill research-report-fetcher

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景进行信息检索的研究类 Agent 工作流。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 建议确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • research-report-fetcher 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Research Report Fetcher

This skill helps you fetch research reports from various sources (institutions, WeChat public accounts, academic databases, etc.) and add them to the research report database.

When to Use

  • User asks to fetch reports from a specific institution (e.g., "从某某券商获取研究报告")
  • User asks to fetch reports from a WeChat public account (e.g., "从因子动物园公众号获取报告")
  • User asks to add reports from any research source
  • User wants to expand the research report database with new sources

Workflow

1. Understand the Source

First, gather information about the source:

  • What is the institution/account name?
  • What type of reports do they publish? (quantitative, financial, academic)
  • What is their website or API endpoint?
  • Do they have a public API or do you need to web scrape?

2. Search for Available Reports

Use web search to find:

  • Recent reports from the source
  • Report structure and format
  • Access methods (API, RSS, direct download)

3. Create a Fetch Script

Create a Node.js script in /scripts/ directory to:

  • Connect to the data source
  • Fetch report metadata (title, abstract, date, author, etc.)
  • Download or generate report content
  • Insert into the SQLite database

4. Script Template

const Database = require('better-sqlite3');
const path = require('path');

const dbPath = path.join(__dirname, '../data/reports.db');
const db = new Database(dbPath);

async function main() {
  console.log('开始从 [SOURCE_NAME] 获取研究报告...\n');

  // Define reports to add
  const reports = [
    {
      title: "Report Title",
      abstract: "Report abstract...",
      keywords: ["keyword1", "keyword2"],
      author: "Author Name",
      publishDate: "2024-01-01",
      institution: "Institution Name",
      content: "Full report content...",
      downloadUrl: "https://example.com/download.pdf",
      shareUrl: "https://example.com/share"
    }
    // Add more reports...
  ];

  // Insert reports into database
  let addedCount = 0;
  for (const report of reports) {
    try {
      const insert = db.prepare(`
        INSERT INTO reports (title, abstract, keywords, author, publish_date, institution, content, download_url, share_url)
        VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)
      `);

      insert.run(
        report.title,
        report.abstract,
        JSON.stringify(report.keywords),
        report.author,
        report.publishDate,
        report.institution,
        report.content,
        report.downloadUrl,
        report.shareUrl
      );

      addedCount++;
      console.log(`✓ 添加: ${report.title}`);
    } catch (error) {
      console.error(`✗ 添加失败: ${report.title}`, error.message);
    }
  }

  console.log(`\n成功添加 ${addedCount} 篇报告`);

  // Show statistics
  const totalReports = db.prepare('SELECT COUNT(*) as count FROM reports').get();
  console.log(`数据库中总报告数: ${totalReports.count}`);

  db.close();
}

main().catch(console.error);

5. Handle Different Source Types

For Institutions with APIs:

  • Use axios or fetch to call their API
  • Parse JSON/XML responses
  • Handle pagination if needed

For WeChat Public Accounts:

  • Search for their published articles
  • Extract report content from web pages
  • Use cheerio for HTML parsing if needed

For Academic Databases:

  • Use arXiv API, SSRN, or other academic APIs
  • Follow their API documentation
  • Respect rate limits

6. Quality Control

Before adding reports, ensure they meet quality standards:

  • Reports should be about quantitative investment/finance
  • Titles and abstracts should clearly describe research content
  • Content should have clear structure (introduction, methodology, results)
  • Remove duplicates before insertion

IMPORTANT - URL Validation (Required):

  • All download_url and share_url must be REAL and VALID URLs
  • DO NOT use placeholder URLs like "https://example.com/..."
  • Always verify URLs are accessible before adding to database
  • If real URLs cannot be obtained, use alternative sources or search for accessible versions
  • For WeChat articles, try to find the original article link or author's other published platforms
  • For academic papers, use arXiv, SSRN, or other open access sources

URL Verification Steps:

  1. Test download_url with curl -I to check HTTP status
  2. Verify share_url points to accessible content
  3. If URL returns 404 or is inaccessible, remove the report or find alternative source
  4. Document all URL sources for transparency

7. Run and Verify

  1. Run the script: node scripts/fetch-[source]-reports.js
  2. Verify reports were added successfully
  3. Check the website to see new reports displayed
  4. Run deduplication if needed

Examples

Example 1: Fetch from a Securities Firm

// scripts/fetch-citic-reports.js
const reports = [
  {
    title: "量化投资因子挖掘研究",
    abstract: "本文系统研究了量化投资中的因子挖掘方法论...",
    keywords: ["量化投资", "因子挖掘", "多因子模型"],
    author: "中信建投证券金融工程团队",
    publishDate: "2024-06-15",
    institution: "中信建投证券",
    // ... other fields
  }
];

Example 2: Fetch from WeChat Public Account

// scripts/fetch-factor-zoo-reports.js
const reports = [
  {
    title: "因子动物园:量化因子框架研究",
    abstract: "本文针对日益膨胀的因子动物园问题...",
    keywords: ["因子动物园", "因子压缩", "量化投资"],
    author: "石川、刘洋溢、连祥斌",
    publishDate: "2024-12-15",
    institution: "因子动物园公众号",
    // ... other fields
  }
];

Database Schema

The reports table has the following structure:

  • id: INTEGER PRIMARY KEY
  • title: TEXT - Report title
  • abstract: TEXT - Report abstract/summary
  • keywords: TEXT (JSON array) - Keywords/tags
  • author: TEXT - Author name(s)
  • publish_date: TEXT (YYYY-MM-DD) - Publication date
  • institution: TEXT - Source institution/account
  • content: TEXT - Full report content
  • download_url: TEXT - PDF download link
  • share_url: TEXT - Share/view link

Best Practices

  1. Always check for duplicates before adding new reports
  2. Use consistent date format (YYYY-MM-DD)
  3. Store keywords as JSON array in the keywords field
  4. Include meaningful content not just placeholder text
  5. Set proper institution name for filtering and organization
  6. Validate URLs before storing them
  7. Handle errors gracefully and log them for debugging

Common Issues

Duplicate Reports

Use the find-and-remove-duplicates.js script to clean up duplicates after adding new reports.

Invalid Dates

Ensure all dates are in YYYY-MM-DD format. Use formatDate() helper function.

Missing Fields

All fields except id are required. Make sure to provide default values if data is unavailable.

Database Locked

If you get "database is locked" error, ensure no other process is accessing the database.

Available Fetch Scripts

The skill includes three ready-to-use fetch scripts in the /scripts/ directory:

1. WeChat Public Account Fetcher

File: scripts/fetch-wechat-public-account.js

Fetches research reports from a specified WeChat public account.

node scripts/fetch-wechat-public-account.js "公众号名称"

Features:

  • Supports custom public account name via command line argument
  • Validates all download and share URLs before adding
  • Skips invalid URLs automatically and reports them
  • Includes sample quantitative research reports

2. Institution Fetcher

File: scripts/fetch-institution-reports.js

Fetches research reports from a specified institution (securities firm, fund, etc.).

node scripts/fetch-institution-reports.js "机构名称"

Features:

  • Supports custom institution name via command line argument
  • Includes sample reports for various topics (quantitative investment, machine learning, commodities, options, etc.)
  • URL validation ensures only valid links are added
  • Comprehensive report content with research background and methodology

3. Data Source Fetcher

File: scripts/fetch-data-source.js

Fetches research papers from academic data sources.

# Usage
node scripts/fetch-data-source.js <source_type> <search_terms> [max_results]

# Examples
node scripts/fetch-data-source.js arxiv "quantitative investment, machine learning" 5
node scripts/fetch-data-source.js ssrn "factor investing"
node scripts/fetch-data-source.js nber "asset pricing"

Supported Data Sources:

  • arxiv - arXiv Open-Access Archive
  • ssrn - Social Science Research Network
  • repec - Research Papers in Economics
  • nber - National Bureau of Economic Research
  • cepr - Center for Economic Policy Research

Features:

  • Supports multiple academic data sources
  • Customizable search terms
  • Configurable maximum results
  • Automatic report generation with proper database format

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.22%
按下载量换算24

Claude

27.83%
按下载量换算19

Cursor

18.22%
按下载量换算12

Gemini CLI

9.62%
按下载量换算6

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills