Agent Skills
› LLMQuant/quant-mind
› quantmind-dev
quantmind-dev
GitHubQuantMind代码库贡献工作流指南,涵盖提交规范、PR格式及模块开发。提供commit、PR、组件开发等参考路径,强调验证脚本执行与测试要求。
Trigger Scenarios
准备提交代码
创建或更新Pull Request
开发或重构quantmind模块
编写或编辑contexts文档
Install
npx skills add LLMQuant/quant-mind --skill quantmind-dev -g -y
SKILL.md
Frontmatter
{
"name": "quantmind-dev",
"description": "Contributor workflow for the QuantMind codebase. Covers commit format, pull request format, and component development across quantmind\/ modules (knowledge, configs, preprocess, rag, flows, mind, utils) with tests, examples, and verification. Use when committing, opening a PR, or implementing\/refactoring QuantMind code."
}
QuantMind Dev
Development workflow for contributing to the QuantMind codebase.
Start Here
- Use the repository
contexts/README.mdto select the development context for this contribution. - Read the repository root
AGENTS.mdorCLAUDE.mdfor the stable architecture constraints and the module map. - Read
docs/README.mdwhen the task adds, changes, or uses a public operation or public-network source. - When creating, updating, or triaging an issue or pull request, use the canonical repository label guidance.
- Before writing or editing any GitHub body, follow the canonical GitHub writing style, including its no-hard-wrap rule.
- Pick exactly one workflow reference below; do not load the others.
Select Workflow
- Committing staged work →
references/commit.md - Opening or updating a pull request →
references/pull-request.md - Implementing or refactoring anything under
quantmind/→references/develop-components.md(read it before writing code) - Adding or editing a page under
contexts/→references/write-contexts.md
A feature task usually chains all three: develop → commit → pull request.
Rules
bash scripts/verify.shis the deterministic required verification. Run it before every push and before marking a PR ready. The required.github/workflows/ci.ymlworkflow runs the same harness.- Public-network integrations have separate bounded smoke tests.
.github/workflows/e2e.ymlowns their scheduled, manual, and path-filtered component jobs. Run every applicable test listed indocs/README.mdwhen changing that component and before publishing. External service availability must not block unrelated changes. - Keep
docs/README.mdas the single catalog of component smoke-test commands. A new live component adds a component-specificscripts/verify_<component>_e2e.py, a named job in the existinge2e.yml, precise PR path coverage, and one catalog row. When multiple live jobs exist, use GitHub-native per-job change detection so only affected jobs run. Do not add a separate workflow, generic E2E runner or registry, or base E2E class. - Never bypass pre-commit / pre-push hooks (
--no-verify) unless the user explicitly authorizes it. - New features ship with a unit test and a focused example (see
references/develop-components.md). - This skill is mirrored under
.agents/skills/quantmind-dev/and.claude/skills/quantmind-dev/; the copies are identical. When changing the skill, update both in the same change.
Boundaries
- This skill is for contributing to QuantMind itself. It does not cover using QuantMind as a library in your own project.
- Product decisions (new modules, new dependencies, API redesigns) need an issue and maintainer discussion first; do not encode them here.
Version History
-
27a08e6
Current 2026-07-23 00:50
新增'添加或编辑contexts/下页面'的工作流指引;明确新特性需附带单元测试和示例;规定技能文件需在两处同步更新;细化E2E测试管理规则。
- 2ecd863 2026-07-19 18:53


