From zzaia-workspace
Execute a single BDD step via direct API call with New Relic diagnostics
npx claudepluginhub zzaia/zzaia-agentic-workspace --plugin zzaia-workspace--step <bdd-step> --environment <url> --application <new-relic-app> [--description <text>]commands/behavior/development/test/e2e/## PURPOSE Execute a single BDD step as a direct API call against a live URL, resolve or create the Postman request, collect New Relic diagnostics, and return a concise step report. ## EXECUTION 1. **Resolve Postman Request** - Call `/capability:postman:read --target request` to find existing request matching the step URL/method - If not found: Call `/capability:postman:create --target request --spec "<method + url + headers + body>"` 2. **Authentication** *(if required)* - Call `/behavior:workspace:ask-user-question --question "Authentication required. Please provide credent...
/SKILLGenerates CLAUDE.md project config file via interactive phases: detects environment and tools, collects developer profile, selects testing methodology and tech stack.
/SKILLCreates conventional git commit from conversation intent using git-agent and pushes to remote. Accepts optional Claude model name for co-author.
/SKILLResolves GitHub issue via isolated worktree, TDD workflow, and auto-closing PR creation.
/SKILLCreates a GitHub pull request with automated quality validation, security scanning, issue linking, and compliance checks. Accepts optional description or issue reference.
/SKILLStarts git-flow release: validates <version> semver, creates release/<version> branch, bumps version in project files, commits, and pushes to origin.
/SKILLReviews SwiftUI and Swift code for best practices, modern APIs, data flow, navigation, accessibility, performance. Outputs issues by file with before/after fixes and prioritized summary.
Execute a single BDD step as a direct API call against a live URL, resolve or create the Postman request, collect New Relic diagnostics, and return a concise step report.
Resolve Postman Request
/capability:postman:read --target request to find existing request matching the step URL/method/capability:postman:create --target request --spec "<method + url + headers + body>"Authentication (if required)
/behavior:workspace:ask-user-question --question "Authentication required. Please provide credentials, then confirm to continue"Execute Step
Collect Diagnostics
/behavior:devops:new-relic --action debug --application-name <application>Report Step Result
MANDATORY: Always invoke the agents defined in this command's frontmatter for their designated responsibilities. Never skip, replace, or simulate their behavior directly.
zzaia-tester-specialist — Execute API step and collect diagnosticszzaia-workspace-manager — Resolve and create Postman requestssequenceDiagram
participant C as behavior:development:test:e2e
participant PM as /capability:postman
participant TS as zzaia-tester-specialist
participant NR as /behavior:devops:new-relic
C->>PM: --action read --target request
PM-->>C: Existing or new request
C->>TS: Execute API call via Postman request
TS-->>C: Response (status, body, timing)
C->>NR: --action debug --application-name <application>
NR-->>C: Server-side logs and anomalies
C-->>C: Step report (pass/fail, timing, anomalies)
/behavior:development:test --type e2e --step "POST /orders with valid payload returns 201" --environment https://staging.myapp.com --application MyApp