Skip to content

Commit 46f5c53

Browse files
docs: point repo references at slackapi/slack-skills-plugin (#91)
* docs: point repo references at slack-skills-plugin * chore: fix nit --------- Co-authored-by: William Bergamin <wbergamin@slack-corp.com>
1 parent 3f73fc7 commit 46f5c53

7 files changed

Lines changed: 14 additions & 9 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"slack": patch
3+
---
4+
5+
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.

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"name": "Slack",
77
"url": "https://slack.com"
88
},
9-
"homepage": "https://github.com/slackapi/slack-mcp-plugin",
9+
"homepage": "https://github.com/slackapi/slack-skills-plugin",
1010
"license": "MIT"
1111
}

.github/contributing.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ well.
77
There are many ways you can contribute! :heart:
88

99
### Bug Reports and Fixes :bug:
10-
- If you find a bug, please search for it in the [Issues](https://github.com/slackapi/slack-mcp-cursor-plugin/issues), and if it isn't already tracked,
11-
[create a new issue](https://github.com/slackapi/slack-mcp-cursor-plugin/issues/new). Fill out the "Bug Report" section of the issue template. Even if an Issue is closed, feel free to comment and add details, it will still
10+
- If you find a bug, please search for it in the [Issues](https://github.com/slackapi/slack-skills-plugin/issues), and if it isn't already tracked,
11+
[create a new issue](https://github.com/slackapi/slack-skills-plugin/issues/new). Fill out the "Bug Report" section of the issue template. Even if an Issue is closed, feel free to comment and add details, it will still
1212
be reviewed.
1313
- Issues that have already been identified as a bug (note: able to reproduce) will be labelled `bug`.
1414
- If you'd like to submit a fix for a bug, [send a Pull Request](#creating_a_pull_request) and mention the Issue number.
1515
- Include tests that isolate the bug and verifies that it was fixed.
1616

1717
### New Features :bulb:
18-
- If you'd like to add new functionality to this project, describe the problem you want to solve in a [new Issue](https://github.com/slackapi/slack-mcp-cursor-plugin/issues/new).
18+
- If you'd like to add new functionality to this project, describe the problem you want to solve in a [new Issue](https://github.com/slackapi/slack-skills-plugin/issues/new).
1919
- Issues that have been identified as a feature request will be labelled `enhancement`.
2020
- If you'd like to implement the new feature, please wait for feedback from the project
2121
maintainers before spending too much time writing the code. In some cases, `enhancement`s may
@@ -26,7 +26,7 @@ There are many ways you can contribute! :heart:
2626
alternative implementation of something that may have advantages over the way its currently
2727
done, or you have any other change, we would be happy to hear about it!
2828
- If its a trivial change, go ahead and [send a Pull Request](#creating_a_pull_request) with the changes you have in mind.
29-
- If not, [open an Issue](https://github.com/slackapi/slack-mcp-cursor-plugin/issues/new) to discuss the idea first.
29+
- If not, [open an Issue](https://github.com/slackapi/slack-skills-plugin/issues/new) to discuss the idea first.
3030

3131
If you're new to our project and looking for some way to make your first contribution, look for
3232
Issues labelled `good first contribution`.

.github/maintainers_guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Maintainers Guide
22

33
This document describes tools, tasks, and workflows needed to maintain the
4-
`slackapi/slack-mcp-plugin` repository. This is a skills plugin
4+
`slackapi/slack-skills-plugin` repository. This is a skills plugin
55
marketplace, so the primary maintenance work is keeping skill content accurate
66
and plugin versions correct rather than managing build artifacts or package
77
registries.

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616

1717
### Requirements
1818

19-
- [ ] I've read and understood the [Contributing Guidelines](https://github.com/slackapi/slack-mcp-plugin/blob/main/.github/contributing.md) and have done my best effort to follow them.
19+
- [ ] I've read and understood the [Contributing Guidelines](https://github.com/slackapi/slack-skills-plugin/blob/main/.github/contributing.md) and have done my best effort to follow them.
2020
- [ ] I've read and agree to the [Code of Conduct](https://slackhq.github.io/code-of-conduct).
2121
- [ ] I've run `make test` and the tests pass.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A [Claude Code][claude-code] and [Cursor][cursor] plugin that brings Slack into your AI tools with a [Slack MCP Server][slack-mcp-docs] and set of Slack skills for both users and developers.
44

5-
[![CI Build](https://github.com/slackapi/slack-mcp-plugin/actions/workflows/ci-build.yml/badge.svg)](https://github.com/slackapi/slack-mcp-plugin/actions/workflows/ci-build.yml)
5+
[![CI Build](https://github.com/slackapi/slack-skills-plugin/actions/workflows/ci-build.yml/badge.svg)](https://github.com/slackapi/slack-skills-plugin/actions/workflows/ci-build.yml)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
77

88
## Installation

tests/support/tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
__all__ = ["get_all_skill_tools", "get_slack_mcp_tools"]
1313

14-
_CLIENT_INFO = types.Implementation(name="slack-mcp-skills-tests", version="0.0.0")
14+
_CLIENT_INFO = types.Implementation(name="slack-skills-tests", version="0.0.0")
1515

1616

1717
def get_all_skill_tools() -> list[ToolCall]:

0 commit comments

Comments
 (0)