ソース情報
- リポジトリ
- dartsim/dart
- ソースの最終更新活動
- 2026年9月5日 10:27
- 検出された SKILL.md の言語
- 英語
- スター
- 1,202
- フォーク
- 304
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/dartsim/dart --skill dart-backport-prコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
DART Architecture: the DART 7 multi-physics, multi-solver, multi-backend simulation pipeline, the living architecture map that draws it, and where each abstraction is owned
DART Docs Update: update docs or AI instruction visibility without code changes, or audit the docs tree for stale, duplicated, and orphaned content
DART Architecture: the DART 7 multi-physics, multi-solver, multi-backend simulation pipeline, the living architecture map that draws it, and where each abstraction is owned
| name | dart-backport-pr |
| description | DART Backport PR: backport a merged main PR to a release branch |
Use this skill in Codex to run the DART dart-backport-pr workflow. The editable
workflow source lives in .claude/commands/; this file is its generated adapter
in the shared .agents/skills/ catalog.
/dart-backport-pr <arguments>$dart-backport-pr <arguments>Treat the text after the skill name as $ARGUMENTS. When the workflow
references $1, $2, etc., map those to the positional values supplied by the
user.
Backport PR or commits: $ARGUMENTS
@AGENTS.md @docs/onboarding/contributing.md @docs/onboarding/release-management.md @docs/onboarding/changelog.md
For a source change that depends on 3D structure or behavior, use the target
branch's dart-verify-sim workflow to preserve the text oracle and assessed
visual evidence, or record why the target branch cannot render the claim.
main:
gh pr view <SOURCE_PR> --json state,mergedAt,baseRefName,mergeCommit
git fetch origin <RELEASE_BRANCH> main
git cherry -v --abbrev=40 origin/<RELEASE_BRANCH> origin/main | grep <COMMIT_HASH>
main. If the release branch has a
smaller workflow surface, adapt to the release branch instead of importing
main-only workflows.BRANCH=backport/<SOURCE_PR>-to-<RELEASE_BRANCH>
if git show-ref --verify --quiet "refs/heads/$BRANCH"; then
if [ -n "$(git status --short)" ] || [ "$(git rev-parse "$BRANCH")" \
!= "$(git rev-parse "origin/<RELEASE_BRANCH>")" ]; then
echo "existing $BRANCH is dirty or diverges from the release tip" >&2
exit 1 # stop and ask before resetting or cherry-picking onto it
fi
git switch "$BRANCH"
else
git switch --no-track -c "$BRANCH" origin/<RELEASE_BRANCH>
fi
git cherry-pick -x <COMMIT_HASH>./dart-changelog decide or $dart-changelog decide against the
backport diff and release target before opening the backport PR. If an entry
is required but needs the backport PR number, draft the decision and keep the
finalize/update follow-up local until explicit approval permits another
push. Do not skip the changelog decision just because this is a backport.pixi run lint and the smallest relevant release-branch checks.