gcp-pipeline-orchestration
This skill helps the agent generate or update orchestration pipeline definitions for Google Cloud Composer to initialize orchestration pipeline or update the orchestration definition for orchestration of various data pipelines, like dbt pipelines, notebooks, Spark jobs, Dataform, Python scripts or inline BigQuery SQL queries. This skill also helps deploy and trigger orchestration pipelines.
What this skill does
## Mandatory Reference Routing
If relevant, call the associated reference file(s) before you take actions.
Refer to the table below to determine which reference file to retrieve in
different scenarios involving specific functions. [!IMPORTANT]: DO NOT GUESS
filenames. You MUST only use the exact paths provided below.
Function/Use Case | Required Reference File | Capabilities & Intent Keywords
---------------------------------- | ---------------------------------------------- | ------------------------------
**orchestration-pipelines schema** | `references/orchestration-pipelines-schema.md` | orchestrate, generate, create, update
## How to use this skill
Orchestration pipelines require creating two files to ensure a complete and
deployable pipeline:
1. `Orchestration File` (e.g., `orchestration-pipeline.yaml`,
`test-pipeline.yaml`): Defines the pipeline's logic, tasks, and schedule.
**IMPORTANT:** Check if a `deployment.yaml` file exists and references an
existing orchestration file. If it does, you **must update the existing
orchestration file** (e.g.,`test_pipeline.yaml`) instead of creating a new
one. The filename can be customized but must be referenced in the
`deployment.yaml` file.
2. `deployment.yaml`: Defines the environment-specific configurations.(e.g.,
`dev`, `prod`). `deployment.yaml`should only exists in the repository root
and must be named `deployment.yaml`
- All files should always be maintained together. And all files should be
placed on the root of the workspace folder.
- This skill is helpful to create or update configuration files to orchestrate
data pipelines.
## How to use this skill
### Step 1: Assess Orchestration Pipeline Status and Initialize if Necessary
Examine the repository's root directory for a `deployment.yaml` file.
1. **Check for existing setup**: The absence of `deployment.yaml` indicates
that orchestration has not been set up.
2. **Determine if initialization is required**: Initialization is required if
`deployment.yaml` is missing. you **MUST** run the `init` command in Step 3
to scaffold the project if `deployment.yaml` is missing. Do NOT create the
files manually.
3. **Pipeline Name**: If initialization is needed, ask the user for the
pipeline name. If user hasn't provided the orchestration pipeline name, name
should be "orchestration_pipeline"
4. **Environment Name**: If initialization is needed, you MUST ask the user for
the environment name. If the user does not provide it, use **dev** as the
default.
5. **Execute Initialization**: Once you have the pipeline name, run the
following command:
```
# Replace <ORCHESTRATION_PIPELINE_NAME> with the actual name
# Replace <ENV_NAME> with the actual environment name
gcloud beta orchestration-pipelines init <ORCHESTRATION_PIPELINE_NAME> --environment=<ENV_NAME>
```
### Step 2: Review the orchestration pipeline code structure and syntax instruction
*** Pipeline Models (mapping to YAML)
> [!IMPORTANT]
>
> While the internal pipeline models are defined using protobuf (which typically
> uses `snake_case`), the **YAML configuration expects `camelCase`** for almost
> all field names.
>
> **Mapping Rule:** Always convert `snake_case` proto fields (e.g.,
> `pipeline_id`) to `camelCase` in YAML (e.g., `pipelineId`).
#### Orchestration-Pipelines yaml structure and syntax instruction
Reference to file `references/orchestration-pipelines-schema.md`.
**Required Tags (Top-Level)**: You **MUST** add a `tags` field to the top-level
of the orchestration pipeline YAML definition. The value of this field depends
on the IDE environment:
- For Antigravity, use `["job:datacloud:antigravity"]`.
- For VS Code, use `["job:datacloud:vscode"]`.
- For any other environment, use `["job:datacloud:other"]`.
#### Deployment yaml structure and syntax instruction.
**Top-Level Structure:** The root of the YAML should be an object with the
following fields:
- `environments` (dictionary): A map where keys are environment names (e.g.,
'dev', 'prod', etc) and values are Environment objects.
**Environment:** Each environment object contains the following fields:
- `project` (string): The Google Cloud Project ID.
- `region` (string): The Google Cloud region (e.g., 'us-central1').
- `composer_environment` (string): The Cloud Composer environment name.
- `artifact_storage`
- `bucket` (string): GCS bucket
- `path_prefix`(string): prefix of path that we want to put in bucket
- `pipelines`
- `- source` (string): orchestration pipeline yaml file names. It can be
multiple
- `variables` (dictionary, optional): Key-value pairs representing environment
variables. Values can be strings, numbers, or booleans.
> [!TIP]
>
> If the user doesn't provide specific paths for scripts, dbt projects, or GCP
> details (Project ID, Region), use tools like `find_by_name` to search the
> repository and `gcloud` commands (e.g., `gcloud config get-value project`) to
> retrieve the necessary information.
### Step 3: Generate the pipeline files
- Before generating, check if an orchestration pipeline definition file and
`deployment.yaml` already exist in the current directory. If they do, inform
the user and ask if they want to update the existing files or create new
ones with different names. Do not overwrite without confirmation.
- First, before creating the orchestration pipeline definition file, you
**must** first run the following command to get the list of available
dataproc environments for the user's project. This avoids using placeholder
values to run the jobs.
```
# Replace <PROJECT_ID> with the actual project_id
# Replace <REGION> with the actual region
gcloud dataproc clusters list \
--project <PROJECT_ID> \
--region <REGION> \
```
> [!TIP]
>
> Running the command without `--format=yaml` provides a clear, tabular
> output that is easier to read.
- Then use the returned dataproc list with details to create the orchestration
pipeline definition file based on the user's requirements for the pipeline's
logic and schedule. **IMPORTANT:** Every schedule **must** include an
`endTime`. Every schedule **must** use the current date as `startTime` if
the user hasn't specified.
> [!IMPORTANT]
>
> A Composer environment is not a Dataproc cluster. If no Dataproc clusters
> are available, do not use a Composer environment for the
> `sparkHistoryServerConfig`. It is better to omit this configuration if a
> dedicated Spark History Server is not available.
- If you want to schedule the python job, check the content of Python content
to determine if it's a spark job. If it is, use `pyspark` as type instead of
script as type.
- Before creating or updating the `deployment.yaml` file, you **must** first
run the following command to get the list of available Composer environments
for the user's project.
```
# Replace <PROJECT_ID> with the actual project_id
# Replace <REGION> with the actual region
gcloud composer environments list \
--project <PROJECT_ID> \
--locations <REGION> \
```
After listing available Composer environments, you **must** check each
environment to ensure the composer is using the right image version or has
installed right PyPI packages. Run the following command for each
environment:
```
# Replace <ENVIRONMENT_NAME> with the Composer environment name
# Replace <REGION> with the region
gcloud composer environments describe <ENVIRONMENT_NAME> \
--location <REGION> \
--format="json(config.softwareConfig.imageVersion, config.softwareConfig.pypiPackages)"
```
From the output, select an environment where the imageVersion value is one
of is "composer-3-airflow-3.1.7-build.x, composer-3-airflow-2.11.1-build.xRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.