Skip to content
Novus Examples

Configuration file fixtures

TOML, INI, YAML, .env, and dotfile configuration samples with nested sections and typed values — for testing config parsers, loaders, and environment tooling.

181 of 181 files
Preview of Dockerfile (multi-stage)
dockerfile
419 B
Actual file preview for Dockerfile (multi-stage)

Dockerfile (multi-stage)

A sample multi-stage Dockerfile with a build stage and a slim runtime stage — for testing Dockerfile parsers, linters (hadolint), and syntax highlighting. Illustrative only.

File
DOCKERFILE · Config
Preview of Coverage — Gate Boundary at 80.00% (meets the gate exactly)
lcov
1.4 KB
Actual file preview for Coverage — Gate Boundary at 80.00% (meets the gate exactly)

Coverage — Gate Boundary at 80.00% (meets the gate exactly)

A tracefile sitting meets the gate exactly against the 80% minimum in this group's gate config: 112 of 140 lines, 80.00%. 80.00% is exactly the configured minimum, so a > comparison fails the build and a >= comparison passes it — the single most common off-by-one in a coverage gate.

File
LCOV · Coverage · 4 records
Use case
Conversion testingConfig testing+1· Conversion set
Preview of Test Plan — Release Plan for a SAMPLE Service (Markdown)
md
1.9 KB
Actual file preview for Test Plan — Release Plan for a SAMPLE Service (Markdown)

Test Plan — Release Plan for a SAMPLE Service (Markdown)

A complete release test plan for the fictional Novus Checkout Service — scope, test levels, entry and exit criteria, a risk table and deliverables. Useful as a Markdown-rendering fixture with three tables and nested lists, and as a realistic input for documentation tooling that has to extract structure from prose.

File
MD · Plans
Use case
Editor testingConversion testing+1· Conversion set
Preview of Gitignore - Node Monorepo With Re-Included Artefacts
gitignore
339 B
Actual file preview for Gitignore - Node Monorepo With Re-Included Artefacts

Gitignore - Node Monorepo With Re-Included Artefacts

A realistic monorepo ignore file that uses `dist/*` rather than `dist/` precisely so the two `!dist/...` re-inclusions below it can work. It also carries the `.env.*` / `!.env.example` and `*.log` / `!logs/retained/*.log` pairs that every ignore-matcher has to order correctly.

File
GITIGNORE · Repo Config · UTF-8
Preview of Gitignore - Negation After a Directory Exclusion (No Effect)
gitignore
194 B
Actual file preview for Gitignore - Negation After a Directory Exclusion (No Effect)

Gitignore - Negation After a Directory Exclusion (No Effect)

The single most misunderstood rule in the format: once `build/` excludes a directory, git does not descend into it, so `!build/keep.txt` is dead. The file is valid and the behaviour is documented — it is the author's expectation that is wrong, which is exactly why an ignore-matcher must reproduce it rather than being helpful.

File
GITIGNORE · Repo Config · UTF-8
Use case
Config parsingConfig testing+1· Paired fixture
Preview of Gitignore - The Working Form of the Same Negation
gitignore
197 B
Actual file preview for Gitignore - The Working Form of the Same Negation

Gitignore - The Working Form of the Same Negation

The corrected twin: `build/*` excludes the directory's contents instead of the directory, so git still descends and `!build/keep.txt` re-includes the file. The two fixtures differ by two characters and produce opposite results, which makes them a precise pass/fail pair for an ignore engine.

File
GITIGNORE · Repo Config · UTF-8
Use case
Config parsingConfig testing+1· Paired fixture
Preview of Gitignore - Globstar, Anchors and Character Classes
gitignore
431 B
Actual file preview for Gitignore - Globstar, Anchors and Character Classes

Gitignore - Globstar, Anchors and Character Classes

One pattern per rule in the gitignore grammar: a leading slash that anchors to the containing directory, the same name unanchored, `**` in all three positions, `?` and `[...]` classes, and a trailing slash that matches only directories. Every line is a separate assertion for a matcher's test suite.

File
GITIGNORE · Repo Config · UTF-8
Preview of Gitignore - Escaped #, !, Bracket and Trailing Space
gitignore
416 B
Actual file preview for Gitignore - Escaped #, !, Bracket and Trailing Space

Gitignore - Escaped #, !, Bracket and Trailing Space

Every escape the format defines, including the one nobody expects: a trailing space is stripped from a pattern unless it is backslash-escaped, so `draft\ ` and `draft` ignore different files. Editors that trim trailing whitespace on save silently change what this file means.

File
GITIGNORE · Repo Config · UTF-8
Preview of Gitattributes - End-of-Line Normalisation Rules
gitattributes
477 B
Actual file preview for Gitattributes - End-of-Line Normalisation Rules

Gitattributes - End-of-Line Normalisation Rules

The attribute file that decides what happens to line endings on checkout: `text=auto` as the default, explicit `eol=lf` and `eol=crlf` overrides, the `binary` macro that expands to `-text -diff`, and one `-text` entry that is still given a textconv driver. This is the file whose absence causes the CRLF twins elsewhere in this category.

File
GITATTRIBUTES · Repo Config · UTF-8
Preview of Gitattributes - LFS Filters, Linguist Hints and export-ignore
gitattributes
642 B
Actual file preview for Gitattributes - LFS Filters, Linguist Hints and export-ignore

Gitattributes - LFS Filters, Linguist Hints and export-ignore

The non-EOL half of the format: LFS filter/diff/merge triples, `linguist-generated` and `linguist-vendored` hints that hide files from language statistics and review, `export-ignore` entries that drop paths from `git archive`, and a `merge=union` driver for an append-only changelog. Attribute values are unquoted and space-separated, so column alignment is whitespace a parser must collapse.

File
GITATTRIBUTES · Repo Config · UTF-8
Preview of Gitconfig - Sections, Quoted Subsections and Shell Aliases
gitconfig
601 B
Actual file preview for Gitconfig - Sections, Quoted Subsections and Shell Aliases

Gitconfig - Sections, Quoted Subsections and Shell Aliases

A realistic global config exercising the whole INI-like grammar: bracketed sections, quoted subsection names that are case-sensitive while section names are not, values with size suffixes, a shell alias whose leading `!` changes how the rest is executed, and both comment characters.

File
GITCONFIG · Repo Config · UTF-8
Preview of Gitconfig - includeIf Conditions in Four Flavours
gitconfig
532 B
Actual file preview for Gitconfig - includeIf Conditions in Four Flavours

Gitconfig - includeIf Conditions in Four Flavours

Every conditional-include form git supports — path prefix, case-insensitive path prefix, branch glob, and a condition on an existing remote URL — plus one unconditional include. Order matters: a later include overrides an earlier one, so a parser that gathers includes into a set rather than a list resolves the wrong identity.

File
GITCONFIG · Repo Config · UTF-8
Preview of Gitmodules - Three Submodules With Relative URL and branch = .
gitmodules
407 B
Actual file preview for Gitmodules - Three Submodules With Relative URL and branch = .

Gitmodules - Three Submodules With Relative URL and branch = .

Three submodules covering the awkward values: a relative `../currency-tables.git` URL that has to be resolved against the superproject's remote, `branch = .` meaning 'the same branch as the superproject', and `ignore = dirty` which hides a submodule's local changes from `git status`. The section name and the `path` value are separate strings and are allowed to differ.

