Simplify the community catalog submission flow to use issue templates with manual maintainer review (no automation scripts or workflows). - Add explicit CODEOWNERS entries for catalog.community.json files so submissions are automatically assigned to a maintainer for review - Improve preset submission template: - Add 'Required Extensions' optional field - Make 'Templates Provided' optional (supports command-only presets) - Add 'Number of Scripts' optional field The existing extension and preset issue templates already collect all required catalog metadata. Maintainers review submissions and manually update the catalog JSON files. Closes #2400
11 KiB
Extension Publishing Guide
This guide explains how to publish your extension to the Spec Kit extension catalog, making it discoverable by specify extension search.
Table of Contents
Prerequisites
Before publishing an extension, ensure you have:
- Valid Extension: A working extension with a valid
extension.ymlmanifest - Git Repository: Extension hosted on GitHub (or other public git hosting)
- Documentation: README.md with installation and usage instructions
- License: Open source license file (MIT, Apache 2.0, etc.)
- Versioning: Semantic versioning (e.g., 1.0.0)
- Testing: Extension tested on real projects
Prepare Your Extension
1. Extension Structure
Ensure your extension follows the standard structure:
your-extension/
├── extension.yml # Required: Extension manifest
├── README.md # Required: Documentation
├── LICENSE # Required: License file
├── CHANGELOG.md # Recommended: Version history
├── .gitignore # Recommended: Git ignore rules
│
├── commands/ # Extension commands
│ ├── command1.md
│ └── command2.md
│
├── config-template.yml # Config template (if needed)
│
└── docs/ # Additional documentation
├── usage.md
└── examples/
2. extension.yml Validation
Verify your manifest is valid:
schema_version: "1.0"
extension:
id: "your-extension" # Unique lowercase-hyphenated ID
name: "Your Extension Name" # Human-readable name
version: "1.0.0" # Semantic version
description: "Brief description (one sentence)"
author: "Your Name or Organization"
repository: "https://github.com/your-org/spec-kit-your-extension"
license: "MIT"
homepage: "https://github.com/your-org/spec-kit-your-extension"
requires:
speckit_version: ">=0.1.0" # Required spec-kit version
provides:
commands: # List all commands
- name: "speckit.your-extension.command"
file: "commands/command.md"
description: "Command description"
tags: # 2-5 relevant tags
- "category"
- "tool-name"
Validation Checklist:
- ✅
idis lowercase with hyphens only (no underscores, spaces, or special characters) - ✅
versionfollows semantic versioning (X.Y.Z) - ✅
descriptionis concise (under 100 characters) - ✅
repositoryURL is valid and public - ✅ All command files exist in the extension directory
- ✅ Tags are lowercase and descriptive
3. Create GitHub Release
Create a GitHub release for your extension version:
# Tag the release
git tag v1.0.0
git push origin v1.0.0
# Create release on GitHub
# Go to: https://github.com/your-org/spec-kit-your-extension/releases/new
# - Tag: v1.0.0
# - Title: v1.0.0 - Release Name
# - Description: Changelog/release notes
The release archive URL will be:
https://github.com/your-org/spec-kit-your-extension/archive/refs/tags/v1.0.0.zip
4. Test Installation
Test that users can install from your release:
# Test dev installation
specify extension add --dev /path/to/your-extension
# Test from GitHub archive
specify extension add <extension-name> --from https://github.com/your-org/spec-kit-your-extension/archive/refs/tags/v1.0.0.zip
Submit to Catalog
Understanding the Catalogs
Spec Kit uses a dual-catalog system. For details about how catalogs work, see the main Extensions README.
For extension publishing: All community extensions are listed in extensions/catalog.community.json. Users browse this catalog and copy extensions they trust into their own catalog.json.
How to Submit
To submit your extension to the community catalog, file a new issue using the Extension Submission template. The template collects all required metadata, including:
- Extension ID, name, and version
- Description, author, and license
- Repository, download URL, and documentation links
- Required Spec Kit version and any tool dependencies
- Number of commands and hooks
- Tags and key features
- Testing confirmation
Important
Do not open a pull request directly to edit
extensions/catalog.community.json. All community extension submissions must go through the issue template so a maintainer can review the entry and update the catalog.
What Happens After You Submit
- Your issue is automatically labeled and assigned to a maintainer for review
- A maintainer verifies that the catalog entry is complete and correctly formatted
- Once approved, the maintainer adds your extension to
extensions/catalog.community.jsonand the Community Extensions table in the README - Your extension becomes discoverable via
specify extension search
What Maintainers Check
- The catalog entry fields are complete and correctly formatted
- The download URL is accessible
- The repository exists and contains an
extension.ymlmanifest
Note
Maintainers do not review, audit, or test the extension code itself.
Typical Review Timeline
- Review: 3-7 business days
Updating an Existing Extension
To update an extension that is already in the catalog (e.g., for a new version), file a new Extension Submission issue with the updated version, download URL, and any other changed fields. Mention in the issue that this is an update to an existing entry.
Release Workflow
Publishing New Versions
When releasing a new version:
-
Update version in
extension.yml:extension: version: "1.1.0" # Updated version -
Update CHANGELOG.md:
## [1.1.0] - 2026-02-15 ### Added - New feature X ### Fixed - Bug fix Y -
Create GitHub release:
git tag v1.1.0 git push origin v1.1.0 # Create release on GitHub -
File an update submission using the Extension Submission template with the new version and download URL. Mention in the issue that this is an update to an existing entry.
Best Practices
Extension Design
- Single Responsibility: Each extension should focus on one tool/integration
- Clear Naming: Use descriptive, unambiguous names
- Minimal Dependencies: Avoid unnecessary dependencies
- Backward Compatibility: Follow semantic versioning strictly
Documentation
-
README.md Structure:
- Overview and features
- Installation instructions
- Configuration guide
- Usage examples
- Troubleshooting
- Contributing guidelines
-
Command Documentation:
- Clear description
- Prerequisites listed
- Step-by-step instructions
- Error handling guidance
- Examples
-
Configuration:
- Provide template file
- Document all options
- Include examples
- Explain defaults
Security
- Input Validation: Validate all user inputs
- No Hardcoded Secrets: Never include credentials
- Safe Dependencies: Only use trusted dependencies
- Audit Regularly: Check for vulnerabilities
Maintenance
- Respond to Issues: Address issues within 1-2 weeks
- Regular Updates: Keep dependencies updated
- Changelog: Maintain detailed changelog
- Deprecation: Give advance notice for breaking changes
Community
- License: Use permissive open-source license (MIT, Apache 2.0)
- Contributing: Welcome contributions
- Code of Conduct: Be respectful and inclusive
- Support: Provide ways to get help (issues, discussions, email)
FAQ
Q: Can I publish private/proprietary extensions?
A: The main catalog is for public extensions only. For private extensions:
- Host your own catalog.json file
- Users add your catalog:
specify extension add-catalog https://your-domain.com/catalog.json - Not yet implemented - coming in Phase 4
Q: How long does review take?
A: Typically 3-7 business days. Updates to existing extensions are usually faster.
Q: What if my extension is rejected?
A: You'll receive feedback on what needs to be fixed. Make the changes and resubmit.
Q: Can I update my extension anytime?
A: Yes, file a new Extension Submission issue with the updated version and download URL. Mention that it is an update to an existing entry.
Q: Do I need to be verified to be in the catalog?
A: No. All community extensions are listed in the catalog once their submission is reviewed and accepted.
Q: Can extensions have paid features?
A: Extensions should be free and open-source. Commercial support/services are allowed, but core functionality must be free.
Support
- Catalog Issues: https://github.com/statsperform/spec-kit/issues
- Extension Template: https://github.com/statsperform/spec-kit-extension-template (coming soon)
- Development Guide: See EXTENSION-DEVELOPMENT-GUIDE.md
- Community: Discussions and Q&A
Appendix: Catalog Schema
Complete Catalog Entry Schema
{
"name": "string (required)",
"id": "string (required, unique)",
"description": "string (required, <200 chars)",
"author": "string (required)",
"version": "string (required, semver)",
"download_url": "string (required, valid URL)",
"repository": "string (required, valid URL)",
"homepage": "string (optional, valid URL)",
"documentation": "string (optional, valid URL)",
"changelog": "string (optional, valid URL)",
"license": "string (required)",
"requires": {
"speckit_version": "string (required, version specifier)",
"tools": [
{
"name": "string (required)",
"version": "string (optional, version specifier)",
"required": "boolean (default: false)"
}
]
},
"provides": {
"commands": "integer (optional)",
"hooks": "integer (optional)"
},
"tags": ["array of strings (2-10 tags)"],
"verified": "boolean (default: false, set by maintainers)",
"downloads": "integer (auto-updated)",
"stars": "integer (auto-updated)",
"created_at": "string (ISO 8601 datetime)",
"updated_at": "string (ISO 8601 datetime)"
}
Valid Tags
Recommended tag categories:
- Integration: jira, linear, github, gitlab, azure-devops
- Category: issue-tracking, vcs, ci-cd, documentation, testing
- Platform: atlassian, microsoft, google
- Feature: automation, reporting, deployment, monitoring
Use 2-5 tags that best describe your extension.
Last Updated: 2026-01-28 Catalog Format Version: 1.0