askill
qlik-cloud

qlik-cloudSafety 85Repository

Complete Qlik analytics platform integration supporting both Qlik Cloud and Qlik Sense Enterprise on Windows (on-premise). 37+ tools covering health checks, search, app management, reloads, natural language queries (Insight Advisor), automations, AutoML, Qlik Answers AI, data alerts, spaces/streams, users, licenses, and lineage. Use when user asks about Qlik, Qlik Cloud, Qlik Sense apps, analytics dashboards, data reloads, or wants to query business data.

1 stars
1.2k downloads
Updated 2/5/2026

Package Files

Loading files...
SKILL.md

Qlik Skill

Complete OpenClaw integration for Qlik Cloud and Qlik Sense Enterprise on Windows (On-Premise).

πŸš€ Quick Setup

Qlik Cloud

Add 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

Qlik Sense Enterprise (On-Premise)

Add to TOOLS.md:

### Qlik Sense On-Premise
- Server URL: https://qlik-server.company.local
- Certificate Path: /path/to/client.pem
- Key Path: /path/to/client_key.pem
- Virtual Proxy: (optional)

Or use header authentication:

### Qlik Sense On-Premise
- Server URL: https://qlik-server.company.local
- User Directory: DOMAIN
- User ID: username
- Virtual Proxy: (optional)

Environment Variables

VariablePlatformDescription
QLIK_TENANTCloudTenant URL (e.g., https://company.eu.qlikcloud.com)
QLIK_API_KEYCloudAPI key from profile settings
QLIK_SERVEROn-PremServer URL (e.g., https://qlik.company.local)
QLIK_CERTOn-PremPath to client certificate (PEM)
QLIK_KEYOn-PremPath to client key (PEM)
QLIK_USER_DIRECTORYOn-PremUser directory for header auth
QLIK_USER_IDOn-PremUser ID for header auth
QLIK_VIRTUAL_PROXYOn-PremVirtual proxy prefix (optional)

⚑ Platform Comparison

FeatureCloudOn-Premise
Apps & Reloadsβœ…βœ…
Spaces / Streamsβœ… Spacesβœ… Streams
Users & Governanceβœ…βœ…
Health Checkβœ…βœ…
Insight Advisor (NL Query)βœ… REST APIβœ… REST API*
Automationsβœ…βŒ
AutoMLβœ…βŒ
Qlik Answersβœ…βŒ
Data Alertsβœ…βŒ
Lineage (QRI)βœ…βŒ
Managed Datasetsβœ…βŒ

*On-premise Insight Advisor requires Insight Advisor Chat enabled in QMC (uses /api/v1/nl/query).

πŸ”§ When to Use What

You Want...Use ThisExample
Actual data values (KPIs, numbers, trends)qlik-insight.sh"what is total sales"
App structure (field names, tables)qlik-app-fields.shUnderstanding data model
Refresh dataqlik-reload.shTrigger reload before querying
Find appsqlik-search.sh or qlik-apps.shLocate app by name
Test connectivityqlik-health.shVerify setup

Quick Reference

Core Operations (Both Platforms βœ…)

ScriptDescriptionArgs
qlik-health.shHealth check / connectivity testβ€”
qlik-apps.shList apps[--space ID] [--limit n]
qlik-app-get.shGet app details<app-id>
qlik-reload.shTrigger app reload<app-id> [--partial]
qlik-reload-status.shCheck reload status<reload-id>
qlik-reload-history.shApp reload history<app-id> [limit]
qlik-reload-failures.shRecent failed reloads[days] [limit]
qlik-spaces.shList spaces (Cloud) / streams (On-Prem)[limit]
qlik-users-search.shSearch users"query" [limit]
qlik-insight.shNatural language queries ⭐"question" [app-id]

Cloud-Specific

ScriptDescriptionArgs
qlik-tenant.shGet tenant & user infoβ€”
qlik-search.shSearch all resources"query"
qlik-license.shLicense info & usageβ€”
qlik-insight.shNatural language queries ⭐"question" [app-id]
qlik-spaces.shList spaces[limit]
qlik-automations.shList automations[limit]
qlik-answers-ask.shAsk AI assistant<id> "question"
qlik-alerts.shList data alerts[limit]

Apps

ScriptDescriptionArgs
qlik-app-get.shGet app details<app-id>
qlik-app-create.shCreate new app"name" [space-id]
qlik-app-delete.shDelete app<app-id>
qlik-app-fields.shGet fields & tables<app-id>
qlik-app-lineage.shGet app data sources<app-id>

Reloads

ScriptDescriptionArgs
qlik-reload.shTrigger app reload<app-id> [--partial]
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]

Users & Governance

ScriptDescriptionArgs
qlik-users-search.shSearch users"query" [limit]
qlik-user-get.shGet user details<user-id>

πŸ“ Personal Space (Cloud Only)

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

πŸ”₯ Insight Advisor (Natural Language Queries)

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"
# Query specific app
bash scripts/qlik-insight.sh "revenue by region" "app-uuid-here"

Important: Use resourceId (UUID format) from search results β€” NOT the item id.

Example Workflows

Cloud: Check Environment

export QLIK_TENANT="https://company.eu.qlikcloud.com"
export QLIK_API_KEY="your-api-key"

bash scripts/qlik-health.sh
bash scripts/qlik-tenant.sh

On-Premise: Check Environment

export QLIK_SERVER="https://qlik.company.local"
export QLIK_CERT="/path/to/client.pem"
export QLIK_KEY="/path/to/client_key.pem"

bash scripts/qlik-health.sh
bash scripts/qlik-apps.sh

On-Premise with Header Auth

export QLIK_SERVER="https://qlik.company.local"
export QLIK_USER_DIRECTORY="DOMAIN"
export QLIK_USER_ID="admin"
export QLIK_VIRTUAL_PROXY="prefix"  # optional

bash scripts/qlik-health.sh

Find and Query an App

# Search returns resourceId (UUID)
bash scripts/qlik-search.sh "Sales"

# Use resourceId for operations
bash scripts/qlik-app-get.sh "950a5da4-0e61-466b-a1c5-805b072da128"
bash scripts/qlik-insight.sh "What were total sales?" "950a5da4-0e61-466b-a1c5-805b072da128"

Reload Management

bash scripts/qlik-reload.sh "app-id"
bash scripts/qlik-reload-status.sh "reload-id"
bash scripts/qlik-reload-failures.sh 7  # Last 7 days

Response Format

All scripts output JSON:

{
  "success": true,
  "platform": "cloud",
  "data": { ... },
  "timestamp": "2026-02-05T12:00:00Z"
}

The platform field indicates whether the response is from cloud or onprem.

On-Premise API Mapping

Cloud ConceptOn-Premise EquivalentAPI Path
SpacesStreams/qrs/stream
/api/v1/apps/qrs/appQRS API
/api/v1/reloads/qrs/reloadtaskQRS API
/api/v1/users/qrs/userQRS API
Bearer tokenCertificate / Header authX-Qlik-User

Cloud-Only Features

The following features are Qlik Cloud exclusive:

  • βš™οΈ 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
  • πŸ—£οΈ Insight Advisor REST API β€” Natural language queries (Engine API available on-prem)

Install

Download ZIP
Requires askill CLI v1.0+β–Ά

AI Quality Score

95/100Analyzed 2/10/2026

An exceptionally well-documented skill for Qlik integration, providing comprehensive setup guides, tool references, and platform-specific nuances.

85
98
90
98
95

Metadata

Licenseunknown
Version-
Updated2/5/2026
Publisherundsoul

Tags

apigithub-actionssecuritytesting