feat(extensions): Add architect extension with /architect.analyze#57
Merged
Conversation
…mand - Convert architect commands to distributable extension - Add new /architect.analyze command for ADR<->AD consistency analysis - Auto-bundle with levelup extension during specify init - Include detection passes: ADR quality, inter-ADR consistency, ADR->AD drift, AD->ADR drift, AD internal consistency, staleness detection, feature-system alignment - Follows Rozanski & Woods methodology Fixes #36
- Add 'preinstall: true' flag to catalog.json for levelup and architect - Release scripts now read preinstall list from catalog.json - install_bundled_extensions() reads from .specify/catalog.json - Fallback: if no preinstall flag, install all extensions - Warn if catalog.json is malformed To add new pre-installed extension: just add 'preinstall: true' to its entry in extensions/catalog.json - no code changes needed!
📊 Eval ResultsOverall: 21/25 tests passed (84%)
❌ Failed Tests
✅ Quality thresholds met! |
kanfil
added a commit
that referenced
this pull request
Mar 4, 2026
- Add architect extension to hatch build force-include - Bump version to 0.0.88 - Extension was merged in #57 but not included in builds
kanfil
added a commit
that referenced
this pull request
Mar 4, 2026
- Remove dead code from create-release-packages.sh (architect.* filename handling) - Remove dead code from create-release-packages.ps1 (architect.* filename handling) - Delete obsolete templates/architecture-template.md (superseded by extensions/architect/templates/AD-template.md) - Architect commands moved to extension in PR #57, no longer in templates/commands/
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.
Summary
Converts the built-in architect commands to a distributable extension following the spec-kit extension system, and adds a new
/architect.analyzecommand.Changes
New Extension:
architect/architect.init- Brownfield: reverse-engineer ADRs from codebase/architect.specify- Greenfield: interactive PRD -> ADRs/architect.clarify- Refine/validate ADRs through questions/architect.implement- Generate AD.md from ADRs/architect.analyze- NEW Validate ADR<->AD consistencyBundling
levelupandarchitectextensions are now pre-installed duringspecify initDocumentation
docs/architecture.mduser guideDetection Passes (analyze command)
Testing
Related Issues
Fixes #36