Create Script Handler

SkillDev tools

Create a custom script handler for an unsupported scripting language

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Create Script Handler skill

What this skill tells your AI

The instructions your AI receives, as published by datagrok-ai/public in .claude/skills/create-script-handler/SKILL.md and read by ahel’s review.

Help the user register a custom script handler so Datagrok can run scripts in a language not natively supported.

Usage

/create-script-handler [language-name] [--package <package-name>]

Instructions

1. Define the handler function

Create a TypeScript function that accepts a DG.FuncCall and executes the script, setting output parameters on completion:

export async function myLanguageHandler(call: DG.FuncCall): Promise<void> {
  // Read input parameters from call.inputs
  // Execute the script (e.g., via WebAssembly or a Docker container)
  // Set output parameters on call.outputs
}

The implementation can use any execution strategy: WebAssembly, a Docker container, a remote API, etc.

2. Add mandatory annotations

Place these multi-line comments above the function declaration:

//tags: scriptHandler
//meta.scriptHandler.language: clojure
//meta.scriptHandler.extensions: clj,cljs,cljr
//meta.scriptHandler.commentStart: ;
//input: funccall scriptCall
export async function clojureScriptHandler(call: DG.FuncCall): Promise<void> {
  // implement handler
}
Mandatory annotations
AnnotationDescription
tags: scriptHandlerMarks the function as a script handler for registration
meta.scriptHandler.languageLanguage name (shown in UI when creating scripts)
meta.scriptHandler.extensionsComma-separated file extensions (e.g., py, js, clj,cljs,cljr)
input: funccall scriptCallThe handler must accept exactly one input of type funccall
Optional annotations
AnnotationDescription
meta.scriptHandler.templateScriptTemplate code added to newly created scripts in this language
meta.scriptHandler.codeEditorModeCodeMirror editor mode for syntax highlighting (available modes)
meta.iconPath to icon inside package files, used in UI for all scripts of this language
meta.scriptHandler.vectorizationFunctionFunction in form <namespace>:<function name> for vectorizing DG.Script. Accepts DG.Script, returns string with vectorized code.
meta.scriptHandler.commentStartComment character(s) for the language (e.g., ; for Clojure, # for Python)

3. Publish the package

Build and publish the package:

webpack
grok publish dev

After publishing, the language appears in the script creation UI. The platform recognizes scripts with a matching language annotation and routes them to this handler.

Complete example

import * as DG from 'datagrok-api/dg';

//tags: scriptHandler
//meta.scriptHandler.language: clojure
//meta.scriptHandler.extensions: clj,cljs,cljr
//meta.scriptHandler.commentStart: ;
//meta.scriptHandler.codeEditorMode: clojure
//meta.scriptHandler.templateScript: (println "Hello, World!")
//meta.icon: images/clojure-icon.png
//input: funccall scriptCall
export async function clojureScriptHandler(call: DG.FuncCall): Promise<void> {
  const script = call.inputs['scriptCall'];
  // Execute the Clojure code
  // Set outputs: call.setParamValue('result', value);
}

Behavior

  • Ask the user which programming language they want to support.
  • Ask for the file extensions associated with that language.
  • Determine the execution strategy (WebAssembly, Docker container, remote service, etc.).
  • Generate the handler function with all mandatory annotations.
  • Add optional annotations (template, icon, editor mode) if the user provides them.
  • If Docker execution is needed, suggest also using the /create-docker-container skill.
  • Ensure the function signature has exactly one funccall input parameter.
  • Follow project coding conventions: no excessive comments, no curly brackets for one-line if/for, catch/else if on new lines.

Signals

GitHub stars
72
Forks
32
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
create-script-handler
Source
github.com/datagrok-ai/public