Skip to content

Commit 2983644

Browse files
Copilothotlong
andcommitted
Convert all markdown links to absolute /docs/ paths
Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent e259674 commit 2983644

36 files changed

Lines changed: 168 additions & 168 deletions

content/docs/faq.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ ObjectStack apps are standard Node.js applications. Deploy like any Node app:
169169
- **Serverless:** AWS Lambda, Google Cloud Functions
170170
- **PaaS:** Heroku, Railway, Render
171171

172-
See the [Deployment Guide](./guides/deployment) for details.
172+
See the [Deployment Guide](/docs/guides/deployment) for details.
173173

174174
## Development Questions
175175

@@ -306,7 +306,7 @@ Field.lookup({
306306

307307
## Still Have Questions?
308308

309-
- 📖 Check the [Guides](./guides/getting-started)
309+
- 📖 Check the [Guides](/docs/guides/getting-started)
310310
- 💬 Ask in [GitHub Discussions](https://github.com/objectstack-ai/spec/discussions)
311311
- 🐛 Report bugs in [GitHub Issues](https://github.com/objectstack-ai/spec/issues)
312312
- 📧 Email: support@objectstack.dev (for urgent issues)

content/docs/guides/advanced/ai-integration-guide.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ const trainingExamples: NLQTrainingExample[] = [
698698
## Example Applications
699699

700700
### 1. AI Support Assistant
701-
[View Example](../examples/ai-support)
701+
[View Example](/docs/guides/examples/ai-support)
702702

703703
**Features:**
704704
- RAG knowledge base
@@ -712,7 +712,7 @@ Customer → GPT-4 Agent → RAG (Pinecone) → Actions → ObjectQL
712712
```
713713

714714
### 2. AI Data Analyst
715-
[View Example](../examples/ai-analyst)
715+
[View Example](/docs/guides/examples/ai-analyst)
716716

717717
**Features:**
718718
- Natural language queries
@@ -721,7 +721,7 @@ Customer → GPT-4 Agent → RAG (Pinecone) → Actions → ObjectQL
721721
- Query templates
722722

723723
### 3. AI Code Generator
724-
[View Example](../examples/ai-codegen)
724+
[View Example](/docs/guides/examples/ai-codegen)
725725

726726
**Features:**
727727
- Generate ObjectStack apps
@@ -730,7 +730,7 @@ Customer → GPT-4 Agent → RAG (Pinecone) → Actions → ObjectQL
730730
- RAG for documentation
731731

732732
### 4. AI Sales Assistant
733-
[View Example](../examples/ai-sales)
733+
[View Example](/docs/guides/examples/ai-sales)
734734

735735
**Features:**
736736
- Lead qualification
@@ -792,8 +792,8 @@ if (response.parseResult.confidence < 0.7) {
792792
## Resources
793793

794794
- [ObjectStack Documentation](https://docs.objectstack.ai)
795-
- [AI Protocol Reference](../packages/spec/src/ai)
796-
- [Example Applications](../examples)
795+
- [AI Protocol Reference](/docs/guides/packages/spec/src/ai)
796+
- [Example Applications](/docs/guides/examples)
797797
- [Discord Community](https://discord.gg/objectstack)
798798

799799
---

content/docs/guides/advanced/ai-integration/quick-start.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,12 @@ const generated = await ai.generate({
166166

167167
See the following example implementations:
168168

169-
- [AI Sales Assistant](../../../examples/ai-sales/)
170-
- [AI Support Agent](../../../examples/ai-support/)
171-
- [AI Code Generator](../../../examples/ai-codegen/)
172-
- [AI Analyst](../../../examples/ai-analyst/)
169+
- [AI Sales Assistant](/docs/examples/ai-sales/)
170+
- [AI Support Agent](/docs/examples/ai-support/)
171+
- [AI Code Generator](/docs/examples/ai-codegen/)
172+
- [AI Analyst](/docs/examples/ai-analyst/)
173173

174-
For complete documentation, see [AI_INTEGRATION_GUIDE.md](../../AI_INTEGRATION_GUIDE.md)
174+
For complete documentation, see [AI_INTEGRATION_GUIDE.md](/docs/guides/AI_INTEGRATION_GUIDE.md)
175175

176176
---
177177

content/docs/guides/advanced/security/best-practices.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ const authConfig = {
9898
- [ ] Audit logging enabled
9999
- [ ] Regular security updates
100100

101-
For detailed information, see [AUTHENTICATION_STANDARD.md](../../../AUTHENTICATION_STANDARD.md)
101+
For detailed information, see [AUTHENTICATION_STANDARD.md](/docs/AUTHENTICATION_STANDARD.md)
102102

103103
---
104104

content/docs/guides/field-types.cn.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ days_open: Field.formula({
451451
```
452452

453453
> ℹ️ **Info:**
454-
公式字段自动计算且只读。可用函数请参见 [公式函数](../references/data/formulas)
454+
公式字段自动计算且只读。可用函数请参见 [公式函数](/docs/references/data/formulas)
455455

456456

457457
---
@@ -749,7 +749,7 @@ created_at: Field.datetime({
749749

750750
## 下一步
751751

752-
- [对象架构指南](../guides/object-schema)
753-
- [验证规则](../guides/validation-rules)
754-
- [工作流自动化](../guides/workflows)
755-
- [字段 API 参考](../references/data/core/Field)
752+
- [对象架构指南](/docs/guides/object-schema)
753+
- [验证规则](/docs/guides/validation-rules)
754+
- [工作流自动化](/docs/guides/workflows)
755+
- [字段 API 参考](/docs/references/data/core/Field)

content/docs/guides/field-types.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ days_open: Field.formula({
451451
```
452452

453453
> ℹ️ **Info:**
454-
Formula fields are automatically calculated and readonly. See [Formula Functions](../references/data/formulas) for available functions.
454+
Formula fields are automatically calculated and readonly. See [Formula Functions](/docs/references/data/formulas) for available functions.
455455

456456

457457
---
@@ -749,7 +749,7 @@ See the **[CRM Example](https://github.com/objectstack-ai/spec/tree/main/example
749749

750750
## Next Steps
751751

752-
- [Object Schema Guide](../guides/object-schema)
753-
- [Validation Rules](../guides/validation-rules)
754-
- [Workflow Automation](../guides/workflows)
755-
- [Field API Reference](../references/data/core/Field)
752+
- [Object Schema Guide](/docs/guides/object-schema)
753+
- [Validation Rules](/docs/guides/validation-rules)
754+
- [Workflow Automation](/docs/guides/workflows)
755+
- [Field API Reference](/docs/references/data/core/Field)

content/docs/guides/getting-started.cn.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -276,14 +276,14 @@ views: {
276276
现在你有了有效的元数据,你可以:
277277

278278
1. **探索示例**:查看 [CRM 示例](https://github.com/objectstack-ai/spec/tree/main/examples/crm) 了解完整功能实现
279-
2. **学习字段类型**:参见 [字段类型指南](../guides/field-types) 了解所有 30+ 种字段类型
279+
2. **学习字段类型**:参见 [字段类型指南](/docs/guides/field-types) 了解所有 30+ 种字段类型
280280
3. **构建 UI**:使用 ObjectStack 运行时的元数据来生成界面
281281
4. **部署**:推送到 ObjectStack 内核用于生产环境
282282

283283
**其他资源:**
284-
- [对象模式参考](../references/data/core/Object)
285-
- [验证规则](../guides/validation-rules)
286-
- [工作流自动化](../guides/workflows)
284+
- [对象模式参考](/docs/references/data/core/Object)
285+
- [验证规则](/docs/guides/validation-rules)
286+
- [工作流自动化](/docs/guides/workflows)
287287
</Step>
288288

289289
</Steps>

content/docs/guides/getting-started.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -276,14 +276,14 @@ views: {
276276
Now that you have valid metadata, you can:
277277

278278
1. **Explore Examples**: Check out the [CRM Example](https://github.com/objectstack-ai/spec/tree/main/examples/crm) for a full-featured implementation
279-
2. **Learn Field Types**: See the [Field Types Guide](../guides/field-types) for all 30+ field types
279+
2. **Learn Field Types**: See the [Field Types Guide](/docs/guides/field-types) for all 30+ field types
280280
3. **Build UI**: Use the metadata with ObjectStack runtime to generate interfaces
281281
4. **Deploy**: Push to an ObjectStack kernel for production use
282282

283283
**Additional Resources:**
284-
- [Object Schema Reference](../references/data/core/Object)
285-
- [Validation Rules](../guides/validation-rules)
286-
- [Workflow Automation](../guides/workflows)
284+
- [Object Schema Reference](/docs/references/data/core/Object)
285+
- [Validation Rules](/docs/guides/validation-rules)
286+
- [Workflow Automation](/docs/guides/workflows)
287287
</Step>
288288

289289
</Steps>

content/docs/guides/migration/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This section contains guides for migrating your applications between different v
99

1010
## Available Guides
1111

12-
### [Version 0.x to 1.x Migration](../../guides/migration/v0-to-v1)
12+
### [Version 0.x to 1.x Migration](/docs/guides/migration/v0-to-v1)
1313
Complete guide for migrating from version 0.x to 1.x, including:
1414
- Breaking changes
1515
- New features

content/docs/guides/migration/v0-to-v1.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ The following features are deprecated and will be removed in v2.0.0:
145145

146146
If you encounter issues:
147147

148-
1. Check the [CHANGELOG.md](../../CHANGELOG.md)
149-
2. Review [CONTRIBUTING.md](../../CONTRIBUTING.md)
148+
1. Check the [CHANGELOG.md](/docs/CHANGELOG.md)
149+
2. Review [CONTRIBUTING.md](/docs/CONTRIBUTING.md)
150150
3. Open an issue on GitHub
151151

152152
---

0 commit comments

Comments
 (0)