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:
| Section | Purpose |
|---|---|
| Registry | Browse and search published agents |
| My Agents | View and manage your published agents |
| Workspaces | Manage isolated environments for your agents |
| Organizations | Team and member management |
| Policies | Define governance rules for agent behavior |
| Operations | Monitor agent health, audit logs, and deployments |
Viewing Your Published Agent
After running sekuire publish, your agent appears in the registry.
Finding Your Agent
- Navigate to Registry in the sidebar
- Search by agent name or SekuireID
- 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:
| Name | Version | Status | Reputation | Last Updated |
|---|---|---|---|---|
| sales-assistant | 1.2.0 | Verified | 98 | 2 hours ago |
| data-pipeline | 2.0.1 | Verified | 100 | 1 day ago |
| support-bot | 1.0.0 | Draft | - | 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
- Navigate to Workspaces
- Click Create Workspace
- Fill in details:
- Name - e.g., "Production", "Staging", "Development"
- Type - Production, Staging, or Development
- Description - Purpose of this workspace
- Click Create
Workspace Types
| Type | Purpose |
|---|---|
| Production | Live agents serving real users |
| Staging | Pre-production testing |
| Development | Local development and experimentation |
Organization Management
Organizations allow team collaboration on agents.
Member Roles
| Role | Permissions |
|---|---|
| Owner | Full access, can delete organization |
| Admin | Manage members, workspaces, policies |
| Member | Publish agents, view workspaces |
| Viewer | Read-only access |
Inviting Members
- Go to Organizations > Members
- Click Invite Member
- Enter email address
- Select role
- Choose workspace access
- Click Send Invitation
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
- Navigate to Policies
- Click Create Policy
- Choose creation method:
- AI Generated - Describe requirements in plain language
- Template - Start from HIPAA, SOC2, or custom templates
- Manual - Write JSON directly
Policy Templates
| Template | Use Case |
|---|---|
| Minimal Dev | Development environment, relaxed rules |
| Enterprise Production | Strict security, full audit logging |
| HIPAA Compliant | Healthcare data handling |
| SOC2 Compliant | Service 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
- Go to My Agents > Select an agent
- Click Connect Repository
- If not installed, click Install GitHub App
- Select repository to connect
- 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
- Check publish succeeded:
sekuire publishshould show success - Verify SekuireID:
sekuire hash - Check registry directly:
https://api.sekuire.ai/api/v1/agents/{id} - Ensure you're logged in to the correct account
Verification badge missing
- Run verification:
sekuire verify - Fix any reported issues
- Re-publish:
sekuire publish
Can't see workspace
- Check organization membership
- Verify workspace access in member settings
- Contact organization admin
Next Steps
- Core Concepts - Understand trust protocol fundamentals
- CLI Reference - All CLI commands
- Using Agents - Discover and invoke published agents