go-on

Assess workflow state, execute one step, and emit a status signal.

Updated May 24, 2025
One-click install
npx skills add https://github.com/lemeb/python-library-cookiecutter --skill go-on
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: go-on
Source: https://github.com/lemeb/python-library-cookiecutter/tree/main/%7B%7Bcookiecutter.project_slug%7D%7D/.claude/skills/go-on
Command: npx skills add https://github.com/lemeb/python-library-cookiecutter --skill go-on

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Assesses workflow state and executes one step, exiting with a signal to enable incremental progress through repeated invocations.

Core Features & Use Cases

  • Atomic: performs exactly one unit of work per invocation and emits a clear signal for the next step.
  • Headless-friendly: supports automated runs without user interaction, suitable for loop-based progress.
  • Tracker-aware: relies on an external tracker to persist specs, plans, and progress across invocations.
  • Use Case: Long-running feature development that requires stepping through tasks in small increments.

Quick Start

Invoke the go-on skill to assess the current workflow state, execute a single step, and exit with a status signal.

Frequently Asked Questions about go-on

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

FAQPage Schema
How do I automate workflow execution to complete tasks in small increments?▼

To automate workflow execution incrementally, you can invoke an automation skill repeatedly within a loop. It assesses the current workflow state, executes exactly one unit of work, and exits with a signal for the next step.

What is the best way to handle long-running feature development in small steps?▼

The best way to handle long-running feature development stepwise is to break it into atomic operations. A stepwise automation tool performs one unit of work per invocation and emits signals to track incremental progress until completion.

Do I need an external tracker to persist workflow specs and progress?▼

Yes, you need an external tracker to persist workflow specs and progress. This tracker-aware approach ensures that plans and state are maintained across multiple invocations during automated, loop-based progress.

How do orchestration signals work in an automated, headless workflow?▼

Orchestration signals work in an automated, headless workflow by emitting status updates after each atomic step. The automation tool exits with signals such as STEP_COMPLETE, AWAITING_APPROVAL, or FEATURE_COMPLETE to guide the loop.

Can I run stepwise workflow automation without user interaction?▼

Yes, you can run stepwise workflow automation without user interaction. This headless-friendly approach supports automated runs by executing a single step and exiting with a signal, allowing a loop to drive the entire feature.