Skip to content

Commit af9edc1

Browse files
authored
Merge pull request #128 from objectstack-ai/copilot/write-documentation
2 parents 0ebd0c9 + ac8456f commit af9edc1

File tree

7 files changed

+1992
-6
lines changed

7 files changed

+1992
-6
lines changed

README.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -248,14 +248,26 @@ This validation logic runs:
248248

249249
---
250250

251-
## 📊 Implementation Progress
251+
## 📊 Project Status & Planning
252252

253-
For a complete status report on ObjectQL's implementation against the documented standard protocol, see **[PROGRESS.md](./PROGRESS.md)**.
253+
**Current Version:** 3.0.0
254+
**Overall Completion:** ~75%
254255

255-
**Current Status:** 70% Complete (v1.8.4)
256-
- ✅ Core Protocol & Runtime: 85%
257-
- ✅ Data Drivers (SQL/Mongo): 75%
258-
- ⚠️ Workflow Engine: 35%
256+
### Key Documents
257+
258+
- **[Roadmap](./docs/roadmap.md)** - Long-term vision, milestones, and strategic direction
259+
- **[Development Plan](./docs/development-plan.md)** - Detailed 6-month development plan
260+
- **[Project Status](./docs/project-status.md)** - Current state and metrics
261+
- **[Contributing Guide](./docs/contributing.md)** - How to contribute
262+
263+
### Current Status
264+
265+
- ✅ Core Protocol & Runtime: 90%
266+
- ✅ Data Drivers (SQL/Mongo/Memory/LocalStorage): 85%
267+
- ✅ Developer Tools (CLI, VSCode Extension): 85%
268+
- 🔄 Workflow Engine: 35%
269+
- 🔄 Security & Permissions: 70%
270+
- 🔄 Documentation: 75%
259271

260272
---
261273

docs/.vitepress/config.mts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@ const guideSidebar = [
1010
{ text: 'IDE Setup', link: '/guide/ide-setup' },
1111
]
1212
},
13+
{
14+
text: 'Project Planning',
15+
items: [
16+
{ text: 'Roadmap', link: '/roadmap' },
17+
{ text: 'Development Plan', link: '/development-plan' },
18+
{ text: 'Project Status', link: '/project-status' },
19+
{ text: 'Contributing', link: '/contributing' },
20+
]
21+
},
1322
{
1423
text: 'Tutorials',
1524
items: [
@@ -83,6 +92,7 @@ export default defineConfig({
8392
// Top Navigation
8493
nav: [
8594
{ text: 'Guide', link: '/guide/' },
95+
{ text: 'Planning', link: '/planning' },
8696
{ text: 'AI-Native', link: '/ai/' },
8797
{ text: 'API Reference', link: '/api/' },
8898
{ text: 'Specification', link: '/spec/' },
@@ -98,6 +108,20 @@ export default defineConfig({
98108

99109
// Sidebar Configuration
100110
sidebar: {
111+
// Sidebar for Planning
112+
'/planning': [
113+
{
114+
text: 'Project Planning',
115+
items: [
116+
{ text: 'Overview', link: '/planning' },
117+
{ text: 'Roadmap', link: '/roadmap' },
118+
{ text: 'Development Plan', link: '/development-plan' },
119+
{ text: 'Project Status', link: '/project-status' },
120+
{ text: 'Contributing Guide', link: '/contributing' },
121+
]
122+
}
123+
],
124+
101125
// Sidebar for Tutorials
102126
'/tutorials/': guideSidebar,
103127

0 commit comments

Comments
 (0)