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.
- 스킬을 등록하려면
SKILL.md가 들어 있는google-jules-control/폴더를 에이전트의 skills 디렉터리에 둡니다. Codex에 수동으로 로컬 스킬을 설치할 때는 보통${CODEX_HOME:-$HOME/.codex}/skills/google-jules-control위치를 사용합니다. To register the skill, place thegoogle-jules-control/folder that containsSKILL.mdin the agent skills directory. For manual local Codex skill installs, this usually means${CODEX_HOME:-$HOME/.codex}/skills/google-jules-control. google-jules-control/agents/openai.yaml은 이 manifest를 지원하는 OpenAI 계열 에이전트가 표시 이름, 짧은 설명, 기본 프롬프트를 읽을 때 쓰는 파일입니다. Python helper가 실행 중에 읽는 설정 파일은 아닙니다.google-jules-control/agents/openai.yamlis for OpenAI-style agents that support this manifest and need the display name, short description, and default prompt. The Python helper does not read it at runtime.- 등록 확인은 새 에이전트 컨텍스트에서
$google-jules-control을 호출해doctor --compact실행을 요청하는 방식으로 확인합니다. 인식되지 않으면 설치 위치와SKILL.md의name: google-jules-control을 확인합니다. Verify discoverability by invoking$google-jules-controlin a fresh agent context and asking it to rundoctor --compact. If it is not recognized, check the install location and thename: google-jules-controlfront matter inSKILL.md.
google-jules-skill/
├── README.md
├── docs/
│ ├── setup-and-test.md
│ ├── release-checklist.md
│ └── issue-workflow.md
├── tests/
│ └── test_jules_api.py
├── 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
- 이 스킬 저장소 clone의 루트에서 시작합니다. Start from the root of this skill repository clone.
cd google-jules-skillgoogle-jules-control/.env.example를google-jules-control/.env로 복사합니다. Copygoogle-jules-control/.env.exampletogoogle-jules-control/.env.
cp google-jules-control/.env.example google-jules-control/.env.env에JULES_API_KEY를 넣습니다. 저장소 루트.env가 이미 있으면 스크립트가 그 파일을 먼저 읽으므로, 그 파일에도JULES_API_KEY가 있어야 합니다. Put yourJULES_API_KEYinto.env. If a repository-root.envalready exists, the script reads that file first, so it must also containJULES_API_KEY.- 준비 상태를 확인합니다. Run a readiness check.
python3 google-jules-control/scripts/jules_api.py doctor --compact키가 실제 API 인증까지 통과하는지 확인하려면 아래처럼 검증 probe를 추가합니다. Add the validation probe when you need to confirm that the key authenticates with the API.
python3 google-jules-control/scripts/jules_api.py doctor --compact --validate-api- 저장소를 Jules source로 해석합니다. Resolve a repository to a Jules source.
python3 google-jules-control/scripts/jules_api.py repo-to-source --repo owner/repo --compact- 복사해서 따라갈 수 있는 smoke test는
docs/setup-and-test.md를 참고합니다. For a copy-paste smoke test, readdocs/setup-and-test.md. - 자세한 사용법은
google-jules-control/SKILL.md를 참고합니다. Readgoogle-jules-control/SKILL.mdfor the full operating guide.
docs/setup-and-test.mddocs/release-checklist.mddocs/issue-workflow.mdPlatform/README.md
- 보강사항은 먼저 GitHub issue로 등록한 뒤 처리합니다.
Register non-trivial improvements as GitHub issues before implementation.
- 실제 시크릿은
.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.
