Add markitdown to community catalog#2390
Merged
mnriem merged 1 commit intogithub:mainfrom Apr 28, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new community extension entry to Spec Kit’s extension catalog so users can discover and use the MarkItDown-based document-to-Markdown converter in workflows.
Changes:
- Updated
extensions/catalog.community.jsonupdated_atand added new catalog entry/entries. - Added a new row to the Community Extensions table in
README.md.
Show a summary per file
| File | Description |
|---|---|
| extensions/catalog.community.json | Bumps catalog timestamp and adds new extension metadata entries (including MarkItDown; also includes an unexpected duplicate m365 entry). |
| README.md | Adds Community Extensions table rows for MarkItDown (and Microsoft 365). |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comments suppressed due to low confidence (2)
extensions/catalog.community.json:1252
- The
extensionsobject contains two separate"m365"entries (one earlier around lines 944–982 and another here). In JSON, duplicate keys are ambiguous and most parsers will silently keep only the last occurrence, which would discard the first entry and make the catalog data inconsistent (different descriptions/commands/created_at/etc.). Keep a singlem365entry and remove the duplicate; also ensure the remaining entry’s fields are consistent and placed in the correct sorted position within the catalog.
This issue also appears on line 1260 of the same file.
"memory-loader": {
"name": "Memory Loader",
"id": "memory-loader",
"description": "Loads .specify/memory/ files before spec-kit lifecycle commands so LLM agents have project governance context",
"author": "KevinBrown5280",
extensions/catalog.community.json:1263
- This
requires.toolsvalue is a list of strings, but the publishing guide’s catalog format uses an array of objects (with at least aname, optionallyversion/required). Using a different shape here makes the catalog inconsistent and can break tooling that assumes the documented schema. Please switchtoolsto the object form (or remove this block if you’re deleting the duplicatem365entry).
"requires": {
"speckit_version": ">=0.6.0"
},
"provides": {
- Files reviewed: 2/2 changed files
- Comments generated: 2
Contributor
There was a problem hiding this comment.
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 2/2 changed files
- Comments generated: 1
dcbad29 to
eb89acf
Compare
eb89acf to
0751d60
Compare
Contributor
There was a problem hiding this comment.
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 2/2 changed files
- Comments generated: 0 new
mnriem
approved these changes
Apr 28, 2026
Collaborator
|
Thank you! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds the MarkItDown Document Converter community extension to the Spec Kit extension catalog.
This extension converts documents (PDF, Word, PowerPoint, Excel, and more) to Markdown using Microsoft's MarkItDown library, making them available as spec reference material in Spec Kit workflows. It provides a single
convertcommand and requiresmarkitdown >= 0.1.0.Changes:
markitdownentry to catalog.community.jsonupdated_attimestamp to2026-04-28Testing
uv run specify --helpuv sync && uv run pytestAI Disclosure
Extension authored with GitHub Copilot assistance, including the extension.yml manifest, convert.md instruction file, and catalog entry.