github-azure-agentic-journeys: Skill for Claude Code

.github/skills/journey-test-harness/SKILL.md

journey-test-harness is a skill for Claude Code, Codex from DanWahlin/github-azure-agentic-journeys. It costs 109 tokens per session (1,758 once invoked), scanned A, original, MIT.

A test coordinator that runs several user journeys as one cross-platform test suite. A journey is a defined sequence of actions used to check that an application works.

In plain words
What is it for?
Use it for regression testing, continuous-integration checks, nightly test runs, and validating multiple deployed journeys on Windows, macOS, or Linux.
Why use it?
It avoids running each journey manually and brings deployment, verification, screenshots, cleanup, and results into one process.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is DanWahlin/github-azure-agentic-journeys's own configuration. It tells Claude Code and Codex how to work on github-azure-agentic-journeys itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything github-azure-agentic-journeys configures →

Reuse

Borrowing it

Nothing to install: this file belongs to DanWahlin/github-azure-agentic-journeys. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/DanWahlin/github-azure-agentic-journeys/main/.github/skills/journey-test-harness/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/DanWahlin/github-azure-agentic-journeys

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for journey-test-harness

README.md
[![agentmods](https://agentmods.dev/badge/skills/danwahlin/github-azure-agentic-journeys/journey-test-harness/github.svg)](https://agentmods.dev/skills/danwahlin/github-azure-agentic-journeys/journey-test-harness)
Your own site
<a href="https://agentmods.dev/skills/danwahlin/github-azure-agentic-journeys/journey-test-harness"><img src="https://agentmods.dev/badge/skills/danwahlin/github-azure-agentic-journeys/journey-test-harness/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for journey-test-harness

Your own site · 80×15
<a href="https://agentmods.dev/skills/danwahlin/github-azure-agentic-journeys/journey-test-harness"><img src="https://agentmods.dev/badge/skills/danwahlin/github-azure-agentic-journeys/journey-test-harness.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 109 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,758 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00109 $0.01758
Opus 5 $0.00055 $0.00879
Sonnet 5 $0.00022 $0.00352
Haiku 4.5 $0.00011 $0.00176

Measured 10d ago against content hash 79b99bdcde95, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

journey-test-harness scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.github/skills/journey-test-harness/SKILL.md · 199 lines

How it starts

The opening of the file, as written. The whole thing — 199 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Journey Test Harness

Orchestrate journey-runner across the selected journey directories. The harness must work on Windows, Mac, and Linux and must never delete an Azure environment merely because it appears in azd env list.

Inputs

  1. Journeys, default all
  2. Stack, default Node.js/TypeScript for multi-stack journeys
  3. Deploy, default true
  4. Location, default westus
  5. Concurrency, default 1; increase only when quota, local ports, and API limits allow it

Each deployed journey uses cleanup: after-verification unless the user explicitly requests otherwise.

Step 1: Discover Journeys

Use repository file-search APIs or Node.js fs.readdir() to find journeys/*/README.md. Do not use ls | sed, shell globs, or platform-specific path parsing.

For each journey, record:

  • Folder name and absolute source path
  • Journey type
  • PLAN.md presence
  • Required and optional tools from the journey prerequisite section
  • Estimated cost and time
  • Screenshot requirement

Filter only against the discovered folder names. Fail early for an unknown requested journey.

Step 2: Suite Preflight

Load journey-runner and run its cross-platform preflight before creating any workspace or Azure resource.

The union of selected-journey requirements may include:

  • Node.js LTS or later
  • Azure CLI and valid authentication
  • azd 1.28.0 or later with auth.useAzCliAuth=true
  • GitHub Copilot CLI
  • Node.js LTS or later for hooks, tests, and verifiers
  • Azure Functions Core Tools v4, Azurite, and Go-based sqlcmd for SmartTodo
  • The pinned Playwright package and bundled Chromium for web screenshots
  • Xcode 16+ only when SmartTodo iOS execution is requested on Mac

Use .github/skills/journey-runner/scripts/check-prerequisites.mjs with the union of required tools. Missing required tools stop the whole suite before provider registration. Do not install system tools during the suite.

Step 3: Azure Preparation

Check Azure CLI and azd authentication separately. Confirm the intended subscription and location.

Read the full file on GitHub · 199 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 199 lines · 109 tokens per session scan A 79b99bdcde95

Subscribe to this mod's changes

journey-test-harness is a skill published in the GitHub repository DanWahlin/github-azure-agentic-journeys (37 stars, last pushed 1mo ago), licensed MIT. It adds 109 tokens to every session and 1,758 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

e2e-testing-patterns

Master end-to-end testing with Playwright and Cypress to build reliable test suites that catch bugs, improve confidence, and enable fast deployment. Use when implementing E2E tests, debugging flaky tests, or establishing testing standards.

wshobson/agents · 51 tokens

browser-testing-with-screenshots

Use when testing web applications with visual verification - automates Chrome browser interactions, element selection, and screenshot capture for confirming UI functionality.

AgentWorkforce/relay · 32 tokens

browser-tdd

Browser-based visual TDD using Playwright — verify UI produces correct visual output, not just syntactic correctness.

andreibesleaga/GABBE · 25 tokens

screen-reader-testing

Test web applications with screen readers including VoiceOver, NVDA, and JAWS. Use when validating screen reader compatibility, debugging accessibility issues, or ensuring assistive technology support.

wshobson/agents · 39 tokens

playwright-cli

Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.

VoltAgent/voltagent · 52 tokens

azure-microsoft-playwright-testing-ts

Run Playwright tests at scale using Azure Playwright Workspaces (formerly Microsoft Playwright Testing). Use when scaling browser tests across cloud-hosted browsers, integrating with CI/CD pipelines, or publishing test results to the Azure portal.

microsoft/skills · 53 tokens