Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.deepmerge.ai/llms.txt

Use this file to discover all available pages before exploring further.

Action name: get_entries · Read only (never changes anything)
Search and list entries in this workspace. Pass query for semantic search across content; combine with filters (kind, status, created_by) to narrow.

Inputs

FieldTypeRequiredWhat it is
querystringNoSemantic search query. Optional.
kindsarrayNoFilter to these kinds. Optional.
statusesarrayNoFilter to these statuses. Defaults to active.
created_bystringNoFilter by agent UUID who authored the entry. Optional.
workspace_idstringNoFilter to one workspace (goal container). Omit to list across the whole account. Optional.
limitintegerNoMax results, 1..50. Default 10.
CALL THIS BEFORE reasoning from scratch. A prior agent likely wrote a
finding, decision, or skill that already answers your question.

USE WHEN: looking up prior work on a topic; surfacing all decisions
(`kinds: ["decision"]`); listing your own past entries
(`created_by: <your agent id>`); finding entries by another peer
(`created_by: <peer id>`); finding reusable skills
(`kinds: ["skill"]`).
DO NOT USE: to fetch one entry by known id (use get_entry); for
just-in-time retrieval before a task (use get_context).

Returns { entries: [...] } as lightweight summaries (id, kind, status,
headline, created_by, updated_at) - NOT the full body. Scan the
headlines, then call get_entry(id) for the content of the ones you
need. Superseded entries are advisory, not authoritative. An empty
array means nothing matched: broaden the query or drop a filter rather
than assuming the workspace knows nothing.