File
GITMODULES · Repo Config · UTF-8
Preview of CODEOWNERS - Overlapping Globs With Documented Winners
txt
724 B
Actual file preview for CODEOWNERS - Overlapping Globs With Documented Winners

CODEOWNERS - Overlapping Globs With Documented Winners

Deliberately overlapping rules so every interesting path matches two or three of them, which is the only way to test that a resolver applies last-match-wins rather than most-specific-wins. One rule has no owners at all, which clears inherited ownership instead of adding any.

File
TXT · Repo Config · UTF-8
Preview of Mailmap - All Four Rewrite Forms
txt
587 B
Actual file preview for Mailmap - All Four Rewrite Forms

Mailmap - All Four Rewrite Forms

One line for each of the four rewrite forms git's mailmap supports, including the two-pair form that matches on the commit name as well as the email. Four aliases collapse onto three canonical authors, which is exactly the transformation a shortlog or contributor report has to reproduce.

File
TXT · Repo Config · UTF-8
Preview of OTLP Trace — Head and Tail Sampling Attributes (json)
json
26.4 KB
Actual file preview for OTLP Trace — Head and Tail Sampling Attributes (json)

OTLP Trace — Head and Tail Sampling Attributes (json)

A trace annotated with the sampling decision that let it through — sampler type and ratio on every span, plus a sampling.priority override on the root. The fixture for testing that a tail-sampling processor reads the existing decision instead of re-deciding and splitting the trace.

File
JSON · Traces
Preview of Prometheus Textfile Collector — Batch Job Metrics (prom)
prom
793 B
Actual file preview for Prometheus Textfile Collector — Batch Job Metrics (prom)

Prometheus Textfile Collector — Batch Job Metrics (prom)

The file a cron job drops into the node_exporter textfile directory so a batch task can be monitored without a scrape endpoint: last-success timestamp, artefact size, duration and per-job exit codes, one of which is non-zero. The canonical shape for batch-job alerting.

File
PROM · Metrics
Use case
ObservabilityTime-series data+1· Conversion set
Preview of Prometheus Alerting Rules — Four Rules Across Two Groups (yaml)
yaml
2 KB
Actual file preview for Prometheus Alerting Rules — Four Rules Across Two Groups (yaml)

Prometheus Alerting Rules — Four Rules Across Two Groups (yaml)

Four alerting rules over two groups, using the YAML features that break naive config readers: block scalars for multi-line PromQL, folded scalars for descriptions, Go template annotations with pipes, and keep_firing_for. Every expression references metrics that exist in this category's fixtures.

File
YAML · Alerts
Use case
ObservabilityConfig parsing+1· Conversion set
Preview of Prometheus Alerting Rules — Intentionally Invalid, Five Distinct Faults (yaml)
yaml
966 B
Actual file preview for Prometheus Alerting Rules — Intentionally Invalid, Five Distinct Faults (yaml)

Prometheus Alerting Rules — Intentionally Invalid, Five Distinct Faults (yaml)

A rule file that is perfectly valid YAML and completely invalid as Prometheus rules: a rule that is both an alert and a recording rule, a PromQL syntax error, a duplicated group name, a rule with no expr and a duration written in prose. Intentionally invalid, with each fault labelled in place.

File
YAML · Alerts
Use case
ObservabilitySchema validation+1· Conversion set
Preview of Prometheus Scrape Config — Relabelling and Federation (yaml)
yaml
1.4 KB
Actual file preview for Prometheus Scrape Config — Relabelling and Federation (yaml)

Prometheus Scrape Config — Relabelling and Federation (yaml)

Three scrape jobs with the parts that actually matter: relabel_configs rewriting a target label with a capture group, metric_relabel_configs dropping the two unbounded labels from the cardinality fixture, honor_timestamps for the textfile collector and a federation job with a match[] selector.

File
YAML · Alerts
Preview of Alertmanager Config — Routing Tree, Inhibition and Mute Windows (yaml)
yaml
1.4 KB
Actual file preview for Alertmanager Config — Routing Tree, Inhibition and Mute Windows (yaml)

Alertmanager Config — Routing Tree, Inhibition and Mute Windows (yaml)

An Alertmanager configuration with the routing behaviour that is hard to reason about without a fixture: a continue: true branch so a critical alert reaches two receivers, an inhibition rule suppressing warnings under a matching critical, and a weekend mute window.

File
YAML · Alerts
Preview of OpenTelemetry Collector — Three-Signal Pipeline Configuration (yaml)
yaml
2.4 KB
Actual file preview for OpenTelemetry Collector — Three-Signal Pipeline Configuration (yaml)

OpenTelemetry Collector — Three-Signal Pipeline Configuration (yaml)

A Collector configuration wiring traces, metrics and logs through separate pipelines, with named component instances, a filelog receiver that parses the CRI log fixture, OTTL statements performing the semantic-convention migration from the paired trace fixtures, and a redaction processor.

File
YAML · Alerts
Use case
ObservabilityConfig parsing+1· Conversion set
Preview of OpenTelemetry Collector — Tail-Sampling Policies (yaml)
yaml
1.9 KB
Actual file preview for OpenTelemetry Collector — Tail-Sampling Policies (yaml)

OpenTelemetry Collector — Tail-Sampling Policies (yaml)

Six tail-sampling policies including an inverted regex match that drops health checks and a composite policy with its own rate limit and ordered sub-policies. Policies are OR-ed and one match keeps the entire trace, which is the semantic most people get backwards.

File
YAML · Alerts
Use case
ObservabilityConfig parsing+1· Conversion set
Preview of Dashboard JSON — Five-Panel Service Overview (json)
json
4.1 KB
Actual file preview for Dashboard JSON — Five-Panel Service Overview (json)

Dashboard JSON — Five-Panel Service Overview (json)

A dashboard document in the Grafana JSON model: five panels on the 24-column grid, each with a datasource reference by UID, a PromQL target and a unit. Three panels query the recording rules in this category, so the dashboard and the rule file can be validated against each other.

File
JSON · Alerts
Use case
ObservabilityJSON parsing+1· Conversion set
Preview of Dashboard JSON — Chained Template Variables (json)
json
3 KB
Actual file preview for Dashboard JSON — Chained Template Variables (json)

Dashboard JSON — Chained Template Variables (json)

A dashboard driven by four template variables, one of which queries using the value of another — the chained dependency that must be resolved in order. Multi-select variables interpolate as regex alternations, which is why every query here uses =~ rather than =.

File
JSON · Alerts
Use case
ObservabilityJSON parsing+1· Conversion set
Preview of Fluent Bit — Tail, Enrich and Forward Pipeline (conf)
conf
1.4 KB
Actual file preview for Fluent Bit — Tail, Enrich and Forward Pipeline (conf)

Fluent Bit — Tail, Enrich and Forward Pipeline (conf)

A Fluent Bit configuration in its INI-like section format: a tail input using the CRI multiline parser that reassembles the partial-line fixture, Kubernetes enrichment, a modify filter dropping two of the high-cardinality fields, and a throttle. Keys are space-aligned, not delimited.

File
CONF · Alerts
Use case
ObservabilityConfig parsing+1· Conversion set
Preview of Vector — Log Topology in TOML with Multi-Line Transforms (toml)
toml
1.3 KB
Actual file preview for Vector — Log Topology in TOML with Multi-Line Transforms (toml)

Vector — Log Topology in TOML with Multi-Line Transforms (toml)

A log-processing topology in TOML where components declare their inputs rather than an explicit graph, including a dropped-event route consumed as parse_json.dropped. The transform bodies are triple-quoted multi-line strings holding a different language, which is what breaks TOML tooling here.

