agbrowse 문서

가이드

ChatGPT 코드 zip을 생성하고 다운로드 버튼 없이 회수합니다.

web-ai code는 ChatGPT 전용입니다. saved dev-agent context를 첨부하고 strict prompt를 보낸 뒤 sandbox zip을 provider download API로 회수해 검증합니다.

단일 artifact

agbrowse web-ai code \
  --vendor chatgpt \
  --model thinking \
  --effort standard \
  --prompt "여기에 설명한 앱을 만들어 주세요." \
  --output-zip ./result.zip

--output-zip을 생략하면 현재 작업 디렉터리에 code-artifact-<conversation>.zip으로 저장됩니다.

여러 artifact

agbrowse web-ai code \
  --vendor chatgpt \
  --model thinking \
  --multi-zip \
  --output-dir ./artifacts \
  --prompt "backend.zip과 frontend.zip을 만들어 주세요."

--multi-zip--output-zip은 같이 쓸 수 없습니다. 여러 zip은 --output-dir로 저장합니다.

나중에 다시 회수

agbrowse web-ai code-extract \
  --vendor chatgpt \
  --url "https://chatgpt.com/c/<conversation-id>" \
  --output-zip ./result.zip

code-extract는 새 prompt를 보내지 않습니다. 원래 ChatGPT conversation이 로그인된 browser profile에서 접근 가능해야 합니다.