ComfyUI Extension
ComfyUI-AtlasUtils
ComfyUI custom node for toggling prompt groups by title from JSON files with flexible prompt selection and output formatting. (Description by CC)
Yoon999/ComfyUI-AtlasUtils
Nodes4
On cloudLocal install
Categoryprompt/selection, Animation/Loop
Stars0
Updated16 days ago
Nodes (4)
Prompt Title Selector (JSON)
Turn a JSON file into ON/OFF prompt toggles, so you stop editing your mega-prompt
prompt/selection
Seamless Loop Assembler
The glue that closes the loop — stitch your interpolated seam back in
Animation/Loop
Seamless Loop Splitter
Cut a video into a seamless-loop skeleton — the last-frame-meets-first trick, minus the mental math
Animation/Loop
Replace N-th Frame (Wan)
Swap a single frame in a Wan clip without re-generating — the surgical frame edit
Animation/Utils
Readme
ComfyUI Atlas Utils
Prompt Title Selector
JSON 파일의 제목별 프롬프트 그룹을 토글로 선택하는 ComfyUI 커스텀 노드입니다.
설치
- 이 폴더 전체를
ComfyUI/custom_nodes/ComfyUI-PromptTitleSelector/에 복사합니다. - ComfyUI를 재시작합니다.
- 프롬프트 JSON을
ComfyUI/input/에 넣습니다. - 워크플로에서 prompt → selection → Prompt Title Selector (JSON) 노드를 추가합니다.
json_file을 고르면 제목별ON/OFF토글이 생성됩니다.
출력
title_list: 활성화한 프롬프트 그룹의 제목 목록입니다.prompt_list: 활성화한 제목에 포함된 모든 프롬프트를 ComfyUI 리스트 출력으로 제공합니다.combined_prompt: 같은 프롬프트를join_separator로 이어 붙인 단일 문자열입니다.selected_prompt_count: 선택된 실제 프롬프트의 총개수를INT로 제공합니다.random_seed_list: 선택된 프롬프트마다 하나씩 생성한 64비트 랜덤 시드를INT리스트로 제공합니다. 큐를 실행할 때마다 새로 생성됩니다.
index_mode가 켜져 있으면 실제로 출력되는 단일 프롬프트를 기준으로 개수 1과 시드 한 개를 출력합니다.
권장 JSON 형식
[
{
"인물_여성": [
"1girl, solo, long hair",
"1girl, solo, short hair"
]
},
{
"구도_전신": [
"full body, standing pose"
]
}
]
각 객체는 { "제목": "프롬프트" } 또는 { "제목": ["프롬프트1", "프롬프트2"] } 형식입니다.
또한 아래 형태도 읽습니다.
{
"인물_여성": ["1girl, solo"],
"구도_전신": ["full body"]
}
유의사항
- 제목 하나를 ON으로 바꾸면 그 제목에 속한 프롬프트가 전부
prompt_list에 들어갑니다. - JSON 파일을 새로 추가한 뒤 콤보에 보이지 않으면 브라우저 새로고침 또는 ComfyUI 재시작을 해주세요.
- JSON 형식 오류는 노드 실행 전 검증 단계에서 메시지로 표시됩니다.
Wan Replace Frame
...