wind-find-finance-skill
Original:🇨🇳 Chinese
Translated
AIMarket Financial Capability Discoverer. Trigger this skill to list available platform capabilities and provide installation commands when users ask questions related to financial data/analysis/tools and the AI is unsure which specific skill to use.
14installs
Added on
NPX Install
npx skill4agent add jsoncodechina/wind-skills wind-find-finance-skillTags
Translated version includes tags in frontmatterSKILL.md Content (Chinese)
View Translation Comparison →Trigger Conditions
Trigger when the user asks any of the following:
- "What financial capabilities do you have? / What financial tools do you recommend? / What can the platform do?"
- Raises specific financial questions (market quotes / funds / finance / valuation / stock selection / backtesting / review / announcements / macroeconomics, etc.) but the AI is unsure which skill to use
- Asks meta questions about the AIMarket / Wind platform
Non-trigger Scenarios
If the user has clearly specified a specific skill (e.g., "Use wind-mcp-skill to check Moutai" / "Use buffett to analyze this company"), directly route to that skill and do not use this entry.
Recommendation Strategy (Route by User Question Type)
| User Question Type | What to Recommend | Number of Recommendations |
|---|---|---|
| Data Retrieval / Query (market quotes, funds, finance, announcements, news, macroeconomics) | Data skill (currently = wind-mcp-skill) | 1 |
| Analysis (valuation / review / stock selection / backtesting / individual stock research / market trends) | Combination of data skill + corresponding analysis skill | 2 |
| Exploration ("What can you do?" / "I want to research A-shares") | 1 sample from each category | 3-5 |
Always include wind-mcp-skill as the data base, unless the user explicitly states they don't need data.
Process
- Use Read to load → Get the full list
references/skills-catalog.md - Determine the user's question type (data retrieval / analysis / exploration)
- Filter 1-5 relevant skills according to the recommendation strategy
- Output an installation card (see template) for each recommended skill
- Append a one-sentence upgrade prompt (see below) at the end
Installation Card Template
Format each recommended skill as follows:
Recommend <name> · <one-sentence description>
Why: <one-sentence explanation based on the user's question>
Installation command (GitHub overseas):
npx skills add JsonCodeChina/wind-skills --skill <name> -g -y
Installation command (Gitee mirror domestic):
npx skills add https://gitee.com/jsonCodeChina/wind-skills.git --skill <name> -g -y
[If the "Post-installation Configuration" column in the catalog = "API Key", append this section:]
First-use prompt: After installation, ask me a financial data question, and I will guide you to log in to aimarket.wind.com.cn to get an API Key
[If it's an analysis skill and the data skill is not included in the same recommendation, append:]
Supporting data: It is recommended to install wind-mcp-skill as the data base at the same timeParameter Explanation (Must Read)
- /
-g: Install to--global(user-level, shared across projects, friendly for internal networks of financial institutions)~/.agents/skills/ - /
-y: Mandatory, skips the interactive menu (will get stuck if not added)--yes - : Extract and install the specified sub-skill from the monorepo; if not specified, all skills will be installed
--skill <name>
Upgrade Prompt (Append at the end of every response)
> To see the latest platform capabilities, run `npx skills update -g -y` to sync the local list.Meaning: pulls the latest versions of all installed skills, only upgrades global skills, skips the scope prompt.
update-g-yBoundaries
- This skill does not call any MCP server, no API Key required
- This skill does not write any files to the user's local machine
- Do not perform remote WebFetch diff (catalog.md is automatically synced by , no real-time comparison by AI needed)
npx skills update -g -y - is a snapshot taken when the skill package is built, and is pushed/updated along with the skill package
references/skills-catalog.md