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
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.
to (target tab ID).count (total items).count (high-risk items).query (search text).Actions
What happens when a rule fires. Actions use the format action "argument" [type].
popup "Message"notify "Message"toast "Message" errortab "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.
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.