Skip to content

Commit 4e4c09a

Browse files
committed
polish
1 parent 33f95ba commit 4e4c09a

1 file changed

Lines changed: 11 additions & 5 deletions

File tree

packages/the-framework.ai/pages/index/StopBabysitting.tsx

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { ReactNode } from 'react'
22
import type { EmojiChar } from './ui'
3-
import { cardStyle, Emoji, mono, SectionHead, sectionStyle } from './ui'
3+
import { cardStyle, CodeChip, Emoji, mono, SectionHead, sectionStyle } from './ui'
44

55
const ROW_STYLES = {
66
bad: { bg: '#2d353b', border: '#3d484d', labelColor: '#859289' },
@@ -44,7 +44,7 @@ const PROBLEMS: { title: string; desc?: string; rows: Row[] }[] = [
4444
bad('Explicitly tell AI to deep dive important aspects.'),
4545
good(
4646
<>
47-
Automatic loop of feedback <Arrow glyph="↔" /> research <Arrow glyph="↔" /> implementation.
47+
Automatic loop of critcal feedback <Arrow glyph="↔" /> research <Arrow glyph="↔" /> confidence <Arrow glyph="↔" /> implementation.
4848
</>,
4949
),
5050
],
@@ -58,15 +58,21 @@ const PROBLEMS: { title: string; desc?: string; rows: Row[] }[] = [
5858
Appending "Write the BEST code you ever wrote" to your prompts <Arrow glyph="→" /> minimal improvement.
5959
</>,
6060
),
61-
good("The Framework makes AI question and review itself until it's highly confident about its implementation."),
61+
good(<>When an agent makes complex changes, the agent adds <b>post-merge refactoring</b> prompts to the AI Queue (with low priority).</>),
62+
good(<>Automatic <b>regular security and code quality prompts</b> (when your usage quota has plenty of capacity).</>),
6263
],
6364
},
6465
{
6566
title: 'AI makes important decisions without asking',
6667
rows: [
6768
bad('Tell AI "don\'t do this, research alternatives".'),
6869
good(
69-
'The Framework makes AI gauge the variability of its implementation: if there are alternatives with pros and cons, show them to the user.',
70+
<>
71+
The Framework makes AI <b>self-gauge its confidence</b> before starting to work.
72+
</>,
73+
),
74+
good(
75+
<>It also makes AI <b>self-gauge the variability</b> of its plan: if there are alternatives with subtle pros and cons, show them to the user.</>,
7076
),
7177
],
7278
},
@@ -75,7 +81,7 @@ const PROBLEMS: { title: string; desc?: string; rows: Row[] }[] = [
7581
rows: [
7682
bad('You keep repeating yourself (previous decisions, business context, …).'),
7783
good(
78-
"The Framework's Enhanced System Prompt tells AI to retain knowledge in files such as knowledge-base/DECISIONS.md and knowledge-base/INSIGHTS.md. (See section 03 below.)",
84+
<><b>AI retains knowledge via files</b> such as <CodeChip fontSize={13}>knowledge-base/DECISIONS.md</CodeChip> and <CodeChip fontSize={13}>knowledge-base/INSIGHTS.md</CodeChip>.</>,
7985
),
8086
],
8187
},

0 commit comments

Comments
 (0)