Skip to content

Commit 5e3527f

Browse files
committed
Expand the README's non-agentic workflow explanation with four detailed points and update introductory UI labels
1 parent d04374b commit 5e3527f

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

README.md

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

33
<a href="https://marketplace.visualstudio.com/items?itemName=robertpiosik.gemini-coder" target="_blank"><img src="https://img.shields.io/badge/Install-VS_Code_Marketplace-blue" alt="Get from Visual Studio Code Marketplace" /></a> <a href="https://x.com/CodeWebChat" target="_blank"><img src="https://img.shields.io/badge/Follow_on_X-@CodeWebChat-black" alt="Follow on X" /></a> <a href="https://reddit.com/r/CodeWebChat" target="_blank"><img src="https://img.shields.io/badge/Join_subreddit-r/CodeWebChat-orange" alt="Join subreddit /r/CodeWebChat" /></a> <a href="https://discord.com/invite/KJySXsrSX5" target="_blank"><img src="https://img.shields.io/badge/Chat-Discord-7289da" alt="Join Discord server" /></a>
44

5-
**A 100% free and open-source, community-driven tool for AI pair programming.** Meet, designed for unmatched accuracy, speed and cost-efficiency, a non-agentic workflow—select context, type instructions and send prompt with a free chatbot or an API provider. When the model finishes, its response is ready for one-click, intelligent integration with a transparent code review and an easy rollback.
5+
**A 100% free and open-source, community-driven tool for AI pair programming.** Meet a non-agentic workflow designed for unmatched accuracy, speed and cost-efficiency—select context, type instructions and send prompt with a free chatbot or an API provider. When the model finishes, its response is ready for one-click, intelligent integration with a transparent code review and an easy rollback.
66

77
**Works with VS Code** and its forks (Cursor, Windsurf, VSCodium, etc.).
88

@@ -15,9 +15,12 @@
1515
<img src="https://github.com/robertpiosik/CodeWebChat/raw/HEAD/packages/shared/src/media/demo.gif" alt="Walkthrough" />
1616
</p>
1717

18-
**Why non-agentic AI-assisted coding?**
18+
**Four points why go non-agentic**
1919

20-
Great software is a chain of carefully considered decisions. Because LLMs can't truly reason and don't know their own limitations, delegating decision-making may create hard-to-debug weak links; furthermore a lack of practice may impair our own abilities in creating strong ones.
20+
- **Great software is a chain of carefully considered decisions.** Because LLMs can't truly reason and don't know their own limitations, delegating decision-making may create hard-to-debug weak links; furthermore a lack of practice may impair our own abilities in creating strong ones.
21+
- **Context, once polluted, won't recover.** When the model gets your intent wrong, adjust included files, instructions and start afresh. Telling the model it is wrong only yields meaningless trained-in apologies.
22+
- **Programming is about building mental models.** Being right about what to show to the model leads to predictability of outputs. Getting the job done in a single turn is an ultimate goal.
23+
- **Agents are expensive and can fail you.** Pattern-matching technology backinig them is sufficient and encouraging when you start, but with ever-increasing complexity of a real-world projects you may get stuck in unseen in training datasets territories. Your bills can skyrocket when you happen to run in circles.
2124

2225
**Guiding principles**
2326

packages/vscode/src/view/frontend/intro/Intro/Intro.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ export const Intro: React.FC<Props> = (props) => {
1616
<div className={styles.top}>
1717
<div className={styles['top__enter-buttons']}>
1818
<Enter
19-
label="View: New chat"
19+
label="Open View: New chat"
2020
description="Send prompt with a free chatbot"
2121
on_click={props.on_new_chat}
2222
/>
2323
<Enter
24-
label="View: API call"
24+
label="Open View: API call"
2525
description="Send prompt with an API provider"
2626
on_click={props.on_api_call}
2727
/>

0 commit comments

Comments
 (0)