TopRank Skills

Home / Claw Skills / Git / GitHub / Jits Builder
Official OpenClaw rules 36%

Jits Builder

JITS Builder Just In Time Software 🚀

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Jits Builder 技能。 若已安装,则直接安装 Jits Builder 技能。

Overview

Skill Key
dannyshmueli/jits-builder
Author
dannyshmueli
Source Repo
openclaw/skills
Version
-
Source Path
skills/dannyshmueli/jits-builder
Latest Commit SHA
3114a61683ef0572ee8358026639718c1a5515f7

Extracted Content

SKILL.md excerpt

# JITS Builder - Just-In-Time Software 🚀

Build instant mini-apps from voice or text descriptions. Describe what you need, get a working tool deployed in seconds.

## What is JITS?

**Just-In-Time Software** - the idea that you don't need to find or install tools. You describe what you need and it gets built on the spot.

> "I need a timer that plays a sound after 25 minutes"
> "Make me a tool to split a bill between friends"  
> "Create a page where I can paste JSON and see it formatted"

## Requirements

- Cloudflared binary (auto-downloads to `/tmp/cloudflared` if missing)
- Node.js (for serving the app)

## How It Works

1. **Describe** - Voice or text, explain what you want
2. **Generate** - Agent builds a single-file HTML/JS/CSS app
3. **Deploy** - Cloudflare tunnel makes it instantly accessible
4. **Use** - Get a URL, use your tool, share it

## Usage

Just ask naturally:

```
"Build me a pomodoro timer"
"I need a quick tool to convert CSV to JSON"
"Make a tip calculator"
"Create a color palette generator"
```

The agent will:
1. Generate the HTML/JS code
2. Save to `/data/clawd/jits-apps/<name>.html`
3. Serve on a local port
4. Create Cloudflare tunnel
5. Return the public URL

## Managing JITS Apps

```bash
# List running apps
/data/clawd/skills/jits-builder/jits.sh list

# Stop an app
/data/clawd/skills/jits-builder/jits.sh stop <name>
```

## App Guidelines

When building JITS apps:

1. **Single file** - All HTML, CSS, JS in one file
2. **No dependencies** - Use vanilla JS, no external libraries
3. **Mobile-friendly** - Responsive design
4. **Dark theme** - Looks good, easy on eyes
5. **Self-contained** - No backend/API calls needed
6. **Branded** - Include "Built with JITS" badge

## Template Structure

```html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>🚀 JITS - [App Name]</title>
  <style>
    /* Dark theme, centered layout */
    body {
      font-...

README excerpt

# 🚀 JITS Builder - Just-In-Time Software

Build instant mini-apps from voice or text descriptions. Describe what you need, get a working tool deployed in seconds via Cloudflare tunnel.

## What is JITS?

**Just-In-Time Software** - you don't search for tools or install apps. You describe what you need and it gets built on the spot.

```
"Build me a pomodoro timer"
→ 30 seconds later: https://your-app.trycloudflare.com
```

## Features

- 🎤 **Voice or text** - Describe what you want naturally
- ⚡ **Instant deploy** - Live URL in seconds
- 🌐 **Cloudflare tunnel** - Shareable public URLs
- 📱 **Mobile-ready** - Responsive by default
- 🎨 **Beautiful** - Dark theme, polished UI

## How It Works

1. You describe the tool you need
2. Your Moltbot agent generates the code
3. Serves it locally + creates Cloudflare tunnel
4. You get a public URL instantly

## Example Apps Built

- ⏱️ Pomodoro Timer
- 💰 Tip Calculator
- 🎨 Color Palette Generator
- 📊 JSON Formatter
- 🔢 Unit Converter
- ✂️ Text Diff Tool
- 🎲 Random Decision Maker
- ⏳ Event Countdown

## Installation

### For Moltbot users:

```bash
moltbot skill install jits-builder
```

### Manual:

```bash
mkdir -p ~/.moltbot/skills/jits-builder
cd ~/.moltbot/skills/jits-builder
curl -O https://raw.githubusercontent.com/Cluka-399/jits-builder/main/SKILL.md
curl -O https://raw.githubusercontent.com/Cluka-399/jits-builder/main/jits.sh
chmod +x jits.sh
```

## Usage

Just ask your agent:

```
"Build me a timer that counts down from 5 minutes"
"I need a tool to calculate tips and split bills"
"Make a page where I can paste JSON and format it"
"Create a random color palette generator"
```

## Requirements

- Node.js
- Cloudflared (auto-downloads if missing)

## License

MIT

---

Built with 🐱🦞 by [Cluka](https://github.com/Cluka-399)

Related Claw Skills