A

Knowledge Pack Files

Autonomous Agents Knowledge Pack Files

Browse the source files that power the Autonomous Agents MCP server knowledge pack.

Available free v1.0.0 Browser
$ sidebutton install agents
Download ZIP
ops/agent_qa_new_ticket.yaml
1.3 KB
schema_version: 1
id: agent_qa_new_ticket
title: "QA: Test Live Site (New Ticket)"
description: "Test the live site against ticket scope — no PR, tests production directly"
category:
  level: pipeline
  domain: engineering

metadata:
  agent: true
  role: qa

params:
  ticket_url:
    type: string
    description: "Jira ticket URL"
  hint:
    type: string
    default: ""
    description: "Optional extra instructions for the agent"
  entry_path:
    type: string
    default: "~/workspace"
    description: "Working directory for the agent"

steps:
  - type: terminal.open
    title: "Agent: QA Test Live"
    cwd: "{{entry_path}}"
  - type: terminal.run
    cmd: >-
      source ~/.agent-env && claude --dangerously-skip-permissions
      "read ticket with attachments - {{ticket_url}}. if it fails, stop and report the error.
      the description defines the scope — pages to test, features to verify, acceptance criteria.
      review any attachments (screenshots, mockups) for expected visual state.
      load skill packs for relevant modules.
      work through the scope systematically — navigate, collect evidence, verify behavior.
      {{hint}}
      write one comment to the ticket with: results table (scope item | PASS/FAIL | notes), bugs found (repro steps, expected vs actual, severity, URL), and overall verdict: PASS or FAIL."