Install
openclaw skills install k8s-prefect-flow-builderBuild, modify, and review Prefect-based offline orchestration in this repository. Use when adding a new Prefect flow, wrapping an existing offline computation as a flow or task, editing prefect.yaml, splitting deployments by resource profile, configuring resources or concurrency, or aligning CI, Prefect, and Kubernetes deployment behavior.
openclaw skills install k8s-prefect-flow-builderUse this skill to add or refactor Prefect-managed offline workflows in this repository without mixing orchestration concerns into business logic.
references/flow-design.md and references/template-prefect-yaml.md.references/deployment-patterns.md.references/resources-and-concurrency.md.references/architecture.md first.src/core/....src/prefect_flows/.....submit() or .map() for in-flow concurrency, and .delay() only for background execution on separate infrastructure..submit() just because the unit is a task..submit() for cases that actually need Prefect futures, parallel fan-out, or non-blocking wait and collection behavior, and make sure terminal futures are resolved before the flow returns.prefect.yaml as deployment source of truth.prefect.yaml.PREFECT_API_URL and PREFECT_DEPLOY_IMAGE.env_from, not CI.prefect.yaml for deployment or resource drift.src/prefect_flows/src/core/prefect.yamldocs/cg_offline_prediction/prefect_orchestration_overview.md.submit() returns a PrefectFuture for concurrent execution in the same flow, and .delay() is for background execution on separate workers..submit() or a task runner configuration just to preserve the task decorator.references/architecture.md for the system model and lifecycle.references/deployment-patterns.md for deployment design and config ownership.references/flow-design.md for wrapping existing jobs as flows and tasks.references/resources-and-concurrency.md for sizing and concurrency decisions.references/template-prefect-yaml.md for reusable deployment templates.