executor_scaffolder

Generate a TypeScript executor stub from catalog.ts and schema.json.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/mariasebarespersona/Tum-AI --skill executor-scaffolder
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: executor_scaffolder
Source: https://github.com/mariasebarespersona/Tum-AI/tree/main/.claude/skills/executor-scaffolder
Command: npx skills add https://github.com/mariasebarespersona/Tum-AI --skill executor-scaffolder

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Generates a TypeScript executor scaffold for an automation — implements AutomationExecutor interface, reads config from schema, creates test harness.

Core Features & Use Cases

  • Generates a ready-to-use executor file from the catalog and its JSON schema.
  • Creates a test harness and ensures the executor can be registered and invoked in the runtime.
  • Supports scaffolding for any of the 37 automations to standardize structure and inputs.

Quick Start

Run the scaffolder to generate a TypeScript executor stub for a chosen automation from the catalog.

Frequently Asked Questions about executor_scaffolder

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I scaffold a TypeScript executor from a catalog and schema?

To scaffold a TypeScript executor, the tool reads catalog.ts and schema.json to generate an executor stub and test harness under runtime/executors, ensuring a consistent structure for new automations.

What is the best way to standardize automation executor structure in a runtime?

Standardizing automation executor structure involves generating a ready-to-use TypeScript file that implements the AutomationExecutor interface and reads config from a JSON schema, creating a consistent runtime invocation pattern.

Do I need a JSON schema and catalog to generate an automation executor stub?

Yes, you need access to catalog.ts and schema.json to generate the executor files. These definitions provide the automation metadata and configuration inputs required to scaffold the TypeScript stub and test harness correctly.

Can I use this scaffolder to generate test harnesses for runtime executors?

Yes, the scaffolder creates a test harness alongside the executor stub to ensure the generated automation executor can be properly registered and invoked within the runtime environment before full implementation.

How many automations can I scaffold using the catalog and schema definitions?

You can scaffold executors for any of the 37 automations listed in the catalog. The scaffolder generates standardized TypeScript stubs and test harnesses for each automation using the provided schema definitions.