This is Qlik's public, open-source hub for AI agent skills - reusable skills and Claude plugins that extend AI agents with Qlik-specific expertise. Contributions from anyone are welcome; see Contribute a skill below.
Skills here work across Anthropic (Claude & Claude Code), OpenAI (ChatGPT, Codex), GitHub Copilot, Cursor, Gemini CLI, and 20+ other tools that support the open Agent Skills standard.
Agent skills are folders of instructions, scripts, and reference material that an AI agent loads on demand. Instead of repeating context in every conversation, you package your expertise once and let the agent discover and apply it automatically.
Think of a skill as an onboarding guide for a new hire - it tells the agent what to do, when to do it, and how to do it correctly for your specific environment. The SKILL.md format is an open standard, so a skill you write here works the same way in every compatible tool.
agentic-skills/
├── official/ # Qlik-owned and maintained skills
│ ├── skills/
│ │ └── README.md
│ └── .claude-plugin/plugin.json
├── community/ # Customer and partner contributions
│ ├── skills/
│ │ └── README.md
│ └── .claude-plugin/plugin.json
├── spec/
│ └── README.md
├── template/skill # Starter template for new skills
│ ├── README.md
│ └── SKILL.md
├── scripts/ # CI validation scripts (SKILL.md spec + plugin manifest checks)
├── .github/workflows/ # CI: runs the scripts above on relevant file changes
├── .claude-plugin/
│ └── marketplace.json
├── package.json / pnpm-lock.yaml # Node tooling for the validation scripts
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── NOTICE
└── README.md
Skills owned and maintained by Qlik staff, reviewed by the official maintainers team before merging. These are the generic way to work with Qlik Cloud through an AI agent.
Skills and Claude plugins contributed by Qlik customers, partners, and the developer community. Every community skill passes automated security scanning and a quality review before being merged.
Claude Code plugins that package the skills in each tier (official/, community/) into a single installable unit through Claude's plugin marketplace. The plugin format supports bundling agents, hooks, slash commands, and MCP server configuration alongside skills, but the underlying skills themselves remain cross-platform regardless of how a given plugin is packaged.
Skills are installed using the npx skills CLI — no setup required.
# Browse and install everything from this repo
npx skills add qlik-oss/agentic-skills
# Install a specific skill
npx skills add qlik-oss/agentic-skills --skill <skill-name>
# Install to a specific agent
npx skills add qlik-oss/agentic-skills --skill <skill-name> -a claude-code
# Install to all detected agents at once
npx skills add qlik-oss/agentic-skills --agent '*' --skill <skill-name>The CLI automatically detects which AI tools you have installed and places skill files in the correct directory for each one.
If you prefer to install manually, clone or copy the skill folder into your agent's skills directory:
| Agent | Project scope | Global scope |
|---|---|---|
| Claude Code | .claude/skills/ |
~/.claude/skills/ |
| OpenAI Codex | .agents/skills/ |
~/.codex/skills/ |
| Cursor | .claude/skills/ |
~/.claude/skills/ |
| Gemini CLI | .claude/skills/ |
~/.claude/skills/ |
| VS Code / Copilot | .github/skills/ |
— |
| JetBrains Junie | .junie/skills/ |
~/.junie/skills/ |
Claude Code users can also install via the plugin system, which packages each tier's skills into a single installable plugin:
/plugin install qlik-cloud-skills@qlik-cloud-skills
/plugin install qlik-cloud-community-skills@qlik-cloud-skills
See official/skills/ for the current list of official skills, and community/skills/ for community contributions.
This repository follows the open Agent Skills specification. Skills work across all compatible tools — no per-tool configuration needed.
| Tool | Supported |
|---|---|
| Claude Code (Anthropic) | ✓ |
| OpenAI Codex | ✓ |
| GitHub Copilot / VS Code | ✓ |
| Cursor | ✓ |
| Gemini CLI | ✓ |
| JetBrains Junie | ✓ |
| Goose (Block) | ✓ |
| OpenCode | ✓ |
| Amp | ✓ |
Community contributions are welcome. The fastest path is to use the skill-creator skill to scaffold your SKILL.md, then open a pull request.
# Bootstrap a new skill with the agent
npx skills add anthropics/skills --skill skill-creatorSee CONTRIBUTING.md for the full guide — including the trust tier model, spec constraints, the PR checklist, and the security rules that apply to all contributions.
Before opening a PR, run the official spec validator:
uvx --from git+https://github.com/agentskills/agentskills#subdirectory=skills-ref \
skills-ref validate community/skills/your-skill-name/- Agent Skills open standard — specification and reference
- Anthropic official skills — document, coding, and productivity skills
- skills.sh — community directory and install leaderboard
- Qlik Developer Portal — Qlik APIs and platform documentation
All skills in this repository are licensed under Apache 2.0 unless stated otherwise in the skill's SKILL.md frontmatter.
This project follows Qlik's Code of Conduct. Please read it before contributing.