autonomous-workflow

Automate GitHub ticket-to-draft-PR workflow with git worktrees and tests.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/zcawood-mie/agentz --skill autonomous-workflow
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: autonomous-workflow
Source: https://github.com/zcawood-mie/agentz/tree/main/skills/autonomous-workflow
Command: npx skills add https://github.com/zcawood-mie/agentz --skill autonomous-workflow

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill streamlines the full ticket-to-PR lifecycle by enabling an agent to autonomously ingest a GitHub issue, research context, plan work, implement changes in a worktree, run tests, and open a draft pull request without repeated user intervention.

Core Features & Use Cases

  • End-to-end automation: Ingest issue content, identify target repo and branch, and create a feature worktree for development.
  • Specialist-driven research: Delegate targeted research to codebase, docs, web, and GitHub specialists to gather necessary context before planning.
  • ** disciplined implementation and review**: Enforce incremental commits, run tests, perform self-review, and push a draft PR with a request for Copilot review.
  • Use Case: Given a GitHub issue URL, run the full autonomous pipeline to deliver a tested feature and a draft PR linking the ticket.

Quick Start

Ask the agent to implement the provided GitHub issue URL autonomously and produce a draft pull request with test verification.

Frequently Asked Questions about autonomous-workflow

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate ticket-to-PR workflows from a GitHub issue?

Automating ticket-to-PR workflows involves ingesting a GitHub issue URL to autonomously research context, implement changes in a git worktree, run tests, and open a draft pull request. This streamlines the full development lifecycle without repeated user intervention.

How does autonomous PR automation handle codebase research before implementation?

Autonomous PR automation handles research by delegating targeted investigations to codebase, documentation, web, and GitHub specialists. This gathered context enables the agent to plan work accurately before creating a feature branch and implementing changes.

What is the best way to use git worktree for autonomous feature branch implementation?

The best way to use git worktree for autonomous implementation is allowing an agent to ingest an issue, identify the target repository, and create an isolated worktree. This ensures incremental commits and disciplined testing before pushing a draft PR.

Do I need GitHub API integration to autonomously open a draft pull request?

Yes, GitHub API integration is required to autonomously open a draft pull request. It enables the agent to retrieve the original issue content, link the ticket, and submit the draft PR directly from the feature branch worktree.

Can I run tests automatically before creating a PR from a GitHub issue?

Yes, you can run tests automatically before creating a PR. The autonomous workflow enforces test execution using repository test runners after implementing changes, performing a self-review prior to pushing the draft pull request.

Why use a worktree for autonomous software engineering workflows instead of a standard branch?

Using a git worktree for autonomous workflows provides an isolated directory for the agent to implement changes, run tests, and perform self-reviews without disrupting the main working directory, ensuring clean incremental commits before opening a PR.