Completed Phase 4 of the schema-of-schemas implementation with successful migration of all legacy schemas to the new markdown format following the naming convention. Migration Script (scripts/migrate_schemas.py - 240 lines): - Automated schema migration from JSON to markdown format - Updates version and $id fields to follow conventions - Generates proper frontmatter metadata - Dry-run mode for safe testing - Database cleanup functionality - Comprehensive progress reporting Schemas Migrated (2): - terminology-schema.json → terminology-schema-v1.0.md - Fixed missing version field - Updated $id from /terminology-v1.json to /terminology/v1.0 - Validates successfully against metaschema - api-documentation → api-documentation-schema-v1.0.md - Added version: 1.0.0 - Updated $id to follow /api-documentation/v1.0 format - Validates successfully against metaschema Schemas Deleted (3): - markdown-manpage (duplicate of manpage-schema-v1.0.md) - markdown-manpage-schema.json (duplicate of manpage-schema-v1.0.md) - enhanced-manpage (replaced by manpage-schema-v1.0.md) CLI Enhancement (markitect/cli.py): - Updated schema-ingest to support markdown (.md) files - Auto-detects file type and uses MarkdownSchemaLoader for .md files - Extracts JSON schema from markdown for database storage - Maintains backward compatibility with JSON files Final Schema Registry (4 schemas): ✅ terminology-schema-v1.0.md - Terminology validation ✅ api-documentation-schema-v1.0.md - API documentation structure ✅ manpage-schema-v1.0.md - Unix manual pages ✅ schema-schema-v1.0.md - Metaschema for validating schemas All schemas: - Follow naming convention: {domain}-schema-v{major}.{minor}.md - Include proper frontmatter with schema-id, version, status - Validate successfully against schema-schema-v1.0.md metaschema - Stored in database and ready for use Progress Tracking: - Updated TODO.md with Phase 4 completion - Updated CHANGELOG.md with migration details - Next: Phase 5 - CLI & Documentation Updates 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
16 KiB
16 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Unreleased
Added
- Schema Management System: Comprehensive schema management infrastructure with naming conventions and versioning
- Naming convention:
{domain}-schema-v{major}.{minor}.mdfor all schemas - Markdown-first schema format with embedded JSON (documentation + schema in one file)
- Schema catalog (
markitect/schemas/schema-catalog.yaml) for metadata and discovery - Terminology validation example (
examples/terminology/) demonstrating schema usage beyond manpages - Schema-for-schemas workplan in
roadmap/schema-of-schemas/directory
- Naming convention:
- Enhanced schema-list Command: Now displays creation timestamps in all output formats
- Default format shows timestamps inline:
schema-name.json (added: 2026-01-04T23:01:19) - Table format includes Created/Updated columns
- Cleaner timestamp formatting (removed microseconds)
- Default format shows timestamps inline:
- Enhanced control panel UI with better resize handle positioning for improved user interaction
Changed
- Directory Reorganization: Renamed
todo/→roadmap/for better organization of planning documents- Created
roadmap/schema-of-schemas/subdirectory for schema management planning artifacts - Moved schema management proposals and workplan to dedicated directory
- Created
- Refactored contents control architecture to use base class pattern properly for better code organization
- Updated all file references and paths to point to single source of truth in capabilities/testdrive-jsui/js/controls/ directory
Fixed
- Duplicate file structure issue by eliminating duplicate control files and consolidating to capabilities/ directory
- Contents panel scrollbar behavior - moved overflow-y: auto to correct container level so scrollbar only spans content area when panel reaches max-height
Removed
- BREAKING: Legacy DocumentControls component from TestDrive JSUI plugin system - all control panel functionality now provided by enhanced control panels (ContentsControl, StatusControl, DebugControl, EditControl) with Reset All button functionality moved to EditControl for better maintainability and elimination of code duplication
In Progress
- Schema-of-Schemas Implementation (Phase 4 of 6 - Completed ✅)
- ✅ Phase 1: Filename validation for schema naming convention (
markitect/schema_naming.py, 50 tests) - ✅ Phase 2: Markdown schema loader to parse
.mdschema files (markitect/schema_loader.py, 35 tests) - ✅ Phase 3: Schema-for-schemas metaschema for schema validation (
schema-schema-v1.0.md, 12 tests) - ✅ Phase 4: Migration of 5 existing schemas to new format (migrated 2, deleted 3 duplicates)
- ⏳ Phase 5: CLI updates and documentation
- ⏳ Phase 6: Integration testing and validation
- ✅ Phase 1: Filename validation for schema naming convention (
0.9.0 - 2025-11-14
Added
- Plugin Infrastructure Foundation: Extended existing MarkiTect plugin system with RenderingEnginePlugin base class and RENDERING plugin type
- RenderingEngineManager: Complete plugin discovery and lifecycle management system for UI rendering engines
- RenderingConfig System: Asset management and deployment configuration for plugin engines
- TestDrive JSUI Plugin: Complete independent JavaScript UI plugin extracted from core system with standalone development environment
- Modular Component Architecture: Compass-positioned controls with clean JSON configuration interface for Python-JavaScript data transfer
- CLI Engine Parameter: Added --engine parameter to markitect md-render command with engine validation and mode compatibility checking
- Automatic Asset Deployment: Production-ready asset deployment to _markitect/plugins/ structure with 18 total assets (12 JS, 3 CSS, 3 images)
- ChatGPT Document Theme: New document theme with Inter font, 580px width, and #10a37f accent color with full CLI support (
markitect md-render --theme chatgpt) - Modular Theme System Architecture: File-based theme loading with YAML configuration and dynamic theme discovery
- Theme Directory Structure: Organized theme components (mode/, ui/, document/, branding/) for better maintainability
- Database Architecture Documentation: Comprehensive WORKSPACE_AND_DATABASES.md documenting workspace concepts and database purposes
Changed
- BREAKING: Edit mode now defaults to testdrive-jsui plugin instead of legacy edit mode
- Default Rendering Behavior: testdrive-jsui for edit/insert modes, standard for view mode with graceful fallback
- Asset Management Strategy: Automatic plugin asset deployment eliminates need for manual --ship-assets flag
- JavaScript Architecture: Clean separation between Python backend and JavaScript frontend with modular design
- Theme Loading System: Implemented dynamic theme discovery and loading with metadata preservation
- Test Suite Organization: Removed obsolete configuration CLI tests (490 lines) for cleaner codebase
Fixed
- JavaScript Loading Conflicts: Resolved const redeclaration errors with MARKITECT_STRICT_MODE implementation
- MarkitectMain Availability: Fixed proper main-updated.js loading and JavaScript syntax errors
- Plugin Asset Deployment: Directory structure preservation with development vs production deployment strategies
- Issue-facade Click Framework Bug: Resolved Sentinel bug in list command that was causing CLI failures
- Issue-facade Version Command: Fixed installation error preventing version command from working
- Test Isolation Issues: Improved test isolation with proper mocking to prevent cross-test interference
- Theme Color Assertions: Updated test assertions to work with new modular theme system
Migration Guide
- Existing Users: Edit mode will automatically use new testdrive-jsui plugin for enhanced experience
- Legacy Behavior: Use
markitect md-render --engine standard --editto access previous edit mode - Asset Deployment: Plugin assets now deploy automatically - no manual --ship-assets flag required
0.8.0 - 2025-11-08
Added
- Setuptools-SCM Integration: Automatic version management system replacing manual version tracking
- Gitea Package Publishing: Complete CI/CD pipeline for automated package publishing to Gitea
- Enhanced Release Documentation: Comprehensive documentation for package building and release process
Changed
- Release Script Architecture: Modernized release workflow with setuptools-scm integration
- Makefile Release Targets: Updated release targets to support automated version management
- Package Building Process: Streamlined package creation with enhanced build targets
Removed
- Legacy Release Scripts: Removed obsolete release_simplified.py in favor of unified release.py
0.7.0 - 2025-11-08
Added
- Complete JavaScript Architecture Refactoring: Full TDD-driven modular architecture with SectionManager and DOMRenderer components
- Advanced Image Editor: Rebuilt with full drag-n-drop functionality and staging workflow
- Modular Component System: Extracted comprehensive JavaScript components for better maintainability
- Enhanced Edit Mode: Improved robustness and user experience with better reset functionality
- Insert Mode Protection: Implemented insert mode with heading protection and content display fixes
- Scroll Indicators: Added scroll indicators with disabled state styling
- Asset Shipping: Comprehensive asset shipping for md-render command
Fixed
- Reset Button Functionality: Implemented fully functional reset buttons for text and image sections
- Image Rendering: Fixed proper image rendering in modular architecture
- DOM Content Updates: Resolved DOM content updates and reset functionality
- Section Click Functionality: Enabled proper section click functionality for edit UI
- Modular Integration: Fixed integration of modular JavaScript architecture into application
- Button Functionality: Resolved accept, cancel, and reset button functionality issues
- Critical JavaScript Errors: Fixed errors preventing content rendering
Changed
- Edit Mode Organization: Continued efforts to reorganize edit mode for better robustness
- Example Directory Structure: Reorganized examples directory with topic-based subdirectories
- UI Panel Structure: Eliminated floating status panel above editor menu for cleaner interface
Maintenance
- TODO Cleanup: Cleaned up completed theme system refactor tasks
0.6.0 - 2025-10-28
Added
- Custom Status Modal System: Professional theme-consistent status dialogs replacing browser alerts with proper branding and accessibility
- HTML Generation Dogtag: Automatic attribution with timestamp and username linking for generated HTML documents
- Enhanced Link Navigation: All document links now open in new tabs without triggering edit mode for improved user experience
- Comprehensive UI Framework Documentation: Complete guide (UserInterfaceFramework.md) for consistent UI development patterns
- Database Integration: Added store_document method to CleanDocumentManager with proper front matter parsing
- Enhanced AST Processing: Improved title extraction from front matter and heading detection with cache file generation
Changed
- Complete Document Manager Cleanup: Removed 2000+ lines of legacy code while maintaining full backward compatibility
- Clean Architecture Implementation: DocumentManager now extends CleanDocumentManager with clean wrapper pattern
- Improved Error Handling: Enhanced validation and graceful error recovery throughout the system
- Standardized CSS Naming: Consistent class naming conventions across all UI components
Fixed
- Test Suite Compatibility: Updated all tests to work with clean implementation architecture
- JavaScript Syntax Issues: Resolved template literal and string escaping problems in generated HTML
- Link Behavior: Fixed issue where document links were incorrectly triggering edit mode
- Front Matter Parsing: Proper integration with FrontMatterParser for metadata extraction
Technical
- Added --nodogtag CLI option for clean output when attribution is not desired
- Enhanced ingest_file method with proper title extraction from front matter and headings
- Implemented theme-aware modal overlay patterns with proper CSS styling
- Fixed CSS escape sequences and JavaScript syntax validation issues
0.5.0 - 2025-10-26
Added
- Clean TDD-Driven Editor Architecture: Complete rewrite with object-oriented JavaScript architecture featuring Section, SectionManager, and DOMRenderer classes
- Enhanced Test Framework: Comprehensive testing framework with clean separation of concerns for robust development
- Multiple Concurrent Section Editing: Support for editing multiple sections simultaneously with intelligent management
- Intelligent Section Splitting: Advanced heading detection and section management capabilities
- Four-Layer Content Management: Sophisticated content state management (original, current, pending, editing layers)
- Enhanced Status Dialog: Repository info display showing version, git commit status, and actual save filename
- Elegant Slide-in Control Panel: Floating control panel for edit mode with improved UX
- Intelligent Auto-sizing Textarea: Optimal editing experience with smart textarea resizing
- Enhanced Empty Line Preservation: Better markdown structure preservation with automatic paragraph separation
Fixed
- Textarea Sizing and Font Preservation: Resolved sizing issues and maintained consistent font rendering
- Markdown Structure Preservation: Fixed roundtrip formatting issues in save functionality
- Section Duplication Prevention: Eliminated duplicate sections when saving edited content
- Section Position Preservation: Prevented unwanted section jumping during editing
- CSS Embedding Issues: Resolved import errors in HTML template generation
- Control Panel UX: Hidden control ribbon when panel is expanded for cleaner interface
Changed
- Action Semantics: Proper implementation of Accept, Cancel, and Reset operations
- Global Reset Functionality: Enhanced reset capabilities across the editor
- Makefile Organization: Reorganized installation targets for better user experience
Technical Improvements
- Complete legacy editor system replacement
- Test-driven development approach implementation
- Enhanced UI/UX with better section positioning
- Improved content management workflow
0.4.0 - 2025-10-25
Added
- feat: add comprehensive testing and error tracking for edit mode
Fixed
- fix: resolve md-render --edit functionality and add enhanced version tracking
- fix: resolve critical JavaScript syntax errors in md-render --edit
- fix: resolve md-ingest Path object conversion error
Other
- chore: clean up repository documentation files for release
0.3.0 - 2025-10-25
Added
- Kaizen-agentic Framework Integration: Integrated capability submodule for enhanced development workflow
- Test Reorganization System: Reorganized tests by capability with improved modularity
- Capability Inclusion Management: Comprehensive system for managing capability inclusions
- Todofile System: Implemented todofile system to replace NEXT.md for better task tracking
Changed
- Directory Organization: Logical separation and reorganization of project structure
- Historical File Organization: Cleaner structure with better file organization
0.2.0 - 2025-10-20
Added
- GraphQL Interface: Advanced querying capabilities with full GraphQL implementation
- Full-text Search: FTS5 backend integration for powerful search functionality
- Plugin Architecture: Extensible framework with comprehensive plugin support
- Query Paradigms: 14 different query paradigms for flexible data access
- Cost Management: Activity tracking and resource cost management
- Template Rendering: Template system with validation capabilities
- CLI Consolidation: Unified command-line interface
- Production Asset Management: Content-addressable storage system
- 17 Kaizen-agentic Agents: Integrated development agent ecosystem
Changed
- Performance Optimization: 60-85% performance improvement through system optimization
- Error Handling: Enterprise-grade error handling and recovery mechanisms
- Resource Management: Memory-efficient and scalable architecture
Fixed
- Cross-platform Validation: Comprehensive validation for Unix/Windows/macOS
- Type Safety: Enhanced type safety and security validation
- Test Coverage: 1983/1983 tests passing (100% success rate)
0.1.0 - 2025-10-15
Added
- Development Infrastructure: Comprehensive Makefile for development workflow
- Project Documentation: ProjectStatusDigest.md and ProjectDiary.md for tracking
- TDD Workspace System: Structured Test-Driven Development workflow implementation
- Issue Management: Gitea integration for issue tracking and management
- Virtual Environment Management: Enhanced venv detection and shell activation
- Wiki Integration: Submodule tracking for project documentation
- Core Repository Setup: Initial project structure and configuration
Changed
- Build System: Enhanced build targets with venv Python and PYTHONPATH support
- Target Naming: Renamed workspace targets to TDD Workspace with tdd- prefix