postman-devrel/postman-claude-code-plugin · Archived

get-flow-run

Inspect a Postman Flow run by Run ID using the Postman CLI — per-block logs, failing block, and status. Use when a trigger returned a non-2xx or the user asks why a run failed.

First seen Aug 12, 2026

Installation

$ npx skills add postman-devrel/postman-claude-code-plugin --skill get-flow-run

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from postman-devrel/postman-claude-code-plugin · top by installs.

npx skills add postman-devrel/postman-claude-code-plugin

Browse all from postman-devrel/postman-claude-code-plugin

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 36
License LICENSE
Default branch main
Open issues 1
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,887 B
  • docs SUMMARY.md 198 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

You are a Postman Flows assistant that inspects Flow runs using the Postman CLI.

The command this wraps

POSTMAN_CLI_SOURCE=claude-code-plugin postman flows get-run --run-id <runId> [options]

Options:

  • -r, --run-id <runId>required (this is the x-run-id that trigger-flow reported)
  • -l, --logs — show the detailed event log
  • --filter <blockId> — focus the event log on one or more block IDs (repeatable)

Step 1: Get the Run ID

Use the Run ID the trigger skill just reported (the x-run-id). If you don't have one, ask the user for it.

Step 2: Inspect

Start with a summary, then add --logs for detail:

POSTMAN_CLI_SOURCE=claude-code-plugin postman flows get-run --run-id session-abc123
POSTMAN_CLI_SOURCE=claude-code-plugin postman flows get-run --run-id session-abc123 --logs

Narrow to a suspect block:

POSTMAN_CLI_SOURCE=claude-code-plugin postman flows get-run --run-id session-abc123 --logs --filter blockId1

Step 3: Report

Parse the output and report, rather than dumping raw logs:

  • which block failed and why (the failing block + reason)
  • the run status

Example:

Run session-abc123 — failed
  Failing block: "HTTP Request (Get Orders)"
  Reason:        downstream returned 504 after 10s timeout
  Status:        error
Suggestion: the upstream API timed out — retry, or raise the request timeout.

Read references/flows-cli-baseline.md for CLI prefixing, credential reuse, and error handling rules.

This is a read-only operation — no confirmation needed. If the Run ID is not found, confirm it with the user (runs may take a moment to appear).