Skip to content

feat: add spec-kit-fixit extension to community catalog#2024

Open
ismaelJimenez wants to merge 3 commits intogithub:mainfrom
ismaelJimenez:feat/add-fixit-extension-to-community-catalog
Open

feat: add spec-kit-fixit extension to community catalog#2024
ismaelJimenez wants to merge 3 commits intogithub:mainfrom
ismaelJimenez:feat/add-fixit-extension-to-community-catalog

Conversation

@ismaelJimenez
Copy link
Copy Markdown
Contributor

@ismaelJimenez ismaelJimenez commented Mar 30, 2026

Description

Add the spec-kit-fixit community extension to the catalog. Fixit provides spec-aware bug fixing — maps bugs to spec artifacts, proposes a plan, and applies minimal changes.

Changes:

  • Added fixit entry to extensions/catalog.community.json (alphabetical order)
  • Added Fixit Extension row to the Community Extensions table in README.md

Testing

  • Tested with a sample project (if applicable)

AI Disclosure

  • I did use AI assistance (describe below)

AI was used to draft the fixit command.

@ismaelJimenez ismaelJimenez force-pushed the feat/add-fixit-extension-to-community-catalog branch from 6e3669f to 0a0d634 Compare March 30, 2026 17:12
@ismaelJimenez ismaelJimenez requested a review from mnriem as a code owner March 30, 2026 17:12
@mnriem mnriem requested a review from Copilot March 30, 2026 18:58
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds the new spec-kit-fixit community extension to Spec Kit’s community extension listings, keeping the extension catalog and documentation in sync.

Changes:

  • Added a new fixit entry to extensions/catalog.community.json (kept in alphabetical order by extension id).
  • Added a corresponding “Fixit Extension” row to the Community Extensions table in README.md.
  • Bumped the community catalog updated_at timestamp to 2026-03-30T00:00:00Z.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.

File Description
README.md Adds Fixit to the Community Extensions table so users can discover it from the main docs.
extensions/catalog.community.json Registers the Fixit extension metadata in the community catalog and updates the catalog timestamp.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@ismaelJimenez ismaelJimenez force-pushed the feat/add-fixit-extension-to-community-catalog branch from 0a0d634 to 5d22c38 Compare March 31, 2026 09:42
@mnriem mnriem requested a review from Copilot March 31, 2026 11:38
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Copy link
Copy Markdown
Collaborator

@mnriem mnriem left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please address Copilot feedback

@ismaelJimenez ismaelJimenez force-pushed the feat/add-fixit-extension-to-community-catalog branch from 5d22c38 to 33b91e3 Compare March 31, 2026 11:56
@ismaelJimenez ismaelJimenez requested a review from mnriem March 31, 2026 11:58
@mnriem mnriem requested a review from Copilot March 31, 2026 11:58
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 2 out of 2 changed files in this pull request and generated no new comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@ismaelJimenez ismaelJimenez force-pushed the feat/add-fixit-extension-to-community-catalog branch from 33b91e3 to 40e7cb7 Compare April 1, 2026 18:32
@mnriem mnriem requested a review from Copilot April 1, 2026 18:45
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.

Comments suppressed due to low confidence (3)

extensions/catalog.community.json:379

  • This entry key is no longer indented to match surrounding extension entries (e.g., "extensify" above). Please restore the standard indentation for keys under extensions to avoid a formatting regression in the catalog.
    },
"fix-findings": {
      "name": "Fix Findings",

extensions/catalog.community.json:396

  • "hooks": 1 is missing indentation inside the provides object, which makes the JSON formatting inconsistent and harder to scan. Please reformat this block to match the surrounding indentation.
      "provides": {
        "commands": 1,
"hooks": 1
      },

extensions/catalog.community.json:408

  • "created_at" is missing indentation compared to the other fields in this object. Please reformat this line (and any adjacent lines) to match the file’s standard 2-space indentation.
      "stars": 0,
"created_at": "2026-04-01T00:00:00Z",
      "updated_at": "2026-04-01T00:00:00Z"

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines 378 to 381
"fix-findings": {
"name": "Fix Findings",
"id": "fix-findings",
"description": "Automated analyze-fix-reanalyze loop that resolves spec findings until clean.",
Copy link

Copilot AI Apr 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The fix-findings entry has unintended whitespace/indentation changes (e.g., the top-level key at line 378, and also fields like hooks/created_at later in the same object). While JSON will still parse, this breaks the consistent formatting used by neighboring entries (e.g., extensify is indented under extensions) and creates noisy diffs. Please reformat this section to match the surrounding 2/4-space indentation (or run the repo’s JSON formatter) and avoid unrelated edits in a PR that’s only adding fixit.

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed

Copy link
Copy Markdown
Collaborator

@mnriem mnriem left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please address Copilot feedback. And then would should be ready

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 2 out of 2 changed files in this pull request and generated no new comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants