deploy-flyte-kind

deploy-flyte-kind is a skill for Claude Code, Codex from flyteorg/flyte-agent-plugins. It costs 123 tokens per session (12,614 once invoked), scanned F, original, Apache-2.0.

Guidance for deploying Flyte, a workflow platform, on a kind Kubernetes cluster. It sets up Flyte, hosted PostgreSQL, and an S3-compatible object store on the user's machine or a DigitalOcean VM for evaluation.

In plain words
What is it for?
It is for evaluation deployments using kind, Flyte, Supabase or another PostgreSQL service, and AWS S3 or Cloudflare R2.
Why use it?
It explains how to assemble the required services without running the whole stack directly on a full cloud Kubernetes cluster.

Skill for Claude CodeCodex

Part of the flyte plugin — 21 skills, 2 MCP servers shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/flyteorg/flyte-agent-plugins/deploy-flyte-kind
Any agent
npx skills add flyteorg/flyte-agent-plugins --skill deploy-flyte-kind
Clone the repo
git clone --depth 1 https://github.com/flyteorg/flyte-agent-plugins

Made for: Claude Code, Codex.

Or install flyte, the plugin that ships this one along with the rest of its 21 skills, 2 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for deploy-flyte-kind

README.md
[![agentmods](https://agentmods.dev/badge/skills/flyteorg/flyte-agent-plugins/deploy-flyte-kind.svg)](https://agentmods.dev/skills/flyteorg/flyte-agent-plugins/deploy-flyte-kind)
Your own site
<a href="https://agentmods.dev/skills/flyteorg/flyte-agent-plugins/deploy-flyte-kind"><img src="https://agentmods.dev/badge/skills/flyteorg/flyte-agent-plugins/deploy-flyte-kind.svg" alt="Measured on agentmods" height="20"></a>
Per session 123 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 12,614 The whole file, excluding the scripts and references it only reads on demand.
Security scan F 4 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00123 $0.12614
Opus 5 $0.00062 $0.06307
Sonnet 5 $0.00025 $0.02523
Haiku 4.5 $0.00012 $0.01261

Measured 3d ago against content hash 20105867ca33, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade F, and why

deploy-flyte-kind scanned grade F with 4 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

flyte.local" | sudo tee -a /etc/hosts` so it runs in this session), then **ask

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -fsSL https://get.docker.com | sh

Cloud metadata endpointhighServer-side request forgery

One request to 169.254.169.254 can return temporary IAM credentials.

`OSError: Generic S3 error: Error performing PUT http://169.254.169.254/latest/api/token`.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -fsSL https://get.docker.com | sh
plugins/flyte/skills/deploy-flyte-kind/SKILL.md · 1,106 lines

How it starts

The opening of the file, as written. The whole thing — 1,106 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Deploy Flyte to a kind cluster

Stand up Flyte on a kind cluster: the flyte-binary plus a hosted PostgreSQL and an S3-compatible object store. For evaluation only — no TLS, no auth, static credentials.

kind runs anywhere Docker runs, so the cluster can live on the user's own machine (default) or a DigitalOcean VM (droplet) — the host is a choice made in Step 0.

The PostgreSQL and object store are independent choices the user makes in Step 2:

  • PostgreSQLSupabase or another external/self-hosted PostgreSQL.
  • Object storeAWS S3 or Cloudflare R2.

Both are hosted; kind runs only the flyte-binary. The user supplies connection details for each.

Step 0: Choose the host, check prerequisites, and check for an existing cluster

First, ask the user where kind should run (use AskUserQuestion):

  • the user's own machine (default), or
  • a DigitalOcean VM (droplet) — the only cloud-VM host this skill supports.

Do not offer or hand-roll AWS EC2 or GCP VM setups; for a real cloud deployment, point the user at the AWS deployment skill instead.

If the user picks the droplet, every kind, kubectl, and helm command below runs on the droplet (over SSH) — only the SDK/CLI and browser run on the user's own machine. Provision it and install the tools there first (needs a few GB of headroom for kind, so ≥ 4 vCPU / 8 GB):

# create the droplet (dashboard or doctl)
doctl compute droplet create flyte-kind \
  --image ubuntu-24-04-x64 --size s-4vcpu-8gb --region nyc1 \
  --ssh-keys <your-ssh-key-id>

# SSH in and install Docker, kind, kubectl, helm ON the droplet
ssh root@<droplet-ip>
curl -fsSL https://get.docker.com | sh
curl -Lo /usr/local/bin/kind \
  https://github.com/kubernetes-sigs/kind/releases/latest/download/kind-linux-amd64 \
  && chmod +x /usr/local/bin/kind
curl -Lo /usr/local/bin/kubectl \
  "https://dl.k8s.io/release/$(curl -Ls https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" \
  && chmod +x /usr/local/bin/kubectl
curl -fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash

Read the full file on GitHub · 1,106 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 1,106 lines · 123 tokens per session scan F 20105867ca33

Subscribe to this mod's changes

deploy-flyte-kind is a skill published in the GitHub repository flyteorg/flyte-agent-plugins (2 stars, last pushed 6d ago), licensed Apache-2.0. It adds 123 tokens to every session and 12,614 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it F with 4 findings (asks for root, downloads and executes remote code, cloud metadata endpoint). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

qdrant-deployment-options

Guides Qdrant deployment selection. Use when someone asks 'how to deploy Qdrant', 'Docker vs Cloud', 'local mode', 'embedded Qdrant', 'Qdrant EDGE', 'which deployment option', 'self-hosted vs cloud', or 'need lowest latency deployment'. Also use when choosing between deployment types for a new project.

qdrant/skills · 79 tokens

n8n-azure

Application-specific configuration for deploying n8n to Azure Container Apps with PostgreSQL. Infrastructure should be generated fresh by the azure-prepare → azure-validate → azure-deploy pipeline.

DanWahlin/github-azure-agentic-journeys · 27 tokens

stateful-workloads

Covers running stateful systems — databases, queues, search indexes — on Kubernetes, including StatefulSets and stable identity, durable storage, backup and failover built into the platform rather than bolted on, and the tradeoff between self-managing a stateful service and paying for a managed one. Use this whenever…

arjunprabhulal/devops-skills · 122 tokens

scylladb-kubernetes

Guide users deploying and operating ScyllaDB on Kubernetes via the official ScyllaDB Operator. Use this skill when a user is setting up a ScyllaCluster, configuring node storage/CPU pinning for ScyllaDB pods, installing the Operator, or troubleshooting a Kubernetes-based ScyllaDB deployment. Triggers on "ScyllaDB…

scylladb/agent-skills · 187 tokens

n8n-impl-deployment

Use when deploying n8n v1.x to production or configuring Docker/queue mode. Prevents data loss from missing volume mounts or incorrect database configuration. Covers Docker/Docker Compose setup, 100+ environment variables, queue mode with Redis/BullMQ, worker processes, webhook processor, PostgreSQL/SQLite…

Impertio-Studio/n8n-Claude-Skill-Package · 139 tokens

n8n-azure

Application-specific configuration for deploying n8n to Azure Container Apps with PostgreSQL. Infrastructure should be generated fresh by the azure-prepare → azure-validate → azure-deploy pipeline.

microsoft/agentic-journeys · 27 tokens