From 3c928b8c834ce05326a02758747f05222cf968f7 Mon Sep 17 00:00:00 2001 From: Zach Hawtof Date: Sat, 16 May 2026 13:41:26 -0400 Subject: [PATCH] docs: replace stale block-kit-builder references with block-kitchen MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Leftover references from the repo's old name. Updates the template repo URL in the README (×2) and issue template, and the demo's welcome header text. Slack's actual "Block Kit Builder" product is still referenced elsewhere — those are intentionally untouched. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/ISSUE_TEMPLATE/config.yml | 2 +- README.md | 4 ++-- demo/src/App.tsx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 2bfb23c..189e4c8 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -4,5 +4,5 @@ contact_links: url: https://github.com/TightknitAI/block-kitchen/security/advisories/new about: Please report security issues privately, not as a public issue. - name: Full-stack example app - url: https://github.com/TightknitAI/block-kit-builder-template + url: https://github.com/TightknitAI/block-kitchen-template about: Wiring questions about OAuth, channel listing, or sending belong in the template repo. diff --git a/README.md b/README.md index 8a926cc..cd367fd 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Inspired by [Slack's Block Kit Builder](https://app.slack.com/block-kit-builder) block-kitchen demo screenshot

-The package owns the entire builder UX — palette, sortable preview surface, per-block popover editors, send dialog. It knows nothing about how channels are listed, who the user is, or how messages are sent. The consumer wires those concerns through callback props. A working end-to-end app is shown in [block-kit-builder-template](https://github.com/TightknitAI/block-kit-builder-template). +The package owns the entire builder UX — palette, sortable preview surface, per-block popover editors, send dialog. It knows nothing about how channels are listed, who the user is, or how messages are sent. The consumer wires those concerns through callback props. A working end-to-end app is shown in [block-kitchen-template](https://github.com/TightknitAI/block-kitchen-template). ## Install @@ -143,7 +143,7 @@ import type { ## Backend -The builder is frontend-only. For a full app that handles OAuth, channel listing, and `chat.postMessage`, see [block-kit-builder-template](https://github.com/TightknitAI/block-kit-builder-template) — a Vite + React SPA on Cloudflare Workers that wires this package to [slack-hono](https://github.com/TightknitAI/slack-hono) on the backend. +The builder is frontend-only. For a full app that handles OAuth, channel listing, and `chat.postMessage`, see [block-kitchen-template](https://github.com/TightknitAI/block-kitchen-template) — a Vite + React SPA on Cloudflare Workers that wires this package to [slack-hono](https://github.com/TightknitAI/slack-hono) on the backend. ## Validation diff --git a/demo/src/App.tsx b/demo/src/App.tsx index 84f1ac8..4370bb5 100644 --- a/demo/src/App.tsx +++ b/demo/src/App.tsx @@ -37,7 +37,7 @@ const MOCK_CHANNELS: ChannelOption[] = [ const INITIAL_BLOCKS: SupportedBlock[] = [ { type: 'header', - text: { type: 'plain_text', text: 'Welcome to the Block Kit Builder demo' } + text: { type: 'plain_text', text: 'Welcome to the Block Kitchen demo' } }, { type: 'section',