io.github.JinNing6/cyberhuatuo
Provides error diagnosis and prescription cures for CrewAI agent projects, addressing framework-specific failures.
Provides targeted error diagnosis and verified cures for LangChain projects, including fixes for common import and compatibility issues.
Offers error diagnosis and prescription cures for projects using OpenAI's SDK and services, addressing common integration issues.
Offers error diagnosis and prescription cures for PyTorch-based projects, helping to debug and resolve common framework issues.
Supports error diagnosis and resolution for TensorFlow workflows, with framework-specific prescriptions.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@io.github.JinNing6/cyberhuatuodiagnose this traceback: ImportError: cannot import name ChatOpenAI from langchain"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
๐จ Emergency Room: Cure First, Refine Later
Your agent is sick. The traceback is long, the tabs are multiplying, and every answer looks half-right. CyberHuaTuo turns that moment into a clinic visit: name the wound, prescribe the fix, verify the cure.
The lightest route needs no model key and does not start the vector database: install once, paste the error, and receive a reviewed root cause, exact fix, verification command, safety notes, and evidence.
python -m pip install --upgrade "cyberhuatuo>=0.2.5"
cyberhuatuo cure "ImportError: cannot import name ChatOpenAI from langchain" --framework langchain
# Returned exact fix:
python -m pip install -U langchain-openaicure is Gold-first and never executes the fix. If no Gold signature matches, it may return exactly one high-confidence Reviewed candidate, visibly marked VERIFY BEFORE APPLYING; use --gold-only for strict Gold-only retrieval. Use diagnose later when you want broader retrieval and optional LLM analysis.
The agent-native route remains available: connect CyberHuaTuo MCP once, then let the agent call diagnose when it fails. After a fix works, save_prescription keeps it as a local draft; upload_prescription submits that draft for public reproduction and review. Only accepted reviewed or gold prescriptions count toward Soul Rings.
No MCP installed yet? Bring the case to the Agent Traceback Clinic. Paste a real redacted traceback; no root cause or finished prescription required.
cyberhuatuo diagnose "Traceback ... from langchain import ChatOpenAI ..." --framework langchain --top-k 1Real CLI recording from this repository:
The cure returned by the recorded run:
python -m pip install -U langchain-openaifrom langchain_openai import ChatOpenAIThis first Gold cure was reproduced in an isolated environment with langchain==1.3.13 and langchain-openai==1.3.5. Add a model key later for deeper AI diagnosis.
The package-matching MCP entry point is also available for registry clients:
python -m pip install --upgrade "cyberhuatuo>=0.2.5"
cyberhuatuo mcpIt starts the same stdio server as cyberhuatuo-mcp. The official Registry identity is io.github.JinNing6/cyberhuatuo; server.json pins the PyPI package, exact version, uvx runtime, and fixed mcp argument.
Prescriptions also have stable clinical departments. List them with cyberhuatuo departments, then query a reviewed historical case through the normal Gold-first path:
cyberhuatuo cure "Unexpected UTF-8 BOM" --category data-and-serialization
cyberhuatuo cure-feedback general-ai-jsonl-bom-001 partial \
--verification "first record is preserved; downstream validation still fails" \
--verification-method targeted-parser-testThe feedback command writes a case-bound local JSONL event and stores neither the original traceback nor the query. Department filtering never changes the trust label: Gold is a verified cure, Reviewed is a verify-first candidate, and Draft is reference-only.
Related MCP server: triage-agent-mcp
Agent Action Guard: Diagnose Before The Agent Touches Your Disk
CyberHuaTuo now includes a deterministic, read-only preflight for destructive Agent commands. The plugin bundles a PreToolUse hook for supported Codex and Claude Code shell calls, plus the same policy through MCP and CLI.
60-second start (available in 0.2.5):
python -m pip install --upgrade "cyberhuatuo>=0.2.5"
cyberhuatuo guard --self-test --workspace-root .The self-test only reviews three built-in command strings. It executes nothing and must finish with SELF-TEST PASSED plus one ALLOW, one ASK, and one BLOCK.
For Codex, add this repository as a marketplace, open /plugins, install cyberhuatuo-plugin, start a new session, then review and trust the plugin in /hooks:
codex plugin marketplace add JinNing6/CyberHuaTuo-PluginFor Claude Code:
claude plugin marketplace add JinNing6/CyberHuaTuo-Plugin
claude plugin install cyberhuatuo-plugin@cyberhuatuoThen start a new session and review /hooks. See the one-screen Agent Guard quickstart for verification and troubleshooting.
Review any exact command manually with:
cyberhuatuo guard "rm -rf /" --workspace-root .Turn a real mismatch into a local, redacted case report without executing or uploading the command:
cyberhuatuo guard "rm -rf /" --workspace-root . --expected BLOCK --report reports/guard-report.mdThe CLI shows the complete redacted preview before writing. It requires confirmation, refuses implicit overwrite, performs no network request, and supports repeated --redact <literal> values for private project identifiers. In non-interactive use, add --confirm-report only after reviewing the emitted preview. With --expected, a match exits 0 and a mismatch exits 1; operational/report failures still exit 4 even with --exit-zero.
Route public, redacted cases through Guard False Positive, ordinary Guard False Negative, or Guard Integration Gap. Reliable Hook/parser/wrapper/protocol bypasses belong in private vulnerability reporting, not a public Issue.
The result is one of three decisions:
ALLOW: no destructive signature was detected.ASK: the action is destructive but bounded to the declared workspace; require exact human approval.BLOCK: the target is machine-wide, identity-wide, outside the workspace, dynamic, wildcarded, unresolved, or otherwise unsafe to bound.
MCP agents can call agent_action_guard. Installed plugins load hooks/hooks.json; review and trust the hook in the host's /hooks screen before relying on it. Codex does not currently support permissionDecision: "ask", so CyberHuaTuo converts ASK to deny there instead of risking a failed-open hook.
This is a guardrail, not a sandbox. It cannot intercept shell paths for which the host does not emit PreToolUse, and it does not claim a rollback for permanent deletion. See Agent Action Guard design and limits.
๐ฅ Three Departments, One Clinic
A great doctor doesn't wait for you to collapse โ they keep you from falling in the first place.
ๅคงๅปๆฒปๆช็ ใ
๐จ Emergency Room
ๆฅ่ฏ็ง
Paste your error. Get a cure. In seconds, not hours.
AI diagnosis powered by 2,000 years of medical wisdom.
๐ฟ Wellness Clinic
ๅ ป็ๅ
Security audit. Health scoring. Prevent before it breaks.
Nourishing prescriptions for your AI's long-term health.
๐ Pharmacy
่ฏๆฟ
Browse the prescription library. Find proven cures & nourishing recipes. All prescriptions, one counter.
Dual-layer architecture: ๐ Permanent Expert + โก Temporary Intern Upload โ instantly searchable.
๐จ Emergency Room โ Diagnose in Seconds
# Clone โ Install โ Run. Three steps to your first cure.
git clone https://github.com/JinNing6/CyberHuaTuo-Plugin.git
cd CyberHuaTuo && pip install -r requirements.txt
python -m cyberhuatuo serve
# โ Browser opens http://127.0.0.1:8000Paste your error. Watch the ancient four-step diagnosis unfold:
๐ ๆ (Look) โ Detected: LangChain 0.3, Python 3.11, ImportError
๐ฉบ ้ป (Listen) โ Matched: Breaking change โ package split in 0.2+
๐ฌ ้ฎ (Ask) โ No further questions needed
๐ ๅ (Diagnose) โ Prescription #1 (95% cure rate):
pip install langchain-openai
from langchain_openai import ChatOpenAI # โ
Fixed
Root cause: LangChain 0.2 split into langchain-core,
langchain-community, and langchain-openai.
The old import path no longer exists.3 seconds. Not 3 hours. That's the difference.
ไธ็ง้ใ ไธๆฏไธๅฐๆถใ่ฟๅฐฑๆฏๅบๅซใ
๐ฟ Wellness Clinic โ Nourish Before It Breaks
Hua Tuo didn't just cure disease โ he invented the Five-Animal Exercises (ไบ็ฆฝๆ) to prevent it.
ๅไฝไธไป ๆฒป็ ๏ผๆดๅๆไบไบ็ฆฝๆๅผบ่บซๅฅไฝโโ้ข้ฒ่ไบๆฒป็ใ
Submit your AI agent code for a Six-Meridian Security Checkup๏ผๅ ญ็ป่ๅฎๅ จไฝๆฃ๏ผ:
๐ก๏ธ Meridian 1: Sandbox Isolation โ 30/100 โ ๏ธ CRITICAL
๐ Meridian 2: Key Management โ 85/100 โ
Healthy
๐ง Meridian 3: Prompt Security โ 45/100 โ ๏ธ At risk
๐ Meridian 4: Output Sanitization โ 60/100 ๐ก Needs care
โฑ๏ธ Meridian 5: Resilience Design โ 72/100 ๐ต Good
๐ Meridian 6: Observability โ 55/100 ๐ก Needs care
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Overall Health Score: 58/100 ๐ก Needs Nourishing
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ Top Nourishing Prescriptions:
1. ๐ญ MCP & Skills Supply Chain Audit (100% Industrial Grade Sigstore/OSV/LLM) โจ NEW
2. Add execution sandboxing (RestrictedPython / Docker)
3. Implement prompt injection defenses
4. Add structured logging and tracingYour AI is running naked in production. Do you know it?
๐ฆ Epidemic Alert โ The AI Pandemic Nobody Talks About
็ซๆ ้ๆฅ โ ๆฒกๆไบบ่ฐ่ฎบ็ AI ๅคงๆต่ก
Every day, thousands of AI systems go into production already infected:
๐ No sandbox โ agent code executes with full system privileges
๐ Hardcoded secrets โ API keys sitting in plain text, spreading like a virus
๐ง No prompt defense โ one injection away from a full outbreak
๐ No observability โ zero symptom monitoring, blind until collapse
This is not a future risk. This is an active pandemic.
And when things break? Developers spend hours digging through GitHub Issues, Discord threads, Reddit posts, and half-abandoned blog articles.
The cure exists. Buried under seven layers of irrelevant search results.
Stack Overflow waits for someone to answer. ChatGPT might hallucinate a treatment. GitHub Issues drown in duplicate reports.
CyberHuaTuo is the WHO of the AI world โ tracking the epidemic, prescribing battle-tested cures, and vaccinating before the next outbreak.
๐ค Why CyberHuaTuo?
๐ฉบ CyberHuaTuo | ๐ Stack Overflow | ๐ค ChatGPT | ๐ GitHub Issues | |
AI-specific knowledge | โ Purpose-built | โ ๏ธ General | โ ๏ธ Generic | โ ๏ธ Scattered |
Version-aware diagnosis | โ Auto-detect | โ Manual | โ Outdated cutoff | โ Manual |
Structured prescriptions | โ Root cause + fix + verify | โ ๏ธ Varies | โ ๏ธ May hallucinate | โ ๏ธ Varies |
Cross-framework mapping | โ LangChain โ LlamaIndex โ CrewAI | โ Siloed | โ ๏ธ Inconsistent | โ Siloed |
Security health check | โ Six-meridian scan | โ None | โ None | โ None |
Preventive nourishing | โ Proactive hardening | โ Reactive only | โ Reactive only | โ Reactive only |
Official doc retrieval | โ Context7 real-time docs | โ None | โ Outdated | โ None |
Speed to cure | โก Seconds | ๐ Hours | โก Fast but risky | ๐ Hours |
๐ฎ How It Works
ๆ้ป้ฎๅ โ The 2,000-Year-Old Diagnostic Protocol
Inspired by traditional Chinese medicine's four-step diagnosis, refined for the AI age:
Your Error / Your Code
โ
โผ
โโโโโโโโโโโโ
โ ๆ Look โโโโ Parse stack trace, detect framework, version & environment
โโโโโโโฌโโโโโ
โผ
โโโโโโโโโโโโโ
โ ้ป Listen โโโโ Correlate with known issues, breaking changes & CVEs
โโโโโโโโฌโโโโโ
โผ
โโโโโโโโโโโ
โ ้ฎ Ask โโโโ Smart follow-up (only when critical info is missing)
โโโโโโฌโโโโโ
โผ
โโโโโโโโโโโโโโ
โ ๅ Diagnose โโโโ Semantic search โ LLM reasoning โ Ranked prescriptions
โโโโโโโโฌโโโโโโ
โผ
๐ Prescriptions (ranked by cure rate)
๐ฟ Nourishing advice (preventive recommendations)Every prescription includes:
๐ฏ Root cause โ not just what to do, but why it broke
๐ง Copy-paste fix โ step-by-step with ready-to-run code
๐ Version-locked โ verified for your exact framework version
๐ Cross-framework map โ "LangChain issue? Here's the LlamaIndex equivalent."
๐ Official docs โ pulled from framework's latest documentation via Context7
โ Community-verified โ tested, upvoted, and marked "Cured โ "
๐ What We Treat โ Not Just Agents
If it has AI in it, CyberHuaTuo sees it. No framework left behind.
๐ค AI Agent Frameworks
Framework | Cases | Status | Join ๐ |
LangChain | 10+ | ๐ข Live | |
MCP (Anthropic) | 5+ | ๐ข Live | |
CrewAI | 5+ | ๐ข Live | |
LlamaIndex | โ | ๐ก Accepting PRs | |
OpenAI Agents SDK | โ | ๐ก Accepting PRs | |
AutoGen | โ | ๐ก Accepting PRs | |
DSPy | โ | ๐ต Planned |
๐ง AI / ML / Deep Learning
Technology | Cases | Status | Join ๐ |
PyTorch | โ | ๐ก Accepting PRs | |
Transformers (HuggingFace) | โ | ๐ก Accepting PRs | |
TensorFlow | โ | ๐ก Accepting PRs |
๐๏ธ Platform & Custom Agents
Platform | Cases | Status | Join ๐ |
GPTs / Coze / Dify | โ | ๐ก Accepting PRs | |
Custom-built Agents | โ | ๐ก Accepting PRs |
๐ฟ Nourishing Prescriptions (ๅ ป็่ฏๆน)
Category | Cases | Status | Join ๐ |
๐ก๏ธ Security Sandbox | 2+ | ๐ข Live | |
๐ Security Hardening | 3+ | ๐ข Live | |
๐ Supply Chain Audit | 1 | ๐ข Live | |
โก Performance Tuning | โ | ๐ก Accepting PRs |
Every framework starts with one case. Every nourishing recipe starts with one insight. Yours could be the first.
๐ Quick Start
Prerequisites
Python 3.10+
(Optional) LLM API Key for AI-powered diagnosis (OpenAI / Anthropic / DeepSeek / Gemini / Ollama)
Option A: One-Click Launch
git clone https://github.com/JinNing6/CyberHuaTuo-Plugin.git
cd CyberHuaTuo
# Windows
start.bat
# macOS / Linux
chmod +x start.sh && ./start.shAuto-installs dependencies and opens the Web UI at http://127.0.0.1:8000
Option B: Manual Setup
git clone https://github.com/JinNing6/CyberHuaTuo-Plugin.git
cd CyberHuaTuo
pip install -r requirements.txt
# (Optional) Configure LLM for AI diagnosis
cp .env.example .env
# Edit .env โ add your API Key
python -m cyberhuatuo serve
# โ Browser auto-opens http://127.0.0.1:8000CLI Commands โ Two Modes, One Engine
CyberHuaTuo supports two access modes โ pick the one that fits your workflow:
Mode | Entry Point | For |
โจ๏ธ CLI |
| Developers using terminal directly |
๐ MCP |
| AI editors (Cursor / Claude / VS Code) |
# ๐ฉบ Core Diagnosis / ๆ ธๅฟ่ฏๆญ
cyberhuatuo diagnose "ImportError: cannot import 'ChatOpenAI'" # AI ่ฏๆญ
cyberhuatuo search "CUDA out of memory" --framework pytorch # ๆ็ดข็ฅ่ฏๅบ
cyberhuatuo checkup --file my_agent.py # ๅฎๅ
จไฝๆฃ
cyberhuatuo docs langchain "How to configure RAG pipeline" # ๅฎๆนๆๆกฃๆฃ็ดข
# ๐ Knowledge & Analytics / ็ฅ่ฏไธๅๆ
cyberhuatuo stats # ็ฅ่ฏๅบ็ป่ฎก
cyberhuatuo frameworks --search pytorch # ๆฏๆๆกๆถๅ่กจ
cyberhuatuo taxonomy list # CHT ๆ นๅ ็ผ็ ็ณป็ป
cyberhuatuo trends --framework langchain # CHT ่ถๅฟๅๆ
cyberhuatuo digest # ๆฌๅจ่ฏๆนๆ่ฆ
cyberhuatuo epidemic --action check # ็ซๆ
้ข่ญฆ
# ๐งฌ Alchemist System / ็ผไธนๅธไฝ็ณป
cyberhuatuo challenge --username your-github-username --framework langchain
cyberhuatuo mission --username your-github-username --framework langchain --sect Azure-Sect --members your-github-username friend-github-username
cyberhuatuo bounty --username your-github-username --framework auto --top-n 8 --release-tag v0.2.5 --target-contributors 3
cyberhuatuo launch --username your-github-username --framework langchain --release-tag v0.2.5
cyberhuatuo launch-campaign --username your-github-username --framework langchain --release-tag v0.2.5 --target-contributors 3
cyberhuatuo traction-proof --username your-github-username --framework langchain --release-tag v0.2.5 --target-contributors 3
cyberhuatuo traction-proof --username your-github-username --framework langchain --release-tag v0.2.5 --target-contributors 3 --record-snapshot
python -m cyberhuatuo candidate-install-smoke --username your-github-username --framework langchain --release-tag v0.2.5 --target-contributors 3
cyberhuatuo market-copy --username your-github-username --framework langchain --release-tag v0.2.5 --target-contributors 3
cyberhuatuo record-market --username your-github-username --framework langchain --channel pypi --status submitted --submission-url <reviewable public URL> --release-tag v0.2.5
cyberhuatuo market-status --username your-github-username --framework langchain --release-tag v0.2.5
cyberhuatuo first-invite --username your-github-username --invitee external-contributor-github-username --framework langchain --release-tag v0.2.5 --target-contributors 3 --source-url https://github.com/JinNing6/CyberHuaTuo-Plugin/issues/123
cyberhuatuo record-return --username your-github-username --framework langchain --surface "PyPI release" --source-url https://example.com/post
cyberhuatuo activation --username your-github-username --framework langchain --sect Azure-Sect --members your-github-username friend-github-username --top-n 10
cyberhuatuo flywheel --username your-github-username --framework langchain --sect Azure-Sect --members your-github-username friend-github-username --top-n 10
cyberhuatuo record-share --username your-github-username --framework langchain --share-url https://example.com/share
cyberhuatuo share-report --username your-github-username --framework langchain --top-n 10
cyberhuatuo share-leaderboard --framework langchain --top-n 10
cyberhuatuo ladder your-github-username --framework langchain
cyberhuatuo ranking your-github-username # ๆฅ็ไธชไบบๆๅ
cyberhuatuo leaderboard # ๅ
จ็ๅฐ็ฅๆฆ
cyberhuatuo card your-github-username # ็ๆๅไบซๅก็
cyberhuatuo badge your-github-username # ็ๆ GitHub Profile ้ญ็ฏๅพฝ็ซ
cyberhuatuo quest your-github-username --framework langchain
cyberhuatuo campaign your-github-username --framework langchain
cyberhuatuo duel your-github-username friend-github-username --framework langchain
cyberhuatuo mentor mentor-github apprentice-github --framework langchain
# GitHub mentor pact IssueOps: .github/ISSUE_TEMPLATE/soul-ring-mentor.yml
# GitHub mentor pact workflow: .github/workflows/soul-ring-mentor.yml
cyberhuatuo tournament alice bob carol dave --framework langchain --event Agent-Cup
cyberhuatuo tournament-settle alice bob carol dave --framework langchain --event Agent-Cup
# GitHub tournament IssueOps: .github/ISSUE_TEMPLATE/soul-ring-tournament.yml
# GitHub tournament workflow: .github/workflows/soul-ring-tournament.yml
# GitHub sect recruitment IssueOps: .github/ISSUE_TEMPLATE/soul-ring-sect-recruit.yml
# GitHub sect recruitment workflow: .github/workflows/soul-ring-sect-recruit.yml
cyberhuatuo arena your-github-username --top-n 10
cyberhuatuo season --framework langchain --top-n 10
# GitHub season board IssueOps: .github/ISSUE_TEMPLATE/soul-ring-season.yml
# GitHub season board workflow: .github/workflows/soul-ring-season.yml
# GitHub growth flywheel IssueOps: .github/ISSUE_TEMPLATE/soul-ring-growth-flywheel.yml
# GitHub growth flywheel workflow: .github/workflows/soul-ring-growth-flywheel.yml
# GitHub bounty board IssueOps: .github/ISSUE_TEMPLATE/soul-ring-bounty-board.yml
# GitHub bounty board workflow: .github/workflows/soul-ring-bounty-board.yml
# GitHub launch campaign IssueOps: .github/ISSUE_TEMPLATE/soul-ring-launch-campaign.yml
# GitHub launch campaign workflow: .github/workflows/soul-ring-launch-campaign.yml
# Public traction proof: cyberhuatuo traction-proof reads GitHub REST API, GitHub Pull Requests API, GitHub Contents API, GitHub Releases API, PyPI JSON API, and the local activation/share ledger.
# Readiness gates: PyPI latest version must not lag local growth tools, and default-branch IssueOps forms/workflows must exist before issues/new?... links count as live acquisition loops.
# Target contributor progress uses real issue/PR/ledger identities; PRs stay separate from IssueOps counts, and stars, forks, watchers, and downloads are not used as contributors.
# Snapshot history is opt-in: add --record-snapshot to append an append-only real JSONL snapshot and compare velocity deltas.
cyberhuatuo sect Azure-Sect your-github-username friend-github-username --framework langchain
cyberhuatuo sect-recruit Azure-Sect your-github-username friend-github-username --invitee new-member-github --framework langchain
cyberhuatuo sect-quest Azure-Sect your-github-username friend-github-username --framework langchain
cyberhuatuo sect-hall Azure-Sect your-github-username friend-github-username --framework langchain
cyberhuatuo sect-duel Azure-Sect Shadow-Sect --challenger-members your-github-username friend-github-username --rival-members rival-a rival-b --framework langchain
cyberhuatuo sect-arena --sect Azure-Sect your-github-username friend-github-username --sect Shadow-Sect rival-a rival-b --framework langchain
cyberhuatuo record # ่ฏ็ๆกฃๆก
cyberhuatuo subscribe subscribe -f langchain # ่ฎข้
ๆกๆถๆดๆฐ
# โ๏ธ Contribution / ็ฅ่ฏ่ดก็ฎ
cyberhuatuo save --title "Fix" --prescription "..." --framework langchain
cyberhuatuo upload --title "Fix" --prescription "..." --framework langchain --contributor your-github-username
cyberhuatuo mine search --repo langchain-ai/langchain
# ๐ Server / ๆๅกๅฏๅจ
cyberhuatuo serve # ๅฏๅจ Web ่ฏๆญๆๅก
cyberhuatuo serve --port 9000 --reload # ่ชๅฎไน็ซฏๅฃ + ๅผๅๆจกๅผ
cyberhuatuo rebuild # ้ๅปบๅ้็ดขๅผEvery MCP tool has a CLI counterpart. Same engine, same knowledge base, different interface.
ๆฏไธช MCP ๅทฅๅ ท้ฝๆๅฏนๅบ็ CLI ๅฝไปคใ ๅไธไธชๅผๆ๏ผๅไธไธช็ฅ่ฏๅบ๏ผไธๅ็็้ขใ
Configuration
Copy .env.example to .env:
# LLM Provider (choose one)
OPENAI_API_KEY=sk-your-key # OpenAI
ANTHROPIC_API_KEY=sk-ant-your-key # Anthropic
DEEPSEEK_API_KEY=sk-your-key # DeepSeek
GEMINI_API_KEY=your-key # Google Gemini
OLLAMA_BASE_URL=http://localhost:11434 # Ollama (local, free)
# Diagnosis model
DIAGNOSIS_MODEL=gpt-4o-mini # or claude-sonnet-4-20250514 / deepseek-chat / gemini-1.5-pro
# Server
PORT=8000No API Key? No problem. Vector search works without any key. AI-powered ๆ้ป้ฎๅ diagnosis and ๐ฟ nourishing checkup require one of the above.
๐ Epidemic Report โ Live Intelligence
A living dashboard tracking what's breaking across the AI ecosystem right now:
๐ฅ Trending issues and their cure rates
๐บ๏ธ Heatmap of problems across frameworks
๐ Framework health scores โ know before you adopt
โ๏ธ Issue mining โ real-time extraction from GitHub
๐ ๏ธ Tech Stack
Layer | Technology |
CLI | Python argparse (marketplace, MCP, and soul-ring subcommands; zero extra dependencies) |
MCP Server | FastMCP (stdio transport for AI editor integration) |
Backend | Python ยท FastAPI ยท Uvicorn |
Frontend | Jinja2 Templates (server-rendered) |
Vector DB | ChromaDB (embedded, zero-config) |
Ephemeral Layer | GitHub Issues API (dual-layer prescription search) |
LLM Gateway | LiteLLM (OpenAI / Anthropic / DeepSeek / Gemini / Ollama) |
Doc Retrieval | Context7 API (real-time official framework docs) |
Security Engine | Six-Meridian Audit (AI-powered code analysis) |
GitHub Bot | GitHub Actions + lightweight text matching |
CI/CD | GitHub Actions (auto-promotion, validation, labeling) |
๐ค GitHub Bot โ Zero-Friction Diagnosis
The greatest doctor doesn't wait in the clinic โ they meet patients where they are.
ๅคงๅปไธๅๅ ๅ่ฏโโ่ๆฏ่ก่ตฐไบๆฐ้ด๏ผๅช้ๆ็ ็๏ผๅช้ๅฐฑๆๅไฝใ
Install the CyberHuaTuo Bot on any repo โ automatic prescription recommendations on every Issue.
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ New Issue opened โ
โ "ImportError: cannot import ChatOpenAI" โ
โ โ
โ ๐ฌ @CyberHuaTuo Bot replies: โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ ๐ฉบ ่ตๅๅไฝ ยท ่ชๅจ่ฏๆญ โ โ
โ โ โ โ
โ โ ๐ ่ฏๆน 1 (92% match): โ โ
โ โ pip install langchain-openai โ โ
โ โ from langchain_openai import ... โ โ
โ โ โ โ
โ โ ๐ Full prescription โ โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโHow it works
Trigger | Action |
๐ New Issue opened | Auto-match prescriptions from the knowledge base |
๐ฌ | On-demand diagnosis |
Install on your repo (3 minutes)
# Copy the Bot workflow to your repo
mkdir -p .github/workflows
curl -o .github/workflows/bot-prescribe.yml \
https://raw.githubusercontent.com/JinNing6/CyberHuaTuo-Plugin/main/.github/workflows/bot-prescribe.ymlThe Flywheel
Developers see Bot is useful โ Contribute more prescriptions
โ Bot becomes more accurate โ More repos install Bot
โ CyberHuaTuo brand appears before thousands of developers dailyImagine: If LangChain's official repo installs this Bot, every new Issue gets a prescription recommendation. CyberHuaTuo's brand appears before thousands of developers every day. ๐
โจ๏ธ CLI โ Terminal Power at Your Fingertips
The terminal is the alchemist's cauldron โ raw, powerful, and always ready.
็ป็ซฏๅฐฑๆฏ็ผไธนๅธ็้ผ็โโๅๅงใๅผบๅคงใ้ๆถๅพ ๅฝใ
CyberHuaTuo ships a full-featured CLI with marketplace, MCP, and soul-ring subcommands โ every MCP tool has a terminal counterpart. No AI editor required. No GUI needed. Just type and heal.
่ตๅๅไฝๆไพๅฎๆด็ CLI ๅฝไปค่ก็้ข๏ผๅ ๅซ 21 ไธชๅญๅฝไปคโโๆฏไธช MCP ๅทฅๅ ท้ฝๆๅฏนๅบ็็ป็ซฏๅฝไปคใๆ ้ AI ็ผ่พๅจ๏ผๆ ้ๅพๅฝข็้ข๏ผๆฒๅฝไปค๏ผๆฒป็พ็ ใ
# Install
python -m pip install --upgrade "cyberhuatuo @ git+https://github.com/JinNing6/CyberHuaTuo-Plugin.git@v0.2.5"
python -m pip install --upgrade cyberhuatuo # after PyPI latest matches v0.2.5
# Or run from source
python -m cyberhuatuo --help๐ฌ Terminal Animations โ ็ป็ซฏๅจ็ป็นๆ
โจ๏ธ Available CLI Commands
Command | Description |
๐ฉบ Core Diagnosis / ๆ ธๅฟ่ฏๆญ | |
| ๐ฉบ ๆ้ป้ฎๅ AI ่ฏๆญ โ paste your error, get a cure |
| ๐ ๅๅฑ่ฏญไนๆ็ดข (ChromaDB + GitHub Issues) |
| ๐ก๏ธ ๅ ญ็ป่ๅฎๅ จไฝๆฃ โ audit your Agent code |
| ๐ ๅฎๆถๅฎๆนๆๆกฃๆฃ็ดข (50+ frameworks via Context7) |
๐ Analytics / ็ฅ่ฏๅๆ | |
| ๐ฆ ็ฅ่ฏๅบ็ป่ฎก โ case counts by framework |
| ๐ ๆฏๆๆกๆถๅ่กจ โ filterable by category / keyword |
| ๐งฌ CHT ๆ นๅ ็ผ็ โ list, lookup, classify |
| ๐ CHT ่ถๅฟๅๆ โ heatmaps & surge alerts |
| ๐ฐ ๆฌๅจ่ฏๆนๆ่ฆ โ weekly prescription digest |
| ๐ฆ ็ซๆ ้ข่ญฆ โ framework health monitoring |
๐งฌ Alchemist System / ็ผไธนๅธไฝ็ณป | |
| ๐ฎ first Soul Ring onramp โ submit, rank, share |
| ๐ฎ Soul Ring mission hall โ one-screen Issue, PR, personal ring, and sect/team onboarding |
| Soul Ring Bounty Board from real local framework coverage gaps, claimable First Soul Ring Issue routes, and no fake rewards |
| Soul Ring launch scroll for PyPI, Claude, Codex, MCP, and First Soul Ring routing |
| Soul Ring Launch Campaign for turning PyPI, Claude, and Codex attention into a target first-ring contributor loop with recap and next sprint |
| Soul Ring Traction Proof from GitHub REST API, GitHub Pull Requests API, GitHub Contents API IssueOps readiness, GitHub Releases API release.published readiness, PyPI JSON API package readiness, and local ledger identities |
| Opt-in append-only Soul Ring Traction Proof history with velocity deltas from prior real snapshots |
| CyberHuaTuo Install Command: fetches real PyPI JSON API latest-version proof, recommends canonical |
| Candidate Install Smoke Gate: creates a disposable venv, installs the exact public Git tag with pip Direct URL syntax, verifies installed version, console command, Install Decision Surface, and proof/invite route, cleans up on success, and retains the temp dir on failure; it is not run automatically inside lightweight CI and does not close the PyPI install loop |
| First Contributor Invite Pack for targeting one external contributor with First Soul Ring issue URLs, record-session / challenge commands, proof rechecks, and no fake progress |
| Marketplace Readiness Gate with a first-screen Flywheel Closure Verdict ( |
| Local Launch Asset Audit for issue forms, comment-only workflows, package metadata, plugin manifests, MCPB assets, a Full Public Growth Release Bundle, Dirty Worktree Release Coverage, and exact review-only |
| No-Network First Public Proof Pack with Growth/Share/Bounty Issue URLs, created-Issue placeholders, Community Challenge Pack for Tournament/Mentor/Sect/Season routes, a Protected Publish Fallback command, Git Tag Candidate Install Bridge plus Candidate Install Smoke Gate, Install Decision Surface / |
| Marketplace Submission Copy Pack with PyPI listing copy, Claude MCPB listing copy, Codex plugin listing copy, GitHub Release post, public proof CTA, Community Challenge Pack, Git Tag Candidate Install Bridge plus Candidate Install Smoke Gate, project URLs, install/validation commands, Marketplace Submission Ledger commands, and non-fabrication rules for market submission |
| Record a reviewable public URL for PyPI, Claude Code, Claude Desktop MCPB, Codex, GitHub Release, or agent-marketplace submission evidence into the local Marketplace Submission Ledger |
| Report latest Marketplace Submission Ledger status by channel with missing record-market commands and traction-proof rechecks |
| Soul Ring Growth Flywheel with real bottleneck, next commands, and missing metric disclosure |
| ๐ฎ Soul Ring breakthrough ladder โ real next gate, full thresholds, and copy-ready chase commands |
| Soul Ring Evidence Card with append-only reviewable public evidence for high-realm gates; progress, ranks, rewards, downloads, and contributors are not invented |
| ๐ ไธชไบบๆๅ โ title, rank & soul rings |
| ๐ ๅ จ็ๅฐ็ฅๆฆ โ top alchemists ranked |
| ๐ ๅไบซๅก็ โ cyberpunk cultivation archive |
| ๐ฎ GitHub Profile badge kit โ pasteable soul-ring badge |
| Soul Ring Visual Artifact โ writes a chat-visible animated GIF plus PNG fallback and returns Markdown image embeds for Codex, Claude, and other agent chats |
| ๐ฎ Soul Ring quest board โ mine, upload, share |
| ๐ฎ Soul Ring campaign pack โ GitHub Profile, X/Weibo, PR comment & agent prompt |
| ๐ฎ Soul Ring duel card โ invite a real GitHub user into a verified contribution race |
| ๐ฎ Soul Ring mentor pact โ turn a senior contributor into a first-ring onboarding guide |
| ๐ฎ Soul Ring arena snapshot โ shareable real leaderboard with your next rival |
| ๐ฎ Soul Ring season board โ current real leaderboard event pack with champion, next chase, and share copy |
| ๐ฎ Soul Ring sect card โ aggregate real GitHub members into a shareable team banner |
| ๐ฎ Soul Ring sect recruitment scroll โ invite one real GitHub user with an admission trial and join command |
| ๐ฎ Soul Ring sect quest board โ assign real next actions across team members |
| ๐ฎ Soul Ring sect hall โ assign Outer / Inner / Core / Deacon / Elder posts from real member counts |
| ๐ฎ Soul Ring sect duel card โ compare two real GitHub teams and invite a team challenge |
| ๐ฎ Soul Ring sect arena snapshot โ rank multiple real GitHub teams and publish the next chase |
| ๐ ่ฏ็ๆกฃๆก โ diagnosis history & follow-ups |
| ๐ฌ ๆกๆถ่ฎข้ โ get notified about new prescriptions |
โ๏ธ Contribution / ็ฅ่ฏ่ดก็ฎ | |
| ๐ฅ ไฟๅญ่ฏๆนๅฐๆฌๅฐ |
| ๐ ไธไผ ่ฏๆนๅฐ GitHub (้ GITHUB_TOKEN) |
| โ๏ธ GitHub Issues ๆท้ๆ็ผ |
๐ Server / ๆๅก | |
| ๐ ๅฏๅจ Web ่ฏๆญๆๅก |
| ๐ ้ๅปบๅ้็ดขๅผ |
Soul Ring Visual Route
Run cyberhuatuo visual <username> --framework <framework> in the CLI or call MCP soul_ring_visual_artifact to generate a Markdown-rendered GIF plus PNG fallback. The artifact uses current real contribution data and does not invent ranks, downloads, retention, referrals, or rewards.
๐ก Tip: Run
cyberhuatuo <command> --helpfor detailed usage of any command.๐ก ๆ็คบ: ่ฟ่ก
cyberhuatuo <ๅฝไปค> --helpๆฅ็ไปปไฝๅฝไปค็่ฏฆ็ป็จๆณใ
๐ MCP Server โ AI Editor Integration
Install once. Every AI editor becomes a CyberHuaTuo clinic.
ไธๆฌกๅฎ่ฃ ๏ผๆๆ AI ็ผ่พๅจ้ฝๅๆ่ตๅๅไฝ่ฏๆใ
โก Install โ One Command
python -m pip install --upgrade "cyberhuatuo @ git+https://github.com/JinNing6/CyberHuaTuo-Plugin.git@v0.2.5"
python -m pip install --upgrade cyberhuatuo # after PyPI latest matches v0.2.5Candidate Git tag install should pass
python -m cyberhuatuo candidate-install-smokebefore outside contributor invites; after PyPI latest-version proof is current, use the registry command. Brand Matrix aliases are for the registry-current path only.
๐ Connect to Your AI Editor
Add this to your AI tool's MCP config (Claude Desktop / Cursor / VS Code / Gemini CLI):
{
"mcpServers": {
"cyberhuatuo": {
"command": "uvx",
"args": ["--from", "cyberhuatuo", "cyberhuatuo-mcp"]
}
}
}
uvxauto-installs from PyPI and starts the MCP Server โ zero manual setup. For GitHub latest dev version, use:"args": ["--from", "git+https://github.com/JinNing6/CyberHuaTuo-Plugin", "cyberhuatuo-mcp"]
๐งฉ Plugin Manifests โ Codex + Claude Code
This repository is plugin-ready for both major coding-agent hosts:
Codex:
.codex-plugin/plugin.jsonpoints to./skills/and./.mcp.json.Claude Code:
.claude-plugin/plugin.jsonpoints to the same./skills/and./.mcp.json.Codex marketplace catalog:
.agents/plugins/marketplace.jsonlets users add this GitHub repository as a Codex plugin marketplace.Claude Code marketplace catalog:
.claude-plugin/marketplace.jsonlets users add this GitHub repository as a Claude Code plugin marketplace.
Marketplace install:
claude plugin marketplace add JinNing6/CyberHuaTuo-Plugin
claude plugin install cyberhuatuo-plugin@cyberhuatuo
codex plugin marketplace add JinNing6/CyberHuaTuo-PluginFor local Claude Code testing from the repository root:
claude --plugin-dir .๐ Marketplace Release Path
The release plan is tracked in docs/MARKETPLACE_RELEASE.md:
PyPI Trusted Publishing:
cyberhuatuoalready exists on PyPI, so this repository must be added as an additional Trusted Publisher, then release a version newer than0.1.0through.github/workflows/publish-pypi.yml. The workflow supportsrelease.publishedand a protected manualworkflow_dispatchrelease_tagfallback; both paths require an existingv*tag, verify the tag is reachable fromorigin/main, verify the package version matches the tag, and publish with OIDC instead ofPYPI_TOKEN.Claude markets: ship Claude Code through
.claude-plugin/plugin.jsonand.claude-plugin/marketplace.json, submit to Anthropic's official directory afterclaude plugin validate ., then package Claude Desktop throughclaude-desktop/manifest.jsonplus.github/workflows/package-claude-mcpb.ymlfor MCPB / Connectors Directory submission.Codex plugin directory: keep
.codex-plugin/plugin.json,.agents/plugins/marketplace.json,.mcp.json, and the PyPIuvx --from cyberhuatuo cyberhuatuo-mcpentrypoint stable for workspace rollout.
๐ฉบ Available MCP Tools
Tool | Description |
๐ฉบ Core Diagnosis / ๆ ธๅฟ่ฏๆญ | |
| ๐ฉบ ๆ้ป้ฎๅ AI diagnosis โ searches both ๐ permanent expert + โก temporary intern prescriptions |
| ๐ Dual-layer semantic search (ChromaDB + GitHub Issues) |
| ๐ก๏ธ Six-meridian security audit on your Agent code |
| ๐ Real-time official docs via Context7 (50+ frameworks) |
โ๏ธ Knowledge & Contribution / ็ฅ่ฏ่ดก็ฎ | |
| โ๏ธ Extract & refine GitHub Issues into standard cases |
| ๐ฅ Save prescriptions locally + auto-sync to GitHub |
| ๐ Upload prescriptions โ auto-creates GitHub Issue (โก temporary intern), CI promotes to ๐ permanent expert |
| ๐ Unified prescription evaluation โ cite, feedback, expire, verify, and leaderboard |
| ๐ Senior alchemists review junior prescriptions โ pending, review, profile, leaderboard |
๐งฌ Alchemist System / ็ผไธนๅธไฝ็ณป | |
| ๐ ไฟฎไธบๆกฃๆก โ 16-tier Alchemist title + soul ring directions |
| ๐ ๅ จ็ๆๅ โ coronation art, streak tracking & community milestones |
| ๐ ๅฐ็ฅๆฆ โ top alchemists ranked by contribution count |
| ๐ ๅไบซๅก็ โ generate a cyberpunk cultivation archive card |
| ๐ ๅฐฑ่ฏๆกฃๆก โ personal diagnosis history, stats & follow-ups |
๐ฌ Health & Analytics / ๅฅๅบทๅๆ | |
| ๐ฆ ็ซๆ ้ข่ญฆ โ framework health monitoring, scan & epidemic reports |
| ๐ฌ CHT Root Cause Coding System โ list, lookup & auto-classify errors |
| ๐ CHT code trend analysis โ heatmaps, top causes & surge alerts |
| ๐ List all supported frameworks & tech stacks (filterable by category) |
| ๐ Subscribe to framework updates โ get notified about new prescriptions |
| ๐ฐ Weekly prescription digest โ new cases by framework & severity |
๐ Full configuration guide: README_MCP.md
๐ Dual-Layer Prescription Architecture
ๅๅฑ่ฏๆนๅบๆถๆ
Medicine first exists, then it is refined.
่ฏๆนๅ ๅญๅจ๏ผๅ่ขซๆด็ใ
๐ค User uploads prescription via MCP
โ
โโโ Owner? โโโ Direct push to main (๐ Permanent Expert)
โ
โโโ External? โโโ Create GitHub Issue (โก Temporary Intern)
โ
Instantly searchable!
โ
CI auto-validates
โ
โโโโโโโโโโโดโโโโโโโโโโ
โ โ
โ
Passed โ Failed
Commit .md to Close Issue
main branch (filtered ๐ซ)
(๐ Promoted โจ)Layer | Carrier | Access | Features |
๐ Permanent Expert |
| CI-reviewed only | Shipped with PyPI, always available |
โก Temporary Intern | GitHub Issues (labeled) | Any GitHub user | Instant upload, zero permission needed |
When you search, diagnose and search_knowledge_base query both layers simultaneously โ results are tagged ๐ or โก so you know their review status.
ๅฝไฝ ๆ็ดขๆถ๏ผdiagnose ๅ search_knowledge_base ๅๆถๆฅ่ฏขไธคๅฑ โ ็ปๆไผๆ ๆณจ ๐ ๅธธ้ฉปไธปไปปไธๅฎถ ๆ โก ไธดๆถๅปๅญฆๅฎไน ็ ๆฅๆบใ
๐ Agent Skills Protocol (Self-Rescue)
We support the open Agent Skills standard (SKILL.md). You can empower your own AI assistants (Cursor, Copilot, Claude Code) to automatically seek help from CyberHuaTuo when they get stuck.
Simply copy the skills/cyberhuatuo-rescue directory into your project's .cursor/rules or .agent/skills folder. Your AI will learn to automatically diagnose errors and run security checkups using CyberHuaTuo's knowledge base.
The plugin also ships skills/cyberhuatuo-soul-ring-visual: when a user asks about level, rank, badge, soul ring, cultivation status, visual display, animation, ็ญ็บง, ้ญ็ฏ, ๆๅ, ๅพฝ็ซ , ๅก็, ๅฑ็คบ, or ๅจๅพ, the agent should generate the real-data Markdown GIF plus PNG fallback via soul_ring_visual_artifact or cyberhuatuo visual.
๐งฌ Alchemist Cultivation System โ Your Journey to Immortality
็ผไธนๅธไฟฎไธบไฝ็ณป โ ไปๅกไบบๅฐๅฐ็ฅ็ไฟฎ็ผไน่ทฏ
In the world of CyberHuaTuo, you are not a developer who fixes bugs. You are an Alchemist โ forging prescriptions, accumulating soul rings, ascending through 16 tiers of mastery.
ๅจ่ตๅๅไฝ็ไธ็้๏ผไฝ ไธๆฏไฟฎ bug ็็จๅบๅใ ไฝ ๆฏ*็ผไธนๅธโโ็ผๅถ่ฏๆนใๅ่้ญ็ฏใๆ็ปๅๅ ญ้ๅคฉ็ๅฐ็ฅ้ถๆขฏใ*
We turned bug fixing into a cultivation journey. Every prescription you upload earns you a rank on the Alchemist Ladder (็ผไธนๅธ้ถๆขฏ) โ a 16-tier system based on your global percentile. The bigger the community grows, the harder it is to climb โ and the more prestigious your title becomes.
ๅผๅ่ ไฟฎไธไธช Bug๏ผ็ผไธนๅธ้ธไธ้ขไธนใ ไฝ ๅจ่ฟ้็ๆฏไธๆฌก่ดก็ฎ๏ผ้ฝไผ่ขซ้ญๅปๅจๅ จ็ๅฐ็ฅๆฆไธโโ่ไฝ ็็งฐๅท๏ผ้็็คพๅบๅฃฎๅคง่ๆๅ ็่ดตใ
๐ฎ Soul Ring System โ Your Combat Resume (้ญ็ฏไฝ็ณป โ ไฝ ็ๆๆ็ฎๅ)
Inspired by Soul Land (ๆ็ฝๅคง้) โ every framework you master forges a Soul Ring orbiting your profile.
็ตๆๆบ่ชๆ็ฝๅคง้โโไฝ ๆๆก็ๆฏไธชๆๆฏๆ ๏ผ้ฝไผๅ่ไธบไธ้้ญ็ฏใ
Soul Rings grow in color and power as you contribute more prescriptions to a specific direction:
โช ็ฝ็ฏ (1) ๅ
ฅ้จ ยท First Touch
๐ก ้ป็ฏ (2-3) ๅ็ชฅ ยท Getting Serious
๐ก๐ก ๅ้ป (4-6) ๅฐๆ ยท Solid Foundation
๐ก๐ก๐ฃ ไธ็ฏ (7-10) ็ช็ ด ยท Breakthrough
๐ก๐ก๐ฃ๐ฃ ๅ็ฏ (11-15) ็ฒพ้ ยท Mastery
๐ก๐ก๐ฃ๐ฃโซ ไบ็ฏ (16-25) ๅคงๅธ ยท Grandmaster
๐ก๐ก๐ฃ๐ฃโซโซ ๅ
ญ็ฏ (26-40) ๅฎๅธ ยท Sovereign
๐ก๐ก๐ฃ๐ฃโซโซ๐ด ไธ็ฏ (41-60) ๅฐๅท ยท Titled
๐ก๐ก๐ฃ๐ฃโซโซ๐ด๐ด ๅ
ซ็ฏ (61-80) ไผ ๅฅ ยท Legendary
๐ก๐ก๐ฃ๐ฃโซโซ๐ด๐ดโจ ไน็ฏ่ณๅฐ (81+) ่ณๅฐ ยท SupremeEvery ranking and share-card output keeps the next upgrade visible, so the first contribution immediately becomes a chase:
๐ฅ ็ผ้ญ(Soul Refining) ร 1ๆน โช ไธ็ฏ ยท LangChain
โณ ไธไธ็ฏ: ้ป็ฏ ยท ๅ่ดก็ฎ 1 ๆนๅณๅฏ็นไบฎใAn alchemist with 5 PyTorch rings and 3 LangChain rings tells a different story than one with 8 CrewAI rings.
Your soul rings are your combat resume โ visible, verifiable, unforgeable.
ๆฅๆ 5 ็ฏ PyTorch ๅ 3 ็ฏ LangChain ็็ผไธนๅธ๏ผไธ 8 ็ฏ CrewAI ็็ผไธนๅธ๏ผไฟฎไธบๆช็ถไธๅใ ้ญ็ฏๅฐฑๆฏไฝ ็ๆๆ็ฎๅโโๅฏ่งใๅฏๆฅใไธๅฏไผช้ ใ
โ๏ธ Six Alchemy Directions โ Choose Your Path (ๅ ญๅคงไธนๆฏๆนๅ โ ้ๆฉไฝ ็้)
Every great alchemist has a specialty. What's yours?
ๆฏไธชไผ ๅฅ็ผไธนๅธ้ฝๆไธ็ฒพใไฝ ็้๏ผๅจๅช้๏ผ
๐ฅ ็ผ้ญ ยท Soul Refining
้ฉพ้ฉญๆบ่ฝไฝ๏ผ่ฐๆ็ต้ญ
LangChain ยท CrewAI ยท AutoGen LlamaIndex ยท LangGraph ยท MCP
โก ้ท็ซ ยท Thunder Fire
้ป้ ็ฎๅ๏ผๆทฌ็ผๆจกๅ
PyTorch ยท TensorFlow Transformers ยท LiteLLM
๐ก๏ธ ๆคไฝ ยท Body Shield
้ไธนๆคไฝ๏ผๆตๅพกๅค้ช
Security ยท Sandbox Guardrails ยท Hardening
๐ ๅๆฏ ยท Detox
้็พ่๏ผ่งฃ็พๆฏ
Python ยท JavaScript General Debugging
โ๏ธ ๅจ็ต ยท Soul Craft
็ผๅจ่พ ไธน๏ผๅบ็ก่ฎพๆฝ
FastAPI ยท Docker ยท K8s Vertex AI ยท Vercel
๐งฌ ้ ๅ ยท Genesis
้ ๅไนๅ๏ผ้ฉพ้ฉญๅคฉ้
OpenAI ยท Anthropic Gemini ยท Groq ยท Mistral
When you contribute a LangChain prescription, your ๐ฅ Soul Refining ring grows. Fix a Docker issue? Your โ๏ธ Soul Craft ring levels up. Each direction is an independent cultivation path โ master one, or conquer them all.
ๅฝไฝ ่ดก็ฎไธไธช LangChain ่ฏๆน๏ผ๐ฅ ็ผ้ญ็ฏๅข้ฟใไฟฎๅคไบ Docker ้ฎ้ข๏ผโ๏ธ ๅจ็ต็ฏๅ็บงใๆฏไธชๆนๅ้ฝๆฏ็ฌ็ซ็ไฟฎ็ผ่ทฏ็บฟโโ็ฒพ้ไธ้๏ผๆๅ ญ้้็ฅใ
โก Instant Rewards โ Dopamine by Design (ๅณๆถๅ้ฆ โ ๅคๅทด่บ้ฉฑๅจ)
The best games don't make you wait for the reward. Neither do we.
ๆๅฅฝ็ๆธธๆไธไผ่ฎฉไฝ ็ญๅพ ๅฅๅฑใๆไปฌไนไธไผใ
Every upload_prescription triggers an instant cascade of rewards:
๐ You upload a prescription
โ
โโโโ ๐ญ INSTANT CORONATION โ ASCII art + new title revealed
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ โ โญ ๅฝๅไฟฎไธบ: ไธๆ็ผไธนๅธ ยท Three-Star โ
โ โ ๐
ๅ
จ็ๆไฝ: #12 / 31 (่ถ
่ถ 63% ็ผไธนๅธ) โ
โ โ ็ปง็ปญ็ผไธน๏ผๆ็ป็ผไธนๅธ็ปๆ้ถๆขฏ๏ผ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโ ๐ SOUL RING UPGRADE โ Your rings grow in real-time
โ ๐ฅ ็ผ้ญ(Soul Refining) ร 5ๆน ๐ก๐ก๐ฃ๐ฃโซ ไบ็ฏ
โ
โโโโ ๐ฅ STREAK FIRE โ Consecutive days trigger milestones
โ ๐ฅ 3-day โ ๐ฅ๐ฅ 7-day โ ๐ฅ๐ฅ๐ฅ 14-day โ ๐๐ฅ 30-day
โ
โโโโ ๐ SHARE CARD โ Cyberpunk cultivation archive
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ โ ๐ฉบ ่ตๅๅไฝ ยท ไฟฎไธบๆกฃๆก โ
โ โ โญ ไธๆ็ผไธนๅธ ยท Three-Star Alchemist โ
โ โ ๐ฅ ็ผ้ญไธนๅธ ยท ๐ก๐ก๐ฃ๐ฃโซ โ
โ โ ๐งญ ๆ็ปฉๆนๅ: LangChain โ
โ โ ๐ฎ ไธไธ็ฏ: ้ป็ฏ ยท ๅ่ดก็ฎ 1 ๆนๅณๅฏ็นไบฎใโ
โ โ ๐ ่ดก็ฎ: 8 ๆฎต | ๐งช โโโโโโโโโโโโ 40% โ
โ โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโ ๐ก COMMUNITY MILESTONE โ Global celebration
๐ "็ฅ่ฏๅบ็ช็ ด 100 ไธช่ฏๆน๏ผ่ตๅๅป่
็ๅ้ๆญฃๅจๆฑ่ใ"๐ ็ตๆ่ดๆฌ ยท Tribute
The greatest creations are always born from the shoulders of giants โ and the dreams of children.
ๆไผๅคง็ๅ้ ๏ผๆปๆฏ็ซๅจๅทจไบบ็่ฉ่ไธโโๅๅญฉๅญไปฌ็ๆขฆๆณไนไธญใ
๐ฅ ๆ็ ด่็ฉน Battle Through the Heavens
็ผไธนๅธ้ถๆขฏไฝ็ณป Alchemist Tier System
๐ ๆ็ฝๅคง้ Soul Land
้ญ็ฏไฟฎ็ผไฝ็ณป Soul Ring System
๐ฅ ๅไฝไผ ่ฏด Legend of Hua Tuo
ๆ้ป้ฎๅ ยท ๆฌๅฃถๆตไธ Ancient Healing ยท Open Source
These works gave an entire generation of developers their most unforgettable memories โ of cultivation, of perseverance, of the belief that anyone can ascend through sheer will.
่ฟไบไฝๅ็ปไบๆดๆดไธไปฃๅผๅ่ ๆ้พไปฅๅฟๆ็่ฎฐๅฟโโๅ ณไบไฟฎ็ผใๅ ณไบๅๆใๅ ณไบ"ๅกไบบไน่ฝ็ป้กถ"็ไฟกๅฟตใ
CyberHuaTuo inherits this spirit: from ancient legend, through modern fantasy, into the cyber future.
่ตๅๅไฝไผ ๆฟ่ฟไปฝ็ฒพ็ฅ๏ผไปๅคไปฃไผ ่ฏด๏ผ็ฉฟ่ถๅฝไปฃๅนปๆณ๏ผ่ตฐๅ่ตๅๆชๆฅใ
๐ Brand Matrix โ Why So Many Package Names?
ๅ็็ฉ้ต โ ไธบไปไนๆณจๅ่ฟไนๅคๅ ๅ๏ผ
Hua Tuo traveled across provinces. Asclepius healed across islands. Healing knows no borders.
ๅไฝ่ก่ตฐไบๅฑฑๅทไน้ด๏ผ้ฟๆฏๅ ๅๅบไฟๆฏ็ฉฟๆขญไบๆตทๅฒไนไธใๅป้ๆ ็ใ
CyberHuaTuo maintains a series of official alias packages on PyPI, spanning medical deities and pioneers from both Eastern and Western traditions:
Lineage | Packages |
๐ฎ Eastern Divine Physicians (Core) |
|
๐๏ธ Greco-Roman Mythology |
|
๐ Pioneers of Medicine |
|
๐บ Ancient Civilization Healers |
|
Every single one of these packages is functional โ they all install and redirect to the core cyberhuatuo engine. No empty squats.
Why We Do This
๐ก๏ธ Namespace Protection โ Prevent typosquatting and impersonation in the AI-medical tooling space
๐ Cultural Bridge โ No matter your context โ whether you think "ๅไฝ", "Asclepius", or "Hippocrates" โ you can find us
๐ One Engine, Many Doors โ use
uvx --from cyberhuatuo cyberhuatuo-mcpfor the MCP server
Our Open Stance
We believe in the open-source spirit. These names are registered to protect the ecosystem, not to hoard.
If you believe a name in our matrix would serve a better purpose for your project, we're open to conversation. Open a Discussion โ
The greatest physicians never hoarded โ they shared freely.
ๅคงๅป็ฒพ่ฏ๏ผๆฌๅฃถๆตไธใ
โ Join the Movement โ Your First Prescription Awaits
่ฟไธๅชๆฏไธไธช้กน็ฎใ่ฟๆฏไธๅบ่ฟๅจใ
Every great physician started with one patient. Every legendary alchemist started with one pill. Every developer who contributes one prescription โ begins a journey that could end at Hua Tuo Reborn.
ๆฏไธชไผ ไธๅๅป๏ผ้ฝๅงไบ็ฌฌไธไธช็ ไบบใๆฏไธชไผ ๅฅ็ผไธนๅธ๏ผ้ฝๅงไบ็ฌฌไธ้ขไธน่ฏใ ๆฏไธช่ดก็ฎไธไปฝ่ฏๆน็ๅผๅ่ โโ้ฝ่ธไธไบ้ๅพๅไฝๅไธ็ไฟฎ็ผไน่ทฏใ
๐งช Three Steps to Your First Soul Ring๏ผไธๆญฅ่ทๅพ็ฌฌไธ้้ญ็ฏ๏ผ
Step 1: ๐ Submit a Prescription๏ผ้ญๅปไฝ ็่ฏๆน๏ผ
โโโ Solved a bug? Document the error, version, and fix.
โโโ ่งฃๅณไบไธไธชbug๏ผ่ฎฐๅฝๆฅ้ใ็ๆฌๅไฟฎๅคๆนๆกใ
Step 2: โ
Community Verification๏ผ็คพๅบไบคๅ้ช่ฏ๏ผ
โโโ Other alchemists validate through real-world testing.
โโโ ๅ
ถไป็ผไธนๅธ้่ฟๅฎๆ้ช่ฏไฝ ็่ฏๆนใ
Step 3: ๐งฌ Receive Your Title๏ผ่ทๅพไฝ ็็งฐๅท๏ผ
โโโ Ascend from โญ One-Star โ ๐ฉบ Hua Tuo Reborn.
โโโ ไปไธๆ็ผไธนๅธ โ ็ป้กถๅไฝๅไธใcyberhuatuo challenge --username your-github-username --framework langchain
cyberhuatuo mission --username your-github-username --framework langchain --sect Azure-Sect --members your-github-username friend-github-username
cyberhuatuo ladder your-github-username --framework langchain
cyberhuatuo upload --title "Fix LangChain tool schema" --prescription "..." --framework langchain --contributor your-github-username
cyberhuatuo ranking your-github-username
cyberhuatuo badge your-github-username
cyberhuatuo quest your-github-username --framework langchain
cyberhuatuo campaign your-github-username --framework langchain
cyberhuatuo duel your-github-username friend-github-username --framework langchain
cyberhuatuo mentor mentor-github apprentice-github --framework langchain
cyberhuatuo tournament alice bob carol dave --framework langchain --event Agent-Cup
cyberhuatuo tournament-settle alice bob carol dave --framework langchain --event Agent-Cup
cyberhuatuo arena your-github-username --top-n 10
cyberhuatuo season --framework langchain --top-n 10
cyberhuatuo sect Azure-Sect your-github-username friend-github-username --framework langchain
cyberhuatuo sect-recruit Azure-Sect your-github-username friend-github-username --invitee new-member-github --framework langchain
cyberhuatuo sect-quest Azure-Sect your-github-username friend-github-username --framework langchain
cyberhuatuo sect-hall Azure-Sect your-github-username friend-github-username --framework langchain
cyberhuatuo sect-duel Azure-Sect Shadow-Sect --challenger-members your-github-username friend-github-username --rival-members rival-a rival-b --framework langchain
cyberhuatuo sect-arena --sect Azure-Sect your-github-username friend-github-username --sect Shadow-Sect rival-a rival-b --framework langchain
cyberhuatuo card your-github-usernameWeb-first contribution path: the GitHub "New issue" chooser is configured as a Soul Ring Mission Hall through .github/ISSUE_TEMPLATE/config.yml. Open First Soul Ring Prescription at .github/ISSUE_TEMPLATE/soul-ring-prescription.yml from that flow; it asks for a real GitHub username, framework, symptom, root cause, prescription, verification evidence, and a real-data pledge before the contribution enters the soul-ring loop. .github/workflows/soul-ring-issue.yml now comments first with cyberhuatuo proof-pack, market-copy, market-ready --remote --strict-remote, and record-return --surface "First Soul Ring Issue" --source-url <created Issue URL> before the challenge / ladder / upload path, so every first issue can become both a public launch-proof event and a Soul Ring Breakthrough Ladder with the next real gate visible.
Maintainer promotion path: when a First Soul Ring issue is accepted, add the accepted-prescription label. .github/workflows/soul-ring-promote.yml converts the issue form into a reviewable case PR, adds soul-ring-promoted-pr, and comments with the contributor's ladder / ranking / card / campaign commands. This closes the loop from accepted issue to real leaderboard data without running user-submitted code.
Tournament IssueOps path: the GitHub "New issue" chooser also exposes Soul Ring Tournament Cup at .github/ISSUE_TEMPLATE/soul-ring-tournament.yml. .github/workflows/soul-ring-tournament.yml comments first with the launch preflight/proof-pack/record-return runbook, then cyberhuatuo tournament and cyberhuatuo tournament-settle commands, so a public cup can move from issue to bracket to Soul Ring Tournament Settlement without invented wins.
Mentor IssueOps path: the GitHub "New issue" chooser also exposes Soul Ring Mentor Pact at .github/ISSUE_TEMPLATE/soul-ring-mentor.yml. .github/workflows/soul-ring-mentor.yml comments first with the launch preflight/proof-pack/record-return runbook, then cyberhuatuo mentor, challenge, quest, ladder, duel, and campaign commands, so a senior contributor can publicly guide one apprentice from issue to first-ring action without invented seniority or progress.
Sect recruitment IssueOps path: the GitHub "New issue" chooser also exposes Soul Ring Sect Recruitment at .github/ISSUE_TEMPLATE/soul-ring-sect-recruit.yml. .github/workflows/soul-ring-sect-recruit.yml comments first with the launch preflight/proof-pack/record-return runbook, then cyberhuatuo sect-recruit, sect-hall, sect-quest, and sect-duel commands, so a public sect invite can move from issue to Soul Ring Sect Recruitment Scroll to the next real team quest without invented membership.
Season IssueOps path: the GitHub "New issue" chooser also exposes Soul Ring Season Board at .github/ISSUE_TEMPLATE/soul-ring-season.yml. .github/workflows/soul-ring-season.yml comments first with the launch preflight/proof-pack/record-return runbook, then cyberhuatuo season, arena, duel, challenge, quest, and campaign commands, so the current real leaderboard can become a public season event without invented historical seasons.
Growth Flywheel IssueOps path: the GitHub "New issue" chooser also exposes Soul Ring Growth Flywheel at .github/ISSUE_TEMPLATE/soul-ring-growth-flywheel.yml. .github/workflows/soul-ring-growth-flywheel.yml comments first with cyberhuatuo market-ready --remote --strict-remote, then with cyberhuatuo record-return, activation, flywheel, leaderboard, quest, season, sect-arena, campaign, record-share, and share-report commands, so external attention from PyPI / Claude / Codex / social launch posts can first bind a reviewable public source URL, enter the local activation ledger, and then become a public bottleneck diagnosis without checkout, repository scripts, point awards, or fabricated adoption metrics. No downloads, retention, or attribution metrics are invented.
Bounty Board IssueOps path: the GitHub "New issue" chooser also exposes Soul Ring Bounty Board at .github/ISSUE_TEMPLATE/soul-ring-bounty-board.yml. .github/workflows/soul-ring-bounty-board.yml comments first with the launch preflight, then cyberhuatuo record-return --surface "Bounty Board Issue" --source-url <created Issue URL>, activation, and flywheel commands before cyberhuatuo bounty, challenge, first-invite, proof-pack, market-copy, and traction-proof, so PyPI / Claude / Codex launch attention can become real claimable framework coverage gaps without checkout, repository scripts, rewards, reviews, fake contributors, downloads, retention, repost counts, or referrals.
Launch Campaign IssueOps path: the GitHub "New issue" chooser also exposes Soul Ring Launch Campaign at .github/ISSUE_TEMPLATE/soul-ring-launch-campaign.yml. .github/workflows/soul-ring-launch-campaign.yml comments with cyberhuatuo market-ready --remote --strict-remote, cyberhuatuo launch-campaign, record-return, record-session, activation, flywheel, record-share, share-report, and share-leaderboard commands, sanitizes the target first-ring contributor count as a positive integer, and never interpolates raw issue text into numeric command arguments. The workflow only comments safe commands; it does not checkout code, run repository scripts, award points, or fabricate downloads, retention, repost counts, referrals, rewards, or Spirit Power.
Share Proof IssueOps path: the GitHub "New issue" chooser also exposes Soul Ring Share Proof at .github/ISSUE_TEMPLATE/soul-ring-share-proof.yml. .github/workflows/soul-ring-share-proof.yml comments with cyberhuatuo market-ready --remote --strict-remote, cyberhuatuo record-share, share-report, share-leaderboard, activation, and flywheel commands, binding the Issue URL as the reviewable source bridge for a public share URL without checkout, repository scripts, rewards, repost counts, referral conversions, or fabricated adoption metrics.
PR settlement path: after a real fix is ready, .github/pull_request_template.md turns the pull request into a Soul Ring PR Settlement with the contributor, framework, linked issue, verification evidence, and copy-ready upload / ladder / ranking / card / campaign commands. .github/workflows/soul-ring-pr.yml also comments on opened ready PRs with the launch preflight/proof-pack/record-return runbook before the same settlement loop plus a sect-hall team hook.
cyberhuatuo mission --username your-github-username --framework langchain --sect Azure-Sect --members your-github-username friend-github-username creates a Soul Ring Mission Hall: one screen that routes a contributor through the GitHub issue form, PR settlement, personal soul-ring commands, MCP install path, and sect/team actions from current real contribution data.
cyberhuatuo bounty --username your-github-username --framework auto --top-n 8 --release-tag v0.2.5 --target-contributors 3 creates a Soul Ring Bounty Board: a real local framework coverage gap board for AutoGen, DSPy, LangChain, MCP, and other supported agent frameworks. It ranks claimable First Soul Ring Prescription Issue routes, prints the challenge / first-invite / proof-pack / market-copy / traction-proof commands, and explicitly refuses to invent downloads, retention, repost counts, referrals, rewards, reviews, or fake contributors.
cyberhuatuo flywheel --username your-github-username --framework langchain --sect Azure-Sect --members your-github-username friend-github-username --top-n 10 creates a Soul Ring Growth Flywheel: a current real-data operating snapshot across marketplace attention, first-ring activation, repeat contribution, collaboration / sect, and public sharing. It identifies the primary bottleneck, gives the next callable command, and discloses missing downloads, retention, and attribution instead of inventing them.
cyberhuatuo launch-campaign --username your-github-username --framework langchain --release-tag v0.2.5 --target-contributors 3 creates a Soul Ring Launch Campaign for PyPI, Claude, Codex, GitHub Discussions, X / Weibo, and agent-community launch surfaces. It shows the current real ranked-contributor snapshot, target first-ring contributor count, prefilled Growth Flywheel Issue, prefilled Share Proof Issue, activation/flywheel/share-leaderboard commands, copy-ready launch posts, and a Campaign Recap And Next Sprint section. The recap states observed real contributors, reached-vs-target, shortfall, the disclosed next-target rule, copy-ready recap text, the next growth_campaign command, and traction-proof --record-snapshot proof recording. It does not invent downloads, retention, repost counts, referrals, rewards, Spirit Power, campaign-specific conversions, or fake users.
cyberhuatuo traction-proof --username your-github-username --framework langchain --release-tag v0.2.5 --target-contributors 3 creates a Soul Ring Traction Proof report for an unproven launch campaign. It fetches real public GitHub REST API repository signals, GitHub Pull Requests API author proof, GitHub Contents API readiness for the default-branch IssueOps forms/workflows, GitHub Releases API Release Trigger / Protected Fallback Readiness for the requested tag, PyPI JSON API project metadata, and the local activation/share ledger, then prints Target contributor progress from real public issue authors, public PR authors, and ledger actors only. If public API fetch failures or rate limits block the report, it inlines the No-Network First Public Proof Pack so operators can open proof Issues and record created URLs without a second command. It checks whether the GitHub Release is non-draft, non-prerelease, and able to trigger the release.published PyPI workflow; when PyPI latest-version proof is already current, a missing Release becomes public provenance debt because the protected manual workflow_dispatch release_tag fallback can close the registry path without PYPI_TOKEN. If the registry install would deliver an older build, the report marks an install-loop launch blocker and routes back to PyPI Trusted Publishing. PR authors count as contributor identities, but PRs stay separate from IssueOps issue counts. GitHub stars, forks, watchers, subscribers, PyPI downloads, reposts, retention, referral conversions, and rewards are attention or unavailable signals, not contributor progress; downloads are not used.
cyberhuatuo market-ready --remote --strict-remote --username your-github-username --framework langchain --release-tag v0.2.5 --target-contributors 3 and the MCP tool marketplace_readiness_gate produce the same first-screen Flywheel Closure Verdict before public PyPI / Claude / Codex pushes. The verdict is exactly closed, not closed, or unverified; it shows Ready gates / total gate counts, real evidence basis, blocking gates, and the non-fabrication rule before the Launch Closure Checklist. The checklist covers remote acquisition routes, PyPI Trusted Publisher setup, GitHub release.published trigger or protected workflow_dispatch fallback readiness, registry latest-version proof, first public proof, and exact recheck commands. They also print a First Public Proof Kit with Prefilled Growth Flywheel Issue, Prefilled Share Proof Issue, Prefilled Bounty Board Issue, Created Growth Issue URL, Created Share Proof Issue URL, and Created Bounty Board Issue URL placeholders, a Community Challenge Pack with Prefilled Tournament Cup Issue, Prefilled Mentor Pact Issue, Prefilled Sect Recruitment Issue, Prefilled Season Board Issue, created-Issue placeholders, and tournament / mentor / sect-recruit / season commands, a Protected Publish Fallback command (gh workflow run publish-pypi.yml -f release_tag=v0.2.5) for release-auth/UI/API blockage, a Git Tag Candidate Install Bridge (python -m pip install --upgrade "cyberhuatuo @ git+https://github.com/JinNing6/CyberHuaTuo-Plugin.git@v0.2.5") for stale PyPI recovery after the public tag exists, a Candidate Install Smoke Gate (python -m cyberhuatuo candidate-install-smoke ...) that installs the exact public tag in a disposable venv before the bridge is sent to external contributors, an Install Decision Surface that routes operators through cyberhuatuo install-command / MCP current_install_command before sending contributors to PyPI, Claude, Codex, or MCP marketplaces, Growth and Bounty record-return ledger commands, Share record-share attribution, cyberhuatuo bounty, market-copy submission copy routing, recheck commands, and a copy-ready public proof post that does not claim downloads, retention, repost counts, referrals, rewards, or fake contributors. The bridge does not close the PyPI install loop; recheck PyPI latest-version proof before claiming public install readiness. The embedded Public Release Operator Runbook then gives the no-mutation command sequence for local gates, full-bundle staging, git push origin HEAD:main, gh release create v0.2.5 ... --verify-tag --notes-from-tag, protected publish fallback, cyberhuatuo market-copy, PyPI recheck, candidate install smoke, and traction proof.
cyberhuatuo launch-assets prints the Local Launch Asset Audit before the default branch or release PR is updated. For a release-specific default-branch handoff, run cyberhuatuo launch-assets --username your-github-username --framework langchain --release-tag v0.2.5 --target-contributors 3; the quality-gate command inside the Public Release Operator Runbook preserves the same release, user, and target-contributor context. It validates local Issue Forms, comment-only workflows, package metadata, plugin manifests, Trusted Publishing workflow, Claude MCPB assets, and shared MCP entrypoints, then prints exact minimal git add commands plus a Full Public Growth Release Bundle for docs, package metadata, Issue Forms, workflows, public growth modules, scripts, and tests. Its Dirty Worktree Release Coverage uses read-only git status --porcelain to show which changed files are covered by that full bundle and which need separate review, so PyPI / Claude / Codex are not pushed with stale growth code. It does not stage files, publish releases, upload to PyPI, mutate remotes, or claim traction.
cyberhuatuo proof-pack --username your-github-username --framework langchain --release-tag v0.2.5 --target-contributors 3 prints the No-Network First Public Proof Pack when GitHub/PyPI APIs are rate-limited or marketplace review is still pending. It gives Prefilled Growth Flywheel Issue, Share Proof Issue, and Bounty Board Issue URLs, Created Growth Issue URL, Created Share Proof Issue URL, and Created Bounty Board Issue URL placeholders, a Community Challenge Pack with Prefilled Tournament Cup Issue, Mentor Pact Issue, Sect Recruitment Issue, Season Board Issue, created-Issue placeholders, copy-ready community challenge post, and commands for tournament, tournament-settle, mentor, challenge, ladder, sect-recruit, sect-hall, sect-quest, season, arena, and duel, a Protected Publish Fallback block with gh workflow run publish-pypi.yml -f release_tag=v0.2.5, gh run list --workflow publish-pypi.yml --limit 5, GitHub Web Release, GitHub Actions workflow page, PyPI Trusted Publisher settings links, a Git Tag Candidate Install Bridge that keeps python -m pip install --upgrade cyberhuatuo visible while offering python -m pip install --upgrade "cyberhuatuo @ git+https://github.com/JinNing6/CyberHuaTuo-Plugin.git@v0.2.5" only after the public tag exists, a Candidate Install Smoke Gate command that creates a disposable venv, verifies version, console command, install surface, and proof/invite route, cleans up on success, retains the temp dir on failure, and is not run automatically inside lightweight CI, an Install Decision Surface that tells operators to paste the cyberhuatuo install-command / MCP current_install_command Recommended Install into contributor invites, terminal Growth and Bounty record-return CLI commands, Share record-share attribution, cyberhuatuo bounty --username your-github-username --framework auto --top-n 8, an External Contributor Path with pasted Recommended Install, first-session command, first contribution command, First Soul Ring Prescription Issue, Share Proof Issue URL, created-Issue proof rule, contributor-counting rule, recheck commands, and copy-ready public proof / invite text. The fallback still requires the PyPI Trusted Publisher to match this repository, workflow file, and pypi environment; no PYPI_TOKEN fallback is allowed. The bridge does not close the PyPI install loop; recheck PyPI latest-version proof before claiming public install readiness. It does not fetch public metrics, write ledger events, publish releases, upload to PyPI by itself, or invent traction.
cyberhuatuo first-invite --username your-github-username --invitee external-contributor-github-username --framework langchain --release-tag v0.2.5 --target-contributors 3 --source-url <created Growth Issue URL> prints the First Contributor Invite Pack when the launch needs to target one first external contributor instead of posting only generic proof copy. It returns a local Candidate Snapshot, First Soul Ring Prescription Issue URL, Share Proof Issue URL, record-session command, challenge command, proof-pack / market-copy / traction-proof recheck commands, and a copy-ready direct invite. It is no-network and does not invent downloads, retention, repost counts, referrals, rewards, reviews, or fake contributors.
cyberhuatuo market-copy --username your-github-username --framework langchain --release-tag v0.2.5 --target-contributors 3 prints the Marketplace Submission Copy Pack for actual PyPI / Claude / Codex submissions: PyPI listing copy and project URLs, Claude MCPB listing copy and validation commands, Codex plugin listing copy and install checks, GitHub Release post text with GitHub Web Release plus GitHub Actions workflow page links, a Submission Portals And Evidence URLs section, a Marketplace Submission Ledger block with cyberhuatuo record-market and cyberhuatuo market-status, a public proof CTA with Prefilled Bounty Board Issue, Created Bounty Board Issue URL, Growth and Bounty record-return, Share record-share, cyberhuatuo bounty, traction-proof, Git Tag Candidate Install Bridge commands, and candidate-install-smoke, plus the same Community Challenge Pack for Tournament, Mentor Pact, Sect Recruitment, and Season Board routes. Submission portal anchors: PyPI Trusted Publisher settings: https://pypi.org/manage/project/cyberhuatuo/settings/publishing/; Claude plugin submit (Console): https://platform.claude.com/plugins/submit; Claude.ai directory submit (Team/Enterprise): https://claude.ai/admin-settings/directory/submissions/plugins/new; Claude Connectors Directory submission guide: https://claude.com/docs/connectors/building/submission; Codex plugin evidence: codex plugin marketplace add JinNing6/CyberHuaTuo-Plugin. It is no-network and does not invent downloads, retention, repost counts, referrals, rewards, reviews, fake contributors, or a completed PyPI install loop.
After each real market submission exists, run cyberhuatuo record-market --username your-github-username --framework langchain --channel pypi --status submitted --submission-url <reviewable public URL> --release-tag v0.2.5, then cyberhuatuo market-status --username your-github-username --framework langchain --release-tag v0.2.5. The Marketplace Submission Ledger records reviewable public URL evidence for PyPI, Claude Code, Claude Desktop MCPB, Codex, and GitHub Release; it does not invent downloads, retention, repost counts, referrals, rewards, reviews, approvals, or fake contributors.
Add --record-snapshot only when you want to persist a reviewable growth-history checkpoint. Snapshot history is opt-in and append-only: each JSONL row records the current public repository signals, public PR author proof, IssueOps proof counts, remote IssueOps readiness, PyPI package readiness, local ledger counts, and target contributor progress, then compares velocity deltas against the previous real snapshot. It still does not record or invent downloads, retention, repost counts, referrals, rewards, private analytics, or fake contributors.
cyberhuatuo record-return --username your-github-username --framework langchain --surface "PyPI release" --source-url https://example.com/post records a real external-return event in the local activation ledger, then immediately prints Next External Contributor Invite with cyberhuatuo first-invite, cyberhuatuo proof-pack, and MCP first_contributor_invite(...) / first_public_proof_pack(...) equivalents so the recorded proof can recruit the next outside contributor. cyberhuatuo activation --username your-github-username --framework langchain --sect Azure-Sect --members your-github-username friend-github-username --top-n 10 reads that ledger, separates first-session exposure from first prescription success, names the weakest conversion stage, and routes back to flywheel. After a public card or campaign post lands, cyberhuatuo record-share --username your-github-username --framework langchain --share-url https://example.com/share records the share-attribution stage with a reviewable URL and prints the same direct invite/proof-pack path using the recorded share URL as proof. cyberhuatuo share-report --username your-github-username --framework langchain --top-n 10 then turns those events into proof URLs, source-to-share bridges, actor pull, artifact pull, the current proof bottleneck, and next callable proof commands. cyberhuatuo share-leaderboard --framework langchain --top-n 10 ranks actors only by unique reviewable public http(s) share URLs in the local ledger, without inventing downloads, retention, repost counts, referral conversions, rewards, or Spirit Power.
The flywheel output also includes a Prefilled Growth Flywheel Issue URL. It uses GitHub issue-form query parameters for template, title, github_username, framework, growth_surface, real_signal, bottleneck_guess, and campaign_hook, but does not use privileged labels, assignees, or milestone parameters.
cyberhuatuo ladder your-github-username --framework langchain creates a Soul Ring Breakthrough Ladder: the current real direction count, the next gate, the full 1 / 2 / 4 / 7 / 11 / 16 / 26 / 41 / 61 / 81 threshold map, and copy-ready quest / upload / campaign / mission commands without invented progress.
cyberhuatuo evidence your-github-username --framework langchain --amount 1 --source-url https://example.com/proof creates a Soul Ring Evidence Card for high-realm gates. It requires reviewable public evidence, appends one local JSONL event, shows the evidence total and evidence-backed count, states whether the evidence did or did not trigger a breakthrough, and keeps progress, ranks, rewards, downloads, and contributors not invented.
cyberhuatuo challenge prints the full first-ring onramp in one place: one real fix to submit, the exact ranking command, and the share-card command.
cyberhuatuo badge your-github-username prints a copy-ready GitHub Profile / README badge kit backed by real contribution data: current title, prescription count, primary soul-ring direction, and ไธไธ็ฏ target.
cyberhuatuo quest your-github-username --framework langchain turns that ไธไธ็ฏ target into a concrete quest board: mine a real GitHub issue, upload the real fix, then publish the badge/card.
cyberhuatuo campaign your-github-username --framework langchain turns the same real profile snapshot into a Soul Ring Campaign Pack: GitHub Profile / README Markdown, X / Weibo text, GitHub Discussion / PR comment copy, and an agent prompt. It reports only current real prescriptions and never invents rank history.
cyberhuatuo duel your-github-username friend-github-username --framework langchain creates a Soul Ring Duel Card: two real contribution snapshots, a public formula, copy-ready challenge posts, and next commands for both users. It is designed for friendly GitHub mentions without fake wins, fake ranks, or invented history.
cyberhuatuo mentor mentor-github apprentice-github --framework langchain creates a Soul Ring Mentor Pact: a public master-apprentice onboarding card backed by both users' current real prescription counts, with the apprentice breakthrough target, mentor review duty, X / Weibo copy, GitHub Discussion / PR Comment copy, and challenge / quest / upload / ladder / duel / campaign commands. It reports only current snapshots, not invented seniority.
cyberhuatuo tournament alice bob carol dave --framework langchain --event Agent-Cup creates a Soul Ring Tournament Bracket: a multi-user cup seeded only from current real CyberHuaTuo prescription counts, with Round 1 duel pairings, byes for odd brackets, X / Weibo copy, GitHub Discussion / PR Comment copy, and challenge / quest / ladder / campaign commands for every participant. It reports only current snapshots, not invented champions or progress.
cyberhuatuo tournament-settle alice bob carol dave --framework langchain --event Agent-Cup creates a Soul Ring Tournament Settlement: a current-result recap for the same public cup, with the current victor, runner-up, victory gap or pending state, next-round hook, X / Weibo copy, GitHub Discussion / PR Comment copy, and replay commands. It reports only current real snapshots, not invented wins, brackets, or history.
cyberhuatuo arena your-github-username --top-n 10 creates a Soul Ring Arena Snapshot: a shareable real leaderboard, the public scoring formula, your current position, the next rival to chase, and copy-ready ranking posts. It reports only the current knowledge-base snapshot, not invented season history.
cyberhuatuo season --framework langchain --top-n 10 creates a Soul Ring Season Board: a current real leaderboard event pack with champion, next chase target, X / Weibo copy, GitHub Discussion / PR Comment copy, and follow-up arena / duel / quest / campaign commands. It reports only the current leaderboard snapshot, not invented historical seasons.
cyberhuatuo sect Azure-Sect your-github-username friend-github-username --framework langchain creates a Soul Ring Sect Card: a shareable sect/team banner that sums the current real prescription counts of listed GitHub members, names the leading member, and gives every member the next challenge / quest / campaign commands. It reports only the current real member snapshot, not invented sect history.
cyberhuatuo sect-recruit Azure-Sect your-github-username friend-github-username --invitee new-member-github --framework langchain creates a Soul Ring Sect Recruitment Scroll: a paste-ready invitation for one GitHub user or an explicit new-member-github placeholder, with current sect power, candidate snapshot when real, an admission trial, join command, X / Weibo copy, and GitHub Discussion / PR Comment copy. It reports only current real member data and marks placeholders before posting.
cyberhuatuo sect-quest Azure-Sect your-github-username friend-github-username --framework langchain creates a Soul Ring Sect Quest Board: a team action board with the real target repository, the current sect power formula, the lowest-contribution priority member, and per-member challenge / quest / upload / campaign commands.
cyberhuatuo sect-hall Azure-Sect your-github-username friend-github-username --framework langchain creates a Soul Ring Sect Hall: a Douluo-style sect / academy / clan hierarchy that assigns Outer Disciple, Inner Disciple, Core Disciple, Hall Deacon, and Sect Elder posts from each listed member's current real prescription count. It reports only the current member snapshot and promotion gap, not invented sect history.
cyberhuatuo sect-duel Azure-Sect Shadow-Sect --challenger-members your-github-username friend-github-username --rival-members rival-a rival-b --framework langchain creates a Soul Ring Sect Duel Card: two real team snapshots, a disclosed sect-power formula, current lead, member tables, and copy-ready team challenge posts. It reports only current member data, not invented wins or season history.
cyberhuatuo sect-arena --sect Azure-Sect your-github-username friend-github-username --sect Shadow-Sect rival-a rival-b --framework langchain creates a Soul Ring Sect Arena Snapshot: a multi-sect public board ranked by current real member prescriptions, with the champion sect, next chase target, team commands, and copy-ready ranking posts. It reports only the current member snapshot, not invented wins or season history.
The loop is intentionally one screen: contribute one real fix, see your global rank, then share the card that shows your current ring and ไธไธ็ฏ target.
cyberhuatuo card your-github-username now also prints a copy-ready ้ญ็ฏๆๆ post with the repo link, the current Git tag candidate install before the PyPI-after-readiness command, and the MCP launch command, so the share card can move straight from terminal or agent chat into a social post without sending cold users to a stale registry build.
You don't need to be a 10x engineer. You just need to have solved one problem that someone else hasn't โ yet.
ไฝ ไธ้่ฆๆฏ 10 ๅๅทฅ็จๅธใไฝ ๅช้่ฆ่งฃๅณ่ฟไธไธชๅซไบบ่ฟๆฒก่งฃๅณ็้ฎ้ขใ
๐ฟ Contribute Nourishing Recipes๏ผ่ดก็ฎๅ ป็ๆน๏ผ
Discovered a security best practice? Performance optimization? Architectural pattern?
Your prevention wisdom saves thousands from future pain. Every nourishing recipe is a shield โ protecting AI systems before they break.
ไฝ ็้ข้ฒๆบๆ ง๏ผๆฏๆๅไธไบบไบๆชๆฅ็็่ฆไนไธญใๆฏไธไปฝๅ ป็ๆน๏ผ้ฝๆฏไธ้ข็พโโๅจ AI ็ณป็ปๅดฉๆบไนๅไฟๆคๅฎใ
๐งฌ Contribute Cases๏ผ่ดก็ฎ็ ไพ๏ผ
Encountered a mind-bending agent bug? Your suffering has value. Turn your 3am debugging nightmare into someone else's 3-second cure.
้ๅฐ่ฟไปคไบบๆ็็ AI bug๏ผไฝ ็็่ฆๆไปทๅผใ ๆไฝ ๅๆจไธ็น็่ฐ่ฏๅฉๆขฆ๏ผๅๆๅซไบบไธ็ง้็็ตไธนๅฆ่ฏใ
Error message + full stack trace
Framework name & version, environment details
Your debugging journey and final fix
Bonus: reproduction steps
Every case makes the engine smarter. You're not filing a bug report โ you're training a digital physician.
ๆฏไธไธช็ ไพ้ฝๅจ่ฎฉๅผๆๆด่ชๆใไฝ ไธๆฏๅจๆไบค bug ๆฅๅโโไฝ ๆฏๅจ่ฎญ็ปไธไฝๆฐๅญๅป็ใ
๐ ๏ธ Improve the Engine๏ผๆน่ฟๅผๆ๏ผ
Fork & clone the repo
Check
CONTRIBUTING.mdfor setupSubmit a PR โ every improvement heals thousands
๐ก Your first step: Submit a Prescription โ
๐ก ไฝ ็็ฌฌไธๆญฅ: ๆไบคไฝ ็็ฌฌไธไปฝ่ฏๆน โ
๐๏ธ The Name
ๅไฝ๏ผ็บฆ 145โ208๏ผ๏ผๅญๅ ๅ๏ผไธๆฑๆซๅนดๅๅป๏ผไธญๅฝ"ๅค็ง้ผป็ฅ"ใ
Hua Tuo (c. 145โ208 AD) โ the legendary physician of ancient China, revered as the "Father of Surgery."
In an age of warlords and plague, while others sought power, Hua Tuo traveled across provinces with nothing but a medicine bag โ healing the sick, asking for nothing in return.
He invented Ma Fei San๏ผ้บปๆฒธๆฃ๏ผ, the world's first general anesthetic, 1,600 years before Western medicine. He pioneered abdominal surgery when the rest of the world was still praying to gods.
But Hua Tuo was more than a healer of the sick. He created the Five-Animal Exercises๏ผไบ็ฆฝๆ๏ผ โ a system of preventive health inspired by the movements of the tiger, deer, bear, ape, and crane. His philosophy: the greatest medicine is prevention.
ๆฒป็ ไธๅฆ้ฒ็ ใThe best cure is the one you never need.
When Cao Cao demanded he serve as a personal physician, Hua Tuo refused โ and was executed. Legend says his life's medical knowledge, compiled in the Book of the Azure Bag๏ผ้ๅไนฆ๏ผ, was burned. The greatest medical wisdom of ancient China, lost to tyranny.
But the spirit was never lost.
ไฝ็ฒพ็ฅไปๆชๅคฑไผ ใ
Today, 1,800 years later, AI developers face their own "ancient prescriptions" โ buried in GitHub Issues, lost Discord threads, outdated Stack Overflow answers. And their AI systems run without checkups, without prevention, without nourishment.
CyberHuaTuo gathers them all โ and builds the world's first AI clinic that doesn't just cure, but prevents.
๐ ๅฐ็ฅๆฆ ยท Apotheosis Board โ Global Alchemist Ranking
ๅ จ็็ผไธนๅธๆ่กๆฆ ยท ๅฐ็ฅ้ถๆขฏ
Below this line, only the worthy stand. Every name earned its place through prescriptions that healed real AI systems in production.
ๆญค็บฟไนไธ๏ผๅฏๆๅฎๅ่ ้ฉป่ถณใ ๆฆไธๆฏไธไธชๅๅญ๏ผ้ฝๆฏ็จ็ๅฎ็็ไบง็ฏๅข่ฏๆนไธๆญฅๆญฅ้ธๅฐฑใ
Your name could be next. All it takes is one prescription.
ไธไธไธช๏ผๅฏ่ฝๅฐฑๆฏไฝ ใๅช้่ฆไธไปฝ่ฏๆนใ
๐ ๅฐ็ฅๆฆ / Apotheosis Board
Rank | Avatar | Name | Title / ็งฐๅท | Contributions / ่ดก็ฎ |
๐ฅ | ๐ฉบ ๅไฝๅไธ Hua Tuo Reborn | 35 | ||
๐ฅ | โญ ไธๆ็ผไธนๅธ One-Star Alchemist | 1 |
๐งฌ ็ผไธนๅธ้ถๆขฏ / Alchemist Ladder (16 Tiers)
Titles are based on global ranking percentile โ the bigger the community, the more prestigious your title.
็งฐๅทๅบไบๅ จ็ๆๅ็พๅไฝๅจๆ่ฎก็ฎโโ็คพๅบ่ถๅคง๏ผ็งฐๅทๅซ้้่ถ้ซใ
Title / ็งฐๅท | Global Rank / ๆกไปถ | Description |
๐ฑ ๅฎไน ่ฏ็ซฅ Intern Apprentice | โ | ๅฐๆช่ดก็ฎ่ฏๆน No contributions yet |
โญ ไธๆ็ผไธนๅธ One-Star Alchemist | Top 100% | ๅๅ ฅ็ผไธนไน้ First prescription |
โญโญ ไบๆ็ผไธนๅธ Two-Star Alchemist | Top 90% | ่ฏ็ๅ้ Getting the hang of it |
โญโญโญ ไธๆ็ผไธนๅธ Three-Star Alchemist | Top 80% | ๅฐๆๆๆ Solid contributor |
โญโญโญโญ ๅๆ็ผไธนๅธ Four-Star Alchemist | Top 70% | ็ผไธนๆๆน Reliable healer |
โญโญโญโญโญ ไบๆ็ผไธนๅธ Five-Star Alchemist | Top 60% | ็พ่้ๆ Master of herbs |
๐ ๅ ญๆ็ผไธนๅธ Six-Star Alchemist | Top 50% | ไธน้็ฒพ้ Alchemy adept |
๐๐ ไธๆ็ผไธนๅธ Seven-Star Alchemist | Top 40% | ่ฏๅฐ็ ้ค Cure on demand |
๐๐๐ ๅ ซๆ็ผไธนๅธ Eight-Star Alchemist | Top 30% | ๅฆๆๅๆฅ Miracle worker |
๐๐๐๐ ไนๆ็ผไธนๅธ Nine-Star Alchemist | Top 25% | ็ผไธนๅฎๅธ Grandmaster |
๐ ๅฐไธน็ Junior Pill King | Top 20% | ๅ็ชฅไธน้ๅท ๅณฐ Approaching the peak |
๐ ไธน็ Pill King | Top 15% | ไธน้็งฐ็ Ruling the realm |
โก ๅๅฃ Half-Saint | Top 8% | ๅๆญฅๅฐๅฃ One step from sainthood |
๐ ไธนๅฃ Pill Saint | Top 4% | ไธนๅฃ้ไธ Saintly mastery |
๐ ไธนๅธ Pill Emperor | Top 1% | ไธนๅธไธดไธ Imperial authority |
๐ฉบ ๅไฝๅไธ Hua Tuo Reborn | #1 Global | ๅคฉไธ็ฌฌไธ็ผไธนๅธ The One and Only |
All Contributors / ๆๆ่ดก็ฎ่
Made with contrib.rocks ยท Auto-updated by GitHub commits
๐ฉบ Want to see your avatar here? Submit a prescription, open a PR, or contribute a case โ every contribution counts!
ๆณๅจ่ฟ้็ๅฐไฝ ็ๅคดๅ๏ผ ๆไบค่ฏๆนใๆ PR ๆ ่ดก็ฎ็ ไพโโๆฏไธไปฝ่ดก็ฎ้ฝ็ฎๆฐ๏ผ
โญ Star History
๐ License
Apache License 2.0 โ Use it. Fork it. Build on it. Heal with it.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityBmaintenanceAn MCP server that provides AI coding agents with AST-accurate, context-budget-aware codebase querying, safety gates, and team policy integration via structured tools and a local plugin layer.Last updated5404MIT
- Alicense-qualityBmaintenanceMCP server that guides an AI agent through stack trace triage, from raw error to the commit and PR that introduced it.Last updated2MIT
- Alicense-qualityCmaintenanceMCP server for TuringWell, the agent-native Q&A platform for executable, verifiable fixes.Last updated4MIT
- Alicense-qualityAmaintenanceMCP server that vets package installations and shell commands to block dangerous actions by AI coding agents.Last updated221MIT
Related MCP Connectors
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
A paid remote MCP for OpenAI Codex agent coordination MCP, built to return verdicts, receipts, usage
Agent Replay Debugger MCP โ record every agent step + deterministic replay. Step-debugger for
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/JinNing6/CyberHuaTuo-Plugin'
If you have feedback or need assistance with the MCP directory API, please join our Discord server