Agent Page
SkillFiles & storageLets your agent's app show a full Agent settings page with tabs for context, files, connections, automations, and access.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Agent Page skill
About this capability
The full-page Agent surface (/agent) with Context, Files, Connections, Automations, and Access tabs. Use when mounting the Agent page in a template, adding an app-specific tab, surfacing context transparency, MCP servers, A2A agents, recurring jobs, or external-client connect flows in the UI.
What this skill tells your AI
The instructions your AI receives, as published by builderio/agent-native in .agents/skills/agent-page/SKILL.md and read by ahel’s review.
AgentTabsPage (from @agent-native/core/client, source
packages/core/src/client/agent-page/) is the canonical full-page surface for
everything that can influence the agent. Design principles:
- The page answers "what can influence this agent, and why" — it is not a generic admin console.
- Capability and access stay separate: Connections is what this agent can reach; Access is who can reach this agent.
- It is a thin shell that re-hosts existing components (ResourcesPanel, MCP hooks, AgentsSection, context X-Ray, jobs actions) — do not re-implement those surfaces inside it.
- Context must be inspectable, attributable, and governable — provenance and governance tiers, not just a token meter.
Tabs
| Tab | Contents |
|---|---|
context | System-vs-conversation split meter, provenance-grouped system sections (governance tiers: required/inherited/user), live-thread manifest. Backed by context-preview-get / context-manifest-get (see context-xray skill). |
files | ResourcesPanel (skills, instructions, memory, uploads) with the virtual mcp-servers/ folder hidden (showMcpServers={false}). |
connections | MCP server management (both scopes, admin-gated org writes) plus A2A remote agents this app can call. |
jobs | Automations: personal and organization Scheduled/Event tasks with pause/resume/delete. The jobs hash is stable for compatibility (see automations and recurring-jobs). |
access | Copyable MCP URL and A2A agent-card URL, per-client connect steps (Claude, ChatGPT, Cursor, Claude Code, Codex, Other) from packages/core/src/shared/mcp-connect-content.ts (shared with the /mcp/connect route — edit the shared module, never fork copy), static-token fallback link. Grants/scopes/revocation UI is future work. |
Mounting In A Template
- Add an
/agentroute following the template's settings-route pattern (app/routes/agent.tsxor_app.agent.tsx), mountingAgentTabsPage. CSR is fine; keep the app shell inroot.tsxso navigation does not remount it (client-side-routingskill). - Add an "Agent" item to primary navigation and the command palette,
mirroring the Settings entries. Link-first (
native-navigationskill). - Pass
agentPageHref="/agent"toAgentSidebarso the sidebar Resources and settings modes link out to the full page. - Hash deep-links work out of the box:
/agent#context,/agent#files,/agent#connections,/agent#jobs,/agent#access. - App-specific additions go in
extraTabs(sameSettingsTabItemshape as the settings page); hide built-ins only withhiddenTabswhen a template genuinely lacks the underlying capability.
Scope
The page currently passes personal scope (and canManageOrg) to tabs via
AgentPageTabProps; it does not expose a page-level Personal/Organization
toggle. A tab may render its own scoped sections where the underlying actions
support them. The Automations tab shows personal and organization sections for
both Scheduled and Event triggers. Organization event automations remain
creator-run: administrators can manage them, but cannot retarget the creator's
identity.
Signals
- GitHub stars
- 5k
- Forks
- 440
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
agent-page- Source
- github.com/builderio/agent-native