banini-tracker

作者 cablate已验证

巴逆逆(8zz)反指標追蹤器 — Facebook 抓取 + 影片轉錄 + AI 分析 + 多平台推送(Telegram / Discord / LINE)

376
Stars
54
Forks
TypeScript
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/cablate/banini-tracker

快速入门

使用 banini-tracker 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

banini-tracker banner

banini-tracker

AGPL-3.0 — 使用、修改或部署本專案,必須標明原作者 cablate、附上本 repo 連結,並以相同授權公開原始碼。網路服務部署亦同。

本專案於 2026/04/13 從 MIT 切換至 AGPL-3.0。此日期之前取得的版本仍適用 MIT 授權。

追蹤「股海冥燈」巴逆逆(8zz)的 Facebook 社群貼文,透過 AI 反指標分析、多平台即時推送(Telegram / Discord / LINE),並自動追蹤預測準確度。

  • 辨識她提到的標的(個股、ETF、原物料)
  • 反轉推導(她停損 → 可能反彈、她買入 → 可能下跌)
  • 推導連鎖效應(油價跌 → 製造業利多 → 電子股受惠)
  • 自動記錄預測,追蹤 5 個交易日的實際走勢

歷史回測

使用 Claude Opus 4.6 回溯分析 2024/04~2026/04 共 2,249 篇貼文,從中提取 345 筆明確的投資操作預測。

歷史回測數據

分析範圍2,249 篇貼文 → 345 筆預測,涵蓋 70 個標的(個股、ETF、指數、原物料)
追蹤方式每筆預測後追蹤 5 個交易日,記錄盤中最高/最低價
判定標準反指標方向正確且幅度超過 ±1% 即算「冥燈成功」
資料集data/banini-public.db(SQLite,不含原始貼文)

快速開始

四種使用方式,按推薦順序:

1. Zeabur 一鍵部署(推薦)

Deploy on Zeabur

部署後打開分配的網域,首次進入設定管理員帳密,然後在 Web UI 填入 API key 和通知管道。不需要手動設定環境變數。

2. Docker

docker build -t banini-tracker .
docker run -d --name banini --env-file .env -v banini-data:/data -p 3000:3000 banini-tracker

部署後打開 http://localhost:3000 進入設定頁面。也可以直接用 .env 檔設定環境變數(見下方)。

3. npx 直接啟動

npx @cablate/banini-tracker serve
npx @cablate/banini-tracker serve --port 8080

不需 Docker,直接在本機啟動常駐服務(排程 + Web 設定頁面)。打開 http://localhost:3000 進入設定。適合有 Node.js 環境的使用者。

4. 本地開發

cp .env.example .env  # 填入必要設定
npm install && npm run start

排程規則

排程時間說明
早晨補漏每天 08:00抓前一晚的貼文(3 篇)
盤中週一~五 09:07-13:07 每 30 分即時追蹤(1 篇)
追蹤更新週一~五 15:00收盤後更新預測追蹤
盤後每天 23:03當日彙整(3 篇)

設定

Web UI(Zeabur / Docker)

常駐模式會在 port 3000 啟動設定頁面。首次進入建立管理員帳密,之後登入即可修改設定。修改後下次排程執行自動生效,不需重啟。

Web 設定頁面

環境變數(.env)

如果不使用 Web UI,也可以直接設定環境變數:

變數必填說明
APIFY_TOKENApify API token
LLM_API_KEYLLM API key
LLM_BASE_URL預設 DeepInfra
LLM_MODEL預設 MiniMax-M2.5
TG_BOT_TOKEN + TG_CHANNEL_ID至少一組Telegram 通知
DISCORD_BOT_TOKEN + DISCORD_CHANNEL_ID至少一組Discord 通知
LINE_CHANNEL_ACCESS_TOKEN + LINE_TO至少一組LINE 通知(Free plan 200 則/月)
TRANSCRIBERnoop(預設)或 groq
GROQ_API_KEYGroq Whisper 影片轉錄用
FINMIND_TOKEN股價查詢(免費可用)

Web UI 和環境變數可以混用,Web UI 的設定優先。

預測追蹤

LLM 分析出標的後,系統自動:

  1. 映射股票代碼:台股名稱 → 代碼(2230 檔上市 + 上櫃)
  2. 記錄基準價格:以貼文發佈時間查對應交易日收盤價
  3. 追蹤 5 個交易日:每天 15:00 收盤後抓 OHLC,記錄漲跌幅
  4. 同股票取代:新預測自動取代同標的舊預測(supersede 機制)

公開資料集

data/banini-public.db 提供去識別化的預測資料(345 筆預測 + 價格快照),不含原始貼文。

sqlite3 data/banini-public.db "SELECT symbol_name, reverse_view, base_price, status FROM predictions LIMIT 10"

CLI 工具

不需 clone repo,搭配 Claude Code 等 AI 使用:

# 啟動常駐服務(排程 + Web UI)
npx @cablate/banini-tracker serve

# 初始化 CLI 設定
npx @cablate/banini-tracker init --apify-token YOUR_TOKEN

# 抓取貼文
npx @cablate/banini-tracker fetch -n 3 --mark-seen

# 推送到 Telegram
npx @cablate/banini-tracker push -f report.txt

Claude Code 使用者? 直接把 skill/SKILL.md 加到你的 .claude/skills/ 就能用。Claude 自己當分析引擎,不需要額外 LLM。

完整指令說明見 npx @cablate/banini-tracker --help

費用估算

項目月估算
Facebook 抓取(Apify)~$1.35(~270 篇)
LLM 分析依模型定價
通知推送(TG / DC)免費
LINE 推送Free plan 200 則/月
股價查詢(FinMind)免費

CLI 模式搭配 Claude Code 不需 LLM 費用,Claude 自己分析。

Star History

Star History Chart

免責聲明

本專案僅供娛樂參考,不構成任何投資建議。

License

AGPL-3.0

常见问题

What is banini-tracker?

banini-tracker is an open-source api integration skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by cablate. 巴逆逆(8zz)反指標追蹤器 — Facebook 抓取 + 影片轉錄 + AI 分析 + 多平台推送(Telegram / Discord / LINE). It has 376 GitHub stars.

Is banini-tracker safe to use?

Yes. banini-tracker passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install banini-tracker?

Clone the repository with "git clone https://github.com/cablate/banini-tracker" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is banini-tracker written in?

banini-tracker is primarily written in TypeScript. It is open-source under cablate on GitHub, so you can review or fork the full source.

Are there alternatives to banini-tracker?

Yes. SkillsLLM lists many other API Integration skills you can browse and compare side by side. Open the API Integration category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh banini-tracker against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

CLIProxyAPI

by router-for-me

Wrap Antigravity, ChatGPT Codex, Claude Code, Grok Build as an OpenAI/Gemini/Claude/Codex compatible API service, allowing you to enjoy the free Gemini 3.1 Pro, GPT 5.6 Series, Grok 4.5, Claude model through API

48,3767,452Go
API Integration
查看详情

sub2api

by Wei-Shaw

Sub2API 一站式开源中转服务,让 Claude、Openai 、Gemini、Grok订阅统一接入,支持拼车共享,更高效分摊成本,原生工具无缝使用。

38,8308,041Go
API Integration
查看详情

claude-code-hub

by ding113

一个现代化的 Claude Code & Codex API 代理服务,提供智能负载均衡、用户管理和使用统计功能。

3,328387TypeScript
API Integration
查看详情

cc-gateway

by motiful

AI API identity gateway — reverse proxy that normalizes device fingerprints and telemetry for privacy-preserving API proxying

3,013501TypeScript
API Integration
查看详情

octopus

by bestruirui

One Hub All LLMs For You | 为个人打造的 LLM API 聚合网关

2,483394TypeScript
API Integration
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情