fix: override extension catalog URLs to point at fork repo (0.15.2+adlc4) - #109
Merged
Conversation
kanfil
force-pushed
the
fix/extension-catalog-url
branch
from
August 5, 2026 21:37
62499ea to
1e7c135
Compare
ExtensionCatalog.DEFAULT_CATALOG_URL and COMMUNITY_CATALOG_URL now point at tikalk/agentic-sdlc-spec-kit instead of github/spec-kit. Previously 'specify extension update' fetched upstream's catalog which doesn't list fork-bundled extensions (levelup, team-ai-directives, evals, edd, architect) -> 'Not found in catalog' warnings, and found tdd/product in upstream's community catalog -> 'Updates not allowed from community'. Fork constants FORK_DEFAULT_CATALOG_URL/FORK_COMMUNITY_CATALOG_URL added to _core_fork.py; override applied in extensions/__init__.py ExtensionCatalog class body (try/except with fallback to upstream URLs). Note: stale catalog cache may persist for up to 1 hour after upgrade; clear .specify/extensions/.cache/ to force immediate refresh. Assisted-by: opencode (model: glm-5.2, supervised)
kanfil
force-pushed
the
fix/extension-catalog-url
branch
from
August 5, 2026 21:37
1e7c135 to
4e9b06a
Compare
itaior
approved these changes
Aug 6, 2026
…-url # Conflicts: # CHANGELOG.md # FORK.md # pyproject.toml
kanfil
added a commit
that referenced
this pull request
Aug 12, 2026
… with main - fix: Alquimia argument hints after folded descriptions (github#4063) - Merge origin/main to incorporate PR #109/#110/#111 merge commits (0.16.0+adlc3 release tagged on main) Assisted-by: opencode (model: glm-5.2, supervised)
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.
Extension catalog URL override
PR filed on behalf of @kanfil by opencode (model: glm-5.2, supervised).
Problem
specify extension updatefetched upstream's catalog (github/spec-kit) which doesn't list fork-bundled extensions. Result:levelup,team-ai-directives,evals,edd,architect→ "Not found in catalog"tdd,product→ "Updates not allowed from 'community'" (found in upstream's community catalog instead of the fork's bundled catalog)Fix
ExtensionCatalog.DEFAULT_CATALOG_URLandCOMMUNITY_CATALOG_URLnow point attikalk/agentic-sdlc-spec-kit's catalog files. Fork constantsFORK_DEFAULT_CATALOG_URL/FORK_COMMUNITY_CATALOG_URLin_core_fork.py; override inextensions/__init__.pyExtensionCatalog class body (try/except with fallback).After fix
Note
Stale catalog cache (from old upstream URL) may persist for up to 1 hour after upgrade; clear
.specify/extensions/.cache/to force immediate refresh.Verification
ruff@0.15.0)Version
0.15.2+adlc2→0.15.2+adlc3