Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

ifindifind 搜索

Agent Skill

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

总安装

11,320

周安装

467

GitHub Stars

1

下载量

3,699
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ifind

简介

封装 iFinD QuantAPI 的官方 HTTP 接口调用功能。

  • 覆盖市场、宏观、基金等多维度金融数据查询。
  • 返回标准化 JSON 响应便于程序化处理。
  • 依赖有效账号权限与网络连接稳定性。ifind 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 输出数据以 iFinD 官方发布为准,可能存在延迟。

SKILL.md

name
ifind
description
|

iFinD

Use this skill to query iFinD via the local Python wrapper in scripts/ifind_api.py.

Environment preparation

Before first use, verify Python dependencies.

Required runtime dependency:

  • requests

A pinned dependency file is provided at scripts/requirements.txt.

Check quickly with:

python3 -c "import requests; print(requests.__version__)"

If missing, install it before running any API script:

python3 -m pip install -r scripts/requirements.txt

If the environment is externally managed, prefer a virtual environment, but installing requests is allowed for this skill when needed.

First rule: confirm refresh_token before querying

Before any data call:

  1. Check token status with:

python3 scripts/ifind_token_store.py status

  1. If missing, prefer letting the agent obtain it directly from the official site:

- open https://quantapi.51ifind.com - log in with the user's existing session, or ask the user to complete login if interactive approval is needed - go to the account information page - locate the refresh_token

  1. Store it only through:

python3 scripts/ifind_token_store.py set --token '<TOKEN>'

  1. Only fall back to asking the user to provide the token if the browser path is unavailable or login cannot be completed.

Never ask the user to paste shell commands that would echo the token back into chat. Never print the token after storing it.

Preferred token acquisition workflow

Prefer this order:

  1. Browser login to https://quantapi.51ifind.com and read the token from account information
  2. iFinD 超级命令客户端 → 工具 → refresh_token 查询
  3. Ask the user directly only as a fallback

If browser automation is used, keep the flow minimal and do not browse unrelated pages. Once the token is found, store it immediately and stop exposing it in further output.

Token storage policy

  • Storage path: ~/.openclaw/skills/ifind/credentials.json
  • File permission target: owner read/write only (600 on POSIX)
  • The store script writes the file and tightens permissions automatically.
  • The request script reads the refresh_token from that file unless IFIND_REFRESH_TOKEN is already present in the environment.
  • Prefer the stored token over hardcoding tokens into code or notes.

Quick workflow

1. Verify dependencies and token state

Run:

python3 -c "import requests; print(requests.__version__)"
python3 scripts/ifind_token_store.py status

If requests is missing, install it first:

python3 -m pip install -r scripts/requirements.txt

If the token is missing, obtain it through the preferred browser workflow and store it first.

2. Choose a calling path

  • For direct endpoint calls, use scripts/ifind_request.py endpoint
  • For common market-data work, use scripts/ifind_request.py preset
  • For Python integration or patching, read scripts/ifind_api.py
  • For endpoint details and payload shape, read references/iFind_API_Reference.md

3. Run the query

Examples:

python3 scripts/ifind_request.py preset realtime \
  --codes '300033.SZ,600000.SH' \
  --indicators 'open,high,low,latest,changeRatio,volume,amount'

python3 scripts/ifind_request.py preset ohlcv \
  --codes '000300.SH' \
  --startdate '2025-01-01' \
  --enddate '2025-03-01'

python3 scripts/ifind_request.py endpoint get_thscode \
  --payload '{"seccode":"300033","functionpara":{"mode":"seccode","sectype":"","market":"","tradestatus":"0","isexact":"0"}}'

Output discipline

When using returned data in analysis:

  • state the endpoint used
  • include the symbol universe / code list
  • include the requested date range or timestamp
  • include the returned perf, dataVol, or other useful metadata when relevant
  • if the API returns an error, surface the error code and message rather than guessing

References

  • references/iFind_API_Reference.md: local API wrapper reference and examples from the user
  • references/token-and-storage.md: refresh_token acquisition and storage procedure
  • scripts/ifind_api.py: local Python wrapper
  • scripts/ifind_request.py: CLI for endpoint/preset calls
  • scripts/ifind_token_store.py: token status/set/remove helper

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

70.66%
按下载量换算2,614

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills