npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@clix-so/clix-agent-skills

v1.1.2

Published

An open collection of agent skills for Clix.

Downloads

4,621

Readme

Agent Skills for Clix

npm version npm downloads

This repository contains a collection of Agent Skills for Clix. Each skill is a separate module within this package that can be installed and used independently by AI clients.

Available Skills

Clix Skills

  • clix-integration: Seamlessly integrate Clix Mobile SDK to your mobile application with Clix MCP Server
  • clix-event-tracking: Implement Clix.trackEvent with naming/schema best practices and campaign-ready validation
  • clix-user-management: Implement Clix.setUserId + user properties with logout best practices, personalization (user.*), and audience targeting
  • clix-personalization: Author and debug personalization templates for message content, deep links/URLs, and audience targeting rules (user.*, event.*, trigger.*, device.*)
  • clix-api-triggered-campaigns: Configure API-triggered campaigns in the console and trigger them from your backend with safe auth, dynamic filters (trigger.*), and personalization patterns
  • clix-skill-creator: Create new Clix agent skills by researching Clix SDK + docs via Clix MCP Server, then generating a complete skill folder (SKILL.md, references, scripts, examples) aligned with this repo’s conventions

Skills for Mobile Developers

  • auditing-permission-ux: Audit notification permission request UX and settings recovery flows for iOS and Android
  • auditing-deep-link-contracts: Audit deep link contracts with cold/warm start test vectors and routing checks

Installing Skills

Agent skills in this repository are built on the open agent skills standard. Please refer to the official documentation for up-to-date information on supported AI clients. Depending on the AI client you are using, you can install skills in different ways.

Universal CLI (Recommended)

For Amp, Claude Code, Codex, Copilot, Cursor, Goose, Letta, OpenCode, and VS Code, we recommend using our installer to set up the skills and automatically configure the Clix MCP Server.

Installation Modes

The CLI supports two installation modes for skills:

Repo Root (Project-specific) - Installs skills to the current project directory (default). Skills are available only for the current project. Best for project-specific configurations.

System Root (Global) - Installs skills to your home directory. Skills are available across all projects. Best for personal development setup.

# Install a specific skill (repo root - default)
# Default install path (when --client is omitted): .agents/skills/<skill>
npx @clix-so/clix-agent-skills@latest install <skill-name> --client <your-client>
# For example, to install a skill on Cursor:
npx @clix-so/clix-agent-skills@latest install integration --client cursor

# Install a specific skill globally (system root)
npx @clix-so/clix-agent-skills@latest install <skill-name> --client <your-client> --global
# For example:
npx @clix-so/clix-agent-skills@latest install integration --client cursor --global

# Install all available skills at once (repo root)
npx @clix-so/clix-agent-skills@latest install --all --client cursor
# This will install: integration, event-tracking, user-management, personalization, api-triggered-campaigns, skill-creator, auditing-permission-ux, auditing-deep-link-contracts

# Install all available skills globally (system root)
npx @clix-so/clix-agent-skills@latest install --all --client cursor --global

Supported Clients:

| Client | Flag | Project Path | System Path | | ----------------------- | ---------------------- | ------------------ | ------------------------------- | | Default (no --client) | n/a | .agents/skills/ | ~/.agents/skills/ | | Amp | --client amp | .agents/skills/ | ~/.config/agents/skills/ | | Claude Code | --client claude | .claude/skills/ | ~/.claude/skills/ | | Codex | --client codex | .codex/skills/ | ~/.codex/skills/ | | Cursor | --client cursor | .cursor/skills/ | ~/.cursor/skills/ | | Factory | --client factory | .factory/skills/ | ~/.factory/skills/ | | Gemini CLI | --client gemini | .gemini/skills/ | ~/.gemini/skills/ | | Google Antigravity | --client antigravity | .agent/skills/ | ~/.gemini/antigravity/skills/ | | GitHub Copilot | --client github | .github/skills/ | ~/.github/skills/ | | Goose | --client goose | .agents/skills/ | ~/.config/agents/skills/ | | Letta | --client letta | .skills/ | ~/.skills/ | | OpenCode | --client opencode | .opencode/skill/ | ~/.opencode/skill/ | | VS Code | --client vscode | .vscode/skills/ | ~/.vscode/skills/ |

Claude Code (Alternative setup via plugin marketplace)

To register this repository as a plugin marketplace in Claude Code, run the following command:

/plugin marketplace add clix-so/skills

To install specific skills:

  1. Visit the Marketplace section in /plugin
  2. Select Browse plugins
  3. Choose the skills you wish to install
  4. Install your preferred skill

Alternatively, you can install a single skill directly by running:

/plugin install <plugin-name>@<marketplace-name>
# For example
/plugin install clix-integration@clix-agent-skills

Note for Claude Code users: Skills now support automatic hot-reload! Skills created or modified in ~/.claude/skills or .claude/skills are immediately available without restarting the session. Skills also show real-time progress while executing, displaying tool uses as they happen.

Codex (Alternative setup via skill-installer)

To manually install skills, save them from this repository into your Codex configuration directory: https://developers.openai.com/codex/skills/#where-to-save-skills

Or install a specific skill using the command line:

$skill-installer install <link-to-skill-folder>
# For example
$skill-installer install https://github.com/clix-so/skills/tree/main/skills/integration

Ensure you restart Codex after installation to detect the new skills.

Disclaimer

Please be aware that these skills may occasionally fail or execute incorrectly due to the non-deterministic nature of AI. It is critical that you carefully review and verify all actions performed by these skills. While they are designed to be helpful, you remain responsible for checking their output before use. Please use them with caution and supervision.

License

Each skill in this repository is governed by its own license. For specific terms and conditions, please consult the LICENSE.txt file located within each skill's individual directory.