Extensions/ComfyUI-AtlasUtils
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)

By Yoon999·Created 2 months ago·Updated 2 months ago· 0
Yoon999/ComfyUI-AtlasUtils
Nodes
On cloudLocal install
Stars0
Updated2 months ago
Readme

ComfyUI Atlas Utils

Prompt Title Selector

JSON 파일의 제목별 프롬프트 그룹을 토글로 선택하는 ComfyUI 커스텀 노드입니다.

설치

  1. 이 폴더 전체를 ComfyUI/custom_nodes/ComfyUI-PromptTitleSelector/에 복사합니다.
  2. ComfyUI를 재시작합니다.
  3. 프롬프트 JSON을 ComfyUI/input/에 넣습니다.
  4. 워크플로에서 prompt → selection → Prompt Title Selector (JSON) 노드를 추가합니다.
  5. json_file을 고르면 제목별 ON/OFF 토글이 생성됩니다.

출력

  • prompt_list: 활성화한 제목에 포함된 모든 프롬프트를 ComfyUI 리스트 출력으로 제공합니다.
  • combined_prompt: 같은 프롬프트를 join_separator로 이어 붙인 단일 문자열입니다.

권장 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

...