Kortex AI

Kortex AI

Intelligent assistant for your Protokol ecosystem. Chat, search, execute.

5+

AI Capabilities

<500ms

Avg Response Time

SDK

Tool Registry API

Multi

Model Support

Capabilities

What Kortex AI can do

Click any capability to see demos and details.

Platform Capabilities

Frictionless AI Integration

Kortex is deeply integrated into the Protokol platform — no separate servers, no complex setup. Just SDK, your tools, and AI that uses them.

Streaming AI responses with typing indicators

SDK-based tool registration for any Protokol app

RAG-powered knowledge retrieval with source citations

Multi-agent architecture with mid-conversation switching

Role-based access control with tier management

Configurable tool risk policies and approval workflows

OCR node for document text extraction in Workflows

AI Completion node with KB and tool context in Workflows

Multi-agent orchestration and chaining in Workflows

Make Your Protokol Apps AI-Ready

Register tools via SDK. Kortex discovers and invokes them automatically. Users trigger them via chat — no extra UI work.

import { registerTool } from '@ptkl/components'

registerTool(
  'get_invoice_status',
  'Check payment status of an invoice',
  {
    type: 'object',
    properties: {
      invoiceId: { type: 'string' }
    }
  },
  async ({ invoiceId }) => {
    const inv = await db.invoices.find(invoiceId)
    return {
      status: inv.status,
      amount: inv.amount,
      currency: inv.currency
    }
  }
)
CLI Toolkit

Kortex AI in Your Terminal

Use Kortex AI directly from the command line. Ask questions, edit files, run commands — all through an interactive AI assistant in your terminal.

Kortex CLI interaction
Interactive AI Assistant in Terminal

Run ptkl kortex and chat with an AI that understands your project, reads and edits files, and executes commands.

Quick Start

npm install -g @ptkl/toolkit

ptkl profile new -n myproject
ptkl kortex "help me build an invoice tool"
Read & write filesExecute shell commandsGit operationsProject-wide searchMultiple AI agentsMCP extensibility

Ready to try Kortex AI?

Integrate AI into your Protokol applications in minutes.