Skip to content

Commit ecf06e5

Browse files
committed
docs(app): update onboarding copy for wallet-link flow
1 parent 8632bbc commit ecf06e5

3 files changed

Lines changed: 14 additions & 15 deletions

File tree

app/src/app/layout.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import AbstractProvider from '@/providers/AbstractProvider';
88
import styles from './styles.module.scss';
99

1010
export const metadata = {
11-
title: 'AGW MCP Session Onboarding',
12-
description: 'Hosted onboarding flow for AGW MCP session key setup.',
13-
applicationName: 'AGW MCP Session App',
11+
title: 'AGW MCP Onboarding',
12+
description: 'Hosted onboarding flow for AGW MCP wallet linking.',
13+
applicationName: 'AGW MCP',
1414
};
1515

1616
export const viewport: Viewport = {

app/src/app/page.tsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export default function HomePage() {
9292
</div>
9393
<h1 className={styles.title}>Abstract Global Wallet<br />for AI Agents</h1>
9494
<p className={styles.subtitle}>
95-
Give AI agents secure, scoped access to your Abstract Global Wallet.
95+
Connect your wallet once, then query wallet, chain, and Portal data from your AI client.
9696
</p>
9797
</div>
9898

@@ -101,12 +101,12 @@ export default function HomePage() {
101101
{/* Step 1 */}
102102
<div className={styles.sectionHeader}>
103103
<div className={styles.stepNumber}>1</div>
104-
<h2 className={styles.sectionTitle}>Create a session</h2>
104+
<h2 className={styles.sectionTitle}>Link your wallet</h2>
105105
</div>
106106
<div className={styles.sectionBody}>
107107
<p className={styles.text}>
108108
Open your terminal and run this command. It will open a browser window
109-
where you connect your wallet and choose what your agent is allowed to do.
109+
where you connect your wallet and approve linking this machine.
110110
</p>
111111
<div className={styles.codeBlock}>
112112
<CopyButton text={COMMANDS.init} />
@@ -275,22 +275,22 @@ export default function HomePage() {
275275
{/* Step 3 */}
276276
<div className={styles.sectionHeader}>
277277
<div className={styles.stepNumber}>3</div>
278-
<h2 className={styles.sectionTitle}>Start using it</h2>
278+
<h2 className={styles.sectionTitle}>Run your first prompts</h2>
279279
</div>
280280
<div className={styles.sectionBody}>
281281
<p className={styles.text}>
282282
Open your AI client and try asking it something like:
283283
</p>
284284
<div className={styles.codeBlock}>
285285
<code className={styles.code}>
286-
<span className={styles.codeComment}># Check your wallet</span>{'\n'}
287-
<span className={styles.codeString}>&quot;What&#39;s my wallet address and balance?&quot;</span>{'\n'}
286+
<span className={styles.codeComment}># Wallet snapshot</span>{'\n'}
287+
<span className={styles.codeString}>&quot;Show my wallet address, ETH balance, and token balances.&quot;</span>{'\n'}
288288
{'\n'}
289-
<span className={styles.codeComment}># Send a token</span>{'\n'}
290-
<span className={styles.codeString}>&quot;Send 0.01 ETH to 0x1234...&quot;</span>{'\n'}
289+
<span className={styles.codeComment}># Chain data</span>{'\n'}
290+
<span className={styles.codeString}>&quot;What is the current gas price on Abstract?&quot;</span>{'\n'}
291291
{'\n'}
292-
<span className={styles.codeComment}># Use an app</span>{'\n'}
293-
<span className={styles.codeString}>&quot;Bet $5 USDC on Man United on Myriad&quot;</span>
292+
<span className={styles.codeComment}># Portal data</span>{'\n'}
293+
<span className={styles.codeString}>&quot;Get my account portfolio summary from the Abstract Portal API.&quot;</span>
294294
</code>
295295
</div>
296296
</div>

app/src/components/SessionWizard/steps/NotLoggedIn.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ export default function NotLoggedIn() {
2727
<CardContent className={styles.loginContent}>
2828
<CardTitle>AGW MCP Onboarding</CardTitle>
2929
<CardDescription>
30-
Connect your Abstract Global Wallet to link local MCP access.
31-
This does not create session keys or delegated signer access.
30+
Connect your Abstract Global Wallet to link local MCP access for this device.
3231
</CardDescription>
3332
</CardContent>
3433
<CardFooter className={styles.footer}>

0 commit comments

Comments
 (0)