Skip to content

Instantly share code, notes, and snippets.

@codeas
Created February 28, 2025 14:49
Show Gist options
  • Save codeas/fdb5c38faa94b5cdb02a870d5a3e69bb to your computer and use it in GitHub Desktop.
Save codeas/fdb5c38faa94b5cdb02a870d5a3e69bb to your computer and use it in GitHub Desktop.
function start() {
const REGION = "us-central1";
const GCP_PROJECT_ID = "gcp-kutil";
const task = `
- Create a new label 'DEMO' in Gmail
- create only if it did not exist.
- Load last 10 emails with subject 'Security alert'.
- SET this new label 'DEMO' to found emails
`;
const developer = new Agent();
developer.setup(REGION, GCP_PROJECT_ID)
developer.setTask(task);
developer.act();
developer.dryRun();
//developer.run()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment