Qlik Cloud

v1.0.3

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.

1· 2.2k·0 current·0 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
high confidence
!
Purpose & Capability
The scripts and documentation implement a full Qlik Cloud integration (health, apps, reloads, Insight Advisor, automations, AutoML, Answers, alerts, lineage). That functionality is coherent with the skill name/description. However, the registry metadata lists no required environment variables or primary credential even though every script and the SKILL.md require QLIK_TENANT and QLIK_API_KEY. This metadata omission is an important mismatch.
Instruction Scope
SKILL.md and the included scripts limit runtime actions to calling the Qlik Cloud tenant API (constructed from QLIK_TENANT) with the QLIK_API_KEY. Scripts do not attempt to read arbitrary host files or send data to non-tenant endpoints. They do create a temporary file (/tmp/qlik_delete_response.txt) only when handling delete responses. Instructions do ask the user to add credentials to TOOLS.md and to run scripts with QLIK_TENANT/QLIK_API_KEY environment variables.
Install Mechanism
There is no install spec (instruction-only installer behavior). Files are provided as scripts (bash + python3). No external downloads, package installs, or extract-from-URL steps are present in the manifest, which lowers install-time risk.
!
Credentials
The runtime requires two environment values (QLIK_TENANT and QLIK_API_KEY) which are appropriate and minimal for the stated purpose. However, the registry metadata declares no required env vars and no primary credential. That inconsistency is problematic: the skill should have declared QLIK_API_KEY as the primary credential and listed the required env variables. The requested environment access (tenant URL + API key) is otherwise proportionate to the functionality.
Persistence & Privilege
The skill does not request always:true and does not appear to modify other skills or system-wide settings. It will be user-invocable and can be invoked autonomously by the agent (platform default), which is normal for skills.
What to consider before installing
Before installing, note these issues and take steps to mitigate risk: - The skill's scripts and SKILL.md require QLIK_TENANT and QLIK_API_KEY, but the skill registry metadata did not declare those env vars or a primary credential. Ask the publisher to update the metadata (primaryEnv should be QLIK_API_KEY and requires.env should include QLIK_TENANT and QLIK_API_KEY). - Review the included scripts yourself (they are plain bash + small python3 JSON parsers). They call only the Qlik tenant URL you supply; they do not call other external endpoints. Still, verify the tenant URL you provide is correct and trusted. - Use least-privilege API keys: create an API key with the minimum privileges needed (read-only where possible) and test in a non-production tenant or with a low-privilege account first. Revoke the key if you later stop using the skill. - Because some scripts trigger actions (delete app, run automations, trigger alerts, run reloads), restrict who can invoke the skill and confirm operator intent before running destructive actions. - The delete script writes a temporary file to /tmp; ensure your environment's /tmp is monitored if that's a policy concern. - If you require higher assurance, ask the publisher for an updated package that correctly declares required env vars and a primary credential, and for a short explanation of why each API action is needed. Confidence note: The behavior appears to match the advertised purpose and no obvious exfiltration patterns are present, but the metadata omissions and the fact this package contains executable scripts rather than being purely declarative make this suspicious rather than outright benign.

Like a lobster shell, security has layers — review code before you run it.

latestvk973ejmnsmqastrba22d2ks7dx80gzcj
2.2kdownloads
1stars
3versions
Updated 1mo ago
v1.0.3
MIT-0

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 ThisExample
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.shUnderstanding data model
Refresh dataqlik-reload.shTrigger reload before querying
Find appsqlik-search.sh or qlik-apps.shLocate 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

ScriptDescriptionArgs
qlik-health.shHealth check / connectivity test
qlik-tenant.shGet tenant & user info
qlik-search.shSearch all resources"query"
qlik-license.shLicense info & usage

Apps

ScriptDescriptionArgs
qlik-apps.shList all apps[limit]
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>

Reloads

ScriptDescriptionArgs
qlik-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]

Monitoring

ScriptDescriptionArgs
qlik-duplicates.shFind duplicate apps (same name)[limit]

Insight Advisor ⭐ (Natural Language Queries)

ScriptDescriptionArgs
qlik-insight.shAsk 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

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

Data Files & Lineage

ScriptDescriptionArgs
qlik-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.

Automations

ScriptDescriptionArgs
qlik-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]

AutoML

ScriptDescriptionArgs
qlik-automl-experiments.shList ML experiments[limit]
qlik-automl-experiment.shExperiment details<experiment-id>
qlik-automl-deployments.shList ML deployments[limit]

Qlik Answers (AI Assistant)

ScriptDescriptionArgs
qlik-answers-assistants.shList AI assistants[limit]
qlik-answers-ask.shAsk assistant a question<assistant-id> "question" [thread-id]

Data Alerts

ScriptDescriptionArgs
qlik-alerts.shList data alerts[limit]
qlik-alert-get.shGet alert details<alert-id>
qlik-alert-trigger.shTrigger 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

Comments

Loading comments...