File
TOML · Alerts
Use case
ObservabilityConfig parsing+1· Conversion set
Preview of Incident Runbook — Checkout Latency SLO Burn (md)
md
2 KB
Actual file preview for Incident Runbook — Checkout Latency SLO Burn (md)

Incident Runbook — Checkout Latency SLO Burn (md)

The runbook the alerting rules link to, written as a real one would be: confirm, localise, mitigate, close out, with a symptom table pointing at the trace and profile fixtures in this category. A realistic document for testing runbook linting, link checking and documentation pipelines.

File
MD · Alerts
Preview of Vulnerability Suppression Policy (YAML)
yaml
1.2 KB
Actual file preview for Vulnerability Suppression Policy (YAML)

Vulnerability Suppression Policy (YAML)

A suppression policy that gives every waiver an owner, a reason and an expiry date — the fields that stop a suppression file becoming a permanent blindfold. All four entries are SAMPLE. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
YAML · Vulnerability
Use case
Config parsingConfig testing+1· Conversion set
Preview of Severity Scoring and SLA Matrix (CSV)
csv
241 B
Actual file preview for Severity Scoring and SLA Matrix (CSV)

Severity Scoring and SLA Matrix (CSV)

A severity-band table mapping CVSS ranges to remediation SLAs and gate actions, with the finding count each band has in this fixture set — so a policy engine can be tested end to end. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
CSV · Vulnerability · 5 rows
Use case
CSV parsingConfig testing+1· Conversion set
Preview of in-toto Layout (Supply-Chain Policy)
json
2.4 KB
Actual file preview for in-toto Layout (Supply-Chain Policy)

in-toto Layout (Supply-Chain Policy)

The policy half of in-toto: a layout declaring which steps must run, which keys may sign them, and the MATCH/CREATE/DISALLOW artifact rules that bind each step's products to the next step's materials. Signatures, key ids and certificates here are SAMPLE placeholders — the base64 decodes to the words 'SAMPLE SIGNATURE', so verification must fail. Nothing here is cryptographically valid and no key material is real.

File
JSON · Provenance
Use case
JSON parsingConfig testing+1· Conversion set
Preview of Attestation Verification Policy (YAML)
yaml
849 B
Actual file preview for Attestation Verification Policy (YAML)

Attestation Verification Policy (YAML)

The policy an admission controller evaluates before an artifact is allowed through: required predicate types, an allowed-builder list, a minimum SLSA level, a transparency-log requirement and one dated exception. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
YAML · Provenance
Use case
Config parsingConfig testing+1· Conversion set
Preview of SLSA Build Level Matrix (CSV)
csv
283 B
Actual file preview for SLSA Build Level Matrix (CSV)

SLSA Build Level Matrix (CSV)

How the nine fictional dependencies distribute across SLSA build levels, with the policy outcome for each band — the table that turns the VSA's dependencyLevels object into something reviewable. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
CSV · Provenance · 4 rows
Use case
CSV parsingData import+1· Conversion set
Preview of GitHub Actions Node Matrix Workflow
yml
668 B
Actual file preview for GitHub Actions Node Matrix Workflow

GitHub Actions Node Matrix Workflow

A GitHub Actions CI workflow with a two-axis build matrix (three Node versions across two runners), an npm cache, and a conditional artifact upload. Six matrix combinations, so a workflow linter or matrix expander has a documented answer to check against.

File
YML · Github Actions
Preview of GitHub Actions Reusable Workflow (workflow_call)
yml
830 B
Actual file preview for GitHub Actions Reusable Workflow (workflow_call)

GitHub Actions Reusable Workflow (workflow_call)

The called half of a reusable-workflow pair: a workflow_call trigger with typed inputs, a default value, and a declared output wired to a job output. Pair it with the caller fixture to test cross-workflow input and output resolution.

File
YML · Github Actions
Preview of GitHub Actions Reusable Workflow Caller
yml
698 B
Actual file preview for GitHub Actions Reusable Workflow Caller

GitHub Actions Reusable Workflow Caller

The calling half of a reusable-workflow pair: a workflow_dispatch trigger with a choice input, two jobs that call the same reusable workflow with different arguments, and a third that consumes their outputs through needs.

File
YML · Github Actions
Preview of GitHub Actions Composite Action Definition
yml
671 B
Actual file preview for GitHub Actions Composite Action Definition

GitHub Actions Composite Action Definition

An action.yml-shaped composite action definition with typed inputs, a declared output bound to a step output, and a branding block. Distinct from a workflow file, and a common blind spot in workflow linters that only understand .github/workflows.

File
YML · Github Actions
Preview of GitHub Actions Deprecated Workflow Commands
yml
772 B
Actual file preview for GitHub Actions Deprecated Workflow Commands

GitHub Actions Deprecated Workflow Commands

A deprecated-syntax workflow: ::set-output, ::set-env and ::add-path markers, a retired runner label, and v2 action pins. Every construct here was removed from the runner, so an upgrade migrator can be scored on whether it rewrites all of them.

File
YML · Github Actions
Preview of GitHub Actions Over-Permissive Token (Policy Target)
yml
568 B
Actual file preview for GitHub Actions Over-Permissive Token (Policy Target)

GitHub Actions Over-Permissive Token (Policy Target)

A schema-valid workflow that should still be rejected on review: permissions: write-all at the workflow level plus three unused write scopes on the job. Nothing here is an exploit; it is the least-privilege finding a policy engine is supposed to raise.

File
YML · Github Actions
Preview of GitHub Actions Concurrency and Environment
yml
581 B
Actual file preview for GitHub Actions Concurrency and Environment

GitHub Actions Concurrency and Environment

A deployment workflow exercising the blocks that governance tools care about: a concurrency group with cancel-in-progress, paths-ignore filters, a named environment with a URL, and a job timeout. All hosts are example.invalid.

File
YML · Github Actions
Preview of GitHub Actions Expression and Function Coverage
yml
1 KB
Actual file preview for GitHub Actions Expression and Function Coverage

GitHub Actions Expression and Function Coverage

An expression-dense workflow: fromJSON-generated matrix axes, hashFiles cache keys, format and join calls, a folded multi-line if condition, and the && / || coalescing idiom that stands in for a ternary. For testing template resolvers before any schema check.

File
YML · Github Actions
Preview of GitHub Actions Matrix Include and Exclude
yml
768 B
Actual file preview for GitHub Actions Matrix Include and Exclude

GitHub Actions Matrix Include and Exclude

The matrix case that expanders get wrong: a 3x3 base grid, two exclude rules, and one include entry that adds a combination and an extra key. Nine minus two plus one is eight jobs, documented in the specs so an expansion can be scored exactly.

File
YML · Github Actions
Preview of GitHub Actions Scheduled Workflow with Dispatch Inputs
yml
577 B
Actual file preview for GitHub Actions Scheduled Workflow with Dispatch Inputs

GitHub Actions Scheduled Workflow with Dispatch Inputs

A scheduled workflow with two cron entries plus a manual workflow_dispatch trigger carrying a boolean and a choice input. For testing cron parsers, trigger extraction, and input-type handling in workflow tooling.

File
YML · Github Actions
Preview of GitLab CI Stages, Needs, and Artifacts
yml
632 B
Actual file preview for GitLab CI Stages, Needs, and Artifacts

GitLab CI Stages, Needs, and Artifacts

A three-stage GitLab CI pipeline with a default block, global variables, artifact expiry, a needs-based DAG, and a coverage-extraction regex. The baseline the other GitLab fixtures vary from.

File
YML · Gitlab Ci
Preview of GitLab CI Rules and Workflow Conditions
yml
643 B
Actual file preview for GitLab CI Rules and Workflow Conditions

GitLab CI Rules and Workflow Conditions

Rule-driven GitLab CI: a workflow block with four ordered conditions ending in `when: never`, plus job rules combining changes patterns, regex tag matching, a null-branch comparison, and a manual allow-failure fallback.

File
YML · Gitlab Ci
Preview of GitLab CI Include Resolution
yml
614 B
Actual file preview for GitLab CI Include Resolution

GitLab CI Include Resolution

Five include entries across the four include kinds — local path, local glob, another project at a pinned ref, a remote URL, and a bundled template. For testing include resolvers and dependency graphing without any file actually being fetched.

File
YML · Gitlab Ci
Preview of GitLab CI Parallel Matrix Expansion
yml
448 B
Actual file preview for GitLab CI Parallel Matrix Expansion

GitLab CI Parallel Matrix Expansion

Both GitLab parallelisation forms in one file: a plain `parallel: 4` shard split and a `parallel: matrix` block whose two entries expand to seven combinations. Eleven jobs in total, documented so an expander can be checked exactly.

File
YML · Gitlab Ci
Preview of GitLab CI Deprecated only/except Syntax
yml
492 B
Actual file preview for GitLab CI Deprecated only/except Syntax

GitLab CI Deprecated only/except Syntax

A deprecated-syntax GitLab CI file using `only`/`except` in both the array and keyed forms, plus the long-retired `type:` keyword. For scoring a migrator that must rewrite all of it to `rules` and `stage`.

File
YML · Gitlab Ci
Preview of GitLab CI Child and Downstream Triggers
yml
529 B
Actual file preview for GitLab CI Child and Downstream Triggers

GitLab CI Child and Downstream Triggers

Dynamic child pipelines and a cross-project downstream trigger: one job generates a pipeline file as an artifact and a trigger job includes it, while a second trigger job starts a downstream project's pipeline with strategy: depend.

File
YML · Gitlab Ci
Preview of CircleCI Config with Cache and Workspace
yml
925 B
Actual file preview for CircleCI Config with Cache and Workspace

CircleCI Config with Cache and Workspace

A CircleCI 2.1 config with a two-job workflow, a fallback cache-key list, workspace persistence between jobs, and a test-results store. The baseline the other CircleCI fixtures vary from.

File
YML · Circleci
Preview of CircleCI Orbs and Named Executors
yml
716 B
Actual file preview for CircleCI Orbs and Named Executors

CircleCI Orbs and Named Executors

CircleCI orbs and reusable named executors: two orb imports, two executors at different resource classes, an orb-provided step, and a branch filter combining an exact name with a regex.

File
YML · Circleci
Preview of CircleCI Reusable Commands and Parameters
yml
1 KB
Actual file preview for CircleCI Reusable Commands and Parameters

CircleCI Reusable Commands and Parameters

A reusable CircleCI command with string and boolean parameters, a conditional `when` step, and a job parameterised by an enum expanded through a workflow matrix. Exercises CircleCI's << >> template syntax, which is not YAML and not Jinja.

File
YML · Circleci
Preview of CircleCI Workflow Matrix with Exclude
yml
613 B
Actual file preview for CircleCI Workflow Matrix with Exclude

CircleCI Workflow Matrix with Exclude

A CircleCI workflow matrix across three operating systems and two Go versions with one exclusion, plus a tag filter regex. Six combinations minus one is five jobs, documented so an expansion can be scored exactly.

File
YML · Circleci
Preview of Azure Pipelines Steps and Triggers
yml
574 B
Actual file preview for Azure Pipelines Steps and Triggers

Azure Pipelines Steps and Triggers

The simplest Azure Pipelines shape: no stages or jobs, just a trigger with branch and path filters, a PR trigger, variables, and a flat step list mixing task and script steps. Baseline for the stage-based fixtures.

File
YML · Azure Pipelines
Preview of Azure Pipelines Stages and Deployment Job
yml
904 B
Actual file preview for Azure Pipelines Stages and Deployment Job

Azure Pipelines Stages and Deployment Job

A three-stage Azure Pipelines definition with a build-number format expression, a variable group reference, stage conditions built from the expression functions, and a deployment job using the runOnce strategy against a named environment.

File
YML · Azure Pipelines
Preview of Azure Pipelines Template Expressions and Parameters
yml
866 B
Actual file preview for Azure Pipelines Template Expressions and Parameters

Azure Pipelines Template Expressions and Parameters

Compile-time template expressions: an `${{ each }}` loop over an object parameter, an `${{ if }}` conditional insertion, an `extends` template, and a step template with arguments. These resolve before runtime, which template-aware linters must model.

File
YML · Azure Pipelines
Preview of Azure Pipelines Matrix Strategy
yml
721 B
Actual file preview for Azure Pipelines Matrix Strategy

Azure Pipelines Matrix Strategy

Azure's named-leg matrix form, where each leg is a mapping of variables rather than an axis product: three Python legs, a maxParallel cap, a job timeout, and a JUnit results publish step that runs on failure too.

File
YML · Azure Pipelines
Preview of Jenkinsfile, Declarative Pipeline
jenkinsfile
1.5 KB
Actual file preview for Jenkinsfile, Declarative Pipeline

Jenkinsfile, Declarative Pipeline

A declarative Jenkinsfile with a docker agent, options, environment and parameters blocks, a parallel test stage gated by a when expression, and post conditions. The dialect most Jenkins linters target.

File
JENKINSFILE · Jenkins
Preview of Jenkinsfile, Scripted Pipeline
jenkinsfile
833 B
Actual file preview for Jenkinsfile, Scripted Pipeline

Jenkinsfile, Scripted Pipeline

The scripted Jenkinsfile dialect: an imperative node block with Groovy variables, a for loop that builds a parallel branch map at runtime, and try/catch error collection. Structurally unlike the declarative form, and a common parser gap.

File
JENKINSFILE · Jenkins
Preview of Jenkinsfile Matrix with Excludes
jenkinsfile
1.1 KB
Actual file preview for Jenkinsfile Matrix with Excludes

Jenkinsfile Matrix with Excludes

A declarative Jenkins matrix over two axes with a nested excludes block: six platform/arch combinations minus the windows arm64 pair leaves five cells, documented in the specs so an expansion can be scored exactly.

File
JENKINSFILE · Jenkins
Preview of Jenkinsfile with Shared Library
jenkinsfile
898 B
Actual file preview for Jenkinsfile with Shared Library

Jenkinsfile with Shared Library

A Jenkinsfile importing a pinned shared library and calling three custom steps that no static parser can resolve locally. For testing how tooling reports unknown steps and whether it records the library dependency and its version pin.

File
JENKINSFILE · Jenkins
Preview of Kubernetes Multi-Document Manifest Bundle
yaml
1.6 KB
Actual file preview for Kubernetes Multi-Document Manifest Bundle

Kubernetes Multi-Document Manifest Bundle

Three Kubernetes objects in one YAML stream, the shape kubectl apply consumes. A loader that calls the single-document API returns only the first object and silently drops the other two, which is exactly the failure this fixture is for.

