🛍️ 更多精选好物 ›
📊 公开数据一览
| 📦 榜单安装量 | 659 |
| ⭐ GitHub Stars | 22(fork 3) |
| 🗓️ 最近推送 | 2026-07-15 |
| 🌱 项目创建 | 2026-02-06 |
| 💻 语言 / License | TypeScript · Apache-2.0 |
| 🐛 开放Issue | 0 |
📝 工具简介
构建部署到Vercel的Slack agent技能包。
📖 怎么用
先运行 `/slack-agent new` 初始化新项目,它会自动用 eve 框架搭好脚手架。想配置现有项目就执行 `/slack-agent configure`,能自动检测 eve。接着用 `npx eve@latest init my-agent` 创建 agent 项目(需要 Node 24+),然后跑 `vercel connect create slack --triggers` 创建 Slack 连接器,最后用 `vercel connect attach <uid> --triggers --trigger-path /eve/v1/slack --yes` 挂载触发器。开发完直接 `/slack-agent deploy` 部署上线,全程不用手动管 bot token 和签名密钥。
📋 迷你测评
构建部署到Vercel的Slack agent技能包。亮点是直接对接Slack,聊天里就能用agent。适合团队内部工具快速落地。
📄 README 要点
这个工具是帮你在 Vercel 上快速搭建和部署 Slack 机器人的技能包,底层用的是 Vercel 自家的 eve 框架和 Connect 服务。最省心的地方在于,它把 Slack 的 OAuth 认证、token 轮换和 webhook 验证都托管了,你根本不用碰那些烦人的 bot token 和签名密钥,环境变量里只需要一个 SLACK_CONNECTOR 就行。安装时有交互式向导,从建项目到上线一步步带你走,还会根据你机器人的用途自动生成定制化的实现方案。代码结构是文件系统优先,instructions.md 定义行为,工具函数放 agent/tools/,频道配置在 agent/channels/,运行起来很稳,崩溃了也能自动恢复。默认接入了 Vercel AI Gateway,用 Claude Sonnet 5 做智能处理,连 AI API key 都不用自己配。适合想快速搞一个生产级 Slack 机器人又不想折腾基础设施的开发者。
查看英文原文
Slack Agent Skill A skill for building and deploying Slack agents on Vercel with eve (Vercel's durable agent framework) and Vercel Connect (managed Slack credentials — no bot tokens or signing secrets to handle). Features Interactive Setup Wizard : Step by step guidance from project creation to production deployment eve Framework : Filesystem first agents — instructions.md , defineAgent , tools in agent/tools/ , a Slack channel in agent/channels/ — with a durable, crash safe runtime Vercel Connect Integration : Managed Slack OAuth, token rotation, and webhook verification; the only Slack env var is SLACK CONNECTOR Custom Implementation Planning : Generates a tailored plan based on your agent's purpose before scaffolding Quality Standards : Embedded testing and code quality requirements AI Integration : Vercel AI Gateway ( anthropic/claude sonnet 5 by default) — no AI API keys on Vercel Comprehensive Patterns : eve tools, approval gating, thread context, and Slack delivery patterns Testing Framework : Vitest configuration and sample tests Installation Via skills.sh (Recommended) npx skills add vercel labs/slack agent skill Manual Installation Clone the repository into your skills directory. For example, with Claude Code: git clone https://github.com/vercel labs/slack agent skill.git /.claude/skills/slack agent skill Usage Starting a New Project Run the slash command: [安装/使用命令见下方] The wizard will guide you through: 1. Project setup with custom implementation plan generation and approval 2. Slack connector creation with Vercel Connect 3. Environment configuration 4. Local agent testing with the eve dev TUI 5. Production deployment to Vercel 6. Test framework setup Note: Slack events route through Vercel Connect to your deployed project, so the Slack surface itself is tested after deploy — no ngrok tunnel needed. Everything else (tools, instructions, conversations) is tested locally in the eve dev TUI. Development When working on an existing Slack agent project, the ski
💬 评论(0)
交流使用体验、避坑建议;违规内容将被删除