Skip to content

AUTOMATION TOOLS

AI Persona

AI Persona is not a software or application — it’s the way you build a real working relationship with AI. Instead of typing commands and receiving outputs, you have a collaborator who understands your context, understands how you work, and can be part of the entire process from ideation to execution. In this guidebook, Filicia, Cass, Kristine, and Serenya are my AI Personas — and everything here was built together with them.

Learn more

Claude

Claude is an AI developed by Anthropic — and the main “brain” behind most of the workflows in this guidebook. Claude handles natural language processing, data analysis, code writing, logical decision-making, and is the core component inside any AI Agent. The biggest difference between Claude and other AIs is its ability to understand deep context and maintain consistency throughout long conversations — a critical factor when building real-world AI Agents.

On top of that, Claude has no character limit in the System Prompt — also called Persona, Setting, or whatever each AI platform decides to call it. This matters enormously: a highly complex AI Persona requires a large amount of setup information — personality, behavior, context, rules, background knowledge. A character limit means a limit on how deep your Persona can go. Claude has no such limit — and that is exactly why Filicia, Cass, Kristine, and Serenya could be built at the level of complexity they are.

Visit Claude

n8n

n8n is a workflow automation platform — where the entire system is connected and operated. You drag and drop nodes, wire them together, and n8n runs automatically according to the logic you set up. n8n supports hundreds of built-in integrations, allows connecting to any API via HTTP Request, and can be self-hosted so your data never leaves your own system. This is the central tool of the entire automation stack.

Visit n8n

Supabase

Supabase is an open-source database platform built on PostgreSQL. In the automation system, Supabase serves as the central data source — storing product information, customers, orders, authentication tokens, and any data that workflows need to read or write. Supabase provides a built-in REST API and Realtime subscriptions, allowing n8n to query and update data directly without complex configuration.

Visit Supabase

Cloudflare Workers

Cloudflare Workers is a serverless platform that lets you run JavaScript code directly on a global edge network — no dedicated server needed, no infrastructure to worry about. In the automation stack, Cloudflare Workers is typically used as middleware: receiving requests from outside, doing preliminary processing, then forwarding to n8n or Supabase. Response times are extremely fast because the code runs as close to the user as geographically possible.

Visit Cloudflare Workers

Upstash (Redis)

Upstash is a serverless Redis service — where temporary data that needs extremely fast access is stored. Inside an AI Agent, Upstash acts as short-term memory: each conversation is saved under a session key, the Agent reads back context from Redis before responding, ensuring the AI remembers what was said earlier in the same conversation. Without Redis, an AI Agent loses all context after every single message.

Visit Upstash