File
YAML · Kubernetes
Preview of Kubernetes StatefulSet with Volume Claim Templates
yaml
1 KB
Actual file preview for Kubernetes StatefulSet with Volume Claim Templates

Kubernetes StatefulSet with Volume Claim Templates

A StatefulSet with volumeClaimTemplates, an ordered pod-management policy, a partitioned rolling update, and a non-root pod security context. For testing manifest linters and admission policies that reason about storage and identity.

File
YAML · Kubernetes
Preview of Kubernetes CronJob Schedule and History Limits
yaml
733 B
Actual file preview for Kubernetes CronJob Schedule and History Limits

Kubernetes CronJob Schedule and History Limits

A CronJob with an explicit timeZone, Forbid concurrency, a starting deadline, and history limits on both success and failure. For testing cron parsing and the scheduling fields policy engines most often check.

File
YAML · Kubernetes
Preview of Kubernetes HorizontalPodAutoscaler (autoscaling/v2)
yaml
843 B
Actual file preview for Kubernetes HorizontalPodAutoscaler (autoscaling/v2)

Kubernetes HorizontalPodAutoscaler (autoscaling/v2)

An autoscaling/v2 HPA with both a Resource and a Pods metric, plus scaleUp and scaleDown behaviour policies. The v2 metric shape differs sharply from v1 and v2beta, which is what makes it a useful conversion fixture.

File
YAML · Kubernetes
Preview of Kubernetes NetworkPolicy with Ingress and Egress
yaml
798 B
Actual file preview for Kubernetes NetworkPolicy with Ingress and Egress

Kubernetes NetworkPolicy with Ingress and Egress

A NetworkPolicy with both policy types: an ingress rule combining namespace and pod selectors, and two egress rules, one of which uses an ipBlock with an except range. For testing policy engines that reason about allowed traffic.

File
YAML · Kubernetes
Preview of Kubernetes Namespace, ResourceQuota, and LimitRange
yaml
665 B
Actual file preview for Kubernetes Namespace, ResourceQuota, and LimitRange

Kubernetes Namespace, ResourceQuota, and LimitRange

A three-document governance bundle. Its real edge case is quantity handling: values like "8", 16Gi and 250m are Kubernetes quantity strings, and a parser that coerces the quoted ones to numbers or normalises the suffixed ones changes their meaning.

File
YAML · Kubernetes
Preview of Kubernetes Kustomization Overlay
yaml
718 B
Actual file preview for Kubernetes Kustomization Overlay

Kubernetes Kustomization Overlay

A Kustomize overlay with a name prefix and suffix, common labels, an image tag override, a configMapGenerator merge, and a JSON-6902 patch embedded as a block scalar — YAML inside YAML, which naive rewriters mangle.

File
YAML · Kubernetes
Preview of Kubernetes CustomResourceDefinition with OpenAPI Schema
yaml
1.5 KB
Actual file preview for Kubernetes CustomResourceDefinition with OpenAPI Schema

Kubernetes CustomResourceDefinition with OpenAPI Schema

A CustomResourceDefinition carrying a deep structural OpenAPI v3 schema with a regex pattern, an enum, a default, and array minItems. Useful both as a CRD fixture and as a nested JSON-Schema-in-YAML validation target.

File
YAML · Kubernetes
Preview of Helm Chart.yaml with Dependencies
yaml
712 B
Actual file preview for Helm Chart.yaml with Dependencies

Helm Chart.yaml with Dependencies

A Helm v2 Chart.yaml with two conditional subchart dependencies, semver range constraints, a kubeVersion constraint, maintainers and annotations. Every repository and URL is example.invalid, so nothing resolves anywhere real.

File
YAML · Helm
Use case
Config testingConfig parsing+1· Conversion set
Preview of Helm Default values.yaml
yaml
837 B
Actual file preview for Helm Default values.yaml

Helm Default values.yaml

The defaults half of a Helm values pair: nested maps, an empty map and an empty list, a list of env entries, and quoted booleans that must survive as strings. Pairs with the production overrides fixture for deep-merge testing.

File
YAML · Helm
Use case
Config testingConfig parsing+1· Conversion set
Preview of Helm Production values Overrides
yaml
632 B
Actual file preview for Helm Production values Overrides

Helm Production values Overrides

The overrides half of a Helm values pair, built to exercise all three merge behaviours at once: maps merge key by key, the env list replaces the defaults wholesale, and an explicit null deletes the inherited podAnnotations map.

File
YAML · Helm
Use case
Config testingConfig parsing+1· Conversion set
Preview of Helm values.schema.json
json
3 KB
Actual file preview for Helm values.schema.json

Helm values.schema.json

The values.schema.json that validates the paired Helm values files: a 2020-12 JSON Schema with $defs, $ref, enums, quantity patterns, and additionalProperties: false on nested objects. Validates the defaults and rejects a values file with an unknown image key.

File
JSON · Helm
Use case
Schema validationJSON parsing+1· Conversion set
Preview of Argo CD Application with Sync Policy
yaml
875 B
Actual file preview for Argo CD Application with Sync Policy

Argo CD Application with Sync Policy

An Argo CD Application with automated sync, prune and self-heal, retry backoff, sync options, and an ignoreDifferences rule that exempts replica counts from drift detection. All Git and cluster endpoints are example.invalid.

File
YAML · Argo Tekton
Preview of Argo CronWorkflow Schedule
yaml
481 B
Actual file preview for Argo CronWorkflow Schedule

Argo CronWorkflow Schedule

An Argo CronWorkflow wrapping an inline workflowSpec: a cron schedule with an explicit timezone, Replace concurrency, history limits, and a suspend flag. Nested-spec shape that flat schedule extractors miss.

File
YAML · Argo Tekton
Preview of Tekton Task with Params, Workspaces, and Results
yaml
838 B
Actual file preview for Tekton Task with Params, Workspaces, and Results

Tekton Task with Params, Workspaces, and Results

A Tekton Task declaring string and array params, a workspace, a result, and two steps that use Tekton's $(params.x) and $(workspaces.x.path) variable syntax, including the $(params.flags[*]) array expansion form.

File
YAML · Argo Tekton
Preview of Tekton Pipeline with when and finally
yaml
850 B
Actual file preview for Tekton Pipeline with when and finally

Tekton Pipeline with when and finally

A Tekton Pipeline chaining three tasks with runAfter, a when expression that consumes a prior task's result, and a finally task that runs regardless of outcome. The finally block is a common omission in Tekton graph extractors.

File
YAML · Argo Tekton
Preview of Tekton PipelineRun (Run Request)
yaml
755 B
Actual file preview for Tekton PipelineRun (Run Request)

Tekton PipelineRun (Run Request)

A Tekton PipelineRun as a run request: a pipelineRef, params, timeouts and a workspace binding, with no status block. A completed run's status is a record of what happened and belongs with test-report fixtures, not with pipeline definitions.

File
YAML · Argo Tekton
Preview of CWL CommandLineTool Definition
cwl
965 B
Actual file preview for CWL CommandLineTool Definition

CWL CommandLineTool Definition

A CWL v1.2 CommandLineTool with typed inputs, positional and prefixed bindings, a JavaScript outputEval expression, resource requirements, a Docker hint, and an IANA $namespaces block. Inert: it describes an invocation and runs nothing.

File
CWL · Cwl
Preview of Terraform Required Providers and Backend
tf
665 B
Actual file preview for Terraform Required Providers and Backend

Terraform Required Providers and Backend

