Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Complete Qlik Cloud analytics platform integration with 37 tools. Health checks, search, app management, reloads, natural language queries (Insight Advisor), automations, AutoML, Qlik Answers AI, data alerts, spaces, users, licenses, data files, and lineage. Use when user asks about Qlik, Qlik Cloud, Qlik Sense apps, analytics dashboards, data reloads, or wants to query business data using natural language.
Complete Qlik Cloud analytics platform integration with 37 tools. Health checks, search, app management, reloads, natural language queries (Insight Advisor), automations, AutoML, Qlik Answers AI, data alerts, spaces, users, licenses, data files, and lineage. Use when user asks about Qlik, Qlik Cloud, Qlik Sense apps, analytics dashboards, data reloads, or wants to query business data using natural language.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
Complete OpenClaw integration for Qlik Cloud β 37 tools covering the full platform.
You Want...Use ThisExampleActual data values (KPIs, numbers, trends)qlik-insight.sh"what is total sales", "which store has lowest stock"App structure (field names, tables)qlik-app-fields.shUnderstanding data modelRefresh dataqlik-reload.shTrigger reload before queryingFind appsqlik-search.sh or qlik-apps.shLocate app by name π¨ Decision Tree: User asks about data (numbers, KPIs, trends)? ββ YES β Use qlik-insight.sh ββ Response has 'narrative' or 'data'? ββ YES β Return the results ββ NO β Try rephrasing, check drillDownLink ββ NO (structure/metadata) β Use qlik-app-fields.sh Key insight: qlik-app-fields.sh returns metadata (structure), NOT actual data. To get real numbers, always use qlik-insight.sh (Insight Advisor).
All scripts: QLIK_TENANT="https://..." QLIK_API_KEY="..." bash scripts/<script>.sh [args]
ScriptDescriptionArgsqlik-health.shHealth check / connectivity testβqlik-tenant.shGet tenant & user infoβqlik-search.shSearch all resources (returns resourceId)"query"qlik-license.shLicense info & usageβ
ScriptDescriptionArgsqlik-apps.shList apps (supports space filtering)[--space personal|spaceId] [--limit n]qlik-app-get.shGet app details<app-id>qlik-app-create.shCreate new app"name" [space-id] [description]qlik-app-delete.shDelete app<app-id>qlik-app-fields.shGet fields & tables (metadata only, not data values)<app-id>qlik-app-lineage.shGet app data sources<app-id>
ScriptDescriptionArgsqlik-reload.shTrigger app reload<app-id>qlik-reload-status.shCheck reload status<reload-id>qlik-reload-cancel.shCancel running reload<reload-id>qlik-reload-history.shApp reload history<app-id> [limit]qlik-reload-failures.shRecent failed reloads[days] [limit]
ScriptDescriptionArgsqlik-duplicates.shFind duplicate apps (same name)[limit]
ScriptDescriptionArgsqlik-insight.shAsk questions in plain language, get real data values back"question" [app-id] This is the primary tool for getting actual data! Ask naturally: "what is total sales" "which stores have lowest availability" "show stock count by region" "items predicted out of stock" Important: Use resourceId (UUID format) from search results β NOT the item id Check response for narrative and/or data β If both missing, try rephrasing For data questions, use insight.sh NOT fields.sh β fields.sh = metadata, insight.sh = actual values
ScriptDescriptionArgsqlik-users-search.shSearch users"query" [limit]qlik-user-get.shGet user details<user-id>qlik-spaces.shList all spaces (shared, managed, data)[limit]
Personal space is VIRTUAL in Qlik Cloud β it does NOT appear in the /spaces API! # β WRONG: qlik-spaces.sh will NOT show personal space bash scripts/qlik-spaces.sh # β CORRECT: Use qlik-apps.sh with --space personal bash scripts/qlik-apps.sh --space personal Space types in Qlik Cloud: personal β Virtual, user's private apps (use --space personal) shared β Team collaboration spaces managed β Governed spaces with publishing workflow data β Data storage spaces
ScriptDescriptionArgsqlik-datafiles.shList uploaded data files[space-id] [limit]qlik-datafile.shGet data file details<file-id>qlik-datasets.shList managed datasets*[space-id] [limit]qlik-dataset-get.shGet managed dataset details*<dataset-id>qlik-lineage.shData lineage graph<secure-qri> [direction] [levels] *Managed datasets are available in Qlik Cloud.
ScriptDescriptionArgsqlik-automations.shList automations[limit]qlik-automation-get.shGet automation details<automation-id>qlik-automation-run.shRun automation<automation-id>qlik-automation-runs.shAutomation run history<automation-id> [limit]
ScriptDescriptionArgsqlik-automl-experiments.shList ML experiments[limit]qlik-automl-experiment.shExperiment details<experiment-id>qlik-automl-deployments.shList ML deployments[limit]
ScriptDescriptionArgsqlik-answers-assistants.shList AI assistants[limit]qlik-answers-ask.shAsk assistant a question<assistant-id> "question" [thread-id]
ScriptDescriptionArgsqlik-alerts.shList data alerts[limit]qlik-alert-get.shGet alert details<alert-id>qlik-alert-trigger.shTrigger alert evaluation<alert-id>
bash scripts/qlik-health.sh bash scripts/qlik-tenant.sh bash scripts/qlik-license.sh
# Search returns resourceId (UUID) β use this for all app operations bash scripts/qlik-search.sh "Sales" # Output: { "resourceId": "950a5da4-0e61-466b-a1c5-805b072da128", ... } # Use the resourceId for app operations bash scripts/qlik-app-get.sh "950a5da4-0e61-466b-a1c5-805b072da128" bash scripts/qlik-app-fields.sh "950a5da4-0e61-466b-a1c5-805b072da128" bash scripts/qlik-insight.sh "What were total sales last month?" "950a5da4-0e61-466b-a1c5-805b072da128"
bash scripts/qlik-app-lineage.sh "950a5da4-0e61-466b-a1c5-805b072da128" # Returns: QVD files, Excel files, databases, etc.
bash scripts/qlik-reload.sh "abc-123" bash scripts/qlik-reload-status.sh "reload-id" bash scripts/qlik-reload-history.sh "abc-123"
# Find apps that match your question bash scripts/qlik-insight.sh "show me sales trend" # Query specific app with UUID bash scripts/qlik-insight.sh "revenue by region" "950a5da4-0e61-466b-a1c5-805b072da128"
# List available AI assistants bash scripts/qlik-answers-assistants.sh # Ask a question (creates thread automatically) bash scripts/qlik-answers-ask.sh "27c885e4-85e3-40d8-b5cc-c3e20428e8a3" "What products do you sell?"
All scripts output JSON: { "success": true, "data": { ... }, "timestamp": "2026-02-04T12:00:00Z" }
Required credentials (add to TOOLS.md or set as environment variables): QLIK_TENANT β Your tenant URL (e.g., https://company.eu.qlikcloud.com) QLIK_API_KEY β API key from Qlik Cloud profile settings
The following features are Qlik Cloud exclusive (not available on Qlik Sense Enterprise on Windows): βοΈ Automations β Low-code workflow automation π€ AutoML β Machine learning experiments & deployments π¬ Qlik Answers β AI-powered Q&A assistants π Data Alerts β Threshold-based notifications π Lineage (QRI) β Data flow visualization π Managed Datasets β Centralized data management
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.