1
Get the extension
2
Connect to Xano
Make sure you have the folder you want to work in open before continuing.
1
Click the Xano logo in the left sidebar and choose Get Started

2
Login to Xano
Click Login to Xano to authenticate with your Xano account and follow the instructions.

3
Pull changes from Xano into your IDE
Select your instance from the dropdown that appears, and then select your workspace and your live branch.After selection, click Pull Changes to get everything that’s currently present in your Xano workspace.

4
Generate AI Agent Instructions
The extension will generate AI Agent instructions for your Xano workspace. It is highly recommended to generate these for the best possible experience. Select Setup AI Agent Instructions. These files help AI coding tools understand your workspace structure and XanoScript conventions.
3
Understand where things live
Xano repos follow a very simple structure. Each primitive lives in its folder, with logic stored inside You’ll see other folders for things like functions, AI Agents, and more — for this quick start, we’re just looking at APIs and tables.
.xs files.Repository Layout4
Open the Signup endpoint and make a change
Navigate to This is what you should be seeing now:
apis/authentication/xxx_auth_signup_POST.xsAdd a new function below security.create_auth_token. Order matters — this ensures the email is sent only after signup succeeds. This is our send_email function; just copy and paste the code below.
5
Save and sync to Xano
Save your changes, and then click the option in the XanoScript extension to stage your changes.
Push your changes to Xano. Progress is shown in a notification in the bottom-right corner.


6
Call the modified API
Send a POST request to your auth/signup endpoint and review the results.You should receive a welcome email shortly after the request completes.
7
Visually validate the change in Xano
This step is optional, but you can quickly see the parity between your code and the visual representation.Head into Xano, and navigate to your 
auth/signup API by clicking API in the left-hand nav, choose the Authentication group, and click auth/signup.You should see the Send Email step at the end of the logic, right after the Create Authentication Token step.