The terraform settings block: a version constraint range, two pinned providers, a local backend, default tags, and a second aliased provider configuration. The fictional examplecloud provider means nothing resolves to a real service.

File
TF · Terraform
Preview of Terraform Variables with Validation Blocks
tf
1.4 KB
Actual file preview for Terraform Variables with Validation Blocks

Terraform Variables with Validation Blocks

Seven Terraform variables covering string, number, map and a map(object) with an optional attribute and a default, plus two validation blocks with error messages. The sensitive variable's default is explicitly a SAMPLE note, not a credential.

File
TF · Terraform
Preview of Terraform Resources with count and for_each
tf
1.1 KB
Actual file preview for Terraform Resources with count and for_each

Terraform Resources with count and for_each

The resource graph: a network, a for_each subnet set, a counted instance resource, a data source, and a bucket on an aliased provider. Both repetition meta-arguments appear, plus lifecycle and an explicit depends_on edge.

File
TF · Terraform
Preview of Terraform Locals, for Expressions, and dynamic Blocks
tf
1.1 KB
Actual file preview for Terraform Locals, for Expressions, and dynamic Blocks

Terraform Locals, for Expressions, and dynamic Blocks

The expression-heavy half of the stack: for expressions producing both a map and a filtered list, conditional expressions selecting whole objects, and a dynamic block that generates two firewall rules from a local list.

File
TF · Terraform
Preview of Terraform Module Calls with Meta-Arguments
tf
629 B
Actual file preview for Terraform Module Calls with Meta-Arguments

Terraform Module Calls with Meta-Arguments

Three module calls covering the shapes a dependency grapher has to handle: a local path with explicit provider passing, a versioned registry source under for_each, and a count-gated conditional module.

File
TF · Terraform
Preview of Terraform Outputs and Splat Expressions
tf
734 B
Actual file preview for Terraform Outputs and Splat Expressions

Terraform Outputs and Splat Expressions

Five Terraform outputs exercising a splat expression over a counted resource, a for expression over a for_each module, and a sensitive output that must stay redacted when propagated from a sensitive input.

File
TF · Terraform
Preview of Terraform Default terraform.tfvars
tfvars
405 B
Actual file preview for Terraform Default terraform.tfvars

Terraform Default terraform.tfvars

A terraform.tfvars assigning the staging defaults, including a nested map-of-objects value. Pairs with the production overrides file, which replaces that map wholesale rather than merging into it.

File
TFVARS · Terraform
Preview of Terraform Production tfvars Overrides
tfvars
506 B
Actual file preview for Terraform Production tfvars Overrides

Terraform Production tfvars Overrides

The production tfvars overrides. Its point is a semantic that surprises people: a complex-typed variable is replaced whole, not deep-merged, so the staging app-b subnet does not survive the override.

File
TFVARS · Terraform
Preview of Terraform Plan JSON
json
4.3 KB
Actual file preview for Terraform Plan JSON

Terraform Plan JSON

A Terraform plan JSON document with create, update and delete changes, after_unknown markers, sensitivity annotations, and a configuration section. This is the artifact policy engines read before anything runs, which is why it sits with pipeline definitions rather than with run reports.

File
JSON · Terraform
Preview of HCL2 Image Build Definition
hcl
1.2 KB
Actual file preview for HCL2 Image Build Definition

HCL2 Image Build Definition

A generic HCL2 image-build definition exercising the grammar rather than any vendor schema: labelled blocks, a list variable, locals, an indent-stripping heredoc with an interpolation inside it, and a for expression producing a list.

File
HCL · Hcl
Preview of HCL2 Orchestrator Job Definition
hcl
1.2 KB
Actual file preview for HCL2 Orchestrator Job Definition

HCL2 Orchestrator Job Definition

A deeply nested HCL2 job definition — job, group, task, service, check — with duration strings, a port mapping, and restart and update policies. Four levels of block nesting, which is where hand-rolled HCL readers usually break.

File
HCL · Hcl
Preview of HCL2 Policy Document
hcl
1.2 KB
Actual file preview for HCL2 Policy Document

HCL2 Policy Document

A generic HCL2 policy document with three severity-graded rules, condition blocks using all_of / none_of / one_of, and a dated exemption. Grants nothing to anything; it exists so policy tooling has a realistic document to read.

File
HCL · Hcl
Preview of Docker Compose Specification (No version Key)
yaml
1.3 KB
Actual file preview for Docker Compose Specification (No version Key)

Docker Compose Specification (No version Key)

A Compose Specification file with no top-level version key, condition-based depends_on, healthchecks, and a deploy resource limit. Parsers written against the older schema often require the version key, which is exactly what this fixture separates.

File
YAML · Docker
Preview of Docker Compose Profiles
yaml
601 B
Actual file preview for Docker Compose Profiles

Docker Compose Profiles

Five Compose services across three profiles, one of which belongs to two profiles at once. Services with no profiles key always start; the rest are opt-in, which is the selection logic this fixture exists to test.

File
YAML · Docker
Preview of Audio Workflow 01 — Prompt Plan
yaml
357 B
Actual file preview for Audio Workflow 01 — Prompt Plan

Audio Workflow 01 — Prompt Plan

Vendor-neutral YAML plan for podcast trailer kit 01, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-01-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 02 — Prompt Plan
yaml
363 B
Actual file preview for Audio Workflow 02 — Prompt Plan

Audio Workflow 02 — Prompt Plan

Vendor-neutral YAML plan for product demonstration kit 02, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-02-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 03 — Prompt Plan
yaml
359 B
Actual file preview for Audio Workflow 03 — Prompt Plan

Audio Workflow 03 — Prompt Plan

Vendor-neutral YAML plan for software tutorial kit 03, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-03-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 04 — Prompt Plan
yaml
359 B
Actual file preview for Audio Workflow 04 — Prompt Plan

Audio Workflow 04 — Prompt Plan

Vendor-neutral YAML plan for short documentary kit 04, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-04-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 05 — Prompt Plan
yaml
360 B
Actual file preview for Audio Workflow 05 — Prompt Plan

Audio Workflow 05 — Prompt Plan

Vendor-neutral YAML plan for recipe walkthrough kit 05, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-05-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 06 — Prompt Plan
yaml
358 B
Actual file preview for Audio Workflow 06 — Prompt Plan

Audio Workflow 06 — Prompt Plan

Vendor-neutral YAML plan for studio interview kit 06, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-06-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 07 — Prompt Plan
yaml
353 B
Actual file preview for Audio Workflow 07 — Prompt Plan

Audio Workflow 07 — Prompt Plan

Vendor-neutral YAML plan for event recap kit 07, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-07-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 08 — Prompt Plan
yaml
355 B
Actual file preview for Audio Workflow 08 — Prompt Plan

Audio Workflow 08 — Prompt Plan

Vendor-neutral YAML plan for course lesson kit 08, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-08-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 09 — Prompt Plan
yaml
356 B
Actual file preview for Audio Workflow 09 — Prompt Plan

Audio Workflow 09 — Prompt Plan

Vendor-neutral YAML plan for portfolio reel kit 09, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-09-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 10 — Prompt Plan
yaml
358 B
Actual file preview for Audio Workflow 10 — Prompt Plan

Audio Workflow 10 — Prompt Plan

Vendor-neutral YAML plan for non-profit story kit 10, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-10-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 11 — Prompt Plan
yaml
365 B
Actual file preview for Audio Workflow 11 — Prompt Plan

Audio Workflow 11 — Prompt Plan

