analyze-repo

analyze-repo is a skill for Claude Code from Azure/containerization-assist. It costs 0 tokens per session (3,521 once invoked), scanned A, original, MIT.

A read-only repository inspection procedure that identifies programming languages, frameworks, build tools, dependencies, databases, and environment variables. A repository is a project's stored source code and configuration.

In plain words
What is it for?
Use it before writing a Dockerfile or Kubernetes files to produce a structured report from the repository's configuration files.
Why use it?
It provides a factual overview of a project before creating or repairing container and cloud-deployment files, reducing guesses about how the project runs.

Skill for Claude Code ✓ vendor

Written for Claude Code: argument-hint in frontmatter.

Good fit Use it before writing a Dockerfile or Kubernetes files to produce a structured report from the repository's configuration files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/azure/containerization-assist/analyze-repo
About the project

Containerization Assist is an MCP server that helps create, inspect, and deploy Docker containers and Kubernetes applications. Developers use it for Dockerfile generation, image scanning, Kubernetes manifest creation, security checks, policy-based configuration, and deployment workflows.

Azure/containerization-assist · 41 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Azure/containerization-assist --skill analyze-repo
Clone the repo
git clone --depth 1 https://github.com/Azure/containerization-assist

Made for: Claude Code.

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 analyze-repo

