runcomfy-cli
Gere mídia de IA com a CLI do RunComfy
또한 다음에서 사용할 수 있습니다: doany-ai,runcomfy-com
Criar imagens e vídeos gerados por IA geralmente exige navegar por APIs complexas e escrever código boilerplate. A skill CLI do RunComfy permite gerar, editar e transformar mídia executando comandos simples do seu terminal, com polling automático e gerenciamento de download.
스킬 ZIP 다운로드
Claude에서 업로드
설정 → 기능 → 스킬 → 스킬 업로드로 이동
토글을 켜고 사용 시작
테스트해 보기
"runcomfy-cli" 사용 중입니다. Generate a photorealistic image of a cat using GPT Image 2
예상 결과:
The agent runs: runcomfy run openai/gpt-image-2/text-to-image --input '{"prompt": "a photorealistic cat sitting on a windowsill"}'. It polls for status every 2 seconds, then downloads result.png to the current directory.
"runcomfy-cli" 사용 중입니다. Batch generate 5 images from my prompts file
예상 결과:
The agent creates a shell loop that reads prompts.txt, calls runcomfy for each line with a unique output directory, and reports the path of each downloaded file as it completes.
"runcomfy-cli" 사용 중입니다. Submit a video generation job without waiting
예상 결과:
The agent runs: runcomfy --output json run bytedance/seedance-v2/pro --input '{"prompt": "a robot walking through a forest"}' --no-wait. It extracts the request_id from JSON, stores it, and later checks status with runcomfy status <request_id>.
보안 감사
낮은 위험All 174 static findings are false positives from parsing a markdown documentation file. External command detections are bash code blocks showing CLI usage examples. Network detections are documentation links to runcomfy.com. Filesystem detections are references to the CLI token storage path. The skill declares a narrow tool scope of Bash(runcomfy *) for a legitimate media generation CLI.
낮은 위험 문제 (4)
위험 요인
🌐 네트워크 접근 (7)
📁 파일 시스템 액세스 (3)
품질 점수
만들 수 있는 것
Gerar materiais visuais de marketing
Crie imagens de produtos, gráficos para redes sociais e vídeos promocionais descrevendo o que você deseja em linguagem natural.
Prototipar conceitos criativos
Itere rapidamente sobre ideias artísticas gerando variações com diferentes modelos, prompts e parâmetros.
Automatizar pipelines de mídia
Construa scripts que geram imagens ou vídeos em lote, processam-nos e integram os resultados em fluxos de CI/CD ou dados.
이 프롬프트를 사용해 보세요
Generate an image with RunComfy using the prompt 'a serene mountain landscape at golden hour, photorealistic, 8k'. Use the openai/gpt-image-2/text-to-image model and save it to ./output.
Read prompts.txt line by line and generate one image per prompt using the flux-2-klein model. Save all outputs to ./batch-output/ with a timestamp subfolder for each run.
Submit a video generation job with --no-wait to get a request_id, then check its status every 30 seconds until it completes. Download the final video when done.
Generate an image with --output json and --no-download, then extract the first image URL with jq and download it with curl into a specific folder.
모범 사례
- Sempre use --output json ao criar scripts ou direcionar resultados para outras ferramentas
- Armazene seu token RunComfy na variável de ambiente RUNCOMFY_TOKEN para ambientes CI e contêineres
- Use --no-wait para jobs de geração de vídeo de longa duração e depois consulte com runcomfy status
피하기
- Não direcione scripts de instalação via curl diretamente para o shell sem revisá-los antes
- Não passe variáveis de shell diretamente para --input sem o escape JSON adequado
- Não ignore o código de saída 77; ele significa que a autenticação falhou e você precisa fazer login novamente