Some checks failed
Test Suite / unit-tests (3.11) (push) Has been cancelled
Test Suite / unit-tests (3.12) (push) Has been cancelled
Test Suite / integration-tests (push) Has been cancelled
Test Suite / e2e-tests (push) Has been cancelled
Test Suite / performance-tests (push) Has been cancelled
Test Suite / code-quality (push) Has been cancelled
Test Suite / security-scan (push) Has been cancelled
Test Suite / test-summary (push) Has been cancelled
Clean up base directory by moving completed work and legacy files to organized subdirectories within history/, improving project navigation and separating active files from historical artifacts. ## Archived Files: ### Development Scripts → history/development-scripts/ - debug_*.py (7 files) - Legacy debugging and development scripts - demo_issue_150.py - Issue demonstration script ### Migration Reports → history/migration-reports/ - AGENT_MIGRATION_REPORT.md - Completed agent migration work - ASSET_MODEL_MIGRATION.md - Completed asset model migration - KAIZEN_MIGRATION_GAMEPLAN.md - Completed kaizen framework migration - KAIZEN_UPDATE_REPORT.md - Completed kaizen update work - PHASE_3_COMPLETION_REPORT.md - Completed phase 3 work - PHASE_4_COMPLETION_REPORT.md - Completed phase 4 work ### Legacy Files → history/legacy-files/ - .env.tddai - Legacy TDD framework configuration - README.html - Generated file (superseded by README.md) - test_status.html - Generated test status file - install-*.sh (5 files) - Legacy individual install scripts ## Benefits: - **Cleaner Repository**: Base directory now focused on active development - **Better Organization**: Historical files properly categorized and preserved - **Improved Navigation**: Easier to find current vs. historical information - **Preserved History**: All work artifacts maintained for reference Repository now has 33 active files in base directory (reduced from 48) with complete historical preservation in organized subdirectories. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>README</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
padding: 20px;
color: #333;
}
#markdown-content {
margin: 0;
}
h1, h2, h3, h4, h5, h6 {
color: #2c3e50;
}
pre {
background-color: #f4f4f4;
padding: 15px;
border-radius: 5px;
overflow-x: auto;
}
code {
background-color: #f4f4f4;
padding: 2px 4px;
border-radius: 3px;
}
blockquote {
border-left: 4px solid #ddd;
margin: 0;
padding-left: 20px;
color: #666;
}
</style>
</head>
<body>
<div id="markdown-content"></div>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script>
// Embedded markdown payload
const markdownContent = "MarkiTect - Advanced Markdown Engine\n\nYour Markdown, Redefined.\n\nMarkiTect transforms markdown from plain text into intelligent, structured data with performance optimization, schema validation, and relational querying capabilities. Stop treating documentation as text files\u2014start managing it as a database.\n\n**Key Features:**\n- **Lightning Performance**: 60-85% faster document processing through intelligent AST caching\n- **Schema Validation**: Enforce document structure and consistency\n- **Database Integration**: Query markdown content with SQL-like operations\n- **CLI Tools**: Complete command-line interface for automation and workflows\n\n## \ud83d\udcda Documentation\n\n**Quick Start:** [Getting Started](#getting-started) \u00b7 [Command Reference](docs/user-guides/cache-management.md)\n\n**Architecture:** [Caching System](docs/architecture/caching-system.md) \u00b7 [Performance Philosophy](docs/#performance-philosophy)\n\n**Development:** [TDD Workflow](docs/development/tdd-workflow.md) \u00b7 [Contributing](#contributing)\n\n**Project Status:** [Current Status](history/ProjectStatusDigest.md) \u00b7 [Roadmap](history/ROADMAP.md) \u00b7 [Next Actions](NEXT.md)\n";
const frontMatter = {};
// Render markdown on page load
document.addEventListener('DOMContentLoaded', function() {
if (typeof marked !== 'undefined') {
document.getElementById('markdown-content').innerHTML = marked.parse(markdownContent);
} else {
// Fallback if marked.js fails to load
document.getElementById('markdown-content').innerHTML =
'<pre>' + markdownContent.replace(/</g, '<').replace(/>/g, '>') + '</pre>';
}
});
</script>
</body>
</html>