thinkfleetai/thinkfleet-engine

azure-app-service

Manage Azure App Service web apps, deployments, and configuration.

First seen Mar 1, 2026

Installation

$ npx skills add thinkfleetai/thinkfleet-engine --skill azure-app-service

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from thinkfleetai/thinkfleet-engine · top by installs.

npx skills add thinkfleetai/thinkfleet-engine

Browse all from thinkfleetai/thinkfleet-engine

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,671 B
  • docs SUMMARY.md 91 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Azure App Service

Manage web apps and API apps.

List web apps

az webapp list --query '[].{Name:name,ResourceGroup:resourceGroup,State:state,URL:defaultHostName}' -o table

Show app details

az webapp show --name my-app --resource-group my-rg | jq '{name, state, defaultHostName, httpsOnly, kind}'

View logs

az webapp log tail --name my-app --resource-group my-rg &

Start / stop / restart

az webapp start --name my-app --resource-group my-rg
az webapp stop --name my-app --resource-group my-rg
az webapp restart --name my-app --resource-group my-rg

List app settings

az webapp config appsettings list --name my-app --resource-group my-rg | jq '.[] | {name, value}'

Set app settings

az webapp config appsettings set --name my-app --resource-group my-rg \
  --settings "KEY=value" | jq '.[].{name, value}'

Deploy from zip

az webapp deploy --name my-app --resource-group my-rg --src-path /tmp/app.zip --type zip

List deployment slots

az webapp deployment slot list --name my-app --resource-group my-rg --query '[].{Name:name,State:state}' -o table

Swap slots

az webapp deployment slot swap --name my-app --resource-group my-rg --slot staging --target-slot production

Notes

  • Use deployment slots for zero-downtime deployments.
  • Confirm before swapping slots, stopping, or modifying configuration.