Skip to content

Commit 48fc674

Browse files
committed
feat(docs): Update protocol titles and descriptions for consistency across documentation
1 parent 233c253 commit 48fc674

File tree

5 files changed

+22
-22
lines changed

5 files changed

+22
-22
lines changed

content/docs/introduction/architecture.mdx

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
---
2-
title: The Stack - ObjectQL + ObjectUI + ObjectOS
3-
description: How the three protocols work together as one cohesive system
2+
title: Protocol Architecture
3+
description: How the Data, System, and UI protocols work together as one cohesive system
44
---
55

66
import { Database, Layout, Cpu, ArrowRight, CheckCircle, Workflow } from 'lucide-react';
77

8-
# The Three-Layer Stack
8+
# The Protocol Stack
99

10-
ObjectStack is built on three foundational protocols that work together as a unified system:
10+
The architecture is built on three foundational protocols that work together as a unified system:
1111

1212
<Cards>
1313
<Card
1414
icon={<Database />}
15-
title="ObjectQL"
16-
description="Data Protocol - Structure and queries"
15+
title="Data Protocol"
16+
description="Structure, queries, and constraints."
1717
/>
1818
<Card
1919
icon={<Cpu />}
20-
title="ObjectOS"
21-
description="Control Protocol - Runtime and governance"
20+
title="System Protocol"
21+
description="Control, runtime, and governance."
2222
/>
2323
<Card
2424
icon={<Layout />}
25-
title="ObjectUI"
26-
description="View Protocol - Presentation and interaction"
25+
title="UI Protocol"
26+
description="Presentation, interaction, and routing."
2727
/>
2828
</Cards>
2929

@@ -35,19 +35,19 @@ ObjectStack enforces **Separation of Concerns** through protocol boundaries:
3535

3636
```
3737
┌─────────────────────────────────────────┐
38-
ObjectUI (View Layer)
38+
UI Protocol
3939
│ Apps, Views, Dashboards, Reports │
4040
│ "How do users interact?" │
4141
└──────────────┬──────────────────────────┘
42-
API Protocol
42+
View-Data Interface
4343
┌──────────────┴──────────────────────────┐
44-
ObjectOS (Control Layer)
44+
System Protocol
4545
│ Auth, Permissions, Workflows, Events │
4646
│ "Who can do what, when?" │
4747
└──────────────┬──────────────────────────┘
48-
Query Protocol
48+
Control-Data Interface
4949
┌──────────────┴──────────────────────────┐
50-
ObjectQL (Data Layer)
50+
Data Protocol
5151
│ Objects, Fields, Queries, Drivers │
5252
│ "What is the data structure?" │
5353
└─────────────────────────────────────────┘

content/docs/introduction/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,22 @@ When requirements change, you update code in multiple places. This is **Implemen
2222

2323
## The Solution
2424

25-
ObjectStack centralizes the "Intent" into a single Protocol Definition (JSON/YAML). The implementation layers (React, Node.js, SQL) act merely as **Runtime Engines** that interpret this protocol.
25+
We centralize the "Intent" into a single Protocol Definition (JSON/YAML). The implementation layers (React, Node.js, SQL) act merely as **Runtime Engines** that interpret this protocol.
2626

2727
<Cards>
2828
<Card
2929
icon={<Database />}
30-
title="ObjectQL (Data Layer)"
30+
title="Data Protocol"
3131
description="Define data structures, queries, and business logic. Database-agnostic abstraction layer."
3232
/>
3333
<Card
3434
icon={<Layout />}
35-
title="ObjectUI (Presentation Layer)"
35+
title="UI Protocol"
3636
description="Server-driven UI definitions. Express interfaces as JSON, not code."
3737
/>
3838
<Card
3939
icon={<Cog />}
40-
title="ObjectOS (Control Layer)"
40+
title="System Protocol"
4141
description="Runtime kernel, plugins, security, and integration. The platform foundation."
4242
/>
4343
</Cards>

content/docs/objectos/meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"title": "Protocol: System (ObjectOS)",
2+
"title": "System Protocol",
33
"root": true,
44
"pages": [
55
"index",

content/docs/objectql/meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"title": "Protocol: Data (ObjectQL)",
2+
"title": "Data Protocol",
33
"root": true,
44
"pages": [
55
"schema",

content/docs/objectui/meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"title": "Protocol: UI (ObjectUI)",
2+
"title": "UI Protocol",
33
"root": true,
44
"pages": [
55
"concept",

0 commit comments

Comments
 (0)