在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用add-feature
星标22
分支4
更新时间2026年7月3日 14:31
Checklist for adding new functionality to JustPIC
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Checklist for adding new functionality to JustPIC
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Monitor CI, auto-fix small issues, pause on bigger problems, retrigger flaky runs
Build JustPIC documentation locally, full or fast
Set up and validate a new JustPIC advection miniapp or benchmark script
Run targeted JustPIC tests, prioritized by what's likely to break
| name | add-feature |
| description | Checklist for adding new functionality to JustPIC |
Follow this checklist when adding new functionality (interpolation scheme, advection variant, particle operation, …).
src/ (Particles/, Interpolations/,
MarkerChain/, PassiveMarkers/, PhaseRatios/, Physics/, IO/)@kernel covering 2D and
3D via N-tuples), following .claude/rules/kernel-rules.md:
@kernel + KA @index; CAI.@index for cell-element access@inline helperslaunch!(ka_backend(x), kernel!, ndrange, args...)src/common.jl: add the include in the matching section and the
export right below it — this is the single wiring point for all backendsext/ unless the feature needs new allocation or host↔device
conversion primitives; algorithms never go theretest_2D.jl and test_3D.jl (testset names suffixed "2D"/"3D"),
using the file's backend constant so they run on CPU and GPU unchanged. If a new
test_*.jl file is warranted, register it in test/runtests.jl (CPU include list +
gpu_testfiles).agents/validation.md)docs/src/API.md and the relevant docs page if the public API changed/run-tests), then the full CPU suite, then
--backend=CUDA if a GPU is availablegit runic main before pushing