Build your first Forge AI feature
A 5-minute walkthrough — from idea to deployed.
The fastest way to understand Forge AI is to build something. We'll build a simple overtime tracker end-to-end. By the end you'll have a working feature your team can use today.
Before you start
- You need
canAccessForgepermission (Managers have it by default) - Have a rough idea of the workflow you want (overtime = employee submits hours, manager approves, amount auto-added to payroll)
Build it
Open Forge AI in the sidebar.
Click New feature. A chat panel opens.
Describe what you want, in plain English. For example:
Build an overtime tracker. Employees submit the date, hours worked, and a brief reason. Their direct manager approves or rejects. Approved hours should be paid at 1.5× the employee's hourly rate and added to their next payroll as a bonus.
Hit Enter.
Answer the clarifying questions. Forge AI usually asks 1–2 things to lock down ambiguity, like:
- "Should overtime be capped per month?"
- "What happens to weekend hours — same multiplier?"
If you don't care, click Let AI Decide — it'll pick sensible defaults.
Review the preview. You'll see:
- The submission form with all fields rendered
- The approval workflow (who reviews, who approves)
- The calculation rule (
hours × hourly_rate × 1.5) - The payroll integration (which column the approved amount lands in)
Tweak anything you want. Type a follow-up like "Add a max of 40 hours per month" and Forge AI updates the preview.
Click Deploy feature. A 3-step animation runs: building → testing → live. Takes about 10 seconds.
Done. The feature now appears in your sidebar under Company Tools — Overtime Tracker. Every employee can see it and submit. You can approve from the same page.
Use voice input for the initial description. Click the microphone icon in the chat — it transcribes in real time and auto-stops on silence. Saves typing for longer feature briefs.
What just happened under the hood
Forge AI generated:
- A database schema for overtime entries
- A submission form with field validation
- An approval queue tied to each employee's reporting manager
- A calculation engine that runs on approval
- A hook into the payroll system to add approved amounts as a bonus
You don't need to understand any of this to use the feature, but it's good to know it's a real, structured system — not a glorified spreadsheet.
Test the feature
Sign in as an employee (use the demo account
[email protected]if you don't have a real one yet).Open Company Tools → Overtime Tracker.
Submit a test entry — pick a recent date, 4 hours, reason "test".
Sign back in as your Manager account.
Open Overtime Tracker → Submissions. You'll see the entry pending. Click Approve.
Open Money → Payroll for the current month. The bonus appears on James's row, with the calculated amount. Click into the cell to see the formula.
What to read next
- Managing deployed Forge AI features — versioning, edits, exports
- Forge AI overview — what's possible and what's not
Last updated 2026-05-01