Communication
slack-app-scaffold - Claude MCP Skill
Scaffold Slack apps from existing functionality using Bolt for JavaScript and the Slack CLI. Use when turning a service, script, or workflow into a Slack app with events, commands, modals, or automations.
SEO Guide: Enhance your AI agent with the slack-app-scaffold tool. This Model Context Protocol (MCP) server allows Claude Desktop and other LLMs to scaffold slack apps from existing functionality using bolt for javascript and the slack cli. use whe... Download and configure this skill to unlock new capabilities for your AI workflow.
Documentation
SKILL.md# Slack App Scaffold Bolt for JavaScript + Slack CLI is the 2026 default. Optimize for fast local runs, clear handlers, and safe deploys. ## Stack (Default) - Runtime: Node.js (LTS) - Framework: `@slack/bolt` - Tooling: Slack CLI (`slack`) - Config: Slack manifest via CLI-generated project ## Core CLI Commands ```bash # Create new Slack app project slack create my-slack-app # Run locally (socket mode / dev env) cd my-slack-app slack run # Deploy to Slack-hosted runtime / target env slack deploy ``` ## Workflow (CLI-First) 1. Identify integration points in existing functionality. 2. Scaffold app with `slack create`. 3. Model capabilities in the manifest (scopes, events, commands, interactivity). 4. Implement handlers in Bolt (events, commands, actions, views/modals). 5. Run locally with `slack run` and validate in a dev workspace. 6. Deploy with `slack deploy`. ## Project Structure (Typical) ```text my-slack-app/ āāā app/ ā āāā app.js # Bolt app bootstrap ā āāā listeners/ # Events, commands, actions, views ā āāā services/ # Integration layer to existing functionality ā āāā middleware/ # Auth, validation, shared guards āāā manifest.json # Slack app manifest (CLI-managed) āāā package.json āāā README.md ``` Design rule: keep Slack handlers thin; push real work into `services/`. ## Common Use Cases - Notifications: post messages from existing jobs or webhooks. - Slash commands: wrap existing scripts or APIs behind `/commands`. - Workflows: compose multi-step flows with Slack-native triggers. - Modals: collect structured input, then call existing systems. ## Implementation Notes - Map each Slack surface to one listener module. - Normalize inputs at the edge; pass clean DTOs inward. - Acknowledge fast (`ack()`), then do work. - Centralize Slack Web API calls behind a small service. See `references/bolt-patterns.md` for concrete patterns. ## Verification Steps ```bash # 1) Install deps npm install # 2) Run locally slack run # 3) Lint/test if present npm test # 4) Deploy slack deploy ``` Manual checks in Slack workspace: - Trigger each command or event once. - Validate permissions/scopes match what handlers need. - Confirm errors surface as user-visible messages, not silent failures.
Signals
Information
- Repository
- phrazzld/claude-config
- Author
- phrazzld
- Last Sync
- 3/2/2026
- Repo Updated
- 3/1/2026
- Created
- 1/28/2026
Reviews (0)
No reviews yet. Be the first to review this skill!
Related Skills
upgrade-webkit
Upgrade Bun's Webkit fork to the latest upstream version of Webkit.
upgrade-nodejs
Upgrading Bun's Self-Reported Node.js Version
cursorrules
CrewAI Development Rules
cn-check
Install and run the Continue CLI (`cn`) to execute AI agent checks on local code changes. Use when asked to "run checks", "lint with AI", "review my changes with cn", or set up Continue CI locally.
Related Guides
Bear Notes Claude Skill: Your AI-Powered Note-Taking Assistant
Learn how to use the bear-notes Claude skill. Complete guide with installation instructions and examples.
Mastering tmux with Claude: A Complete Guide to the tmux Claude Skill
Learn how to use the tmux Claude skill. Complete guide with installation instructions and examples.
OpenAI Whisper API Claude Skill: Complete Guide to AI-Powered Audio Transcription
Learn how to use the openai-whisper-api Claude skill. Complete guide with installation instructions and examples.