Start every session with your projects
Because almost every tool is project-scoped, the assistant resolves your project first.
You: What can you do with my Writesonic Agents account?
Assistant calls whoami → returns your identity and projects, then works within the project you pick.
Triage your task list
You: How many open tasks do I have, grouped by assignee? Assistant callsquery_taskswithview: "counts"andgroup_by: "assignee_id".
You: Show me the high-priority tasks that aren’t done yet. Assistant callsquery_taskswithview: "list"and a filter on priority and status.
Create and manage a task
You: Create a task “Refresh the pricing page for AI search” and assign it to me. Assistant callscreate_task, thenupdate_taskwithaction: "assign".
You: Move it to In Progress and add a comment with the target keywords. Assistant callsupdate_task(action: "transition_status") thencomment_on_task.
Follow the work an agent did
You: What did the agent do on task ABC-123? Walk me through the steps. Assistant callsget_agent_runswithtask_id, thenrun_progressfor the run to show each step.
Inspect a playbook and its runs
You: List my content playbooks and show the last few runs of the blog one. Assistant callslist_workflows(view: "list"), thenget_workflow(view: "runs") for the matching playbook.
Read a grid
You: What columns are in my “Q3 landing pages” grid, and show the first 20 rows. Assistant callslist_gridsto find it, thenget_grid_data(view: "columns"thenview: "rows").
Search your knowledge and brand kit
You: What does our brand voice guide say about tone? Assistant callsget_brand_kitfor the voice section, orsearch_knowledgeacross your sources.
Pull a content-intelligence report
You: How is our /pricing page doing in AI citations this month? Assistant callsget_ci_dashboard(view: "pages") to resolve the page, thenget_page_reportwith the AI-citationsreport_type.
Chain several reads in one shot
For a multi-step question, the assistant can batch the calls instead of round-tripping each one.You: Give me a status snapshot: open task counts, my three most recent playbook runs, and any failing integrations. Assistant usesexecute_batchto runquery_tasks,get_workflow(runs), andlist_integrationsin one request.
Three things to take note of
- Name your project. Almost every tool is project-scoped, so the assistant resolves it with
whoamifirst. Say which project you mean (“in my Acme project…”) and it won’t have to stop and ask. - Writes always confirm first. Only
create_task,update_task, andcomment_on_taskchange anything, everything else is read-only. The assistant shows you the change and asks before writing, and each write is reversible in the product. - Batch multi-step questions. For a question that needs several reads, ask for the whole thing in one message. The assistant chains the calls with
execute_batch(orexecute_planwhen there are loops or conditionals) instead of round-tripping each one.
Where to go next
Tools Reference
Every tool and its arguments
Agents REST API
Call the same tools from code