Omnier

A sales todo list that runs itself.

Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeRead-only

What it can do

  • Query: Read-only SQL against the Omnier database for the signed-in user. Use for SELECTs on structured todo lists (`todo_lists`), documents (`documents`), and related reads needed to collaborate on ta
  • Action: Mutating SQL for the signed-in user: freely INSERT, UPDATE, DELETE on tables needed for structured todo lists and documents — primarily `todo_lists` and `documents`. Combine steps in one state
  • Read Skill: Load Omnier skill files (schema, rules, workflows) before reading or changing data. Always call this first when working with todo lists or documents. Pass only the skills you need. Without

What data it sees

Do you need an account

No: the server works without sign-in

A sales todo list that runs itself. Turn signals from email, CRM, and meetings into a daily task list for you and your Claude agent. You handle the human work and the agent runs the rest. Built for founders doing founder-led sales.

Server tool list (6)

Raw names from tools/list. Only developers need these.

query Read-only SQL against the Omnier database for the signed-in user. Use for SELECTs on structured todo lists (`todo_lists`), documents (`documents`), and related reads needed to collaborate on tasks with the user. Prefer one efficient query (JOINs, CTEs, filters). No trailing semicolon. Rows are scoped by RLS; `auth.uid()` is the current user's id.
action Mutating SQL for the signed-in user: freely INSERT, UPDATE, DELETE on tables needed for structured todo lists and documents — primarily `todo_lists` and `documents`. Combine steps in one statement with CTEs and RETURNING when useful. Follow schemas and workflow rules from `read_skill` (todo_list, documents). No trailing semicolon.
read_skill Load Omnier skill files (schema, rules, workflows) before reading or changing data. Always call this first when working with todo lists or documents. Pass only the skills you need. Without this, SQL and task semantics will be wrong.
show_todo_list Opens the user's interactive todo list in the host UI. Use when the user wants to view or edit their collaborative TipTap HTML task list. Returns the latest list HTML for the signed-in user.
get_todo_listReturns the latest todo list HTML for the Omnier todo list UI.
save_todo_listSaves TipTap HTML to the user’s latest todo_lists row.