cavuno-board-account
Installation
SKILL.md
Candidate self-service boundary
Signed-in candidate data lives under board.me. Browser calls use the bearer token in auth.storage; server calls pass it per request in options.headers. See cavuno-board-auth for cookie-based server sessions.
The only anonymous method here is token-based email unsubscribe. Applications, employer companies, messaging, and alerts have their own skills.
The host application owns forms, file pickers, and cookie plumbing; this SDK surface supplies data operations.
Account and profile
Account deletion is a synchronous, irreversible cascade over the profile, collections, saved jobs, alerts, avatar, and resume. Obtain explicit confirmation before calling it.
const me = await board.me.retrieve();
await board.me.delete();