skills/release/SKILL.md
Automated release workflow for oh-my-claudecode
npx skillsauth add OliverOuyang/shuhe-work-skills releaseInstall 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.
Automate the release process for oh-my-claudecode.
/oh-my-claudecode:release <version>
Example: /oh-my-claudecode:release 2.4.0 or /oh-my-claudecode:release patch or /oh-my-claudecode:release minor
Execute these steps in order:
Update version in all locations:
package.jsonsrc/installer/index.ts (VERSION constant)src/__tests__/installer.test.ts (expected version).claude-plugin/plugin.json.claude-plugin/marketplace.json (both plugins[0].version and root version)docs/CLAUDE.md (<!-- OMC:VERSION:X.Y.Z --> marker)README.md (version badge and title)npm run test:run
All 231+ tests must pass before proceeding.
git add -A
git commit -m "chore: Bump version to <version>"
git tag v<version>
git push origin main
git push origin v<version>
npm publish --access public
gh release create v<version> --title "v<version> - <title>" --notes "<release notes>"
| File | Field/Line |
|------|------------|
| package.json | "version": "X.Y.Z" |
| src/installer/index.ts | export const VERSION = 'X.Y.Z' |
| src/__tests__/installer.test.ts | expect(VERSION).toBe('X.Y.Z') |
| .claude-plugin/plugin.json | "version": "X.Y.Z" |
| .claude-plugin/marketplace.json | plugins[0].version + root version |
| docs/CLAUDE.md | <!-- OMC:VERSION:X.Y.Z --> |
| README.md | Title + version badge |
tools
SQL 分段验证、自我修复、结果导出与智能分析。流程:解析SQL → Dataphin MCP 验证元数据 → 自动修复 → 分段执行验证 → 导出 CSV → 智能分析(漏斗解读、异常识别、预判用户问题)。适用场景:"跑一下这个SQL"、"验证这个查询"、"帮我执行并导出"、"分析一下结果"等。
testing
Security-first vetting for OpenClaw skills. Use before installing any skill from ClawHub, GitHub, or other sources. Checks for red flags, permission scope, and suspicious patterns.
development
A universal self-improving agent that learns from ALL skill experiences. Uses multi-memory architecture (semantic + episodic + working) to continuously evolve the codebase. Auto-triggers on skill completion/error with hooks-based self-correction.
data-ai
Standardize Jupyter notebooks (.ipynb) for interactive data analysis workflows. Enforces a mandatory cell manifest (M1-M8 + archetype chapters) with tags ([CONFIG]/[SETUP]/[FUNC]/[RUN]/[VIZ]/[EXPORT]), structured markdown sections, and output prefixes ([OK]/[WARN]/[SKIP]). Use when the user wants to standardize, clean up, or create a notebook from scratch. Two archetypes: problem-driven (question-answer analysis) and monitoring (dimension-based periodic reporting).