wheel-create

Generate wheel workflow JSON files from descriptions or existing files.

Updated Mar 26, 2026
One-click install
npx skills add https://github.com/yoshisada/ai-repo-template --skill wheel-create
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wheel-create
Source: https://github.com/yoshisada/ai-repo-template/tree/main/plugin-wheel/skills/wheel-create
Command: npx skills add https://github.com/yoshisada/ai-repo-template --skill wheel-create

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Generates consistent, validated wheel workflow JSONs from natural-language descriptions or by reverse-engineering existing files, removing manual steps and ensuring repeatability.

Core Features & Use Cases

  • Description-Mode: generate a new workflow by describing the desired process.
  • File-Mode: reconstruct a workflow from an existing file (e.g., SKILL.md, shell script) to reproduce behavior.
  • Use Case: decompose a high-level description into deterministic steps and produce a JSON workflow stored under workflows/.

Quick Start

Describe your desired workflow in natural language or provide a file path using from:, and the system will generate the corresponding wheel workflow JSON.

Frequently Asked Questions about wheel-create

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

FAQPage Schema
How do I generate a workflow JSON file from a natural language description?

To generate a workflow JSON file from a natural language description, you simply provide your desired process details, and the system automatically decomposes it into deterministic, multi-step workflow definitions stored under the workflows directory.

Can I reverse-engineer an existing shell script into a wheel workflow?

Yes, you can reverse-engineer an existing shell script into a wheel workflow. By providing the file path, the system reconstructs the behavior into a validated, multi-step JSON workflow definition to ensure repeatability.

How does the workflow generation process validate multi-step tasks?

The workflow generation process validates multi-step tasks by applying name resolution and structural validation during decomposition, ensuring the final JSON output is safe to write without overwriting existing workflow files.

What is the best way to automate repeatable workflow definitions from existing files?

The best way to automate repeatable workflow definitions from existing files is using file-mode generation, which reverse-engineers documents like SKILL.md files into auditable, deterministic JSON workflows stored safely under workflows.

Does the workflow generation process overwrite existing JSON files in the workflows directory?

No, the workflow generation process does not overwrite existing JSON files. It applies safe writing practices to the workflows directory, ensuring your current automation definitions remain protected during creation and validation.

When do I need to use a JSON workflow for automation tasks?

You need to use a JSON workflow for automation tasks when you require repeatable, auditable processes. Generating structured workflow definitions ensures multi-step decomposition and deterministic execution for your automation requirements.