Vendor-neutral YAML plan for independent game teaser kit 11, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-11-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 12 — Prompt Plan
yaml
357 B
Actual file preview for Audio Workflow 12 — Prompt Plan

Audio Workflow 12 — Prompt Plan

Vendor-neutral YAML plan for maker build log kit 12, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-12-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 13 — Prompt Plan
yaml
359 B
Actual file preview for Audio Workflow 13 — Prompt Plan

Audio Workflow 13 — Prompt Plan

Vendor-neutral YAML plan for travel field note kit 13, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-13-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 14 — Prompt Plan
yaml
361 B
Actual file preview for Audio Workflow 14 — Prompt Plan

Audio Workflow 14 — Prompt Plan

Vendor-neutral YAML plan for fitness instruction kit 14, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-14-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 15 — Prompt Plan
yaml
353 B
Actual file preview for Audio Workflow 15 — Prompt Plan

Audio Workflow 15 — Prompt Plan

Vendor-neutral YAML plan for book launch kit 15, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-15-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 16 — Prompt Plan
yaml
358 B
Actual file preview for Audio Workflow 16 — Prompt Plan

Audio Workflow 16 — Prompt Plan

Vendor-neutral YAML plan for community update kit 16, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-16-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 17 — Prompt Plan
yaml
359 B
Actual file preview for Audio Workflow 17 — Prompt Plan

Audio Workflow 17 — Prompt Plan

Vendor-neutral YAML plan for science explainer kit 17, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-17-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 18 — Prompt Plan
yaml
355 B
Actual file preview for Audio Workflow 18 — Prompt Plan

Audio Workflow 18 — Prompt Plan

Vendor-neutral YAML plan for music session kit 18, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-18-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 19 — Prompt Plan
yaml
361 B
Actual file preview for Audio Workflow 19 — Prompt Plan

Audio Workflow 19 — Prompt Plan

Vendor-neutral YAML plan for customer case study kit 19, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-19-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 20 — Prompt Plan
yaml
367 B
Actual file preview for Audio Workflow 20 — Prompt Plan

Audio Workflow 20 — Prompt Plan

Vendor-neutral YAML plan for behind-the-scenes feature kit 20, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-20-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 21 — Prompt Plan
yaml
358 B
Actual file preview for Audio Workflow 21 — Prompt Plan

Audio Workflow 21 — Prompt Plan

Vendor-neutral YAML plan for local news brief kit 21, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-21-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 22 — Prompt Plan
yaml
357 B
Actual file preview for Audio Workflow 22 — Prompt Plan

Audio Workflow 22 — Prompt Plan

Vendor-neutral YAML plan for design critique kit 22, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-22-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 23 — Prompt Plan
yaml
360 B
Actual file preview for Audio Workflow 23 — Prompt Plan

Audio Workflow 23 — Prompt Plan

Vendor-neutral YAML plan for fundraising appeal kit 23, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-23-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 24 — Prompt Plan
yaml
360 B
Actual file preview for Audio Workflow 24 — Prompt Plan

Audio Workflow 24 — Prompt Plan

Vendor-neutral YAML plan for museum audio guide kit 24, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-24-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Workflow 25 — Prompt Plan
yaml
362 B
Actual file preview for Audio Workflow 25 — Prompt Plan

Audio Workflow 25 — Prompt Plan

Vendor-neutral YAML plan for conference highlight kit 25, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-audio-kit-25-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 01 — Prompt Plan
yaml
357 B
Actual file preview for Video Workflow 01 — Prompt Plan

Video Workflow 01 — Prompt Plan

Vendor-neutral YAML plan for podcast trailer kit 01, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-01-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 02 — Prompt Plan
yaml
363 B
Actual file preview for Video Workflow 02 — Prompt Plan

Video Workflow 02 — Prompt Plan

Vendor-neutral YAML plan for product demonstration kit 02, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-02-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 03 — Prompt Plan
yaml
359 B
Actual file preview for Video Workflow 03 — Prompt Plan

Video Workflow 03 — Prompt Plan

Vendor-neutral YAML plan for software tutorial kit 03, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-03-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 04 — Prompt Plan
yaml
359 B
Actual file preview for Video Workflow 04 — Prompt Plan

Video Workflow 04 — Prompt Plan

Vendor-neutral YAML plan for short documentary kit 04, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-04-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 05 — Prompt Plan
yaml
360 B
Actual file preview for Video Workflow 05 — Prompt Plan

Video Workflow 05 — Prompt Plan

Vendor-neutral YAML plan for recipe walkthrough kit 05, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-05-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 06 — Prompt Plan
yaml
358 B
Actual file preview for Video Workflow 06 — Prompt Plan

Video Workflow 06 — Prompt Plan

Vendor-neutral YAML plan for studio interview kit 06, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-06-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 07 — Prompt Plan
yaml
353 B
Actual file preview for Video Workflow 07 — Prompt Plan

Video Workflow 07 — Prompt Plan

Vendor-neutral YAML plan for event recap kit 07, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-07-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 08 — Prompt Plan
yaml
355 B
Actual file preview for Video Workflow 08 — Prompt Plan

Video Workflow 08 — Prompt Plan

Vendor-neutral YAML plan for course lesson kit 08, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-08-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 09 — Prompt Plan
yaml
356 B
Actual file preview for Video Workflow 09 — Prompt Plan

Video Workflow 09 — Prompt Plan

Vendor-neutral YAML plan for portfolio reel kit 09, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-09-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 10 — Prompt Plan
yaml
358 B
Actual file preview for Video Workflow 10 — Prompt Plan

Video Workflow 10 — Prompt Plan

Vendor-neutral YAML plan for non-profit story kit 10, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-10-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 11 — Prompt Plan
yaml
365 B
Actual file preview for Video Workflow 11 — Prompt Plan

Video Workflow 11 — Prompt Plan

Vendor-neutral YAML plan for independent game teaser kit 11, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-11-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 12 — Prompt Plan
yaml
357 B
Actual file preview for Video Workflow 12 — Prompt Plan

Video Workflow 12 — Prompt Plan

Vendor-neutral YAML plan for maker build log kit 12, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-12-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 13 — Prompt Plan
yaml
359 B
Actual file preview for Video Workflow 13 — Prompt Plan

Video Workflow 13 — Prompt Plan

Vendor-neutral YAML plan for travel field note kit 13, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-13-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 14 — Prompt Plan
yaml
361 B
Actual file preview for Video Workflow 14 — Prompt Plan

Video Workflow 14 — Prompt Plan

Vendor-neutral YAML plan for fitness instruction kit 14, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-14-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 15 — Prompt Plan
yaml
353 B
Actual file preview for Video Workflow 15 — Prompt Plan

Video Workflow 15 — Prompt Plan

Vendor-neutral YAML plan for book launch kit 15, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-15-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 16 — Prompt Plan
yaml
358 B
Actual file preview for Video Workflow 16 — Prompt Plan

Video Workflow 16 — Prompt Plan

Vendor-neutral YAML plan for community update kit 16, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-16-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 17 — Prompt Plan
yaml
359 B
Actual file preview for Video Workflow 17 — Prompt Plan

Video Workflow 17 — Prompt Plan

Vendor-neutral YAML plan for science explainer kit 17, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-17-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 18 — Prompt Plan
yaml
355 B
Actual file preview for Video Workflow 18 — Prompt Plan

Video Workflow 18 — Prompt Plan

Vendor-neutral YAML plan for music session kit 18, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-18-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 19 — Prompt Plan
yaml
361 B
Actual file preview for Video Workflow 19 — Prompt Plan

