agbrowse 문서

빠른 시작

설치, Chrome 시작, 페이지 점검, Web-AI 실행 순서로 확인합니다.

  1. 전역 설치 또는 repo의 local bin을 사용합니다.
  2. 보이는 UI를 제어하려면 headed Chrome을 시작합니다.
  3. mutate 전에 snapshot을 찍습니다.
  4. Web-AI는 provider와 prompt를 명시합니다.
npm install -g agbrowse
agbrowse start --headed
agbrowse navigate https://example.com
agbrowse snapshot --interactive

Web-AI query

agbrowse web-ai query \
  --vendor chatgpt \
  --inline-only \
  --prompt "Summarize this page and cite visible sources."

독립 검색

agbrowse search로 full deep search 파이프라인을 실행합니다: query rewrite, adaptive-fetch ladder를 통한 원본 페이지 fetch, 증거 채점.

agbrowse search "Next.js 15 app router migration" --json

단일 URL 검증 또는 외부 검색 결과를 enrichment할 수도 있습니다:

agbrowse search --verify "https://nextjs.org/docs/app" --json
echo '[{"url":"...","title":"..."}]' | agbrowse search "query" --stdin-results --json

코드 artifact 생성

처음 쓰는 사용자는 web-ai code부터 시작합니다. code-extract는 기존 ChatGPT conversation에 sandbox zip이 이미 있을 때 다시 회수하는 명령입니다.

agbrowse web-ai code \
  --vendor chatgpt \
  --model thinking \
  --effort medium \
  --prompt "Create a CLI todo app with tests." \
  --output-zip ./result.zip