Skip to content

Commit 6e56f64

Browse files
committed
Refine API tool descriptions for clarity and consistency across documentation and settings
1 parent 51bd969 commit 6e56f64

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ A versatile AI pair programming tool connecting VS Code with free chatbots.
1919
- type something and pick "edit format" instructions (whole/truncated/diff),
2020
- initialize new chat or send an API request and integrate multi-file changes.
2121
- Get accurate code completions using the selected context with SOTA reasoning models.
22-
- Generate meaningful commit messages by referencing the original state of the modified files.
22+
- Generate meaningful summaries of changes by referencing the original state of the modified files.
2323
- Include in context any website in a markdown format.
2424

2525
**Guiding principles:**
@@ -64,16 +64,16 @@ Code with your favorite chatbot without tedious copy-pasting. The Connector exte
6464
## <span style="background-color: #fbb100; color: black; padding: 0.2em 0.6em; border-radius: 999px">API Tools</span>
6565

6666
**Code Completions** \
67-
Get code at cursor from state-of-the-art reasoning models.
67+
Get accurate code at cursor from state-of-the-art reasoning models.
6868

6969
**Edit Context** \
7070
Modify files in context based on natural language instructions.
7171

7272
**Intelligent Update** \
73-
Integrate chat/API responses in "truncated" edit format. Fix malformed diffs.
73+
Integrate AI responses in "truncated" edit format. Fix malformed diffs.
7474

7575
**Commit Messages** \
76-
Generate meaningful commit messages precisely adhering to your preferred style.
76+
Generate meaningful summaries of changes precisely adhering to your preferred style.
7777

7878
## <span style="background-color: #fbb100; color: black; padding: 0.2em 0.6em; border-radius: 999px">Commands</span>
7979

docs/api-tools/code-completions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import TabItem from '@theme/TabItem'
88

99
# Code completions
1010

11-
Get code at cursor from state-of-the-art reasoning models.
11+
Get accurate code at cursor from state-of-the-art reasoning models.
1212

1313
✓ Includes selected context \
1414
✓ Designed for on-demand use

docs/api-tools/commit-messages.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Commit messages
33
sidebar_position: 4
44
---
55

6-
Generate meaningful commit messages precisely adhering to your preferred style.
6+
Generate meaningful summaries of changes precisely adhering to your preferred style.
77

88
✓ Includes affected files in full \
99
✓ Customizable instructions

docs/api-tools/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ CWC includes battle-tested must-have API tools.
99

1010
### [Code completions](./code-completions)
1111

12-
Get code at cursor from state-of-the-art reasoning models.
12+
Get accurate code at cursor from state-of-the-art reasoning models.
1313

1414
### [Context edit](./context-edit)
1515

@@ -21,4 +21,4 @@ When applying chat response, update files based on code blocks in truncated edit
2121

2222
### [Commit messages](./commit-messages)
2323

24-
Generate meaningful commit messages precisely adhering to your preferred style.
24+
Generate meaningful summaries of changes precisely adhering to your preferred style.

packages/vscode/src/commands/open-settings-command/open-settings-command.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const open_settings_command = (context: vscode.ExtensionContext) => {
3434
{
3535
label: LABEL_CODE_COMPLETIONS,
3636
detail:
37-
'Get code at cursor from state-of-the-art reasoning models.'
37+
'Get accurate code at cursor from state-of-the-art reasoning models.'
3838
},
3939
{
4040
label: LABEL_EDIT_CONTEXT,
@@ -48,7 +48,7 @@ export const open_settings_command = (context: vscode.ExtensionContext) => {
4848
{
4949
label: LABEL_COMMIT_MESSAGES,
5050
detail:
51-
'Generate meaningful commit messages adhering to your style.'
51+
'Generate meaningful summaries of changes adhering to your style.'
5252
}
5353
],
5454
{

0 commit comments

Comments
 (0)