Video Workflow 19 — Prompt Plan

Vendor-neutral YAML plan for customer case study kit 19, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-19-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 20 — Prompt Plan
yaml
367 B
Actual file preview for Video Workflow 20 — Prompt Plan

Video Workflow 20 — Prompt Plan

Vendor-neutral YAML plan for behind-the-scenes feature kit 20, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-20-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 21 — Prompt Plan
yaml
358 B
Actual file preview for Video Workflow 21 — Prompt Plan

Video Workflow 21 — Prompt Plan

Vendor-neutral YAML plan for local news brief kit 21, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-21-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 22 — Prompt Plan
yaml
357 B
Actual file preview for Video Workflow 22 — Prompt Plan

Video Workflow 22 — Prompt Plan

Vendor-neutral YAML plan for design critique kit 22, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-22-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 23 — Prompt Plan
yaml
360 B
Actual file preview for Video Workflow 23 — Prompt Plan

Video Workflow 23 — Prompt Plan

Vendor-neutral YAML plan for fundraising appeal kit 23, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-23-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 24 — Prompt Plan
yaml
360 B
Actual file preview for Video Workflow 24 — Prompt Plan

Video Workflow 24 — Prompt Plan

Vendor-neutral YAML plan for museum audio guide kit 24, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-24-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Video Workflow 25 — Prompt Plan
yaml
362 B
Actual file preview for Video Workflow 25 — Prompt Plan

Video Workflow 25 — Prompt Plan

Vendor-neutral YAML plan for conference highlight kit 25, with four stable actions and three machine-checkable local-execution conditions. Stable P8 artifact p8-video-kit-25-prompt-plan.

File
YAML · Workflow Kits
Use case
Prompt engineeringAgent workflows+1· Workflow kit
Preview of Audio Edit Metadata JSON 01
json
150 B
Actual file preview for Audio Edit Metadata JSON 01

Audio Edit Metadata JSON 01

JSON edit metadata fixture 01 with three millisecond offsets, an explicit crossfade, and a preserve-channel policy. Stable P8 artifact p8-audio-edge-json-01.

File
JSON · Editing Metadata Edge
Preview of Audio Edit Metadata JSON 02
json
150 B
Actual file preview for Audio Edit Metadata JSON 02

Audio Edit Metadata JSON 02

JSON edit metadata fixture 02 with three millisecond offsets, an explicit crossfade, and a preserve-channel policy. Stable P8 artifact p8-audio-edge-json-02.

File
JSON · Editing Metadata Edge
Preview of Audio Edit Metadata JSON 03
json
150 B
Actual file preview for Audio Edit Metadata JSON 03

Audio Edit Metadata JSON 03

JSON edit metadata fixture 03 with three millisecond offsets, an explicit crossfade, and a preserve-channel policy. Stable P8 artifact p8-audio-edge-json-03.

File
JSON · Editing Metadata Edge
Preview of Audio Edit Metadata JSON 04
json
150 B
Actual file preview for Audio Edit Metadata JSON 04

Audio Edit Metadata JSON 04

JSON edit metadata fixture 04 with three millisecond offsets, an explicit crossfade, and a preserve-channel policy. Stable P8 artifact p8-audio-edge-json-04.

File
JSON · Editing Metadata Edge
Preview of Audio Edit Metadata JSON 05
json
150 B
Actual file preview for Audio Edit Metadata JSON 05

Audio Edit Metadata JSON 05

JSON edit metadata fixture 05 with three millisecond offsets, an explicit crossfade, and a preserve-channel policy. Stable P8 artifact p8-audio-edge-json-05.

File
JSON · Editing Metadata Edge
Preview of Audio Edit Metadata TXT 01
txt
103 B
Actual file preview for Audio Edit Metadata TXT 01

Audio Edit Metadata TXT 01

TXT edit metadata fixture 01 with three millisecond offsets, an explicit crossfade, and a preserve-channel policy. Stable P8 artifact p8-audio-edge-txt-01.

File
TXT · Editing Metadata Edge
Preview of Audio Edit Metadata TXT 02
txt
103 B
Actual file preview for Audio Edit Metadata TXT 02

Audio Edit Metadata TXT 02

TXT edit metadata fixture 02 with three millisecond offsets, an explicit crossfade, and a preserve-channel policy. Stable P8 artifact p8-audio-edge-txt-02.

File
TXT · Editing Metadata Edge
Preview of Audio Edit Metadata TXT 03
txt
103 B
Actual file preview for Audio Edit Metadata TXT 03

Audio Edit Metadata TXT 03

TXT edit metadata fixture 03 with three millisecond offsets, an explicit crossfade, and a preserve-channel policy. Stable P8 artifact p8-audio-edge-txt-03.

File
TXT · Editing Metadata Edge
Preview of Audio Edit Metadata TXT 04
txt
103 B
Actual file preview for Audio Edit Metadata TXT 04

Audio Edit Metadata TXT 04

TXT edit metadata fixture 04 with three millisecond offsets, an explicit crossfade, and a preserve-channel policy. Stable P8 artifact p8-audio-edge-txt-04.

File
TXT · Editing Metadata Edge
Preview of Audio Edit Metadata TXT 05
txt
103 B
Actual file preview for Audio Edit Metadata TXT 05

Audio Edit Metadata TXT 05

TXT edit metadata fixture 05 with three millisecond offsets, an explicit crossfade, and a preserve-channel policy. Stable P8 artifact p8-audio-edge-txt-05.

File
TXT · Editing Metadata Edge
Preview of Audio Edit Metadata YAML 01
yaml
112 B
Actual file preview for Audio Edit Metadata YAML 01

Audio Edit Metadata YAML 01

YAML edit metadata fixture 01 with three millisecond offsets, an explicit crossfade, and a preserve-channel policy. Stable P8 artifact p8-audio-edge-yaml-01.

File
YAML · Editing Metadata Edge
Preview of Audio Edit Metadata YAML 02
yaml
112 B
Actual file preview for Audio Edit Metadata YAML 02

Audio Edit Metadata YAML 02

YAML edit metadata fixture 02 with three millisecond offsets, an explicit crossfade, and a preserve-channel policy. Stable P8 artifact p8-audio-edge-yaml-02.

File
YAML · Editing Metadata Edge
Preview of Audio Edit Metadata YAML 03
yaml
112 B
Actual file preview for Audio Edit Metadata YAML 03

Audio Edit Metadata YAML 03

YAML edit metadata fixture 03 with three millisecond offsets, an explicit crossfade, and a preserve-channel policy. Stable P8 artifact p8-audio-edge-yaml-03.

File
YAML · Editing Metadata Edge
Preview of Audio Edit Metadata YAML 04
yaml
112 B
Actual file preview for Audio Edit Metadata YAML 04

Audio Edit Metadata YAML 04

YAML edit metadata fixture 04 with three millisecond offsets, an explicit crossfade, and a preserve-channel policy. Stable P8 artifact p8-audio-edge-yaml-04.

File
YAML · Editing Metadata Edge
Preview of Audio Edit Metadata YAML 05
yaml
112 B
Actual file preview for Audio Edit Metadata YAML 05

Audio Edit Metadata YAML 05

YAML edit metadata fixture 05 with three millisecond offsets, an explicit crossfade, and a preserve-channel policy. Stable P8 artifact p8-audio-edge-yaml-05.

File
YAML · Editing Metadata Edge