2004/skill-repo-publish/SKILL.md
Update and publish skills to the official-skills GitHub repo. Use when the user wants to update a SKILL.md, bump version, and push to Starchild-ai-agent/official-skills.
npx skillsauth add starchild-ai-agent/community-skills @2004/skill-repo-publishInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Push local SKILL.md changes to Starchild-ai-agent/official-skills.
Always use GITHUB_TOKEN (not GITHUB_TOKEN_NEW — no org write access).
Embed token in clone URL: https://${GITHUB_TOKEN}@github.com/Starchild-ai-agent/official-skills.git
# 1. Clone (always fresh /tmp dir)
git clone https://${GITHUB_TOKEN}@github.com/Starchild-ai-agent/official-skills.git /tmp/official-skills
cd /tmp/official-skills
git config user.name "nicholasDxy"
git config user.email "[email protected]"
# 2. Edit with Python replace (safer than sed)
with open("/tmp/official-skills/<skill>/SKILL.md", "r") as f:
content = f.read()
content = content.replace("old text", "new text")
with open("/tmp/official-skills/<skill>/SKILL.md", "w") as f:
f.write(content)
# 3. Verify diff before commit
git diff <skill>/SKILL.md
# 4. Commit + push
git add <skill>/SKILL.md
git commit -m "feat(<skill>): <summary>
<details>
Co-authored-by: Starchild <[email protected]>"
git push origin main
| Change type | Bump | Example | |-------------|------|---------| | New capability or tool | minor | 3.2.0 → 3.3.0 | | Doc fix / wording | patch | 3.3.0 → 3.3.1 | | Breaking interface change | major | 3.x.x → 4.0.0 |
Describe capabilities, don't enumerate dynamic data.
Supported chains: ethereum, base, ...(list 16 chains)Supports all EVM chains via DeBank dynamic lookup (300+ chains)DeBank chain lists, token lists, and other API-driven data change over time — never hardcode them. If there's a fallback map in code, describe its purpose ("offline map for common chains, not an exhaustive list"), don't copy it into the skill.
Always sync the local workspace skill too:
skill_manage(action="patch", name="<skill>", old_string="version: x.x.x", new_string="version: y.y.y")
So local skill stays in sync with the repo version.
tools
TQX (tqx.trade) HK/US stock quant workflow via tqx-cli: cross-sectional factor analysis, event-driven strategy backtests on the panda_backtest engine, and agent-driven automated paper trading. Use when the user wants to run factor IC/IR analysis, backtest a Python trading strategy on Hong Kong or US stocks, or set up agent-automated trading (e.g. "backtest a moving-average strategy on AAPL", "analyze a momentum factor on HK stocks", "let the agent trade my paper account").
tools
中学物理实验教学参赛方案套件。包含四个完整实验(单摆测g、声悬浮测声速、向心力定量演示仪、电磁阻尼定量研究),每套含固件源码、3D打印图纸、教学PPT、教学文稿、采购清单、调试手册、视频分镜脚本、模拟器。Use when a teacher/student needs a complete, classroom-ready physics experiment package for competition or teaching.
development
End-to-end blog management for AI agents. Write, import, build, preview, and publish articles using the blog template. Covers draft workflow, article import, SEO, OG images, and deployment.
development
ESP8266/ESP32 + 磁簧开关/霍尔传感器 单摆测重力加速度实验套件。 硬件搭建→固件烧录→数据采集→Web仪表盘→g值计算→教学文档,一站式完成。 Use when the user wants to build a pendulum g-measurement experiment, measure gravity with a micro-controller, or needs a complete physics experiment package with hardware + firmware + dashboard + teaching materials.