Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Workflows Status

ASecurity

Check the status of running or recent SDLC delegated workflows.

41 stars
0 votes
0 copies
0 views
Added 9/19/2026
devopspythongobashsqlnodedockerapi

Works with

terminalcliapi

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add SteveGJones/ai-first-sdlc-practices --skill workflows-status --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Workflows Status?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Workflows Status
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/stevegjones-workflows-status/badge)](https://www.skillsdirectory.com/skills/stevegjones-workflows-status)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: workflows-status
description: Check the status of running or recent SDLC delegated workflows.
disable-model-invocation: false
argument-hint: "[--running | --recent N | <run-id>]"
---

# SDLC Workflow Status

Query Archon workflow runs — live + historical — without depending on
`archon` being on PATH.

## Arguments

- `--running` — show currently running workflows only
- `--recent N` — show the latest N runs (default 20)
- `<run-id>` — show full detail for a specific run, including every node
  event in order

## Steps

### 1. Query the Archon state

The `archon` CLI only exposes `archon workflow status` (active runs, no
run-id filter) and `archon workflow list` (available workflows, not runs).
Neither covers the ask. Use the query helper instead — it prefers the
REST API on `archon serve` (if running) and falls back to reading the
SQLite state DB at `~/.archon/archon.db`:

```bash
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/workflows_status_query.py \
    [--running | --recent <N> | --run-id <id>]
```

Additional flags:
- `--url <base>` — override the REST URL (default `http://localhost:3090`)
- `--no-rest` — skip the REST probe entirely, go straight to SQLite
- `--json` — machine-readable output (one JSON object per response)
- `--timeout <sec>` — REST probe timeout before falling back (default 1.0)

Behaviour matrix:

| `archon serve` running? | Output source |
|-------------------------|---------------|
| Yes | REST API — live + historical, richest |
| No  | SQLite read — historical + most-recent, read-only |

If neither is available (fresh machine, no Archon state yet), the script
returns `(no workflow runs found)` cleanly — this is not an error.

**Important — Archon UI clickthrough is degraded for CLI-launched runs.**
`archon serve` only renders the rich UI (DAG graph, conversation thread,
live events) for workflows *launched through the server*. Workflows
started by `/sdlc-workflows:workflows-run` use the CLI path — they write
to the same SQLite DB and show up in `archon workflow status` and in
this skill, but the web UI's per-run detail pages will render empty for
them. This is how Archon 1.x scopes the server — not a bug on our side.
For CLI-launched runs use this skill (REST or SQLite), the CLI's own
stderr stream, or `docker logs -f`.

**Prefix matching on `--run-id`:** the `--recent` table only prints
the first 8 characters of each id. The helper accepts any unique
prefix — no need to look up the full 32-char UUID. If two runs share
a prefix you will get an "ambiguous" error; paste more characters.

### 2. Present results

Default output is a table:

```
Source: rest  (archon serve)
RUN ID     WORKFLOW                       STATUS       STARTED              STEP
---------------------------------------------------------------------------------
bbdfce69   feature-pipeline               completed    2026-04-19 20:26:10
a1b2c3d4   parallel-review-pipeline       running      2026-04-19 20:30:02  2
```

Report to the user:
- The source row (REST vs SQLite) — if SQLite, hint that starting
  `archon serve` in another terminal gives live event data **and
  opens the Archon web UI at http://localhost:3090**, which
  visualises every run, every node, every event.
- The table as-is, or summarise the top 5 with bullet points if the
  user asked for a narrative.
- For `--run-id`, the detail block shows per-node `node_started` /
  `node_completed` / `node_failed` events in order — highlight any
  failures.
- If any listed run is `failed`, remind the user that
  `archon workflow run <name> --resume` picks up the most recent
  failed run from where it stopped.

### 3. Companion skills

- `/sdlc-workflows:workflows-run <name>` — launch a new workflow.
- Live per-node output during a run: the CLI streams every node's stderr to your terminal as `[node-name] <line>`. No extra helper needed.
- `docker ps --filter name=sdlc-worker` and `docker logs -f <container>` — the currently-running node containers behind any preprocessed workflow.

Attribution

SteveGJonesSteveGJones
View sourceMore from SteveGJones →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Terraform Module Library

Build reusable Terraform modules for AWS, Azure, and GCP infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, or implementing reusable IaC components.

393431 votes

sematext-otel

Wire a service's OpenTelemetry output to Sematext Cloud. Walks through region, App-type, instrumentation flow (managed OTLP endpoint vs Sematext Agent), and signal selection (traces/metrics/logs), then produces the exact env-var block and points at a runnable reference example in this repo. Invoke when instrumenting a new app for Sematext.

01 votes

Deployment Patterns

Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications. Use when setting up deployment infrastructure or planning releases.

2459130 votes

Babysit

Watch a pull request or review cycle until it is ready to merge. Use when asked to babysit, monitor, or keep checking PR comments, reviews, and CI until all actionable issues are resolved.

929660 votes

V7 Roster

Interact with the Paperclip control plane API for task coordination and governance. Use when checking assignments, updating issue status, posting comments, delegating work, managing routines, or calling Paperclip API endpoints.

798220 votes
View all in devops →