workflows-status

Identify Archon workflow run statuses via REST or local SQLite state.

41|6|Updated Jul 12, 2025
One-click install
npx skills add https://github.com/SteveGJones/ai-first-sdlc-practices --skill workflows-status
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: workflows-status
Source: https://github.com/SteveGJones/ai-first-sdlc-practices/tree/main/plugins/sdlc-workflows/skills/workflows-status
Command: npx skills add https://github.com/SteveGJones/ai-first-sdlc-practices --skill workflows-status

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Quickly determine the status of Archon workflow runs, including live executions and recent history, without requiring Archon to be on PATH.

Core Features & Use Cases

  • Retrieve current, running, and recent workflow runs via REST or local state to monitor SDLC health.
  • Provide per-run visibility with status, start time, and steps, enabling fast issue diagnosis.
  • Use cases include operator dashboards, audit trails for CI/CD pipelines, and developer debugging of workflows.

Quick Start

Use this skill to fetch the current and recent Archon workflow statuses.

Frequently Asked Questions about workflows-status

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

FAQPage Schema
How do I check the status of Archon workflow runs?

Check Archon workflow status by retrieving current, running, and recent runs via REST or by reading the local SQLite state, providing per-run visibility including start time and steps for fast issue diagnosis.

Can I query historical workflow statuses from a local SQLite database?

Yes, you can query historical workflow statuses by reading the local archon.db SQLite database directly, which provides comprehensive visibility into recent runs even when the Archon server is not actively running.

What filters are available for querying Archon SDLC workflow runs?

Available filters for querying Archon SDLC workflow runs include --running to show live executions, --recent N to limit the number of historical records, and --run-id to target a specific workflow run instance.

Do I need Archon on my PATH to monitor workflow run statuses?

No, you do not need Archon on your PATH to monitor workflow run statuses, as this approach retrieves current and recent runs via REST access or by reading the local SQLite state independently.

What is the default REST endpoint for retrieving Archon workflow status?

The default REST endpoint for retrieving Archon workflow status is http://localhost:3090, which allows you to fetch live and recent workflow runs directly from the running Archon server.

Why use SQLite state instead of REST for workflow status monitoring?

Use SQLite state instead of REST for workflow status monitoring when the Archon server is not running, as reading the local archon.db allows you to access historical run data and maintain audit trails without live server connectivity.