Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

hk-stock-to-gougoubi-prediction港股对狗狗比预测

Agent Skill

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

总安装

5,484

周安装

224

GitHub Stars

公开资料未说明

下载量

1,774
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install hk-stock-to-gougoubi-prediction

简介

hk-stock-to-gougoubi-prediction 将港股研究转化为标准化的狗狗币风格预测建议,含确定性措辞与标签分类。

  • 适合需要将复杂分析简化为行动导向结论的场景,便于团队快速理解与应用。
  • 输入股票代码或名称后自动生成结构化输出,包含截止日期与执行规则说明。
  • 输出为模拟预测框架,不构成真实投资建议;请勿直接用于实际交易决策。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
hk-stock-to-gougoubi-prediction
description
Turn Hong Kong stock research into Gougoubi-ready prediction proposals with deterministic market wording, deadline selection, resolution rules, and tags. Use when users want to analyze 港股 and publish or prepare a Gougoubi prediction market from the result.
metadata
{"clawdbot":{"emoji":"🏦","os":["darwin","linux","win32"]}}

HK Stock To Gougoubi Prediction

Use hk-stock-predictor to generate prediction candidates, then convert the best candidate into a Gougoubi-ready proposal and pass it to gougoubi-create-prediction.

Minimal Input

{
  "symbol": "00700",
  "horizon": "30d"
}

Theme-first input is also valid:

{
  "theme": "南向资金持续流入的港股通互联网龙头",
  "horizon": "14d"
}

Required Subskills

Use these skills in order:

  1. hk-stock-predictor
  2. gougoubi-create-prediction

If hk-stock-predictor is missing, do not continue to market creation. Ask the agent to perform the HK stock analysis workflow first.

Deterministic Workflow

  1. Analyze the HK stock or theme.

- Run the hk-stock-predictor workflow. - Collect predictionCandidates and recommendedPrediction.

  1. Pick one prediction candidate.

- Prefer the recommended candidate unless it violates the filters below.

  1. Validate prediction quality.

- Must be binary, range, event, or relative-performance. - Must have a concrete deadline. - Must have a public resolution source. - Must not rely on subjective judgment.

  1. Convert to Gougoubi proposal fields.

- marketName - deadlineIsoUtc - rules - tags

  1. Pass the resulting market to gougoubi-create-prediction.

- Minimal required user-facing fields remain marketName and deadlineIsoUtc. - The rest of the content should be generated deterministically from the chosen prediction.

  1. Return both layers of output.

- analysis summary - chosen prediction - Gougoubi payload - create transaction result if submission is requested

Market Filters

Only create markets that satisfy all of these:

  • time-bounded
  • externally resolvable
  • single thesis, not multiple stacked conditions
  • sufficiently liquid underlying or high-quality event source
  • wording is concise and non-ambiguous

Do not create markets for:

  • micro-cap or illiquid names likely to be manipulated
  • vague sentiment questions
  • open-ended macro narratives without a measurable threshold
  • markets that cannot be resolved from a public page or published report

Gougoubi Conversion Rules

1. marketName

Use a short title with one measurable claim.

Good:

  • Will 00700 close above HK$520 on 2026-04-30?
  • Will 09988 outperform HSTECH between now and 2026-05-15?
  • Will 02318 report YoY net profit growth above 10% in its next earnings release?

2. deadlineIsoUtc

Choose the earliest deadline that still allows clean resolution:

  • close-price market: use market close date plus a short safety buffer
  • earnings market: use expected report date plus a safety buffer
  • relative-performance market: end date at the comparison window close

Default timezone for rules: Asia/Hong_Kong, unless the data source clearly reports in another timezone.

3. rules

Rules must explicitly define:

  • resolution source
  • metric field
  • comparison operator
  • timezone
  • tie handling
  • fallback source if primary source is temporarily unavailable

Use this template:

Resolution source:
- Primary: [source]
- Fallback: [fallback source]

Resolution rule:
- This market resolves YES if [exact measurable condition].
- This market resolves NO otherwise.

Measurement details:
- Timezone: Asia/Hong_Kong
- Observation time: [exact time or reporting event]
- Metric: [close price / YoY growth / index-relative return / etc.]
- Tie handling: equality resolves [YES or NO], as stated in market title interpretation.

4. tags

Always include:

  • hong-kong-stocks
  • one sector tag
  • one catalyst tag
  • one horizon tag
  • when possible, align with project-known category ids such as finance, earnings, and tech

Examples:

  • hong-kong-stocks
  • finance
  • internet
  • earnings
  • 30d

Output Schema

{
  "ok": true,
  "analysis": {
    "symbol": "00700",
    "companyName": "Tencent Holdings",
    "recommendedPrediction": {
      "title": "",
      "deadlineIsoUtc": "",
      "confidence": 0
    }
  },
  "gougoubiPayload": {
    "marketName": "",
    "deadlineIsoUtc": "",
    "rules": "",
    "tags": []
  },
  "createInput": {
    "marketName": "",
    "deadlineIsoUtc": ""
  },
  "createResult": null,
  "warnings": []
}

Response Format

# 港股到 Gougoubi 预测题

## 标的结论
- 标的:
- 核心判断:
- 时间窗口:

## 选中的预测题
- 题目:
- 截止时间:
- 置信度:
- 公开裁决来源:

## Gougoubi 参数
- marketName:
- deadlineIsoUtc:
- tags:

## 规则草案
[rules text]

## 提交结果
- status:
- txHash:
- proposalAddress:

Boundaries

  • Do not submit on-chain or through the UI unless the user clearly wants actual creation.
  • If only asked for preparation, stop after generating the Gougoubi-ready payload.
  • Surface uncertainty if earnings date or source availability is unclear.
  • Prefer event-driven or close-price markets over loose valuation narratives.

Additional Resource

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.21%
按下载量换算1,707

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills