Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
@google/jules-fleetContinuous analysis and development, driven by simple goal files.
Overview
Fleet connects your development goals to Jules. You write goals as markdown files describing what you want — improved test coverage, API drift detection, triaging open issues. Fleet continuously analyzes your repository against those goals, creates actionable issues, dispatches Jules sessions to implement them, and sequentially merges the resulting PRs.
The entire pipeline runs on a schedule via GitHub Actions, or on-demand from the CLI.
How it works
1. Define goals
Goals live in
.fleet/goals/as markdown files. Each goal describes a focus area for your repository:A built-in triage goal ships with Fleet — it automatically triages unmilestoned open issues unless you provide your own
triage.md.2. Fleet does the rest
jules-fleet analyzefleet-labeled issuesjules-fleet dispatchfleetissues, fires Jules worker sessions to implement each onejules-fleet merge3. Set up in one command
This creates a PR with GitHub Actions workflows for analyze, dispatch, and merge — plus configures the required repo labels. Merge the PR, add your
JULES_API_KEYsecret, and Fleet runs on schedule.CLI
All commands auto-detect
owner/repofromGITHUB_REPOSITORY(Actions) or your local git remote.Auth
Fleet auto-detects authentication:
GITHUB_APP_ID+GITHUB_APP_PRIVATE_KEY_BASE64+GITHUB_APP_INSTALLATION_IDGITHUB_TOKENArchitecture
Every command follows the Spec & Handler pattern — Zod-validated inputs, typed
Resultoutputs (never throws), isolated ops per file to minimize merge conflicts.This PR
packages/fleet/— library + CLI, 72 testsscripts/fleet/— replaced by the libraryfleet-*.ymlworkflows — will be re-added viafleet initafter npm publish