Automate QuantTrader Pro versioning. Use this skill when you have modified `QuantTrader_Pro.mq4` and need to increment the version number and update the changelog in `README.md`.
This skill helps manage the versioning of the QuantTrader Pro project. It automatically updates the version number in the source code and adds a changelog entry to the README.
When you have completed a code change or a bug fix, use the run_command tool to execute the update_version.py script located in the scripts directory of this skill.
python3 .agent/skills/mq4-version-manager/scripts/update_version.py --type [major|minor|patch] --desc "Your description here" --path .
--type:
major: Increments the major version (e.g., 1.0 -> 2.0).minor: Increments the minor version (e.g., 1.0 -> 1.1). Use for new features.patch: Increments the patch version (e.g., 1.0 -> 1.01). Use for bug fixes.--desc: A brief description of the changes. This will be added to README.md. MUST be in Chinese (Simplified).--path: The root directory of the project (usually .).Example 1: Bug Fix (Patch) User: "I fixed the web request timeout bug." Action:
python3 .agent/skills/mq4-version-manager/scripts/update_version.py --type patch --desc "修复: 优化了网络请求超时问题" --path .
Example 2: New Feature (Minor) User: "Added a new RSI filter." Action:
python3 .agent/skills/mq4-version-manager/scripts/update_version.py --type minor --desc "新增: 添加 RSI 过滤逻辑" --path .
npx skills add Jingkzhou/mq4-version-manager下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer