mcpbeat Sign in

Download Profile Trace Agent Skill

Download a profiler trace file from Application Insights Profiler. Use this when asked to download, save, or export a profiler trace or .etl/.nettrace file.

6k tokens
context cost
the whole folder, loaded on every use
6
files
ships runnable scripts
0
copies elsewhere
how many repositories repackaged it
3
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/code-optimizations-skills --skill download-profile-trace

What comes with it

19 333 bytes besides the instruction
references/trace-file-info.md
scripts/download-trace-by-location.md
scripts/download-trace.md
scripts/list-profile-traces.md
scripts/resolve-trace-identifiers.md

The instruction itself

11 sections, as written by the author

Download Profile Trace

This skill downloads a raw profiler trace artifact from the Application Insights Profiler dataplane API. The downloaded file can be opened in PerfView, Visual Studio, or other trace analysis tools.

Prerequisites

  • The user must be logged in to Azure CLI (az login)
  • The user must provide an Application Insights app ID (GUID) or resource ID

Steps

1–2. Check investigation notes and gather inputs

Follow the Standard Skill Preamble to check for existing investigation context and gather inputs.

In addition to the standard App ID, this skill requires:

  • Time range (optional): How far back to look for traces. Defaults to 7 days (P7D).
  • Output path (optional): Where to save the downloaded file. Defaults to the current directory.

3. Acquire an access token

Run the script in get-access-token.md to acquire a Bearer token for the profiler dataplane. See the token freshness and session scoping guidance in that document — re-acquire the token in the same command block as each API call.

4. List available profile traces

Run the script in list-profile-traces.md to call the ingested artifacts endpoint and list available profiler traces.

Display only the 10 most recent traces by default. If more traces exist, tell the user the total count and offer to show more. The API can return hundreds of traces for active applications, which produces overwhelming output.

Present the results to the user with:

  • Timestamp (triggerTime — when the profiling session was triggered)
  • Role name
  • Role instance (machine/container name)
  • Artifact ID (note if null)
  • Format (Etl, Nettrace, or Netperf)

When constructing the output filename, derive the file extension from two fields:

  • format → base extension: Etl.etl, Nettrace.nettrace, Netperf.netperf
  • blobUri → compression: if the URI ends in .zip, append .zip to the base extension

> ⚠️ Do not use the blobUri extension as-is for the filename. The blobUri may show .etl.zip even when format is Nettrace, which would produce a misleading filename. Always use format for the base extension and blobUri only to detect .zip compression.

Include the role name in the filename to avoid collisions when downloading traces from different resources into the same directory, e.g., trace-myapp-2026-03-20T214135.nettrace.zip.

Let the user pick which trace to download. If there's only one result, confirm it with the user before proceeding.

5. Download the selected trace

Choose the download method based on whether the selected trace has an artifactId:

5a. If artifactId is available (not null)

Run the script in download-trace.md with the selected artifactId. The script:

  • Calls the artifact download endpoint (GET /artifacts/{artifactId})
  • Handles the 302 redirect to get the blob download URL
  • Downloads the trace file to the specified output path
5b. If artifactId is null

First, run the script in resolve-trace-identifiers.md to query Application Insights customEvents for the ServiceProfilerSample event matching the selected trace. This can resolve:

  • Artifact ID (from ServiceProfilerContext) — if found, use the standard download in step 5a
  • Trace location ID (from ServiceProfilerContent) — if found, use the trace location download below

If an artifact ID is resolved, go back to step 5a and download using that artifact ID.

If only a trace location ID is resolved, use download-trace-by-location.md to download. The trace location ID is a pipe-delimited v1 string:

v1|{stampId}|{appId}|{machineName}|{processId}|{etlFileSessionId}

The script:

  • Calls POST /artifacts/byArtifactLocation?t={traceLocationId} to get a SAS-protected download URL
  • Downloads the trace file from the returned URL

If neither identifier is resolved from the query, ask the user for the trace location ID or artifact ID manually.

6. Present the result

After downloading, tell the user:

  • Where the file was saved
  • The file size
  • If the file is a .zip, remind the user to extract it before analysis
  • How to open it — see trace-file-info.md for guidance on tools and formats

Response format

See trace-file-info.md for information about trace file formats and how to open them.

Other skills for the same job

different authors, same section of the catalogue
Protocolsio Integration
by christophacham
×4

Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.

16k tokens
Tailored Resume Generator
by frostant
×4

Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances

3k tokens
Excalidraw Diagram Generator
by github
vendor ×3

Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.

36k tokens scripts
Expo Dev Client
by openai
vendor ×3

Build and distribute Expo development clients locally or via TestFlight

961 tokens
Executing Plans
by ZhanlinCui
×3

Use when you have a written implementation plan to execute in a separate session with review checkpoints

542 tokens
Anndata
by christophacham
×3

Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.

16k tokens
Benchling Integration
by christophacham
×3

Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.

14k tokens
Biopython
by christophacham
×3

Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.

24k tokens

How to use it

Copy the folder

Take microsoft/download-profile-trace 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.