README.md
[![agentmods](https://agentmods.dev/badge/skills/azure/containerization-assist/analyze-repo/github.svg)](https://agentmods.dev/skills/azure/containerization-assist/analyze-repo)
Your own site
<a href="https://agentmods.dev/skills/azure/containerization-assist/analyze-repo"><img src="https://agentmods.dev/badge/skills/azure/containerization-assist/analyze-repo/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 analyze-repo

Your own site · 80×15
<a href="https://agentmods.dev/skills/azure/containerization-assist/analyze-repo"><img src="https://agentmods.dev/badge/skills/azure/containerization-assist/analyze-repo.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,521 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.00000 $0.03521
Opus 5 $0.00000 $0.01760
Sonnet 5 $0.00000 $0.00704
Haiku 4.5 $0.00000 $0.00352

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

Security

Grade A, and why

analyze-repo 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.

skills/analyze-repo/SKILL.md · 248 lines

How it starts

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

Analyze Repository

Produce a structured stack report for a repository by reading its manifest files. This is a deterministic, read-only procedure — do not guess, do not invoke language models against source code, and do not modify anything. Use file-reading tools available in the chat environment (read_file, file search, directory listing) to perform every step.

Inputs

Field Required Description
repositoryPath yes Absolute path. Default to the workspace root if the user did not specify one. Normalize Windows paths to forward slashes.

If the user provided a modules[] array, skip detection and use it verbatim. Otherwise, run the full procedure.

Procedure

Step 1 — Walk the repository

  • Start at repositoryPath, recurse to maximum depth 3.
  • Skip these directory names at any depth: node_modules, .git, .vscode, .idea, dist, build, target, bin, obj.
  • Cap total files scanned at 100. Stop once you reach this.
  • Record a flat directory tree (first 30 entries) for context.

Step 2 — Identify config files

Match file basenames against this set (case-sensitive):

Ecosystem Files
Node package.json
Java – Maven pom.xml
Java – Gradle build.gradle, build.gradle.kts
Python requirements.txt, pyproject.toml
Rust Cargo.toml
.NET *.csproj, *.fsproj, *.vbproj
Go go.mod
PHP composer.json
Ruby Gemfile
Container Dockerfile, docker-compose.yml, docker-compose.yaml
Spring application.properties, application.yml, application.yaml
Env templates .env.example, .env.sample, .env.template

Read each match, truncate at 1000 characters, and remember the (path, content) pair.

Step 3 — Parse each config

Per file type, extract the following fields. If a field is absent, leave it unset — do not invent.

File Extract
package.json language = typescript if typescript in devDeps or tsconfig.json exists, else javascript; framework from deps (express, next, nestjs, fastify, koa, react, etc.); frameworkVersion from dep range; dependencies = keys of dependencies + devDependencies; languageVersion from engines.node; entryPoint from main or scripts.start; ports from any literal port in scripts.start. buildSystem.type = npm / yarn / pnpm based on lockfile sibling.
pom.xml language = java; framework from <artifactId> patterns (spring-boot-starter*Spring Boot); languageVersion from <maven.compiler.source> or <java.version>; dependencies = <groupId>:<artifactId> list; buildSystem.type = maven.
build.gradle[.kts] language = java (or kotlin if .kts + kotlin plugin); framework from plugins { id 'org.springframework.boot' } etc.; languageVersion from sourceCompatibility / jvmToolchain; dependencies = the strings inside implementation '…' / api '…'; buildSystem.type = gradle.
requirements.txt language = python; dependencies = one per line stripped of version pin; framework from deps (flask, django, fastapi, tornado); buildSystem.type = pip.
pyproject.toml language = python; read [project] dependencies, [tool.poetry.dependencies], or [tool.pdm]; framework from deps; languageVersion from requires-python; buildSystem.type = poetry / pdm / setuptools based on [build-system].build-backend.
Cargo.toml language = rust; framework from deps (actix-web, axum, rocket, tonic); dependencies = keys of [dependencies]; entryPoint = [package].name; buildSystem.type = cargo.
*.csproj language = dotnet; languageVersion from <TargetFramework>; framework = ASP.NET Core if any Microsoft.AspNetCore.* package ref; dependencies = PackageReference Include="…" values; buildSystem.type = dotnet.
go.mod language = go; languageVersion from go <version> line; dependencies = require (...) module list; framework from deps (gin-gonic/gin, labstack/echo, fiber, chi); buildSystem.type = go-modules.
composer.json language = other (PHP); dependencies = keys of require; framework from deps (laravel/framework, symfony/*); buildSystem.type = composer.
Gemfile language = other (Ruby); dependencies = gem "…" names; framework from deps (rails, sinatra); buildSystem.type = bundler.
Dockerfile Note its existence — do NOT treat as a module config; affects "recommended next step".

Read the full file on GitHub · 248 lines

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 · 248 lines · 0 tokens per session scan A bcefb5fdb7f9

Subscribe to this mod's changes

analyze-repo is a skill published in the GitHub repository Azure/containerization-assist (41 stars, last pushed 6d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 3,521 tokens. 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

azd-deployment

Deploy containerized frontend + backend applications to Azure Container Apps with remote builds, managed identity, and idempotent infrastructure.

sickn33/agentic-awesome-skills · 29 tokens

openshell-cli

Guide agents through using the OpenShell CLI (openshell) for sandbox management, gateway registration, provider configuration and refresh, policy iteration, settings, service exposure, BYOC workflows, and inference routing. Covers basic through advanced multi-step workflows. Trigger keywords - openshell, sandbox…

NVIDIA/OpenShell · 127 tokens

langbot-deploy

Deploy and configure a LangBot instance — Docker / Docker Compose, Kubernetes, the config.yaml model, the Box sandbox runtime, the plugin runtime, and the global API key. Use when installing, deploying, upgrading, or configuring LangBot in production or self-hosted environments. Triggers on "deploy langbot", "langbot…

langbot-app/LangBot · 104 tokens

compute-env-setup

Set up a compute environment on a remote provider so Claude Science jobs can run there. Covers direct SSH/conda hosts, Slurm clusters, container-via-bridge runners, and managed-API providers (Modal, GCP, RunPod). Use when standing up a new provider, porting an env to a different backend, adding a tool that needs its…

UnicomAI/wanwu · 134 tokens

azure-cloud-migrate

Assess and migrate cross-cloud workloads to Azure with reports and code conversion. Supports Lambda→Functions, Beanstalk/Heroku/App Engine→App Service, Fargate/Kubernetes/Cloud Run/Spring Boot→Container Apps. WHEN: migrate Lambda to Functions, AWS to Azure, migrate Beanstalk, migrate Heroku, migrate App Engine, Cloud…

microsoft/skills · 106 tokens

atmos-helmfile

Helmfile orchestration: sync/apply/destroy/diff, Kubernetes deployments, varfile generation, EKS integration, source management.

cloudposse/atmos · 33 tokens