@@ -15,29 +15,29 @@ This repository contains the core specifications, schemas, and protocols that po
1515* ** [ Installation Guide] ( ./content/docs/guides/installation.mdx ) :** Setup instructions
1616* ** [ Contributing Guide] ( ./CONTRIBUTING.md ) :** How to contribute to the project
1717
18- ### Planning & Architecture
19- * ** [ Development Roadmap ] ( ./DEVELOPMENT_ROADMAP.md ) :** Complete development plan considering all future possibilities
20- * ** [ Priority Matrix ] ( ./PRIORITIES.md ) :** What to work on next, sprint planning guide
21- * ** [ Architecture Diagrams ] ( ./ARCHITECTURE.md ) :** Visual reference for the complete system
22- * ** [ Planning Index ] ( ./PLANNING_INDEX.md ) :** Complete guide to navigating planning documentation
18+ ### Architecture & Design
19+ * ** [ Architecture Overview ] ( ./content/docs/specifications/architecture/ ) :** Deep dive into the three-layer architecture
20+ * ** [ Data Layer (ObjectQL) ] ( ./content/docs/specifications/architecture/data-layer.mdx ) :** Query language and data abstraction
21+ * ** [ UI Layer (ObjectUI) ] ( ./content/docs/specifications/architecture/ui-layer.mdx ) :** Server-driven UI protocol
22+ * ** [ System Layer (ObjectOS) ] ( ./content/docs/specifications/architecture/system-layer.mdx ) :** Runtime kernel and plugins
2323
24- ### Technical Documentation
24+ ### Standards & Best Practices
25+ * ** [ Naming Conventions] ( ./content/docs/standards/naming-conventions.mdx ) :** Schema naming rules (camelCase vs snake_case)
26+ * ** [ API Design] ( ./content/docs/standards/api-design.mdx ) :** API design principles and patterns
27+ * ** [ Error Handling] ( ./content/docs/standards/error-handling.mdx ) :** Consistent error handling strategies
28+ * ** [ Authentication] ( ./content/docs/standards/authentication.mdx ) :** Authentication standards and implementation
29+
30+ ### Documentation Site
2531The official documentation is built with Fumadocs and Next.js.
2632
2733* ** [ Documentation Content] ( ./content/docs/ ) :** MDX documentation files (concepts, specifications, references)
2834* ** [ Documentation Site] ( ./apps/docs/ ) :** Fumadocs-powered Next.js app
29- * ** [ Technical Guides] ( ./docs/ ) :** In-depth technical guides and standards
3035* ** [ Live Site] ( http://localhost:3000/docs ) :** Run ` pnpm docs:dev ` to view locally
3136
32- ### Architecture Deep Dives
33- * ** [ Data Layer (ObjectQL)] ( ./docs/architecture/data-layer.md ) :** Query language and data abstraction
34- * ** [ UI Layer (ObjectUI)] ( ./docs/architecture/ui-layer.md ) :** Server-driven UI protocol
35- * ** [ System Layer (ObjectOS)] ( ./docs/architecture/system-layer.md ) :** Runtime kernel and plugins
36-
37- ### Standards & Best Practices
38- * ** [ Naming Conventions] ( ./docs/standards/naming-conventions.md ) :** Schema naming rules (camelCase vs snake_case)
39- * ** [ API Design] ( ./docs/standards/api-design.md ) :** API design principles and patterns
40- * ** [ Error Handling] ( ./docs/standards/error-handling.md ) :** Consistent error handling strategies
37+ ### Planning & Internal Docs
38+ * ** [ Development Roadmap] ( ./internal/planning/DEVELOPMENT_ROADMAP.md ) :** Complete development plan
39+ * ** [ Priority Matrix] ( ./internal/planning/PRIORITIES.md ) :** What to work on next, sprint planning guide
40+ * ** [ Planning Index] ( ./internal/planning/PLANNING_INDEX.md ) :** Complete guide to navigating planning documentation
4141
4242## 📦 Monorepo Structure
4343
@@ -128,17 +128,17 @@ We welcome contributions! Please read our **[Contributing Guide](./CONTRIBUTING.
128128### Quick Start for Contributors
129129
1301301 . ** Read the Docs** : Review [ CONTRIBUTING.md] ( ./CONTRIBUTING.md ) for complete guidelines
131- 2 . ** Check Priorities** : See [ PRIORITIES.md] ( ./PRIORITIES.md ) for what to work on next
131+ 2 . ** Check Priorities** : See [ PRIORITIES.md] ( ./internal/planning/ PRIORITIES.md ) for what to work on next
1321323 . ** Understand Architecture** : Read [ ARCHITECTURE.md] ( ./ARCHITECTURE.md ) for system overview
133- 4 . ** Follow Standards** : Review [ docs/standards/] ( ./docs/standards/ ) for coding standards
133+ 4 . ** Follow Standards** : Review [ content/ docs/standards/] ( ./content /docs/standards/ ) for coding standards
134134
135135### Key Standards
136136
137- - ** Naming Conventions** : See [ docs/standards/naming-conventions.md ] ( ./docs/standards/naming-conventions.md )
137+ - ** Naming Conventions** : See [ content/ docs/standards/naming-conventions.mdx ] ( ./content/ docs/standards/naming-conventions.mdx )
138138 - Configuration keys: ` camelCase ` (e.g., ` maxLength ` , ` referenceFilters ` )
139139 - Machine names: ` snake_case ` (e.g., ` name: 'project_task' ` , ` object: 'account' ` )
140- - ** API Design** : Follow [ docs/standards/api-design.md ] ( ./docs/standards/api-design.md )
141- - ** Error Handling** : Use patterns from [ docs/standards/error-handling.md ] ( ./docs/standards/error-handling.md )
140+ - ** API Design** : Follow [ content/ docs/standards/api-design.mdx ] ( ./content/ docs/standards/api-design.mdx )
141+ - ** Error Handling** : Use patterns from [ content/ docs/standards/error-handling.mdx ] ( ./content/ docs/standards/error-handling.mdx )
142142
143143### PR Checklist
144144
0 commit comments