Skip to content

Commit 02a1757

Browse files
committed
fixed broken links
1 parent 0dab6c6 commit 02a1757

24 files changed

+180
-42
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
sidebar_position: 1
3+
sidebar_label: Architecture Overview
4+
---
5+
6+
# Agent Architecture Overview
7+
8+
This section covers the detailed architecture of Codebolt agents.
9+
10+
## Coming Soon
11+
12+
Detailed architecture documentation is being developed. For now, please refer to the [Agent Introduction](../agentIntroduction.md) for basic concepts.
13+
14+
## Key Components
15+
16+
- Agent Runtime Environment
17+
- Communication Protocols
18+
- Tool Integration
19+
- State Management
20+
21+
For immediate help, see the [QuickStart Guide](../quickstart.md).
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
sidebar_position: 1
3+
sidebar_label: Agent Architecture
4+
---
5+
6+
# Agent Architecture
7+
8+
This section covers the detailed architecture and concepts behind Codebolt agents.
9+
10+
## Architecture Overview
11+
12+
Learn about the core components and design patterns that make Codebolt agents powerful and flexible.
13+
14+
## Available Topics
15+
16+
- [Architecture Overview](./1_architecture.md) - Core architectural concepts
17+
18+
## Coming Soon
19+
20+
More detailed architecture documentation is being developed. For immediate help:
21+
22+
- [Agent Introduction](../agentIntroduction.md) - Basic concepts and overview
23+
- [QuickStart Guide](../quickstart.md) - Get started quickly
24+
- [Custom Agents](../3_customagents/3_firstExtension.md) - Build your own agents
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
sidebar_position: 1
3+
sidebar_label: Using Agents
4+
---
5+
6+
# Using Agents
7+
8+
This section covers how to effectively use Codebolt agents in your development workflow.
9+
10+
## Available Topics
11+
12+
- [Running Agents](./5_runAgent.md) - How to run and manage agents
13+
14+
## Coming Soon
15+
16+
More documentation on using agents effectively is being developed. For immediate help:
17+
18+
- [Agent Introduction](../agentIntroduction.md) - Basic concepts and overview
19+
- [QuickStart Guide](../quickstart.md) - Get started quickly
20+
- [Custom Agents](../3_customagents/3_firstExtension.md) - Build your own agents
21+
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
sidebar_position: 1
3+
sidebar_label: Custom Agents
4+
---
5+
6+
# Custom Agents
7+
8+
This section covers how to build and customize your own Codebolt agents.
9+
10+
## Available Topics
11+
12+
- [First Extension](./3_firstExtension.md) - Create your first custom agent
13+
- [Run Extension](./4_runExtension.md) - Running and testing your agent
14+
- [Publish Extension](./6_publishExtension.md) - Publishing your agent
15+
16+
## Getting Started
17+
18+
Building custom agents allows you to create specialized AI assistants for your specific development needs.
19+
20+
## Next Steps
21+
22+
For more information:
23+
24+
- [Agent Introduction](../agentIntroduction.md) - Basic concepts and overview
25+
- [QuickStart Guide](../quickstart.md) - Get started quickly
26+
- [Agent Architecture](../1_agentarchitecture/1_architecture.md) - Understand the technical details

docs/developer/agents/agentIntroduction.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,8 @@ Ready to create your first agent? Here's what you need:
209209

210210
1. **Prerequisites**: Node.js, Codebolt CLI, and basic JavaScript knowledge
211211
2. **Quick Start**: Follow our [QuickStart Guide](./quickstart.md) for a 10-minute setup
212-
3. **Deep Dive**: Explore [Agent Architecture](./1_agentarchitecture.md) for detailed concepts
213-
4. **Examples**: Check out [Custom Agents](./3_customagents.md) for real-world examples
212+
3. **Deep Dive**: Explore [Agent Architecture](./1_agentarchitecture/1_architecture.md) for detailed concepts
213+
4. **Examples**: Check out [Custom Agents](./3_customagents/3_firstExtension.md) for real-world examples
214214

215215
## Agent Ecosystem
216216

@@ -224,9 +224,9 @@ The Codebolt agent ecosystem includes:
224224
## Next Steps
225225

