一键导入
cloud-logging
Read and analyze log entries from Cloud Logging using the gcloud CLI.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Read and analyze log entries from Cloud Logging using the gcloud CLI.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Integrate Firebase Auth (authentication + domain restriction) into internal applications. Includes domain restriction via Blocking Functions and user registration to Firestore.
chrome-devtools-mcp の CLI (`chrome-devtools`) を使ったブラウザ操作の総合スキル。既存ブラウザへの attach / 使い捨てテストブラウザ / ログイン状態を保持する永続プロファイルのいずれかをユーザーに必ず確認した上でサーバを立ち上げ、スナップショット取得・クリック・入力・ナビゲーション・スクショ・ネットワーク監視などを行う。
Access the Firebase Emulator Suite (Firestore, Auth, Functions, Hub) via REST and Admin SDK without trial-and-error. Use this skill whenever you read/write/query/clear Firestore Emulator data, create test users or obtain ID tokens from the Auth Emulator, verify Functions triggers, seed/export emulator data, or hit unexpected 403/404 from an emulator endpoint. Consult it BEFORE curling any emulator port — it encodes the auth header and host-resolution rules that otherwise cause retries.
GitHub issue と実装計画をもとにコードを実装する。計画からの逸脱は implementation-notes.md に記録しながら進める。
GitHub PR のレビューコメントを評価するスキル。コメントの妥当性をコードベースで独立検証し、対応可否の判定・返信文案の作成・(指示があれば)修正実装まで行う。ユーザーが PR コメントの URL を貼って「評価して」「考察して」「妥当性を判断して」「対応可否を考えて」「どう思う?」などの意図を示したら必ず使用する。
GitHub issue から計画・実装・テスト・レビュー・PR テキスト・理解確認まで一気通貫で行う。
| name | cloud-logging |
| description | Read and analyze log entries from Cloud Logging using the gcloud CLI. |
| allowed-tools | Bash, Read, Glob, Grep, Write, Task |
Read and analyze log entries from Cloud Logging using the gcloud CLI. $ARGUMENTS is a natural-language description of the log query (e.g., Cloud Run error logs from the last hour in production). If $ARGUMENTS is empty, ask the user for the query criteria.
gcloud CLI is installed and authenticatedgcloud config get-value project to confirm the current project ID. If the project is not set or may not match the user's intent, ask the user to confirm$ARGUMENTS to identify the following query parameters:
resource.type): e.g., cloud_run_revision, gce_instance, k8s_container, cloud_functionseverity): DEFAULT, DEBUG, INFO, NOTICE, WARNING, ERROR, CRITICAL, ALERT, EMERGENCYtimestamp): Convert relative expressions (e.g., "last hour") to RFC 3339 timestamps based on the current timegcloud logging read
--limit=50 --format=json--freshness or --order=asc/desc as neededresource.type, logName, severity, timestamp, labels.*) for faster queries"keyword"); instead, specify the field (e.g., textPayload:, jsonPayload.message:): (has) operator for substring matching and =~ for regular expressions (RE2 syntax)gcloud logging read (read-only). Never execute write or mutating commands such as write, delete, or sinks create--limit to cap results and refine filters iteratively