templates/recruiting/.agents/skills/storing-data/SKILL.md
How and where to store application data. Use when adding new data models, deciding between settings vs Drizzle tables, reading/writing app config, or working with application state.
npx skillsauth add BuilderIO/agent-native storing-dataInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Recruiting data comes from the Greenhouse Harvest API. Agent notes are stored locally in SQL. Application state (navigation, commands) is in the application_state SQL table.
| Layer | Purpose | API |
|-------|---------|-----|
| Greenhouse API | Jobs, candidates, applications, interviews | Via local API proxy |
| agent_notes table | AI analysis notes per candidate | Drizzle ORM |
| Settings | Persistent app config (API key) | @agent-native/core/settings |
| Application State | Navigation, agent commands | @agent-native/core/application-state |
tools
Public booking flow — the state machine, animations, and URL/app-state sync.
tools
Trigger-based automations — reminders, follow-ups, webhooks — across the booking lifecycle.
tools
Team event types, round-robin assignment, collective bookings, host weights, and no-show calibration.
development
The pure `computeAvailableSlots` function — inputs, outputs, invariants, and debugging guide.