PAZATOR DOCS
TASTUR
FEATURE — v0.May1526

TASTUR
Rule Engine.

Note this has been removed. contact me if you truly need it.

What is TASTUR

TASTUR is an event-driven automation engine built directly into Pazator. It lets you write simple rules that respond to application events — switching tabs, adding data, detecting threats, or performing searches. Rules follow a straightforward syntax: WHEN [trigger] IF [condition] THEN [action].

Syntax

WHENa trigger occurs IF(optional)a condition is met THENperform an action
WHEN tab_switch IF to="threats" THEN popup "Security Clearance Required"
WHEN threat_detected IF count > 5 THEN notify "High threat volume detected!"
WHEN data_added THEN toast "Data saved successfully" success

Triggers

Every rule starts with a trigger — the event that activates the rule.

tab_switchFires when the user switches tabs. Data: to (target tab ID).
data_addedFires when new data is added. Data: count (total items).
threat_detectedFires when high-risk entries are found. Data: count (high-risk items).
search_performedFires after a search. Data: query (search text).
app_loadFires once when the application starts.

Actions

What happens when a rule fires. Actions use the format action "argument" [type].

popup / alertShows a modal alert dialog. popup "Message"
notifyShows a floating info notification. notify "Message"
toastShows a styled toast. Type: info/success/warning/error. toast "Message" error
tabSwitches to a specific tab. tab "analysis"

Conditions

The optional IF clause evaluates a comparison against event data. Supported operators: ==, !=, >, <, >=, <=.

WHEN threat_detected IF count > 10 THEN toast "Critical threat level" error
WHEN search_performed IF query=="classified" THEN popup "Restricted Search Logged"
WHEN tab_switch IF to=="dashboard" THEN notify "Back to base"

Available Tab IDs

dashboard, analysis, threats, chat-control, search, agents, articles, tracker, cases, tastur

Using TASTUR

Open the TASTUR tab in the app. Write rules in the editor (one per line) and click Save Rules. Use the AI Instructions button to copy a prompt you can paste into ChatGPT or Claude to generate rules automatically. Each rule shows in the Active Rules panel, where you can toggle or delete individual rules.


Related

TASTUR runs alongside the CTXOD system. While CTXOD gives Zor on-demand tool access, TASTUR handles automated responses to internal events. See the CTXOD docs for AI context tools.