Add Postman Flows CLI skills and slash commands - #16
Open
romulo-nascimento wants to merge 3 commits into
Open
Conversation
The Flows skills carried trailing spec-artifact identifiers (FR-*, SC-*) in their shipped instructions. Those IDs belong only in specs/, which is authored and committed separately, so strip them — the surrounding text already states each requirement in plain language. Also update CLAUDE.md, which was stale after the four Flows skills and commands were added: correct the command count (11 → 15) and skill count (7 → 11), and list the new flow commands under the CLI section.
romulo-nascimento
force-pushed
the
003-flow-skills
branch
from
July 24, 2026 18:09
21146fc to
5c9ad36
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds four Postman Flows capabilities to the Claude Code plugin, each shipped as a skill (
skills/*/SKILL.md) plus a matching slash command (commands/*.md):list-flows,trigger-flow,deploy-flow, andget-flow-run. Together theylet a user list flows, resolve a flow name to its ID, trigger a deployed flow from natural-language inputs, deploy an undeployed flow (with confirmation), and inspect a specific run's per-block detail — all by wrapping the Postman CLI.
Motivation and Context
Extends the plugin's Postman Flows coverage so users can manage the full run/deploy/inspect lifecycle from Claude Code. The skills share a common authoring baseline: every CLI call is prefixed with
POSTMAN_CLI_SOURCE=claude-code-pluginfor telemetry attribution, existingpostman logincredentials are reused (never a second auth), entitlements are never bypassed, and any mutating action (deploy, enable trigger) requires explicit user confirmation. The skills cross-reference one another (e.g.trigger-flowroutes tolist-flowsfor name resolution and offersdeploy-flowwhen a flow isn't deployed yet).Type of Change
Changes Made
list-flowsskill + command — list flows in a workspace and resolve a flow name to its 24-char ID; read-only, disambiguates multiple matches.trigger-flowskill + command — run a deployed flow from natural language, with deploy-then-trigger and enable-trigger fallbacks.deploy-flowskill + command — deploy a flow to make it triggerable, proposing a trigger path and confirming before the mutating deploy.get-flow-runskill + command — inspect a run by Run ID (per-block logs, failing block, status, credits when available); read-only.POSTMAN_CLI_SOURCEtelemetry prefix, credential reuse, entitlement passthrough, and confirm-before-mutate.