One-click install
npx skills add https://github.com/petekp/circuit-next --skill run-petekp
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: run
Source: https://github.com/petekp/circuit-next/tree/main/plugins/circuit/skills/run
Command: npx skills add https://github.com/petekp/circuit-next --skill run-petekp

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It helps users get the correct Circuit coding workflow automatically, even when the task description doesn’t clearly map to a specific flow upfront.

Core Features & Use Cases

  • Automatic flow selection: Chooses the best explicit flow (Fix, Review, Build, or Explore) based on the user’s natural-language request.
  • Safe, deterministic execution: Invokes the selected flow via the Circuit CLI using a shell-safe single-quote escaping strategy for the goal text.
  • Run-time observability and correct final surfacing: Renders progress events while the run is active and surfaces the operator summary markdown as the final answer.
  • Checkpoint and abort handling: Supports checkpoint-waiting resume behavior and surfaces abort reasons when runs stop.

Quick Start

Use this skill when you want Circuit to choose the best flow for your task by submitting your request exactly as written.

Frequently Asked Questions about run

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

FAQPage Schema
How do I route a coding request to the right workflow automatically?

Automatic coding request routing selects the correct flow for your task by evaluating your natural-language input against a rubric. It matches your prompt to the most appropriate Fix, Review, Build, or Explore workflow without requiring a manual mapping.

What is flow selection for code changes and debugging?

Flow selection for code changes is a rubric-based evaluation mechanism that categorizes your request into Fix, Review, Build, or Explore scenarios. This ensures the applied workflow matches the intent of your code audit or debugging investigation.

How do I execute feature implementation tasks via the Circuit CLI safely?

To execute feature implementation tasks safely, the system constructs a shell-safe single-quoted command for your goal text and invokes the selected flow via the Circuit CLI. Progress is rendered from jsonl events during the active run.

Does automated debugging support checkpoint resume behavior?

Yes, automated debugging supports checkpoint-waiting resume behavior for interrupted runs. It also surfaces abort reasons when runs stop unexpectedly, ensuring you can recover or understand why your code orchestration task halted.

What's the best way to summarize code review and investigation results?

The best way to summarize code review and investigation results is by surfacing the operator summary markdown path. This final output provides a comprehensive markdown summary of the completed flow, rendering real-time progress events before completion.