azure-nodejs-deployment-via-github-actions

azure-nodejs-deployment-via-github-actions is a skill for Claude Code, Codex from Ahtesham-Latif/Tie-Breaker-App. It costs 42 tokens per session (775 once invoked), scanned A, original, MIT.

A deployment guide for putting a Node.js and Vite application on Azure App Service using GitHub Actions. It also covers passwordless access to an Azure AI Foundry agent through a managed identity.

In plain words
What is it for?
Use it to configure Azure hosting, managed identity and permissions, environment variables, and GitHub Actions deployment for a full-stack application.
Why use it?
It helps avoid common deployment and authentication mistakes, such as unsuitable hosting tiers, incorrect permissions, or exposing frontend secrets.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to configure Azure hosting, managed identity and permissions, environment variables, and GitHub Actions deployment for a full-stack application.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ahtesham-latif/tie-breaker-app/azure_deployment
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 Ahtesham-Latif/Tie-Breaker-App --skill azure_deployment
Clone the repo
git clone --depth 1 https://github.com/Ahtesham-Latif/Tie-Breaker-App

Made for: Claude Code, Codex.

Wrote this? Show the measurements

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

agentmods badge for azure-nodejs-deployment-via-github-actions

README.md
[![agentmods](https://agentmods.dev/badge/skills/ahtesham-latif/tie-breaker-app/azure_deployment/github.svg)](https://agentmods.dev/skills/ahtesham-latif/tie-breaker-app/azure_deployment)
Your own site
<a href="https://agentmods.dev/skills/ahtesham-latif/tie-breaker-app/azure_deployment"><img src="https://agentmods.dev/badge/skills/ahtesham-latif/tie-breaker-app/azure_deployment/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 azure-nodejs-deployment-via-github-actions

Your own site · 80×15
<a href="https://agentmods.dev/skills/ahtesham-latif/tie-breaker-app/azure_deployment"><img src="https://agentmods.dev/badge/skills/ahtesham-latif/tie-breaker-app/azure_deployment.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 775 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.
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.00042 $0.00775
Opus 5 $0.00021 $0.00387
Sonnet 5 $0.00008 $0.00155
Haiku 4.5 $0.00004 $0.00077

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

Security

Grade A, and why

azure-nodejs-deployment-via-github-actions 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 11d 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.

.agents/skills/azure_deployment/SKILL.md · 41 lines

How it starts

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

Azure App Service Deployment (Node.js)

This skill outlines the flawless, best-practice path to deploy a Node.js application to Azure App Service (Linux) while securely connecting to an Azure AI Foundry agent via Managed Identity.

1. Cloud Infrastructure Setup

  • App Service Plan: Always choose a dedicated tier (e.g., Basic B1) for production. Free (F1) tiers have strict 60-minute daily CPU quotas that will forcefully shut down the application (Resulting in a 403 Stopped error).

2. Authentication & Managed Identity (Passwordless)

  1. Code: Use DefaultAzureCredential from @azure/identity in the Node.js backend.
  2. Enable Identity: In the Azure App Service portal, go to Settings > Identity and enable System assigned.
  3. IAM Permissions: In the target Azure AI Project, go to Access control (IAM) and assign the Azure AI Developer role to the App Service's Managed Identity. (Note: Cognitive Services OpenAI User is not sufficient for Azure Foundry Orchestration Agents).

3. Environment Variables (The Frontend vs Backend Trap)

When deploying a full-stack app (React/Vite + Node.js) via GitHub Actions, environment variables must be split logically:

The Frontend (Vite)

  • Variables prefixed with VITE_ (e.g., Supabase keys) are baked into the static HTML/JS at build time.
  • Where to set them: They MUST be stored in GitHub Secrets and explicitly mapped in your .github/workflows file under the env: block for the npm run build step.
  • Danger: If they are only in Azure and not in GitHub Actions, Vite will build the frontend with empty variables.

The Backend (Node.js)

  • The live server.js file reads environment variables at runtime from the cloud container.
  • Where to set them: Configure variables (e.g., Azure AI endpoints, Backend Supabase keys) directly in the Azure Portal under Settings > Environment variables.
  • Danger: The Azure App Service backend does NOT inherit your GitHub Actions secrets. You must set them in the Azure Portal manually.
  • Crucial: Variables are loaded into memory exactly once when the Node.js process starts. If a variable is added or changed, you must explicitly click Restart on the App Service Overview page.
  • To trust the Azure Load Balancer (required for express-rate-limit), ensure the Express app has app.set('trust proxy', 1);.

Read the full file on GitHub · 41 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. 11d ago First seen · 41 lines · 42 tokens per session scan A 8404a2265f34

Subscribe to this mod's changes

azure-nodejs-deployment-via-github-actions is a skill published in the GitHub repository Ahtesham-Latif/Tie-Breaker-App (1 stars, last pushed 2mo ago), licensed MIT. It adds 42 tokens to every session and 775 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

use-vercel-action

Wire amondnet/vercel-action into a GitHub Actions workflow to deploy Vercel projects from CI. Use when the user asks to deploy to Vercel from GitHub Actions, add Vercel preview deploys, post a Vercel preview URL on a PR, configure prebuilt Vercel deployments, set up alias domains for previews, create a GitHub…

amondnet/vercel-action · 151 tokens

infra-kit.workflow.audit

Review infrastructure-as-code, DevOps pipelines, and platform controls for security, reliability, compliance, and delivery hygiene using cloud well-architected baselines.

huyngopt1994/infras-kit · 36 tokens

atmos-hooks

Atmos hooks: lifecycle events, hook kinds, command/store/git/security hooks, step/steps hooks, when: conditions, scoping and overrides, toolchain integration, --skip-hooks, and Atmos Pro/local output.

cloudposse/atmos · 46 tokens

atmos-modernization

Atmos Modernization: migrate deprecated or legacy Atmos patterns to current names, Native CI, Atmos Pro drift detection, dependencies.components, nametemplate, and declared secrets.

cloudposse/atmos · 36 tokens

atmos-pro

Atmos Pro setup and workflows: settings.pro, GitHub OIDC, affected and inventory uploads, stack locks, pro commit, workflow dispatch, merge queues, and drift detection.

cloudposse/atmos · 38 tokens

atmos-sbom

Atmos SBOM provenance: CycloneDX and SPDX generation from vendor and Terraform evidence, coverage diagnostics, NTIA validation, and native CI workflow-artifact publication.

cloudposse/atmos · 36 tokens