بنقرة واحدة
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 المهني
Codex CLI にコードレビューを依頼する。PR が存在する場合は PR を、ローカルブランチの場合はメインブランチとの差分をレビューする。
GitHub issue から PR のタイトルと説明文を作成する。
GitHub issue から計画・実装・テスト・レビュー・PR テキスト・理解確認まで一気通貫で行う。
GitHub issue と実装計画をもとにコードを実装する。計画からの逸脱は implementation-notes.md に記録しながら進める。
research の結果と受け入れ条件をもとに、実装方法を選択し TDD ベースの実装計画と動作確認チェックリストを作成する。
変更内容の解説(explainer)と理解確認クイズを生成する。マージ前に変更を理解しているか確かめたいとき、「この変更を説明して」「クイズを出して」「変更内容を理解したい」などの依頼で使う。
| 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