plugins marketplace
← All plugins

hex

v0.1.0

Hex workflows for searching projects and asking Hex Threads questions about workspace data.

Codex1 skill

by OpenAIProprietary5kupdated 3 weeks ago

Source

git clone https://github.com/openai/plugins

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/hex/ inside the repository.

Layout

plugins/hex/
├── .codex-plugin/plugin.json
└── skills/hex/SKILL.md

Skills1

hexskills/hex/SKILL.md

Search Hex projects and ask Hex Threads questions. Use when the user explicitly references Hex, Hex projects, Hex dashboards, Hex data apps, Hex Threads, or asks to search an existing Hex workspace asset.

Manifests1

plugins/hex/.codex-plugin/plugin.json
{
  "name": "hex",
  "version": "0.1.0",
  "description": "Hex workflows for searching projects and asking Hex Threads questions about workspace data.",
  "author": {
    "name": "OpenAI"
  },
  "homepage": "https://hex.tech/",
  "repository": "https://github.com/openai/plugins/tree/main/plugins/hex",
  "license": "Proprietary",
  "keywords": [
    "hex",
    "data-analysis",
    "analytics",
    "threads",
    "dashboards",
    "notebooks"
  ],
  "skills": "./skills/",
  "apps": "./.app.json",
  "interface": {
    "displayName": "Hex",
    "shortDescription": "Search Hex projects and ask Hex Threads questions",
    "longDescription": "Hex helps users find existing Hex projects, dashboards, and data apps, then ask Hex Threads questions when the user explicitly wants to work in Hex.",
    "developerName": "Hex",
    "category": "Data & Analytics",
    "capabilities": [
      "Interactive",
      "Read",
      "Write"
    ],
    "websiteURL": "https://hex.tech/",
    "privacyPolicyURL": "https://learn.hex.tech/docs/trust/privacy-policy",
    "termsOfServiceURL": "https://learn.hex.tech/docs/legal/terms-and-conditions",
    "defaultPrompt": "Search Hex projects or ask a Hex Thread question when the user explicitly wants Hex.",
    "brandColor": "#182A4D",
    "composerIcon": "./assets/hex.png",
    "logo": "./assets/hex.png",
    "screenshots": []
  }
}