TE
Travis Eric
HomeNow
Work with meBook a 30-minute call
Travis Eric LogoTravis Eric

AI consulting and custom software, based in Fort Collins. Explore the work. Bring your next idea.

Travis Eric AI Consulting(720) 770-2979

Navigate

  • Home
  • Now
  • Projects
  • How I work

Deeper

  • Work with me
  • About
  • Share your experience
  • Case Studies
  • Resources
  • Impossible Vision
  • Technical Stack
  • Manifesto
  • Writings

Follow the work

New systems and field notes, sent when they ship.

Communities

AI Builder's LabView membershipTeneo Publishing CollectiveView details
@TravisEric_Travis Eric@TravisericLive Builds@travis_eric
PrivacyTerms© 2026 Travis Eric
/
/
Back to writings
Skills and playbooks

autopilot-scout — find loops & goals to set

Travis EricSeptember 24, 20262 min read
Share this post:

autopilot-scout — find loops & goals to set

In my recent overnight build system review, I used the autopilot-scout tool to identify automation opportunities within our repository. The tool's purpose is to distinguish between recurring tasks and destination-driven tasks, providing paste-ready commands to help automate the right processes. This is essential for efficient continuous integration and delivery without unnecessary manual intervention.

Understanding /loop and /goal

The distinction between /loop and /goal is pivotal. The autopilot-scout defines /loop for recurring tasks that need regular attention, like CI babysitting or morning triage. These tasks are set with commands like /loop 10m <prompt>, which automatically execute at specified intervals. In contrast, /goal is for tasks with a clear endpoint, such as "all tests pass" or "build exits code 0". These tasks require a verifiable condition to be met, ensuring that the task is only completed when it meets this objective standard.

Building the Autonomy

To automate effectively, I started with the scan_autonomy.py script. It scans the repository for verifiable surfaces such as test, build, typecheck, and lint commands. The script produces autonomy.json, which ranks loop_candidates and goal_candidates with pre-written command strings. This method ensures that only tasks with clear, verifiable surfaces are automated, thus maintaining reliability and trust.

Qualifying Candidates

Once I had the candidates, I cross-referenced them with references/02-candidate-rubric.md, ensuring the cadence or verifiable surface matched the task's nature. For instance, if a task like "make tests pass" was identified as a goal, I ran the test_cmd to establish a baseline. This step is crucial because setting a goal is meaningful only if there is a current failure to address.

Proposing the Right Automation

Finally, I filled the assets/autonomy-report.template.md with a ranked shortlist of loop and goal candidates. This report provides a clear, actionable roadmap for automation. By focusing on tasks that genuinely need oversight or have a verifiable finish line, I ensure that our automated processes are both efficient and relevant.

Overall, autopilot-scout has proven indispensable in distinguishing between tasks that benefit from automation and those that do not. By setting clear criteria for looping and goal-setting, the tool helps maintain focus on meaningful automation, avoiding token wastage and ensuring trust in the system's autonomy.

Join Pattern Insights

Get weekly insights on AI architecture, pattern recognition, and building platforms without permission.

On this page

  • autopilot-scout — find loops & goals to set
  • Understanding /loop and /goal
  • Building the Autonomy
  • Qualifying Candidates
  • Proposing the Right Automation
Tags:
build-in-public

Read next

September 24, 2026

goal-finder — derive the goals a repo needs to finish

Last night, our build system ran the goal-finder tool on the Fleet Control Plane repo. The output was clear and actionable, which is exactly what I hoped for...

Read it

September 23, 2026

Restart Board

When I faced a 30-window reboot catastrophe, I realized I needed a system to remember exactly what I was doing and prioritize my next moves. That's when...

Read it

September 21, 2026

heart — write the room, then prove it, then remember what moved them

The process of crafting communication that resonates with others is documented in the .claude/heart/ directory, specifically in files like 03THEEIGHTRIGHTS.md...

Read it

Join the Discussion

Have thoughts on this post? I'd love to hear them! Join the conversation on X where we can discuss AI architecture, pattern recognition, and building platforms.

Discuss on X

Or reach out directly at @TravisEric_