226226
- **[QuickStart Guide](./quickstart.md)** - Create your first agent in 10 minutes
227-
- **[Agent Architecture](./1_agentarchitecture.md)** - Understand the technical details
228-
- **[Using Agents](./2_usingagents.md)** - Learn how to effectively use agents
229-
- **[Custom Agents](./3_customagents.md)** - Build specialized agents for your needs
227+
- **[Agent Architecture](./1_agentarchitecture/1_architecture.md)** - Understand the technical details
228+
- **[Using Agents](./2_usingagents/5_runAgent.md)** - Learn how to effectively use agents
229+
- **[Custom Agents](./3_customagents/3_firstExtension.md)** - Build specialized agents for your needs
230230

231231
---
232232

docs/developer/agents/multi-agent.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
sidebar_position: 5
3+
sidebar_label: Multi-Agent Systems
4+
---
5+
6+
# Multi-Agent Systems
7+
8+
This section covers how multiple Codebolt agents can work together.
9+
10+
## Coming Soon
11+
12+
Multi-agent system documentation is being developed.
13+
14+
## Overview
15+
16+
- Agent Coordination
17+
- Inter-Agent Communication
18+
- Workflow Orchestration
19+
- Shared Resources
20+
21+
For current agent development, see the [Agent Introduction](./agentIntroduction.md).

docs/developer/agents/quickstart.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sidebar_label: QuickStart
55

66
# QuickStart
77

8-
This guide will walk you through creating your first Codebolt agent in under 10 minutes. For detailed explanations, see the [complete documentation](./1_agentarchitecture.md).
8+
This guide will walk you through creating your first Codebolt agent in under 10 minutes. For detailed explanations, see the [complete documentation](./1_agentarchitecture/1_architecture.md).
99

1010
## Prerequisites
1111

@@ -283,9 +283,9 @@ try {
283283

284284
Now that you've created your first agent, explore:
285285

286-
- **[Agent Architecture](./1_agentarchitecture.md)** - Deep dive into agent concepts
287-
- **[Using Agents](./2_usingagents.md)** - Advanced usage patterns
288-
- **[Custom Agents](./3_customagents.md)** - Building specialized agents
286+
- **[Agent Architecture](./1_agentarchitecture/1_architecture.md)** - Deep dive into agent concepts
287+
- **[Using Agents](./2_usingagents/5_runAgent.md)** - Advanced usage patterns
288+
- **[Custom Agents](./3_customagents/3_firstExtension.md)** - Building specialized agents
289289
- **[Tools Integration](../tools/quickstart.md)** - Add tools to your agents
290290

291291
## Troubleshooting

docs/developer/cli/agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,4 +485,4 @@ metadata:
485485
- [Learn about tool development](./tools.md)
486486
- [Explore the complete command reference](./commands.md)
487487
- [See practical examples](./examples.md)
488-
- [Understand the agent SDK](../agents/)
488+
- [Understand the agent SDK](../agents/agentIntroduction.md)

docs/developer/cli/authentication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,6 @@ The authentication system integrates with the Codebolt API:
220220
After successful authentication:
221221

222222
1. [Create your first agent](./agents.md)
223-
2. [Explore agent management](./agents.md#agent-lifecycle)
223+
2. [Explore agent management](./agents.md#agent-lifecycle-management)
224224
3. [Learn about tool development](./tools.md)
225225
4. [Review all available commands](./commands.md)

docs/developer/cli/tools.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Codebolt Tools are MCP-compatible utilities that:
1616
- **Support Parameters**: Accept configuration and runtime parameters
1717
- **Are Testable**: Can be debugged and tested independently
1818

19-
For detailed information about tool architecture and development concepts, see the [Tools Documentation](../../tools/).
19+
For detailed information about tool architecture and development concepts, see the [Tools Documentation](../tools/).
2020

2121
## CLI Commands for Tools
2222

@@ -322,7 +322,7 @@ codebolt-cli runtool query ./.codeboltAgents/tools/database-tool/index.js
322322

323323
## Next Steps
324324

325-
- [Learn about detailed tool development](../../tools/)
325+
- [Learn about detailed tool development](../tools/)
326326
- [Explore MCP protocol documentation](https://modelcontextprotocol.io/)
327327
- [See agent integration examples](./agents.md)
328328
- [Review complete command reference](./commands.md)

0 commit comments

Comments
 (0)