From b43b0a2f0b2473ca1b75e10f857340939530473b Mon Sep 17 00:00:00 2001 From: Stanislav Fifik Date: Tue, 21 Jul 2026 21:53:12 +0000 Subject: [PATCH] Add dev deployment skill --- .agents/skills/deploy-dev/SKILL.md | 16 ++++++++++++++++ .agents/skills/deploy-dev/agents/openai.yaml | 4 ++++ 2 files changed, 20 insertions(+) create mode 100644 .agents/skills/deploy-dev/SKILL.md create mode 100644 .agents/skills/deploy-dev/agents/openai.yaml diff --git a/.agents/skills/deploy-dev/SKILL.md b/.agents/skills/deploy-dev/SKILL.md new file mode 100644 index 0000000..2bc7446 --- /dev/null +++ b/.agents/skills/deploy-dev/SKILL.md @@ -0,0 +1,16 @@ +--- +name: deploy-dev +description: Deploy this repository's current worktree as a live development environment. Use when asked to deploy, start, redeploy, or publish the dev environment for this project. +--- + +# Deploy Dev + +From the repository root, run: + +```bash +./dev/start.sh +``` + +The script derives the instance and hostname from the worktree directory, applies the Kubernetes resources in `vibes`, and waits for rollout. Treat its final URL as the deployment URL. + +Verify that URL returns HTTP 200 with `curl --fail --max-time 15 `, then report the URL. Do not inspect the codebase for another deployment method unless the script fails. diff --git a/.agents/skills/deploy-dev/agents/openai.yaml b/.agents/skills/deploy-dev/agents/openai.yaml new file mode 100644 index 0000000..cd063aa --- /dev/null +++ b/.agents/skills/deploy-dev/agents/openai.yaml @@ -0,0 +1,4 @@ +interface: + display_name: "Deploy Dev" + short_description: "Deploy and verify this worktree dev environment" + default_prompt: "Use $deploy-dev to deploy this project worktree development environment." -- 2.49.1