{"id":45803777,"url":"https://github.com/cyntoolkit/pipelab","last_synced_at":"2026-06-05T19:01:37.358Z","repository":{"id":249616577,"uuid":"829889366","full_name":"CynToolkit/pipelab","owner":"CynToolkit","description":"Your Game's Pipeline, Automated ⚡","archived":false,"fork":false,"pushed_at":"2026-05-17T08:03:18.000Z","size":14236,"stargazers_count":14,"open_issues_count":9,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-17T09:42:58.998Z","etag":null,"topics":["automation","construct3","electron","game-development","godot","pipelab","steam"],"latest_commit_sha":null,"homepage":"https://pipelab.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CynToolkit.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"polar":"pipelab","github":"Armaldio","custom":"https://pipelab.app/#pricing"}},"created_at":"2024-07-17T07:38:17.000Z","updated_at":"2026-05-07T18:32:02.000Z","dependencies_parsed_at":"2025-01-14T19:30:58.058Z","dependency_job_id":"aca1395b-248a-4d2b-b571-613bfb5583de","html_url":"https://github.com/CynToolkit/pipelab","commit_stats":null,"previous_names":["cyntoolkit/cyn","cyntoolkit/pipelab"],"tags_count":1119,"template":false,"template_full_name":null,"purl":"pkg:github/CynToolkit/pipelab","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CynToolkit%2Fpipelab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CynToolkit%2Fpipelab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CynToolkit%2Fpipelab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CynToolkit%2Fpipelab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CynToolkit","download_url":"https://codeload.github.com/CynToolkit/pipelab/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CynToolkit%2Fpipelab/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33566873,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-27T02:00:06.184Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","construct3","electron","game-development","godot","pipelab","steam"],"created_at":"2026-02-26T13:05:15.898Z","updated_at":"2026-05-27T13:03:01.213Z","avatar_url":"https://github.com/CynToolkit.png","language":"TypeScript","funding_links":["https://polar.sh/pipelab","https://github.com/sponsors/Armaldio","https://pipelab.app/#pricing"],"categories":[],"sub_categories":[],"readme":"# Pipelab\n\n![logo](./readme/full_white_bg_black_text.png)\n\n## What is Pipelab?\n\nA visual tool to create task automation workflows.\n\n## Why use Pipelab?\n\n- Create cross-platform desktop applications\n- Deploy to popular platforms (Steam, Itch.io, etc.)\n- Automate repetitive tasks\n\n# Getting Started\n\n# Making a release\n```\npnpm changeset version\npnpm changeset tag\n```\n\n# Architecture\n```mermaid\ngraph TD\n    classDef pipelab fill:#0096FF,stroke:#333,stroke-width:4px;\n    classDef todo stroke:#333,stroke-width:4px, stroke-dasharray: 4px;\n\n    DesktopApp[Desktop App - Pipelab]\n    GameBundle[Game Editor output]\n\n    subgraph GameEditors\n        Construct3[Construct 3]\n        Godot[Godot]\n        GDevelop[GDevelop]\n    end\n\n    PipelabPlugin[Pipelab Plugin]\n    SteamPlugin[Steam Plugin]\n    CoreMessaging[Core Messaging Library]\n    Renderers[Renderers]\n\n    subgraph Runtime\n        Electron\n        Tauri\n        Webview\n    end\n\n    subgraph Platforms\n        Steam\n        Itch\n        Poki\n    end\n\n    Steamworks[steamworks.js Library]\n\n    GameEditors --\u003e|Bundles to| GameBundle\n    GameBundle --\u003e|Is imported into| DesktopApp\n    GameEditors --\u003e|Includes| PipelabPlugin\n\n    PipelabPlugin --\u003e|Is included in| GameBundle\n    PipelabPlugin --\u003e|Implements| CoreMessaging\n\n    SteamPlugin --\u003e|Is included in| GameBundle\n    SteamPlugin --\u003e|Implements| CoreMessaging\n    SteamPlugin --\u003e|Uses| Steamworks\n\n    CoreMessaging --\u003e|Passes messages to| Renderers\n    Runtime --\u003e|Is embedded in| Renderers\n    DesktopApp --\u003e|Packages to| Runtime\n    Runtime --\u003e|Handles events from| CoreMessaging\n\n    DesktopApp --\u003e|Deploys to| Platforms\n    Platforms --\u003e|Uses| Runtime\n\n    class DesktopApp,PipelabPlugin,SteamPlugin,CoreMessaging pipelab;\n    class SteamPlugin,Godot,GDevelop,Tauri,Webview,Itch,Poki todo;\n```\n\n# Development\n## Enable source maps\n```bash\nNODE_OPTIONS=--enable-source-maps pnpm xxx\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcyntoolkit%2Fpipelab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcyntoolkit%2Fpipelab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcyntoolkit%2Fpipelab/lists"}