# Send Tecent Finance 1.0.0 to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "tecent-finance-1-0-0",
    "name": "Tecent Finance 1.0.0",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/squally2k/tecent-finance-1-0-0",
    "canonicalUrl": "https://clawhub.ai/squally2k/tecent-finance-1-0-0",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/tecent-finance-1-0-0",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tecent-finance-1-0-0",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/tecent-finance-1-0-0"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/tecent-finance-1-0-0",
    "downloadUrl": "https://openagent3.xyz/downloads/tecent-finance-1-0-0",
    "agentUrl": "https://openagent3.xyz/skills/tecent-finance-1-0-0/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tecent-finance-1-0-0/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tecent-finance-1-0-0/agent.md"
  }
}
```
## Documentation

### Tencent Finance CLI

A Python CLI for fetching stock data from Tencent Finance API.

### Features

✅ No API key required - 无需申请 API Key
✅ Works in mainland China - 针对中国大陆网络环境优化，直接访问腾讯财经 API
✅ Fast & Stable - 比 Yahoo Finance API 更稳定，不受限流影响
✅ Multi-market support - 支持美股、A股、港股

### Installation

chmod +x /path/to/skills/tencent-finance/tfin
ln -sf /path/to/skills/tencent-finance/tfin /usr/local/bin/tfin  # Optional: global access

### Price (quick check)

tfin AAPL              # Quick price
tfin price AAPL        # Same as above

### Quote (detailed)

tfin quote MSFT

### Compare

tfin compare AAPL,MSFT,GOOGL
tfin compare TSLA,NVDA

### Search

tfin search "tesla"
tfin search "bitcoin"

### Help

tfin help
tfin --help

### Symbol Format

US stocks: AAPL, MSFT, GOOGL, TSLA, NVDA
China A-Shares: sh000001 (上证指数), sz399001 (深证成指), sh600519 (茅台)
Hong Kong: hk00700 (腾讯), hk09988 (阿里), hk03690 (美团)
Crypto: BTC-USD, ETH-USD

### Examples

# Quick price check
tfin AAPL
tfin TSLA

# Detailed quote
tfin quote NVDA

# Compare tech giants
tfin compare AAPL,MSFT,GOOGL,META,AMZN

# Search
tfin search "apple"
tfin search "bitcoin"

# China stocks
tfin sh000001           # 上证指数
tfin quote hk00700      # 腾讯控股

### Data Source

This tool uses Tencent Finance API (腾讯财经 API).

Why Tencent API?

在中国大陆网络环境下可直接访问，无需代理
比 Yahoo Finance API 更稳定，不受限流影响
数据覆盖美股、A股、港股等多个市场

Data includes:

Current price (实时价格)
Price change (absolute & percentage) (涨跌额/涨跌幅)
Open, High, Low prices (开盘/最高/最低价)
Previous close (昨收)
Volume (成交量)
Market cap (市值)
P/E ratio (市盈率)
P/B ratio (市净率)

### Supported Markets

MarketExampleStatusUS StocksAAPL, TSLA, NVDA✅ SupportedChina A-Sharessh000001, sz399001✅ SupportedHong Konghk00700, hk09988✅ SupportedCryptoBTC-USD, ETH-USD✅ SupportedIndia NSE/BSERELIANCE.NS, TCS.BO❌ Not supported

### Comparison with Yahoo Finance

FeatureYahoo Finance (yfinance)Tencent Finance (tfin)Mainland China AccessOften blocked/restricted✅ Direct accessRate LimitingFrequent✅ StableUS Stocks✅ Supported✅ SupportedChina A-SharesLimited✅ Full supportHong Kong StocksSupported✅ SupportedIndian Stocks✅ Supported❌ Not supportedOptions/DividendsSupported❌ Not supported

### Requirements

Python 3.7+
requests
rich

pip3 install requests rich

### "No data found"

Verify the symbol format
Try with prefix: usAAPL instead of AAPL
Some international markets may not be supported

### Connection errors

Check internet connection
Tencent API is optimized for mainland China and generally very stable

### License

MIT License

### Author

Created by Menrfa
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: squally2k
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/tecent-finance-1-0-0)
- [Send to Agent page](https://openagent3.xyz/skills/tecent-finance-1-0-0/agent)
- [JSON manifest](https://openagent3.xyz/skills/tecent-finance-1-0-0/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/tecent-finance-1-0-0/agent.md)
- [Download page](https://openagent3.xyz/downloads/tecent-finance-1-0-0)