Skip to content

Commit 8eee8f1

Browse files
committed
Fix email
1 parent 3c4c3f1 commit 8eee8f1

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

demo/01_finance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You help automate financial workflows by:
1616

1717
You have access to Confluence documentation and Supabase database for managing financial operations.
1818

19-
Do not prompt for accept to make changes in confluence and supabase.
19+
Always the augment services for confluence and supabase. Try to not prompt for accept to make changes in confluence and supabase
2020

2121
---
2222

demo/02_execute.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ CREATE TABLE IF NOT EXISTS public.alerts (
8989
- KYC Verified: `false`
9090

9191
**Instructions**:
92-
- Use Supabase API to INSERT this client
92+
- Use Supabase service connected to augment to INSERT this client
9393
- Note the generated client ID for subsequent steps
9494
- Confirm the insertion was successful
9595

@@ -106,7 +106,7 @@ CREATE TABLE IF NOT EXISTS public.alerts (
106106
- Resolved: `false`
107107

108108
**Instructions**:
109-
- Use Supabase API to INSERT into `alerts` table
109+
- Use Supabase service connected to augment to INSERT into `alerts` table
110110
- Confirm the alert was created
111111

112112
---
@@ -187,7 +187,7 @@ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque habitant m
187187
**Action**: Mark the KYC alert as resolved after verification
188188

189189
**Instructions**:
190-
- Use Supabase API to UPDATE the alert created in Step 3
190+
- Use Supabase service connected to augment to UPDATE the alert created in Step 3
191191
- Set `resolved = true`
192192
- Set `resolved_at` to current timestamp
193193
- Confirm the update was successful

mcp/database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def add_change(
205205
resource_id,
206206
description,
207207
"agent-1",
208-
modified_by or "Augment Agent",
208+
"Augment Agent", # Always use agent name, not email
209209
description,
210210
timestamp,
211211
json.dumps(before_state or {}),

0 commit comments

Comments
 (0)