- Home
- Getting Started
- Account & Settings
- Roles & Add-On Access
- Settings
- Agentic
- White Label
- Agents & Engines
- Engines
-
Agents
- Overview
- Core Agents
- Core Agents
- Matrix Agent
- Audit Agent
- Industry Agents
- Patent Agent
- Add-On Modules
-
Manufacturing
- Manufacturing
- Overview
- Work Orders
- Production Scheduling
- Shop Floor Monitor
- OEE Dashboard
- Production Counters
- Plant & Process Setup
- Work Centers
- Bill of Materials
- Manufactured Products
- Work Instructions
- Quality Operations
- Overview
- Inspection Plans
- Quality Checklist
- Non-Conformance (NCR)
- SPC Charts
- Traceability (4M)
- Maintenance Operations
- Overview
- Asset Registry
- Preventive Maintenance
- Work Orders
- Spare Parts
- Reliability Dashboard
- Inventory Operations
- Overview
- Material Staging
- WIP Tracking
- Kanban Replenishment
- Material Consumption
- Assets
- Asset Health
- Legal
- Construction
- Government
- Education
- Energy
- Agriculture
- Healthcare
- RevOps
- Ecommerce Operations
- Financial Audit & Fintech Ops
- Insurance
- Hospitality
- Real Estate
- Patent & R&D Operations
- Automotive & Fleet Management Ops
- Customs & Global Trade
- Enterprise & Technical
-
Enterprise Operations
- Enterprise Operations
- Overview
- Enterprise Operations Guide
- Compliance & Docs
- Overview
- Approval Workflow
- Expiry Reminders
- Document Control
- Audit Trail
- Compliance Radar
- Contracts & Warranty
- Overview
- Active Contracts
- Warranty Check
- Service Billing
- Field Service
- Overview
- Dispatch Board
- Job Management
- Van Inventory
- Performance Dashboard
- Service Desk
- Overview
- Service Requests
- SLA Monitor
- Knowledge Base
- Procurement & Vendor
- Purchase Orders
- Vendor Portal
- RFQ Management
- QHSE
- Overview
- Incident Reporting
- Permit to Work
- Safety Inspections
-
Security & Compliance
- Threat & Monitoring
- Overview
- Security Hub
- Security Audit
- IAM Visualizer
- Dependency Scanner
- Secret Scanner
- Secret Vault
- Traffic Monitor
- Audit Trail
- Threat Simulator
- Compliance Radar (MatrixAgent)
- Identity & Compliance
- Overview
- PPTX Auditor
- PDF Auditor
-
Engineering & Infrastructure
- DevOps & Infrastructure
- Overview
- Cron Builder
- CI/CD Pipeline
- Containers
- Log Streamer
- Secrets Management
- Health Monitor
- Infrastructure as Code
- Developer Tools
- Overview
- Nerve Center
- Git Diff Viewer
- Regex Tester
- JSON Transformer
- Workflow Optimizer
- Execution Replay
- Workflow Editor
- Dev Hub Terminal
- Security Hub
- Graph View
- Terminal Editor
- API Playground
- DSL Compiler
- Database Tools
- Overview
- Database Manager
- ORM Mapper
- SQL Formatter
- Schema Visualizer
- Visual Query Builder
- Seed Data Generator
- Custom Collections
- QA & Test
- Overview
- Flake Tracker
- Artifact Vault
- Web Test Module
- Test Plan & Runner
-
Data & Intelligence
- AIOps & Intelligence
- Overview
- Agents
- Agent Architect
- Model Center
- Prompt Lab
- Knowledge Base
- Agent Persona Editor
- Tool / Function Registry
- Observability & Logs
- DataOps & Analytics
- Overview
- Data Inspector
- AI Predictive Models
- Core Modules
- Ads & Social Media
- AI Assistants
- API & Integration
- App Groups
- Appointment Booking
-
Automation
- Automation
- Overview
- Workflow Editor
- Monitoring
- Execution Heatmap
- Workflow Pulse
- Trigger Control
- Task Scheduler
- Integration Hub
- Rule Engine
- Pipeline Designer
- Workflow Editor
- Overview
- Triggers
- Manual Input
- Data Sources
- Ecommerce
- Document Management
- Logic & Transform
- AI Agents
- Knowledge / AI
- Validation & Security
- Integrations
- Outputs
- Document Generation
- Image Generation
- Video Generation
- Coming Soon
- Call Center
- Collaboration
- Community
- Creative Studio
- CRM
- Fleet & Logistics
-
Finance
- Hub
- Finance Hub
- Accounting Hub
- Treasury & Banking Hub
- Commercial Accounts Hub
- Invoicing & Billing Hub
- Reporting & Analytics Hub
- Grid View
- Overview
- Accounting AI Assistant
- Treasury
- Invoice Manager
- Expense Management
- Financial Accounts
- Payroll
- Accounts Receivable
- Accounts Payable
- Bank Reconciliation
- Budget & Forecasting
- Expenses & Budget
- Profit & Loss
- Tax & Compliance
- Galleries & Curation
- Google Display Ads
- Human Resources
- Legal & Support
- Logistics
- Map Explorer
- Marketing
- My Workspace
- Plans & Pricing
- Point of Sale
- Product Management
- Purchase
- Sales
- Semantic Search
- Strategy & Fundraising
- Warehouse
- Website
- Productivity
- Project Management
- Documents
- Learning (LMS)
-
Creator Tools
- Overview
- Brand Identity Creator
- Template Creator
- Image Creator
- Overview
- Getting Started
- Image Generation
- Remix
- Upscale
- Magic Replace
- Remove Background
- Reframe
- Describe
- Magic Tags
- Magic Fill
- Style Transfer
- Style Preset
- Social Media Images
- Prompting Guide
- Video Creator
- Overview
- Getting Started with Video
- Text to Video
- Image to Video
- AI Video Transition
- Video Effects
- Scene Builder
- Short Film Creator
- Audio Creator
- Overview
- AI Audio
- Text to Speech
- Voice Cloning
- Music Generation
- Sound Effects
- Writer Tools
- App Factory
- Research
- Utilities
Security Hub
Automated security auditing, dependency scanning, and AI-powered vulnerability analysis.
Overview
Security Hub is a purpose-built security auditing terminal. It combines automated scanning commands with AI-powered analysis to help you identify and remediate vulnerabilities in your codebase, dependencies, and infrastructure configuration.
The terminal uses two block types unique to security workflows: SelectBlock for interactive multi-option scope selection (narrow the audit to specific modules or check types), and RunBlock for multi-step audit sequences that show progress as each check completes.
Audit Commands
| Command | What It Checks |
|---|---|
| security-analysis [path] | Comprehensive static analysis of code at the specified path. Identifies injection risks, hardcoded credentials, unsafe dependencies, and misconfigurations. |
| scan-dependencies | Checks all declared dependencies (package.json, requirements.txt, etc.) against known vulnerability databases for CVEs. |
| check-secrets | Scans source files for accidentally committed secrets: API keys, tokens, passwords, private keys. |
| audit-permissions | Checks file and directory permissions for overly permissive settings that could allow privilege escalation. |
Full Audit Mode
Running runFullAudit chains all available scan commands in sequence. This is the recommended starting point for a comprehensive security review.
- The terminal launches a RunBlock with steps for each scan command.
- Each step transitions from pending → running → done (or error) as the scan completes.
- After all scans finish, the terminal displays a summary of findings organised by severity.
Severity Categories
All findings are classified into four severity levels:
- Critical — Must be fixed before deployment. Typically means exposed credentials or known exploitable CVEs with public PoCs.
- High — Should be fixed in the current sprint. Significant attack surface or data exposure risk.
- Medium — Schedule for the next sprint. Notable risk but requires specific conditions to exploit.
- Low — Best practice improvements. Low exploitability but worth addressing over time.
AI Analysis
After each scan, the AI explains every finding in plain language and suggests concrete remediation steps. For each vulnerability, you receive:
- Plain-language description — what the vulnerability is and why it matters.
- Exploitability context — how an attacker would actually exploit it and what data or systems are at risk.
- Remediation steps — specific code changes, configuration updates, or dependency upgrades needed to fix the issue.
- Priority recommendation — based on severity and exploitability, the AI tells you which findings to tackle first.
Focus on Critical Findings First
When facing a long list of findings, start with Critical and High severities. These represent actual exploitable vulnerabilities. Medium and Low findings are real but pose less immediate risk — address them in maintenance cycles.
Report Export
After a full audit, click Export Report to download a timestamped security report. The report includes:
- Audit timestamp and scanned path
- Status, risk level, and issue count per protocol
- Findings and summary per protocol
Reports are exported as JSON files (full-security-audit-<timestamp>.json) suitable for sharing with your team or including in a compliance review package.
SelectBlock Flows
Some audit commands use SelectBlock to let you interactively narrow the audit scope before scanning begins. For example, security-analysis on a large monorepo may first prompt you to select which sub-packages to include.
Interactive Prompts vs Full Scan
SelectBlock prompts are optional — pressing Enter without making a selection runs the full scan. Use scope selection when you want a faster focused scan during active development, and full scans for release audits or compliance checks.