dart-contribute
GitHub规范 DART 项目代码贡献流程,涵盖分支命名、PR 创建、审查及双 PR 修复机制。
Trigger Scenarios
Install
npx skills add dartsim/dart --skill dart-contribute -g -y
SKILL.md
Frontmatter
{
"name": "dart-contribute",
"description": "DART Contribute: branching, PRs, review workflow, and dual-PR bugfixes"
}
DART Contribution Workflow
Load this skill when contributing code to DART.
Full Documentation
For complete guide: docs/onboarding/contributing.md
For code style: docs/onboarding/code-style.md
For automated review handling: docs/onboarding/ai-reviews.md
Branch Naming
feature/<topic>- New featuresfix/<topic>- Bug fixesrefactor/<topic>- Refactoringdocs/<topic>- Documentation
Features, docs, and non-bugfix refactors branch from origin/main. Bug fixes
that apply to the current release line branch from the active DART 6 LTS
origin/release-6.* branch first and then reach main as a second PR (the
dual-PR rule in docs/onboarding/contributing.md).
PR Path
Run pixi run lint before committing and the task-type gate set from
docs/ai/verification.md; use dart-pr to commit, push, and open the PR after
explicit maintainer/user approval, and dart-changelog to decide the
CHANGELOG.md entry per docs/onboarding/changelog.md. Use plain descriptive
commit messages and PR titles without agent tags. Update published PR branches
with additive commits after merging the target branch; never rebase or
force-push a published PR branch unless the maintainer explicitly asks.
Milestones (Required)
| Target Branch | Milestone |
|---|---|
main |
DART 7.0 (or next major) |
Active DART 6 LTS release-6.* branch |
Branch-matching DART 6.x patch |
# After explicit maintainer/user approval, set milestone on an existing PR
gh pr edit <PR#> --milestone "DART 7.0"
# List available milestones
gh api repos/dartsim/dart/milestones --jq '.[] | .title'
Version History
-
bcd584e
Current 2026-09-02 23:40
新增自动化审查处理文档指引;更新里程碑配置命令为 gh CLI 方式;优化分支命名与 PR 路径说明。
- b9fbefc 2026-07-19 11:29


