Skip to content

Curate Knowledge

Admin guide

Knowledge is the customer-specific prose that agents read when they work. As an IT admin, you author org-scope Knowledge entries, review agent proposals to org and integration scope, and keep the corpus accurate as the organization evolves.

The conceptual model is in Knowledge. This page covers the IT-side workflow.

What lives in org Knowledge

Org-scope Knowledge is the small set of “how we work here” documents that apply to every agent session in the organization, regardless of which app they’re working on. Typical entries:

  • The design system in use, with usage rules (“never disable a button with disabled={true}; use loading”).
  • Compliance summaries (“PII must not appear in app logs; use the gl-redact helper”).
  • Coding conventions (“we use TypeScript strict; avoid any; prefer named exports”).
  • Internal infrastructure notes (“our Snowflake warehouse is ANALYTICS_PROD; query the mart schema not raw”).
  • The “what is this org” context — names, product surface, audience.

Org entries are small and stable. They should not change weekly. Agents read them at the start of every session.

Authoring

The dashboard’s Knowledge tab lists every org entry. Click New entry, give it a topic slug (design-system, compliance-summary), title, and Markdown body. Save. The entry is immediately readable by agents over MCP.

Edits are versioned and audited. The history view shows every change with the diff and the editor.

Reviewing agent proposals

Agents propose entries when they learn something during a build. A proposal appears in the dashboard with:

  • The agent’s rationale (why this is worth keeping).
  • The bound user (who the agent was working for).
  • The full diff against the live entry (if it’s an update) or the full body (if it’s new).

Three actions:

  • Accept as proposed — the entry is upserted as-is.
  • Accept with edits — your edits land along with the agent’s content; the audit log captures accepted_with_edits=true.
  • Reject — the entry is not changed; the proposal is closed; your reason is captured.

Stale proposals (where the entry has moved on since the agent read it) are flagged automatically. The agent is asked to re-read and re-propose; you don’t have to do anything.

Visibility and scope

Knowledge entries can be marked dashboard_only if they should not be visible to agents — typically when an entry is in draft, or when the content is human-only operational guidance. dashboard_only entries never appear in MCP responses regardless of agent role.

Integration-scope entries (what’s in this Snowflake account, the warehouses an app may use) belong on the integration’s own detail page. App-scope entries belong on the app’s detail page. Org-scope entries are reviewed here.

Cleanup

Knowledge that’s gone stale (e.g., a deprecated design system, a now-irrelevant integration) should be marked archived or deleted. The audit log retains the deletion event. Agents don’t read archived entries.

There is no automatic expiration field today — staleness is a human judgment, not an automatic policy.

Next