chore(dev): archive blueprint refactor session docs#28
Merged
patchmemory merged 2 commits intomainfrom Feb 3, 2026
Merged
Conversation
Session docs from blueprint refactor have been archived to: dev/sessions/2026-01-26-blueprint-refactor/ Includes: - BLUEPRINT_REFACTOR_PROGRESS.md - Session progress tracking - COMMIT_SUMMARY.md - Commit checklist - GIT_COMMIT_CHECKLIST.md - Git workflow notes - MERGE_WORKFLOW.md - PR merge instructions - app.py.before-refactor - Pre-refactor backup (268KB) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Replace ~60 lines of manual interpreter registration with a centralized registry pattern. Each interpreter now declares its file extensions as a class attribute, and registration happens automatically via a single register_all() call. Changes: - Add scidk/interpreters/__init__.py with INTERPRETERS list and register_all() - Add extensions attribute to all interpreter classes (PythonCodeInterpreter, CsvInterpreter, JsonInterpreter, YamlInterpreter, IpynbInterpreter, TxtInterpreter, XlsxInterpreter) - Update scidk/app.py to use register_all() instead of manual registration - Auto-generate rules from interpreter extensions (pattern matching) Benefits: - Adding new interpreters now requires only: create class, add to INTERPRETERS list - No more manual registry.register_extension() and registry.register_rule() calls - Centralized source of truth for interpreter metadata - Reduces boilerplate and maintenance burden 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
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
This PR archives session documentation from the blueprint refactoring work AND completes the interpreter refactoring to centralize registration with auto-discovery.
Changes
Session Documentation Archive
dev/sessions/2026-01-26-blueprint-refactor/Interpreter Refactoring (NEW)
scidk/interpreters/__init__.py: DefinesINTERPRETERSlist andregister_all()functionextensionsattribute to all interpreter classesscidk/app.py: Now usesregister_all(registry)instead of manual callsBenefits
Archived Files
BLUEPRINT_REFACTOR_PROGRESS.md,COMMIT_SUMMARY.md,GIT_COMMIT_CHECKLIST.md,MERGE_WORKFLOW.mdapp.py.before-refactor- Pre-refactor backupContext
Cleanup after successful merge of PR #27 + completion of interpreter refactoring.
🤖 Generated with Claude Code