AutoResearchClaw

(★ 14,055)

아이디어부터 논문까지 완벽한 자율형 및 자기 진화형 연구. 아이디어를 채팅하세요. 논문을 받으세요. 🦞

파일 탐색기

  • .gitignore
  • config.researchclaw.example.yaml
  • CONTRIBUTING.md
  • LICENSE
  • prompts.default.yaml
  • pyproject.toml
  • README.md
  • RESEARCHCLAW_AGENTS.md
  • RESEARCHCLAW_CLAUDE.md
  • run_hep_pipeline.sh
  • sentinel.sh

# 설치 가이드

python
사전 준비물

설치 및 실행 절차

pip install -e .

프로젝트를 로컬 환경에 수정 가능한(editable) 상태로 설치합니다.

cp config.researchclaw.example.yaml config.researchclaw.yaml

예제 설정 파일을 복사하여 기본 설정 파일을 생성합니다.

researchclaw setup

AutoResearchClaw 초기 설정을 수행합니다.

researchclaw init

필요한 작업 공간 및 리소스를 초기화합니다.

researchclaw run --topic "Your research idea here" --auto-approve

연구 주제를 바탕으로 파이프라인을 완전 자율 모드로 실행합니다.

핵심 명령어

pip install -e .

현재 디렉토리의 패키지를 개발자 모드로 설치합니다.

researchclaw setup

AutoResearchClaw 실행에 필요한 환경을 설정합니다.

researchclaw init

프로젝트 환경과 데이터베이스를 초기화합니다.

researchclaw run --topic "Quantum Error Correction" --auto-approve

자율 연구 파이프라인을 시작하여 논문 생성을 수행합니다.

실행 전 config.researchclaw.yaml 파일을 수정하여 LLM API 키 및 설정을 구성해야 합니다.

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

릴리즈 타임라인

활발히 관리 중

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

claude

설명 보기 ▼

코드베이스를 이해하고 자연어 명령을 통해 더 빠르게 코딩할 수 있도록 도와주는 에이전트 기반 코딩 도구.
더 많은 정보: <https://code.claude.com/docs/en/cli-reference>.

claude prompt

프롬프트로 실행:

claude update

`claude`를 업데이트:

claude mcp list

지정된 MCP 서버 목록을 표시:

🔍

codex

설명 보기 ▼

OpenAI로 구동되는 터미널용 자연어 코드 어시스턴트.
요청을 수행하기 위해 현재 디렉터리의 파일을 읽고 수정.
더 많은 정보: <https://developers.openai.com/codex/cli/reference>.

codex

현재 디렉터리에서 대화형 Codex 세션을 시작:

codex "{{prompt}}"

프롬프트를 사용해 단일 Codex 명령을 실행:

codex --sandbox workspace-write "{{prompt}}"

프롬프트를 전체 자동 모드로 실행:

🔍

gemini

설명 보기 ▼

Gemini AI와 대화형 프롬프트 실행.
더 많은 정보: <https://geminicli.com/docs/cli/cli-reference/>.

gemini

대화형 채팅을 위한 REPL 세션 시작:

{{echo "Summarize the history of Rome"}} | gemini {{[-p|--prompt]}} -

다른 명령의 출력을 Gemini로 전달하고 즉시 종료:

gemini {{[-m|--model]}} {{model_name}}

특정 모델 사용 (기본값: auto-gemini-3):

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

opencode

설명 보기 ▼

AI 코딩 에이전트.
`auth`, `models`, `web`와 같은 일부 하위명령어는 별도의 사용법 문서를 가짐.
더 많은 정보: <https://opencode.ai/docs/cli/>.

opencode

대화형 TUI 시작:

opencode {{[-c|--continue]}}

가장 최근 세션 이어서 실행:

opencode run "{{message}}"

프롬프트를 직접 전달하여 비대화형으로 실행:

🔍

pip install

설명 보기 ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

python

설명 보기 ▼

Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.

python

REPL(대화형 셸) 시작:

python {{path/to/file.py}}

특정 Python 파일 실행:

python -i {{path/to/file.py}}

특정 Python 파일 실행 후 REPL 시작:

🔍

python3

설명 보기 ▼

이 명령은 `python`의 별칭입니다.

tldr python

자세한 내용은 원본 명령을 참고하세요:

// repository documentation