mcpbeat Sign in

Azldev Mock Agent Skill

Read this before testing or inspecting a built RPM; do not drive mock by hand from memory. Explains how to test and inspect built packages in a mock chroot with 'azldev adv mock shell', covering non-interactive (heredoc) and interactive chroot workflows, the -p/--add-package flag, and resetting stale chroot state. Triggers include test package, mock shell, inspect rpm, smoke test, chroot, verify build output.

1k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
5305
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/microsoft/azurelinux --skill azldev-mock

The instruction itself

6 sections, as written by the author

Test and inspect packages in a mock chroot

> Never install built RPMs on the host. They target the distro you are

> building, not your dev machine. Use a mock chroot instead.

azldev tests and inspects packages inside mock build roots via mock shell,

which lives under the hidden advanced group (azldev adv is an alias for

azldev advanced; it does not appear in azldev --help).

Non-interactive chroot (preferred for agents)

Pipe commands in via a heredoc — fully autonomous, no user interaction needed:

azldev adv mock shell --add-package /path/to/package.rpm <<'CMDS'
<command> --version
echo "exit code: $?"
exit
CMDS

Use this for automated checks: running binaries, querying installed packages,

inspecting paths.

Inspect an RPM without installing it

When --add-package fails to install, or you just want to look at an RPM's

contents, get the file inside the chroot and inspect it there rather than

installing on the host. If the RPM is not already reachable inside the build

root, copy it in first with mock --copyin <rpm> /tmp/ (using the project's

distro mock config), then:

azldev adv mock shell <<'CMDS'
rpm -qip /tmp/<name>*.rpm    # package info
rpm -qlp /tmp/<name>*.rpm    # file list
rpm -qRp /tmp/<name>*.rpm    # dependencies
dnf install /tmp/<name>*.rpm # retry the install to see the error details
exit
CMDS

This gives you the full distro environment for debugging dependency issues, file

conflicts, and failed installs, without touching the host.

Interactive chroot

Use when you need to explore interactively or react to output between commands:

azldev adv mock shell --add-package /path/to/package.rpm --enable-network

When driving an interactive shell as an agent:

  • Run a simple command (e.g. echo ready) in a foreground terminal to establish a shared shell.
  • Ask the user to run the azldev adv mock shell command in that same terminal.
  • Wait for confirmation that they are inside the mock shell.
  • Run diagnostic commands in the same foreground terminal — they execute inside the chroot.
  • Run exit to leave the chroot.

Prefer the non-interactive heredoc approach; use interactive only when you must

react to output between commands.

Key flags

| Flag | Purpose |

| --- | --- |

| -p, --add-package <path> | Install a package into the chroot before entering. Accepts an RPM file path or a package name. May be repeated. |

| --enable-network | Allow network access (dependency resolution, downloads). |

> -p means --add-package, not a component name. Unlike azldev comp build -p <name>,

> mock shell has no component selector. -p <name> installs a package *by name* from the

> configured repos — it does not set up a chroot with that component's build dependencies.

Gotchas

  • Don't mix -p <name> with --add-package /path/to/<name>.rpm for the same package — that

installs both the repo build and your local build, which conflict. Use one or the other.

  • The mock chroot is persistent across azldev adv mock shell sessions — installed packages and

created files survive. Handy (install once, re-enter later), but stale state can confuse. azldev

has no built-in reset; clear it with mock directly (--scrub=chroot, or --scrub=all to also

drop the bootstrap), pointing at the project's distro mock config.

  • One mock session per terminal. Running azldev adv mock shell while a terminal is already

inside a mock shell fails — run exit first.

Generated by azldev docs agent; do not hand-edit. Generated for azldev version v0.1.0.

Other skills for the same job

different authors, same section of the catalogue
Webapp Testing
by anthropics
vendor ×12

Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.

6k tokens scripts
Finishing A Development Branch
by ZhanlinCui
×7

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

1k tokens
Test Driven Development
by w95
×7

Use when implementing any feature or bugfix, before writing implementation code

2k tokens
Systematic Debugging
by ratacat
×7

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes

10k tokens scripts
Verification Before Completion
by ZhanlinCui
×6

Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence before assertions always

1k tokens
Backtest Expert
by BaggaT236
×3

Expert guidance for systematic backtesting of trading strategies. Use when developing, testing, stress-testing, or validating quantitative trading strategies. Covers "beating ideas to death" methodology, parameter robustness testing, slippage modeling, bias prevention, and interpreting backtest results. Applicable when user asks about backtesting, strategy validation, robustness testing, avoiding overfitting, or systematic trading development.

15k tokens scripts
Adaptyv
by christophacham
×3

Cloud laboratory platform for automated protein testing and validation. Use when designing proteins and needing experimental validation including binding assays, expression testing, thermostability measurements, enzyme activity assays, or protein sequence optimization. Also use for submitting experiments via API, tracking experiment status, downloading results, optimizing protein sequences for better expression using computational tools (NetSolP, SoluProt, SolubleMPNN, ESM), or managing protein design workflows with wet-lab validation.

16k tokens
Aeon
by christophacham
×3

This skill should be used for time series machine learning tasks including classification, regression, clustering, forecasting, anomaly detection, segmentation, and similarity search. Use when working with temporal data, sequential patterns, or time-indexed observations requiring specialized algorithms beyond standard ML approaches. Particularly suited for univariate and multivariate time series analysis with scikit-learn compatible APIs.

19k tokens

How to use it

Copy the folder

Take microsoft/azldev-mock from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.