원클릭으로
omniflow-azure-blob-ops
Azure Blob and Azurite operator commands for existence checks, counts, and sampling with env-var-only secrets.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Azure Blob and Azurite operator commands for existence checks, counts, and sampling with env-var-only secrets.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run the full Custom GPT regression path for the recent fixes across tasks, mail, preferences, calendar, and user_id sanitization.
Address open PR review comments using gh CLI with explicit user-selected thread handling.
Inspect GitHub PR checks, fetch failing Actions logs, summarize root cause, then propose a fix plan.
Operator-friendly dataset pipeline runbook with background execution, progress snapshots, and sampling checks.
Maintain one per-task ExecPlan artifact under tmp for multi-step work with a quick bypass option.
Safe Git and GitHub operator commands for inspect-stage-commit-push workflow.
| name | omniflow-azure-blob-ops |
| description | Azure Blob and Azurite operator commands for existence checks, counts, and sampling with env-var-only secrets. |
Use for Blob/Azurite checks:
AZURE_STORAGE_CONNECTION_STRING.python -c "import os; from azure.storage.blob import BlobServiceClient; c=BlobServiceClient.from_connection_string(os.environ['AZURE_STORAGE_CONNECTION_STRING']).get_container_client('<container>'); print(c.get_blob_client('<blob>').exists())"
python -c "import os; from azure.storage.blob import BlobServiceClient; c=BlobServiceClient.from_connection_string(os.environ['AZURE_STORAGE_CONNECTION_STRING']).get_container_client('<container>'); print(sum(1 for b in c.list_blobs(name_starts_with='<prefix>') if b.name.endswith('.json')))"