thinkfleetai/thinkfleet-engine

azure-cosmosdb

Query and manage Azure Cosmos DB accounts, databases, and containers.

First seen Mar 1, 2026

Installation

$ npx skills add thinkfleetai/thinkfleet-engine --skill azure-cosmosdb

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,902 B
  • docs SUMMARY.md 91 B

History

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

SKILL.md

Azure Cosmos DB

Manage Cosmos DB databases and query data.

List accounts

az cosmosdb list --query '[].{Name:name,ResourceGroup:resourceGroup,Kind:kind,Location:locations[0].locationName}' -o table

List databases

az cosmosdb sql database list --account-name my-cosmos --resource-group my-rg --query '[].{Name:name}' -o table

List containers

az cosmosdb sql container list --account-name my-cosmos --resource-group my-rg --database-name my-db --query '[].{Name:name,PartitionKey:resource.partitionKey.paths[0]}' -o table

Query documents

az cosmosdb sql container query --account-name my-cosmos --resource-group my-rg \
  --database-name my-db --container-name my-container \
  --query-text "SELECT TOP 10 * FROM c WHERE c.status = 'active'" | jq '.[] | {id, status}'

Get connection strings

az cosmosdb keys list --name my-cosmos --resource-group my-rg --type connection-strings | jq '.connectionStrings[0].connectionString'

Get throughput

az cosmosdb sql container throughput show --account-name my-cosmos --resource-group my-rg \
  --database-name my-db --container-name my-container | jq '{throughput: .resource.throughput, autoscaleMax: .resource.autoscaleSettings.maxThroughput}'

Update throughput

az cosmosdb sql container throughput update --account-name my-cosmos --resource-group my-rg \
  --database-name my-db --container-name my-container --throughput 1000

Notes

  • Cosmos DB supports SQL, MongoDB, Cassandra, Gremlin, and Table APIs.
  • Use az cosmosdb sql for SQL API; replace sql with the API type for others.
  • Confirm before modifying throughput (cost implications).