3.7k★by undsoul
qlik-cloud – OpenClaw Skill
qlik-cloud is an OpenClaw Skills integration for data analytics workflows. 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.
Skill Snapshot
| name | qlik-cloud |
| description | 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. OpenClaw Skills integration. |
| owner | undsoul |
| repository | undsoul/qlik-cloud |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @undsoul/qlik-cloud |
| last updated | Feb 7, 2026 |
Maintainer

name: qlik-cloud description: 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.
Qlik Cloud Skill
Complete OpenClaw integration for Qlik Cloud — 37 tools covering the full platform.
Setup
Add credentials to TOOLS.md:
### Qlik Cloud
- Tenant URL: https://your-tenant.region.qlikcloud.com
- API Key: your-api-key-here
Get an API key: Qlik Cloud → Profile icon → Profile settings → API keys → Generate new key
⚡ When to Use What
| You Want... | Use This | Example |
|---|---|---|
| Actual 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.sh | Understanding data model |
| Refresh data | qlik-reload.sh | Trigger reload before querying |
| Find apps | qlik-search.sh or qlik-apps.sh | Locate app by name |
Key insight: qlik-app-fields.sh returns metadata (structure), NOT actual data. To get real numbers, always use qlik-insight.sh (Insight Advisor).
Quick Reference
All scripts: QLIK_TENANT="https://..." QLIK_API_KEY="..." bash scripts/<script>.sh [args]
Core Operations
| Script | Description | Args |
|---|---|---|
qlik-health.sh | Health check / connectivity test | — |
qlik-tenant.sh | Get tenant & user info | — |
qlik-search.sh | Search all resources | "query" |
qlik-license.sh | License info & usage | — |
Apps
| Script | Description | Args |
|---|---|---|
qlik-apps.sh | List all apps | [limit] |
qlik-app-get.sh | Get app details | <app-id> |
qlik-app-create.sh | Create new app | "name" [space-id] [description] |
qlik-app-delete.sh | Delete app | <app-id> |
qlik-app-fields.sh | Get fields & tables (metadata only, not data values) | <app-id> |
qlik-app-lineage.sh | Get app data sources | <app-id> |
Reloads
| Script | Description | Args |
|---|---|---|
qlik-reload.sh | Trigger app reload | <app-id> |
qlik-reload-status.sh | Check reload status | <reload-id> |
qlik-reload-cancel.sh | Cancel running reload | <reload-id> |
qlik-reload-history.sh | App reload history | <app-id> [limit] |
qlik-reload-failures.sh | Recent failed reloads | [days] [limit] |
Monitoring
| Script | Description | Args |
|---|---|---|
qlik-duplicates.sh | Find duplicate apps (same name) | [limit] |
Insight Advisor ⭐ (Natural Language Queries)
| Script | Description | Args |
|---|---|---|
qlik-insight.sh | Ask questions in plain English, get real data values back | "question" [app-id] |
This is the primary tool for getting actual data! Use natural language:
- "what is total sales"
- "which stores have lowest availability"
- "show stock count by region"
- "items predicted out of stock"
Note: If you don't know the app-id, run without it first — Qlik will suggest matching apps. The app-id is UUID format (e.g., 950a5da4-0e61-466b-a1c5-805b072da128).
Users & Governance
| Script | Description | Args |
|---|---|---|
qlik-users-search.sh | Search users | "query" [limit] |
qlik-user-get.sh | Get user details | <user-id> |
qlik-spaces.sh | List all spaces | [limit] |
Data Files & Lineage
| Script | Description | Args |
|---|---|---|
qlik-datafiles.sh | List uploaded data files | [space-id] [limit] |
qlik-datafile.sh | Get data file details | <file-id> |
qlik-datasets.sh | List managed datasets* | [space-id] [limit] |
qlik-dataset-get.sh | Get managed dataset details* | <dataset-id> |
qlik-lineage.sh | Data lineage graph | <secure-qri> [direction] [levels] |
*Managed datasets are available in Qlik Cloud.
Automations
| Script | Description | Args |
|---|---|---|
qlik-automations.sh | List automations | [limit] |
qlik-automation-get.sh | Get automation details | <automation-id> |
qlik-automation-run.sh | Run automation | <automation-id> |
qlik-automation-runs.sh | Automation run history | <automation-id> [limit] |
AutoML
| Script | Description | Args |
|---|---|---|
qlik-automl-experiments.sh | List ML experiments | [limit] |
qlik-automl-experiment.sh | Experiment details | <experiment-id> |
qlik-automl-deployments.sh | List ML deployments | [limit] |
Qlik Answers (AI Assistant)
| Script | Description | Args |
|---|---|---|
qlik-answers-assistants.sh | List AI assistants | [limit] |
qlik-answers-ask.sh | Ask assistant a question | <assistant-id> "question" [thread-id] |
Data Alerts
| Script | Description | Args |
|---|---|---|
qlik-alerts.sh | List data alerts | [limit] |
qlik-alert-get.sh | Get alert details | <alert-id> |
qlik-alert-trigger.sh | Trigger alert evaluation | <alert-id> |
Example Workflows
Check Environment
bash scripts/qlik-health.sh
bash scripts/qlik-tenant.sh
bash scripts/qlik-license.sh
Find and Query an App
bash scripts/qlik-search.sh "Sales"
bash scripts/qlik-app-get.sh "abc-123"
bash scripts/qlik-app-fields.sh "abc-123"
bash scripts/qlik-insight.sh "What were total sales last month?" "abc-123"
See App Data Sources
# Simple: see what files/connections an app uses
bash scripts/qlik-app-lineage.sh "950a5da4-0e61-466b-a1c5-805b072da128"
# Returns: QVD files, Excel files, databases, etc.
Reload Management
bash scripts/qlik-reload.sh "abc-123"
bash scripts/qlik-reload-status.sh "reload-id"
bash scripts/qlik-reload-history.sh "abc-123"
Natural Language Queries (Insight Advisor)
# 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 "ciro trend" "950a5da4-0e61-466b-a1c5-805b072da128"
# Returns: "Total Ciro is 9,535,982. Max is 176,447 on 2025-01-02"
Qlik Answers (AI)
# 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?"
Response Format
All scripts output JSON:
{
"success": true,
"data": { ... },
"timestamp": "2026-02-04T12:00:00Z"
}
Environment Variables
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
Cloud-Only Features
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
Qlik Cloud Skill for OpenClaw
Complete Qlik Cloud integration with 31 tools for the OpenClaw/Clawd agent platform.
Features
- Core: Health checks, tenant info, search, licensing
- Apps: List, create, delete, get details, inspect fields
- Reloads: Trigger, monitor, cancel, view history
- Insight Advisor: Natural language queries against your data ⭐
- Automations: List, run, monitor automation workflows
- AutoML: Experiments and deployments
- Qlik Answers: AI assistants and Q&A
- Alerts: Data alerts management
- Users & Spaces: User management, space organization
- Data: Dataset info, lineage tracking
Installation
Copy the qlik-cloud folder to your OpenClaw skills directory, or install via ClawdHub (coming soon).
Setup
-
Get a Qlik Cloud API key:
- Go to Qlik Cloud → Profile icon → Profile settings → API keys
- Generate a new key
-
Add to your
TOOLS.md:
### Qlik Cloud
- Tenant URL: https://your-tenant.region.qlikcloud.com
- API Key: your-api-key-here
Usage
All scripts follow the same pattern:
QLIK_TENANT="https://your-tenant.qlikcloud.com" \
QLIK_API_KEY="your-key" \
bash scripts/<script>.sh [arguments]
Examples
# Health check
bash scripts/qlik-health.sh
# Search for apps
bash scripts/qlik-search.sh "sales"
# Natural language query
bash scripts/qlik-insight.sh "show revenue by region"
# Trigger app reload
bash scripts/qlik-reload.sh "app-id-here"
Scripts Reference
See SKILL.md for complete documentation.
Requirements
- bash
- curl
- Python 3 (standard library only)
License
MIT
Author
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install qlik-cloud?
Run openclaw add @undsoul/qlik-cloud in your terminal. This installs qlik-cloud into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/undsoul/qlik-cloud. Review commits and README documentation before installing.
