diff --git a/.changeset/add-rumdl-markdown-linter.md b/.changeset/add-rumdl-markdown-linter.md deleted file mode 100644 index c288b24..0000000 --- a/.changeset/add-rumdl-markdown-linter.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"slack": patch ---- - -Add rumdl Markdown linting to `make lint`/`make format` and clean up formatting across the skill and command docs. diff --git a/.changeset/announce-releases-on-slack.md b/.changeset/announce-releases-on-slack.md deleted file mode 100644 index 15cc0a8..0000000 --- a/.changeset/announce-releases-on-slack.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"slack": patch ---- - -Automate release announcements to the internal maintainers' Slack channel from the release workflow. diff --git a/.changeset/clarify-docs-search-boundary.md b/.changeset/clarify-docs-search-boundary.md deleted file mode 100644 index 8b14cbd..0000000 --- a/.changeset/clarify-docs-search-boundary.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"slack": minor ---- - -Route general Slack documentation questions to the slack-docs skill. The slack-cli skill's docs search is now scoped to terminal-based lookups via `slack docs search`, removing the overlap with slack-docs. diff --git a/.changeset/drop-sandbox-experiment-flag.md b/.changeset/drop-sandbox-experiment-flag.md deleted file mode 100644 index 6eee3f2..0000000 --- a/.changeset/drop-sandbox-experiment-flag.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"slack": patch ---- - -Drop the `--experiment=sandboxes` flag from `slack sandbox` invocations in the `create-slack-app` skill. The experiment has been removed from `slack-cli`, so the flag now surfaces an unknown-experiment warning that can confuse users and agents. diff --git a/.changeset/fix-plugin-homepage.md b/.changeset/fix-plugin-homepage.md deleted file mode 100644 index 7a35772..0000000 --- a/.changeset/fix-plugin-homepage.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"slack": patch ---- - -Fix the `homepage` field in `.claude-plugin/plugin.json` to point to this repository instead of `slackapi/slack-mcp-cursor-plugin`, which does not exist and returned a 404. diff --git a/.changeset/publish-github-releases.md b/.changeset/publish-github-releases.md deleted file mode 100644 index 5fb5b5d..0000000 --- a/.changeset/publish-github-releases.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"slack": patch ---- - -Publish GitHub Releases from the release workflow so each tag has release notes. diff --git a/.changeset/rename-repo-to-slack-skills-plugin.md b/.changeset/rename-repo-to-slack-skills-plugin.md deleted file mode 100644 index 3b755ec..0000000 --- a/.changeset/rename-repo-to-slack-skills-plugin.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"slack": patch ---- - -Update the `homepage` field in `.claude-plugin/plugin.json` and repo links in docs to point to `slackapi/slack-skills-plugin`, the repository's new name. diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 7fa03b6..815e7a2 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "slack", "description": "Slack integration for searching messages, sending communications, managing canvases, and more", - "version": "1.1.0", + "version": "1.2.0", "author": { "name": "Slack", "url": "https://slack.com" diff --git a/.cursor-plugin/plugin.json b/.cursor-plugin/plugin.json index d11ebcd..b20b7fc 100644 --- a/.cursor-plugin/plugin.json +++ b/.cursor-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "slack", "description": "Slack MCP server. Search channels, send messages, and perform other Slack actions through MCP-compatible clients.", - "version": "1.1.0", + "version": "1.2.0", "mcpServers": "../.cursor-mcp.json", "author": { "name": "Slack" diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d5c05ce --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +# slack + +## 1.2.0 + +### Minor Changes + +- 5a6f612: Route general Slack documentation questions to the slack-docs skill. The slack-cli skill's docs search is now scoped to terminal-based lookups via `slack docs search`, removing the overlap with slack-docs. + +### Patch Changes + +- c4caf79: Add rumdl Markdown linting to `make lint`/`make format` and clean up formatting across the skill and command docs. +- 3906698: Automate release announcements to the internal maintainers' Slack channel from the release workflow. +- 7bd09ea: Drop the `--experiment=sandboxes` flag from `slack sandbox` invocations in the `create-slack-app` skill. The experiment has been removed from `slack-cli`, so the flag now surfaces an unknown-experiment warning that can confuse users and agents. +- 9ea300a: Fix the `homepage` field in `.claude-plugin/plugin.json` to point to this repository instead of `slackapi/slack-mcp-cursor-plugin`, which does not exist and returned a 404. +- 9635a2f: Publish GitHub Releases from the release workflow so each tag has release notes. +- 46f5c53: Update the `homepage` field in `.claude-plugin/plugin.json` and repo links in docs to point to `slackapi/slack-skills-plugin`, the repository's new name. diff --git a/package.json b/package.json index 3748173..6723b1e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "slack", - "version": "1.1.0", + "version": "1.2.0", "private": true, "engines": { "node": ">=26"