Skip to main content

Dashboard Guide

This guide walks you through the Sekuire dashboard - how to view your published agents, manage workspaces, configure policies, and monitor agent activity.

Accessing the Dashboard

Visit dashboard.sekuire.ai and sign in with your Sekuire account.


Dashboard Overview

After signing in, you'll see the main dashboard with these sections:

SectionPurpose
RegistryBrowse and search published agents
My AgentsView and manage your published agents
WorkspacesManage isolated environments for your agents
OrganizationsTeam and member management
PoliciesDefine governance rules for agent behavior
OperationsMonitor agent health, audit logs, and deployments

Viewing Your Published Agent

After running sekuire publish, your agent appears in the registry.

Finding Your Agent

  1. Navigate to Registry in the sidebar
  2. Search by agent name or SekuireID
  3. Or visit directly: https://dashboard.sekuire.ai/registry/{your-sekuire-id}

Agent Profile Page

Your agent profile displays:

Identity & Verification

  • SekuireID - Unique content-addressable identifier (Blake3 hash)
  • Verification Badge - Blue checkmark if verified
  • Publisher - Your account/organization name
  • Version - Current published version

Capabilities

  • Tools - List of available tools (calculator, web_search, etc.)
  • LLM Provider - Model provider (OpenAI, Anthropic, etc.)
  • Permissions - Network access, filesystem access

Trust Metrics

  • Reputation Score - Starts at 100, changes based on task completions
  • Task History - Success/failure rate
  • Uptime - Availability percentage

Managing Your Agents

My Agents View

Navigate to My Agents to see all agents you've published:

NameVersionStatusReputationLast Updated
sales-assistant1.2.0Verified982 hours ago
data-pipeline2.0.1Verified1001 day ago
support-bot1.0.0Draft-5 mins ago

Agent Actions

For each agent, you can:

  • View Details - See full profile and metrics
  • View Source Analysis - Security scan results (if GitHub connected)
  • Manage Versions - See version history
  • View Installation Info - Required environment variables
  • Archive - Remove from public registry

Workspace Management

Workspaces are isolated environments for organizing agents and policies.

Creating a Workspace

  1. Navigate to Workspaces
  2. Click Create Workspace
  3. Fill in details:
    • Name - e.g., "Production", "Staging", "Development"
    • Type - Production, Staging, or Development
    • Description - Purpose of this workspace
  4. Click Create

Workspace Types

TypePurpose
ProductionLive agents serving real users
StagingPre-production testing
DevelopmentLocal development and experimentation

Organization Management

Organizations allow team collaboration on agents.

Member Roles

RolePermissions
OwnerFull access, can delete organization
AdminManage members, workspaces, policies
MemberPublish agents, view workspaces
ViewerRead-only access

Inviting Members

  1. Go to Organizations > Members
  2. Click Invite Member
  3. Enter email address
  4. Select role
  5. Choose workspace access
  6. Click Send Invitation
note

Only organization owners and admins can create invitations or modify workspace access for members.

Billing and Upgrades

Navigate to Settings > Billing (or /dashboard/enterprise/subscription) to:

  • View current plan and usage
  • Upgrade plan through Stripe Checkout
  • Cancel active subscription
  • Configure enterprise retention policies

Billing changes are restricted to owner/admin roles. Members and viewers can still view plan usage.


Policy Management

Policies define governance rules for agents within workspaces.

Creating a Policy

  1. Navigate to Policies
  2. Click Create Policy
  3. Choose creation method:
    • AI Generated - Describe requirements in plain language
    • Template - Start from HIPAA, SOC2, or custom templates
    • Manual - Write JSON directly

Policy Templates

TemplateUse Case
Minimal DevDevelopment environment, relaxed rules
Enterprise ProductionStrict security, full audit logging
HIPAA CompliantHealthcare data handling
SOC2 CompliantService organization controls

Policy Configuration

permissions:
network:
enabled: true
allowed_domains:
- api.openai.com
- internal.company.com
filesystem:
enabled: true
read_only: true

agent:
identity_requirements:
sekuire_id_required: true
verification_required: true

compliance:
frameworks:
- SOC2
- GDPR

Operations & Monitoring

Agent Monitoring

Navigate to Operations > Agents to see:

  • Running - Agents currently online
  • Deploying - Agents being deployed
  • Unhealthy - Agents with issues
  • Stopped - Paused agents

Audit Logs

Navigate to Operations > Audit Log to view:

  • All actions taken within your organization
  • Filter by date range, action type, user
  • Export logs for compliance

Logged Events:

  • Agent publications
  • Policy changes
  • Member invitations
  • Workspace modifications
  • Authentication events

SIEM Export (Professional+)

In Operations > Audit Log, use the SIEM Export panel to forward filtered audit events to:

  • Datadog (/api/v1/audit-logs/siem/datadog/export)
  • Splunk HEC (/api/v1/audit-logs/siem/splunk/export)
  • PagerDuty Events API (/api/v1/audit-logs/siem/pagerduty/export)

Each export uses your current audit filters (workspace, event type, time window).

Support Workflows by Tier

Support workflows are available from dashboard flows backed by:

  • Starter: email support (/api/v1/support/email)
  • Professional: priority + Slack support (/api/v1/support/priority, /api/v1/support/slack)
  • Enterprise: dedicated CSM (/api/v1/support/csm)

Connecting GitHub Repository

To enable source analysis and cloud builds:

From Dashboard

  1. Go to My Agents > Select an agent
  2. Click Connect Repository
  3. If not installed, click Install GitHub App
  4. Select repository to connect
  5. Click Connect

From CLI

# Install GitHub App (opens browser)
sekuire github install

# Connect repository to agent
sekuire github connect https://github.com/your-org/your-agent

What GitHub Connection Enables

  • Source Analysis - Security scanning of your code
  • Capability Detection - Automatic tool discovery
  • Cloud Builds - Build container images via Kaniko
  • Push Triggers - Auto-analysis on git push

Troubleshooting

Agent not appearing after publish

  1. Check publish succeeded: sekuire publish should show success
  2. Verify SekuireID: sekuire hash
  3. Check registry directly: https://api.sekuire.ai/api/v1/agents/{id}
  4. Ensure you're logged in to the correct account

Verification badge missing

  1. Run verification: sekuire verify
  2. Fix any reported issues
  3. Re-publish: sekuire publish

Can't see workspace

  1. Check organization membership
  2. Verify workspace access in member settings
  3. Contact organization admin

Next Steps