plugins marketplace
← All plugins

deepnote

v0.1.5

Use Deepnote's collaborative data workspace to explore data, automate notebooks and SQL workflows, and turn analysis into shareable results.

Codex5 skills

by DeepnoteApache-2.05kupdated 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/deepnote/ inside the repository.

Layout

plugins/deepnote/
├── .codex-plugin/plugin.json
├── skills/deepnote/SKILL.md
├── skills/deepnote-data-execution/SKILL.md
├── skills/deepnote-links/SKILL.md
├── skills/deepnote-notebook-editing/SKILL.md
└── skills/deepnote-notebooks/SKILL.md

Skills5

deepnoteskills/deepnote/SKILL.md

Use when a task mentions Deepnote, the connected Deepnote app, Deepnote OAuth connection, Deepnote docs, projects, workspaces, notebooks, blocks, integrations, or notebook runs.

deepnote-data-executionskills/deepnote-data-execution/SKILL.md

Use when running Deepnote notebooks, inspecting notebook inputs, reviewing integration references and cached table structure, listing run history, or interpreting run status and snapshot outputs through the Deepnote app tools.

deepnote-linksskills/deepnote-links/SKILL.md

Use when a task asks for Deepnote URLs, links, project links, notebook links, workspace links, share links, UTM/campaign links, or when a Deepnote response should include clickable links built from Deepnote app project, notebook, or workspace data.

deepnote-notebook-editingskills/deepnote-notebook-editing/SKILL.md

Use when creating Deepnote projects or notebooks, adding or updating blocks or cells, moving existing blocks, scaffolding notebook content, inserting SQL/code/markdown/input blocks, or otherwise editing notebook structure through the Deepnote app tools.

deepnote-notebooksskills/deepnote-notebooks/SKILL.md

Use when reading, reviewing, inspecting, or reasoning about hosted Deepnote notebooks, blocks, inputs, SQL, Python, or notebook outputs through the Deepnote app tools.

Manifests1

plugins/deepnote/.codex-plugin/plugin.json
{
  "name": "deepnote",
  "version": "0.1.5",
  "description": "Use Deepnote's collaborative data workspace to explore data, automate notebooks and SQL workflows, and turn analysis into shareable results.",
  "author": {
    "name": "Deepnote",
    "url": "https://deepnote.com"
  },
  "homepage": "https://deepnote.com",
  "repository": "https://github.com/openai/plugins/tree/main/plugins/deepnote",
  "license": "Apache-2.0",
  "keywords": [
    "deepnote",
    "chatgpt-app",
    "openai",
    "notebooks",
    "data",
    "analytics"
  ],
  "skills": "./skills/",
  "apps": "./.app.json",
  "interface": {
    "displayName": "Deepnote",
    "shortDescription": "Explore data and automate analysis in Deepnote",
    "longDescription": "Deepnote gives teams a collaborative workspace for notebooks, SQL, apps, and data workflows. This plugin helps OpenAI work with connected Deepnote projects, inspect and run notebooks, and turn workspace context into useful analysis and shareable results.",
    "developerName": "Deepnote",
    "category": "Data & Analytics",
    "capabilities": [
      "Interactive",
      "Read",
      "Write"
    ],
    "websiteURL": "https://deepnote.com",
    "privacyPolicyURL": "https://deepnote.com/privacy",
    "termsOfServiceURL": "https://deepnote.com/terms",
    "defaultPrompt": [
      "Summarize my Deepnote workspace and recent notebook activity",
      "Explore active data connections to my Deepnote workspace",
      "Create a notebook exploring S&P 500 vs. Nasdaq gains over the last 5 years"
    ],
    "brandColor": "#3793EF",
    "composerIcon": "./assets/composer.svg",
    "logo": "./assets/logo.png",
    "logoDark": "./assets/logo-dark.png",
    "screenshots": []
  }
}