Skip to content

Commit 3df29a7

Browse files
committed
Fix typo
Signed-off-by: David Gageot <david.gageot@docker.com>
1 parent e794aad commit 3df29a7

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/ISSUE_TEMPLATE/bug-.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ A clear and concise description of what you expected to see/happen.
3131
**Screenshots**
3232

3333
If applicable, add screenshots to help explain your problem.
34-
Especially useful if the problem is visual (rendering issues etc) or you're not totally sure how to explain the problem and need to show it to us
34+
Especially useful if the problem is visual (rendering issues etc.) or you're not totally sure how to explain the problem and need to show it to us
3535

3636
**OS and Terminal type**
3737

docs/CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Development environment setup
44

5-
> We currently support `cagent` development on MacOS and linux based systems. Windows support coming soon
5+
> We currently support `cagent` development on macOS and linux based systems. Windows support coming soon
66
77
#### Build from source
88

@@ -62,14 +62,14 @@ $ task build-local
6262
- **Root Agent**: Main entry point that coordinates the system. This represents the first agent you interact with
6363
- **Sub-Agents**: Specialized agents for specific domains or tasks
6464
- **Tools**: External capabilities agents can use via the Model Context Protocol (MCP)
65-
- **Models**: Models agents can be configures to use. They include the AI provider and the model configuration (model to use, max_tokens, temperature, etc.)
65+
- **Models**: Models agents can be configured to use. They include the AI provider and the model configuration (model to use, max_tokens, temperature, etc.)
6666

6767
### Agent <-> Sub-Agent Delegation Flow
6868

6969
1. User interacts with root agent
7070
2. Root agent analyzes the request
7171
3. Root agent can decide to delegate to appropriate sub-agent if specialized knowledge is needed
72-
4. Sub-agent processes the task delegated to it using its tools and expertise, in it's own agentic loop.
72+
4. Sub-agent processes the task delegated to it using its tools and expertise, in its own agentic loop.
7373
5. Results eventually flow back to the root agent and the user
7474

7575
## Project Architecture

docs/specs/cagent-mcp-mode/impl-progress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
### Phase 1: Service Core Foundation ✅ **COMPLETE**
1616

1717
#### 1.1 Project Setup
18-
- [x] **Verify MCP dependency**: Confirm `github.com/mark3labs/mcp-go v0.34.0` is available in go.mod
18+
- [x] **Verify MCP dependency**: Confirm `github.com/mark3labs/mcp-go v0.34.0` is available in `go.mod`
1919
- [x] **Create servicecore package**: Set up `pkg/servicecore/` directory structure
2020
- [x] **Create MCP package**: Set up `pkg/mcpserver/` directory
2121
- [x] **Add command structure**: Create skeleton for `cmd/root/mcp.go`

examples/bio.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ agents:
1717
**Tasks:**
1818
1. **Search for User Information**: Use web searches to find relevant information about the user.
1919
2. **Fetch Additional Data**: Use the Fetch tool to gather more specific information from targeted sources.
20-
3. **On errors**, search for other sources and repeat fron step 2.
20+
3. **On errors**, search for other sources and repeat from step 2.
2121
4. **Compile Biography**: Combine the gathered information into a coherent biography.
2222
5. **Verify the credibility of sources** before including information.
2323

examples/blog.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: "1"
44
agents:
55
root:
66
model: anthropic
7-
description: Writes techincal blog posts
7+
description: Writes technical blog posts
88
instruction: |
99
You are the leader of a team of AI agents for a technical blog writing workflow.
1010
@@ -17,7 +17,7 @@ agents:
1717
<WORKFLOW>
1818
1. Call the `web_search_agent` agent to search for the web to get important information about the task that is asked
1919
20-
3. Call the `writer` agent to write a 750-word technical blog post based on the reserach done by the web_search_agent
20+
3. Call the `writer` agent to write a 750-word technical blog post based on the research done by the web_search_agent
2121
</WORKFLOW>
2222
2323
- Use the transfer_to_agent tool to call the right agent at the right time to complete the workflow.

internal/creator/instructions.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ agent_name:
3333

3434
Here is the list of the available builtin tools an agent can use, each of them is optional
3535

36-
- `-type: shell`: Gives the agent access to a shell where it can run commands on the users's computer
36+
- `-type: shell`: Gives the agent access to a shell where it can run commands on the users' computer
3737
- `-type: filesystem`: Gives the agent access to the filesystem for reading, writing files etc.
3838
- `-type: script`: Gives the agent access to custom shell commands/scripts with predefined parameters and environment variables
3939
- `-type: todo`: Gives the agent tools for tracking todo items it needs to finish in order to complete the task for the user. Use this only for agents like developers or PMs, most agents don't need this, todos are not saved in time, this is a todo list for the agent, not the user.
@@ -98,11 +98,11 @@ agents:
9898
DOCKER_BUILDKIT: "1"
9999
list_repos:
100100
cmd: "curl -s https://api.github.com/users/$username/repos | jq '.[].name'"
101-
description: "List Github repositories for a user"
101+
description: "List GitHub repositories for a user"
102102
args:
103103
username:
104104
type: string
105-
description: "Github username to get repositories for"
105+
description: "GitHub username to get repositories for"
106106
required: ["username"]
107107
```
108108

pkg/desktop/login.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ type DockerHubInfo struct {
1313

1414
func GetToken(ctx context.Context) string {
1515
// Allow the user to override the token via an environment variable.
16-
// This is e.g useful when talking to a gateway on staging.
16+
// This is e.g. useful when talking to a gateway on staging.
1717
manualToken := os.Getenv("DOCKER_TOKEN")
1818
if manualToken != "" {
1919
return manualToken

0 commit comments

Comments
 (0)