2 active jobs
Automation builder

Workflows

Builder-like workflow surface with step library, ordered flow canvas, properties inspector, validation actions, and raw JSON/script mode.

TikTok account warmup

published

visual flow · v1.4.2 · 91% success · 6 min ago

tiktokwarmup

Telegram content posting

draft

script · v0.9.0 · 76% success · yesterday

telegram

Daily device health check

published

adb sequence · v2.0.1 · 98% success · 12 min ago

maintenance

Step library

Flow canvas

Visual builderStep listRaw JSON/script
1
Open TikTok
launch app
{
  "package": "com.zhiliaoapp.musically"
}
2
Watch feed
wait
{
  "seconds": 45,
  "jitter": true
}
3
Swipe to next clip
swipe
{
  "x1": 530,
  "y1": 1260,
  "x2": 522,
  "y2": 430
}
4
Like 1 of 5 posts
tap coordinates
{
  "x": 640,
  "y": 1088
}
5
Proof capture
screenshot
{
  "quality": 82
}

Properties

Raw JSON mode

{
  "id": "wf-warmup",
  "name": "TikTok account warmup",
  "type": "visual flow",
  "steps": [
    {
      "id": "s1",
      "type": "launch app",
      "label": "Open TikTok",
      "params": {
        "package": "com.zhiliaoapp.musically"
      }
    },
    {
      "id": "s2",
      "type": "wait",
      "label": "Watch feed",
      "params": {
        "seconds": 45,
        "jitter": true
      }
    },
    {
      "id": "s3",
      "type": "swipe",
      "label": "Swipe to next clip",
      "params": {
        "x1": 530,
        "y1": 1260,
        "x2": 522,
        "y2": 430
      }
    },
    {
      "id": "s4",
      "type": "tap coordinates",
      "label": "Like 1 of 5 posts",
      "params": {
        "x": 640,
        "y": 1088
      }
    },
    {
      "id": "s5",
      "type": "screenshot",
      "label": "Proof capture",
      "params": {
        "quality": 82
      }
    }
  ],
  "variables": [
    "account",
    "delay",
    "like_ratio"
  ],
  "targetingRule": "group = TikTok Farm A AND status = online",
  "retryPolicy": "2 retries, exponential",
  "timeout": 900,
  "createdBy": "Egor",
  "version": "1.4.2",
  "status": "published",
  "tags": [
    "tiktok",
    "warmup"
  ],
  "successRate": 91,
  "lastRunAt": "6 min ago"
}

Script mode preview

launchApp("com.zhiliaoapp.musically")
wait({ seconds: 45, jitter: true })
swipe({ from: [530,1260], to: [522,430] })
tap({ x: 640, y: 1088 })
screenshot({ quality: 82 })