Skip to content

Commit 778236c

Browse files
committed
Enhance product descriptions and standardize 'code-at-cursor' terminology across documentation
1 parent b497778 commit 778236c

5 files changed

Lines changed: 15 additions & 8 deletions

File tree

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
**Code Web Chat** is an easy-to-use, free and open-source (FOSS) AI coding tool that connects the editor with the web browser for its signature workflow—select files, type instructions and initialize ChatGPT, Gemini, Claude, and 10+ more, hands-free! Once ready, apply the response with a single click.
66

7+
**Batteries included**—code completions, commit messages, and more \
78
**Save money**—free tiers and subscription-based billing \
89
**Save time**—multi-file edits from a single prompt
910

@@ -13,12 +14,17 @@ Available in <a href="https://marketplace.visualstudio.com/items?itemName=robert
1314
<img src="https://github.com/robertpiosik/CodeWebChat/raw/HEAD/packages/shared/src/media/demo.gif" alt="Walkthrough" />
1415
</p>
1516

16-
### Guiding principles
17+
**Guiding principles**
1718

1819
- Initialize chatbots—don't scrape responses
1920
- Free forever—a community effort
2021
- Privacy first—operates locally
2122

23+
**CWC is for you if:**
24+
25+
- you're a software engineer working on a large codebase
26+
- you're a student or hobbyist on a budget
27+
2228
## <span style="background-color: #fbb100; color: black; padding: 0.2em 0.6em; border-radius: 999px">Chatbot initialization</span>
2329

2430
Install the Connector browser extension and never copy&paste again.
@@ -52,7 +58,7 @@ Install the Connector browser extension and never copy&paste again.
5258
Use included API-based features with any OpenAI-API compatible provider and your own keys (BYOK).
5359

5460
**🛠️ Code Completions** \
55-
Get accurate code at cursor from state-of-the-art reasoning models.
61+
Get accurate code-at-cursor from state-of-the-art reasoning models.
5662

5763
**🛠️ Edit Context** \
5864
Modify files based on natural language instructions.
@@ -73,9 +79,10 @@ Generate meaningful summaries of changes adhering to your preferred style.
7379

7480
### Code completions
7581

76-
- `Code Web Chat: Code Completion` - Get code at cursor using API tool.
82+
- `Code Web Chat: Code Completion` - Get code-at-cursor using API tool.
7783
- `Code Web Chat: Code Completion using...` - ...with configuration selection.
78-
- `Code Web Chat: Code Completion with Instructions` - Get code at cursor with instructions.
84+
- `Code Web Chat: Code Completion with Instructions` - ...with instructions.
85+
- `Code Web Chat: Code Completion with Instructions using...` - ...with instructions and configuration selection.
7986

8087
### Version Control
8188

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 accurate 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/index.mdx

Lines changed: 1 addition & 1 deletion
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 accurate 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

packages/vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1244,7 +1244,7 @@
12441244
"codeWebChat.promptTemplatesForCodeAtCursor": {
12451245
"type": "array",
12461246
"default": [],
1247-
"description": "Prompt templates for 'Code at cursor' mode.",
1247+
"description": "Prompt templates for \"Code at cursor\" mode.",
12481248
"items": {
12491249
"type": "object",
12501250
"properties": {

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

Lines changed: 1 addition & 1 deletion
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 accurate 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,

0 commit comments

Comments
 (0)