-
Notifications
You must be signed in to change notification settings - Fork 6.7k
docs: update publishing guide with Category and Effect columns #1912
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -209,9 +209,22 @@ Edit `extensions/catalog.community.json` and add your extension: | |
| Add your extension to the Available Extensions table in `extensions/README.md`: | ||
|
|
||
| ```markdown | ||
| | Your Extension Name | Brief description of what it does | [repo-name](https://github.com/your-org/spec-kit-your-extension) | | ||
| | Your Extension Name | Brief description of what it does | `category` | Effect | [repo-name](https://github.com/your-org/spec-kit-your-extension) | | ||
| ``` | ||
|
Comment on lines
209
to
213
|
||
|
|
||
| **Category** — pick the one that best fits your extension: | ||
|
|
||
| - `docs` — reads, validates, or generates spec artifacts | ||
| - `code` — reviews, validates, or modifies source code | ||
| - `process` — orchestrates workflow across phases | ||
| - `integration` — syncs with external platforms | ||
| - `visibility` — reports on project health or progress | ||
|
Comment on lines
+215
to
+221
|
||
|
|
||
| **Effect** — choose one: | ||
|
|
||
| - `Read-only` — produces reports without modifying files | ||
| - `Read+Write` — modifies files, creates artifacts, or updates specs | ||
|
|
||
| Insert your extension in alphabetical order in the table. | ||
|
|
||
| ### 4. Submit Pull Request | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the example table row,
categoryis shown in backticks while the Effect column is the literal word "Effect" (not a placeholder/value). Consider using real placeholder values (e.g., one of the listed categories and eitherRead-only/Read+Write) and keep formatting consistent with the README table (which uses plain text rather than inline code formatting).