China Stock Market Shanghai Shenzhen Index

v1.0.0

Get China A-share market data (Shanghai/SH and Shenzhen/SZ) via FinanceAgent on OneKey Gateway.

0· 135·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for ai-hub-admin/cn-stock-market-shanghai-shenzhen.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "China Stock Market Shanghai Shenzhen Index" (ai-hub-admin/cn-stock-market-shanghai-shenzhen) from ClawHub.
Skill page: https://clawhub.ai/ai-hub-admin/cn-stock-market-shanghai-shenzhen
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install cn-stock-market-shanghai-shenzhen

ClawHub CLI

Package manager switcher

npx clawhub@latest install cn-stock-market-shanghai-shenzhen
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (fetch China SH/SZ market data) matches the declared runtime behavior: it requires a OneKey Gateway access key and calls the FinanceAgent API. The env var DEEPNLP_ONEKEY_ROUTER_ACCESS is appropriate for this gateway-based integration.
Instruction Scope
SKILL.md only instructs setting the OneKey access key, using the provided npm package or calling the documented endpoint (agent.deepnlp.org) with the appropriate payload. It does not request unrelated files, system configuration, or other credentials.
Install Mechanism
The skill is instruction-only (no code files), but SKILL.md lists a dependency (@aiagenta2z/onekey-gateway) and an npm -g install command. The registry metadata indicated 'No install spec', creating a minor inconsistency. Installing a third-party npm package globally can execute arbitrary code from that package — verify the package source, version, and trustworthiness before installing and prefer non-global or ephemeral usage (npx) if possible.
Credentials
Only one environment variable (DEEPNLP_ONEKEY_ROUTER_ACCESS) is required and is directly relevant to connecting to the OneKey Gateway. No other secrets, keys, or config paths are requested.
Persistence & Privilege
The skill does not request 'always:true' or other elevated persistence. It is user-invocable and allows autonomous invocation by default (platform default), which is expected for skills.
Assessment
This skill appears coherent for fetching China market data via the OneKey Gateway. Before installing or running the suggested npm command: (1) verify the npm package @aiagenta2z/onekey-gateway on the npm registry or its repository to ensure it is legitimate; (2) avoid global installation when possible (use npx or a local install) to reduce risk; (3) use a least-privileged OneKey access key (read-only if supported) and confirm you trust the endpoint (https://agent.deepnlp.org) before sending your credentials; (4) if you cannot verify the npm package or gateway, do not install and consider contacting the publisher for provenance.

Like a lobster shell, security has layers — review code before you run it.

latestvk973benh60vzc0rq3tw6atvj8h83xta8
135downloads
0stars
1versions
Updated 4w ago
v1.0.0
MIT-0

OneKey Gateway

Use one access key to connect to various commercial APIs via the DeepNLP OneKey Agent Router.

Quick Start

Set your OneKey Access Key

export DEEPNLP_ONEKEY_ROUTER_ACCESS=your_access_key

Common settings:

  • unique_id: aiagenta2z/financeagent
  • api_id: get_cn_stock_market_shanghai_shenzhen

Tool

get_cn_stock_market_shanghai_shenzhen

Get China stock market data for Shanghai (SH) and Shenzhen (SZ).

Parameters:

  • symbol_list (array of string, required): Stock symbols to query.
    • Use SH / SZ prefixes, e.g. "SH600519", "SH600036".
    • Example: ["SH600519", "SH600036"]

Response (JSON):

  • success (boolean): Whether the request succeeded.
  • data (array): List of stock quote objects (fields depend on the upstream data source).
  • message (string, optional): Error message when success=false.

Usage

CLI Usage

## install onekey agent gateway
npm install @aiagenta2z/onekey-gateway

## CLI to Call API and Symbol List
npx onekey agent aiagenta2z/financeagent get_cn_stock_market_shanghai_shenzhen '{"symbol_list": ["SH600519", "SH600036"]}'

HTTP (curl) Usage

export DEEPNLP_ONEKEY_ROUTER_ACCESS=your_access_key

curl -v -X POST "https://agent.deepnlp.org/agent_router" \
  -H "Content-Type: application/json" \
  -H "X-OneKey: $DEEPNLP_ONEKEY_ROUTER_ACCESS" \
  -d '{
    "unique_id": "aiagenta2z/financeagent",
    "api_id": "get_cn_stock_market_shanghai_shenzhen",
    "data": {
      "symbol_list": ["SH600519", "SH600036"]
    }
  }'

Comments

Loading comments...