Red Hat · Arazzo Workflow

Red Hat Quay Audit Repository Tags

Version 1.0.0

Read a repository, list its tags, and pull the security report for the latest tag's manifest.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub CloudContainersEnterpriseHybrid CloudKubernetesLinuxOpen-SourceArazzoWorkflows

Provider

red-hat

Workflows

audit-repository-tags
Confirm a repository, list tags, and scan the most recent tag's manifest.
Gets a repository, lists its tags, and uses the first returned tag's manifest digest to retrieve a vulnerability report.
3 steps inputs: limit, namespace, repository, token outputs: latestTag, scanStatus
1
getRepository
Retrieve the repository to confirm it exists before enumerating its tags. The repository path is the namespace/name pair.
2
listTags
List the repository's tags, most recent first, and capture the manifest digest of the first returned tag.
3
scanManifest
Retrieve the security scan report, including detailed vulnerability information, for the latest tag's manifest.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Red Hat Quay Audit Repository Tags
  summary: Read a repository, list its tags, and pull the security report for the latest tag's manifest.
  description: >-
    A container security audit flow for Red Hat Quay. The workflow retrieves a
    repository, lists its tags, takes the manifest digest of the most recent
    tag, and fetches the manifest's security scan report including detected
    vulnerabilities. Each step inlines its bearer token, parameters, documented
    success criteria, and outputs so the audit can be executed directly against
    the Quay API.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-620.40
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-620.40
      capability_name: Vulnerability Management
      spec: red-hat-manifests-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: manifestsApi
  url: ../openapi/red-hat-manifests-api-openapi.yml
  type: openapi
- name: repositoriesApi
  url: ../openapi/red-hat-repositories-api-openapi.yml
  type: openapi
- name: repositoryApi
  url: ../openapi/red-hat-repository-api-openapi.yml
  type: openapi
workflows:
- workflowId: audit-repository-tags
  summary: Confirm a repository, list tags, and scan the most recent tag's manifest.
  description: >-
    Gets a repository, lists its tags, and uses the first returned tag's
    manifest digest to retrieve a vulnerability report.
  inputs:
    type: object
    required:
    - token
    - namespace
    - repository
    properties:
      token:
        type: string
        description: OAuth bearer token for the Quay API.
      namespace:
        type: string
        description: The organization or user namespace of the repository.
      repository:
        type: string
        description: The short name of the repository to audit.
      limit:
        type: integer
        description: The maximum number of tags to return per page.
  steps:
  - stepId: getRepository
    description: >-
      Retrieve the repository to confirm it exists before enumerating its tags.
      The repository path is the namespace/name pair.
    operationId: getRepository
    parameters:
    - name: repository
      in: path
      value: $inputs.namespace/$inputs.repository
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      isPublic: $response.body#/is_public
  - stepId: listTags
    description: >-
      List the repository's tags, most recent first, and capture the manifest
      digest of the first returned tag.
    operationId: listRepositoryTags
    parameters:
    - name: repository
      in: path
      value: $inputs.namespace/$inputs.repository
    - name: limit
      in: query
      value: $inputs.limit
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      latestTag: $response.body#/tags/0/name
      manifestDigest: $response.body#/tags/0/manifest_digest
    onSuccess:
    - name: hasTags
      type: goto
      stepId: scanManifest
      criteria:
      - context: $response.body
        condition: $.tags.length > 0
        type: jsonpath
    - name: noTags
      type: end
      criteria:
      - context: $response.body
        condition: $.tags.length == 0
        type: jsonpath
  - stepId: scanManifest
    description: >-
      Retrieve the security scan report, including detailed vulnerability
      information, for the latest tag's manifest.
    operationId: getManifestSecurity
    parameters:
    - name: repository
      in: path
      value: $inputs.namespace/$inputs.repository
    - name: manifestref
      in: path
      value: $steps.listTags.outputs.manifestDigest
    - name: vulnerabilities
      in: query
      value: true
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
      data: $response.body#/data
  outputs:
    latestTag: $steps.listTags.outputs.latestTag
    scanStatus: $steps.scanManifest.outputs.status

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/red-hat-quay-audit-repository-tags-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.