Skip to content
View zaidysf's full-sized avatar
:electron:
work and play
:electron:
work and play

Block or report zaidysf

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
zaidysf/README.md

Zaid Yasyaf

Founder & Operator — uncle-z Jakarta, Indonesia

Website Email LinkedIn LinkedIn


About

I run uncle-z — an independent product studio shipping AI assistants, native apps, SaaS platforms, and developer tools for Indonesian and global markets.

10+ years building production software across fintech, e-commerce, and SaaS. Previously at Tokopedia, Mekari, and Perqara. I set product direction and architecture; a small, trusted team of engineers and designers ships every product alongside me.

9+ products live or in dev  ·  30+ projects shipped  ·  10+ years building

Products

Product What it is Link
JarvisClaw Managed hosting for OpenClaw AI assistant — Indonesian-market SaaS jarvisclaw.id
HRDex Chat-first HR self-service SaaS (WhatsApp / Telegram bots) hrdex.co
HAKU Women's fashion e-commerce — minimalist clothing brand hakuidn.com
SplitEasy Receipt-OCR bill splitter — iPhone, iPad, Android spliteasy.uncle-z.com
ToolzPad Native iOS & macOS utility apps App Store
ZClawd Open-source always-on AI assistant powered by Claude Code zclawd
Quay Native macOS database client (Postgres, MySQL, SQLite, Mongo, Redis) quay.uncle-z.com
Skoru Live scoreboard SaaS for amateur sports skoru.club
Posz Restaurant & cafe POS — tablet-first, QRIS-native posz.uncle-z.com

Tech Stack

Languages · PHP / Laravel TypeScript Node.js Go Swift Dart

Databases · PostgreSQL MySQL Redis MongoDB ElasticSearch

Frontend · React Vue.js Nuxt Next.js TailwindCSS Inertia.js

Mobile / Native · Flutter React Native SwiftUI Tauri

Cloud & DevOps · AWS GCP Docker Kubernetes Grafana

AI & ML · LLM Integration RAG AI Agents Vector Databases Claude API OpenAI API

Domain · SaaS Fintech E-Commerce POS Productivity


Career

Role Company Period
Tech Lead Perqara Jul 2022 — Present
Principal SDE Denning IT (Malaysia) Jan 2021 — Jul 2022
Software Development Manager PT Generasi Multi Indonusa Mar 2020 — Sep 2020
Software Engineer Tokopedia (Gamification) Jan 2019 — Mar 2020
Software Engineer Sleekr (acq. by Mekari) Aug 2018 — Jan 2019
Software Engineer UangTeman.com Sep 2017 — Jul 2018

B.S. Information Technology — Universitas Gunadarma · AWS / GCP / Scrum / Laravel certified


For project inquiries, consulting, partnerships, or collaboration —
uncle-z.com · hello@uncle-z.com

Pinned Loading

  1. zclawd zclawd Public

    Always-on AI assistant powered by Claude Code — open-source OpenClaw alternative with Telegram, Pinecone memory, and auto-restart

    JavaScript 1

  2. zcrudgen zcrudgen Public

    A powerful Laravel package that generates fully-functional CRUD APIs following service-repository pattern, with support for OpenAPI documentation, AI-powered logic, and advanced filtering.

    PHP 1

  3. eloquent-database-encryption eloquent-database-encryption Public

    PHP

  4. postgres rename duplicates.sql postgres rename duplicates.sql
    1
    update workgroups
    2
    set name = workgroups.name || ' (' || d.rnk::text || ')'
    3
    from (select id, row_number() over (partition by name order by updater_txn_id, id) as rnk from workgroups) d
    4
    where workgroups.id = d.id and d.rnk > 1