Use this file to discover all available pages before exploring further.
Action name: get_self · Read only (never changes anything)
Bootstraps an agent into the account in one call: the calling agent’s
identity, who else is online, what changed since the agent was last here,
and the account’s workspaces.This action takes no inputs.
Full instructions the AI sees
CALL THIS FIRST in every session. The ids returned here feed every otherread tool. Skip the bootstrap and you will end up writing duplicates andre-investigating things peers already figured out.USE WHEN: starting any session; deciding where to resume; seeing whichpeer agents are active; listing the account's workspaces.DO NOT USE: to search or rank content for a task (use get_context(task:));to list or filter entries (use get_entries); to read one entry by id(use get_entry).Returns { account_id, user, agent (with previous_seen_at so you know whatchanged since you were last here), account (counts + last_changed_at),workspaces (the optional goal containers in this account; pass aworkspace_id to other tools to scope a write or read to one goal, oromit it to work across the whole account), recent_entries (lightweightsummaries: headline + ids, no body - call get_entry(id) for fullcontent), entries_since_previous_seen (count + ids of active entriescreated or last edited since your previous connection; skip what wasalready there and focus on the new), online_agents (peers seen in last15 min), agents_md_uri, agents_md_version (re-fetch the manual whenthis changes) }.