Google Jules를 LLM 에이전트에서 제어하기 위한 스킬 저장소입니다.
This repository contains a skill for controlling Google Jules from an LLM agent.
google-jules-controlGoogle Jules REST API와 Jules CLI를 통해 세션 생성, 상태 조회, 후속 지시, 정리 리포트, merge 확인, 세션 종료를 수행합니다.
Controls Google Jules sessions through the Jules REST API and Jules CLI, including session creation, status checks, follow-up instructions, cleanup reports, merge checks, and session closure.
google-jules-skill/
├── README.md
├── docs/
│ ├── setup-and-test.md
│ └── release-checklist.md
├── Platform/
│ ├── README.md
│ ├── Migration-Guide.md
│ └── ...
└── google-jules-control/
├── .env.example
├── .gitignore
├── SKILL.md
├── agents/openai.yaml
├── references/jules-reference.md
└── scripts/jules_api.py
google-jules-control/.env.example를 바탕으로.env를 준비합니다.
Create a.envfile fromgoogle-jules-control/.env.example..env에JULES_API_KEY를 넣습니다.
Put yourJULES_API_KEYinto.env.- 준비 상태를 확인합니다.
Run a readiness check.
python3 google-jules-control/scripts/jules_api.py doctor --compact- 저장소를 Jules source로 해석합니다.
Resolve a repository to a Jules source.
python3 google-jules-control/scripts/jules_api.py repo-to-source --repo owner/repo --compact- 자세한 사용법은
google-jules-control/SKILL.md를 참고합니다.
Readgoogle-jules-control/SKILL.mdfor the full operating guide.
docs/setup-and-test.mddocs/release-checklist.mdPlatform/README.md
- 실제 시크릿은
.env에만 넣고.env.example에는 넣지 않습니다.
Put real secrets in.env, not in.env.example. google-jules-control/.gitignore는 스킬 폴더 안의.env를 제외합니다.
google-jules-control/.gitignoreexcludes.envinside the skill folder.- 루트
.gitignore도 저장소 루트.env를 제외합니다.
The repository-root.gitignorealso excludes the root.env. - 로컬 테스트에서는 저장소 루트
.env도 사용할 수 있습니다.
The repository root.envalso works for local testing.
