You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ARCHITECTURE.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,12 @@ This document provides an overview of the architecture and design decisions of c
6
6
7
7
The codemcp tool uses a TOML file (`codemcp.toml`) in the project root for configuration. This file has several sections:
8
8
9
-
### Global Prompt
9
+
### Project Prompt
10
10
11
-
The `global_prompt` string is included in system prompts to provide project-specific instructions to Claude.
11
+
The `project_prompt` string is included in system prompts to provide project-specific instructions to Claude.
12
12
13
13
```toml
14
-
global_prompt = """
14
+
project_prompt = """
15
15
Project-specific instructions for Claude go here.
16
16
"""
17
17
```
@@ -45,7 +45,7 @@ codemcp provides several tools that Claude can use during interaction:
45
45
When a project is initialized using `InitProject`, codemcp reads the `codemcp.toml` file and constructs a system prompt that includes:
46
46
47
47
1. Default system instructions
48
-
2. The project's `global_prompt`
48
+
2. The project's `project_prompt`
49
49
3. Instructions to use specific tools at appropriate times
50
50
51
51
For example, if a format command is configured, the system prompt will include an instruction for Claude to use the Format tool when the task is complete.
- If you intend to call multiple tools and there are no dependencies between the calls, make all of the independent calls in the same function_calls block.
118
118
119
119
# codemcp tool
120
-
The codemcp tool supports a number of subcommands which you should use to perform coding tasks.
120
+
The codemcp tool supports a number of subtools which you should use to perform coding tasks.
0 commit comments