Skip to content
View kamiljan11's full-sized avatar
💭
Enjoying Life to it's Fullest!
💭
Enjoying Life to it's Fullest!

Highlights

  • Pro

Block or report kamiljan11

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.

Content in all repositories owned by your account will be closed.
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
kamiljan11/README.md

Kamil Jan - AI Automation & Implementation Engineer, Builder & Operator

Builder and operator in Reykjavík. I run two small Icelandic companies, MAS Group (auto parts, print, logistics) and Reykjawwwik (a web agency), and I write the software both of them run on.

Which also makes me the person who gets the phone call when something breaks at 4pm on a Tuesday. That is most of why the rest of this page is about gates and review rather than frameworks.

AI coding agents write most of the code. I own the spec, the architecture call, the review, the deploy, and the customer on the other end. Everything listed below is in daily commercial use.

Public work

Five repositories you can read. Each has its own README with the detail.

Repo Live What it is
maskalkulator masgroup.is MAS Group's B2B operations platform: pricing calculators driven by supplier price lists, a quote-to-order pipeline, partner CRM, generated contracts, commission tracking, and a client portal with scoped modules.
spirit-way-bloom reykjawwwik.is The platform that runs the agency end to end. A visitor is priced for their own market across ten countries, answers a questionnaire, books a call, signs a contract with per-country VAT, and becomes a billed client, without anyone re-typing their details into a second system.
mountain-car-rental internal Fleet and booking manager for a car rental near Keflavík, replacing a rented SaaS that charged per booking. Vehicles by days on one resource calendar, so a car in the workshop cannot be double-booked from another tab. Contracts are generated from templates and signed by link.
mountaincar-is mountaincar.is Public site for that rental. Narrow on purpose: show the fleet, answer the questions that stop a booking, and deliver a server-validated enquiry by e-mail. Five runtime dependencies.
mas-garage garage.mountaincar.is Landing page and installable web app for a garage in Reykjanesbær. Trilingual (English, Polish, Icelandic), one hand-written index.html, a service worker, no build step.

Most of my repositories are private, because they hold client and proprietary code. Longer write-ups, including the alternatives I rejected and what each system still does not do, are at kamiljan.com/case-studies.

Stack

TypeScript throughout. React with Vite, or Next.js App Router where the page needs server rendering. Postgres on Supabase, with Row Level Security as the authorisation boundary instead of checks in the client, and Edge Functions for server logic. Hosted on Vercel and Lovable. Vitest for unit tests, Playwright for end-to-end smoke. Python for the tooling around the repos: CI checks, releases, secret injection, migration linting.

How I work

The gates are deterministic and run in two places. Before a commit lands: ESLint or oxlint, tsc -b (not --noEmit, which exits zero without checking anything under project references), the unit tests, a gitleaks secret scan, and a SQL linter that fails a migration adding a table without RLS or a SECURITY DEFINER function without a pinned search_path. The same checks run again in GitHub Actions on every push and pull request, so a green local run means the same thing as a green badge.

Review is scored from the diff, not from how I feel about the change. A docs edit and a change to auth, RLS, payments or a migration are not the same risk, so the tier is computed from the files touched. Above a threshold the diff goes to reviewer agents with fresh context and read-only access, one per concern: correctness, security, data, operations, UX, product. Every finding has to carry a command that reproduces it. A separate verifier re-runs that command and drops the findings that do not reproduce. That step is most of the difference between a review and a list of opinions.

The gates have their own test suite. A golden set of cases each gate must catch, plus cases it must not trip on, run before I change anything about a gate. Otherwise there is no way to tell that an edit made one of them blinder.

Conventional Commits, enforced by a commit-msg hook. Architecture decisions written down as ADRs with the rejected alternative recorded. Secrets live in a self-hosted vault and are injected at run time; none of them are pasted into a file, a config or a chat.

What I am not

I use foundation models through their APIs. I do not train or fine-tune them. My reliability record is SME scale, not hyperscale. If you need someone hand-writing production code as a peer inside an existing senior engineering team, that is not the job I do well.

Open to

AI implementation and solutions engineering, automation and enablement work, advisory and senior contract roles. Reykjavík, remote-first, open to relocating for the right role.

kamiljan.com · hello@kamiljan.com · LinkedIn

Pinned Loading

  1. mas-group mas-group Public

    Project write-up — MAS Group's B2B operations platform. Live: masgroup.is

    JavaScript

  2. reykjawwwik-platform reykjawwwik-platform Public

    Project write-up — Reykjawwwik, a web-agency SaaS. Live: reykjawwwik.is

    JavaScript

  3. claude-autoshutdown claude-autoshutdown Public

    Shut down Windows only after every Claude Code session and its subagents have really finished. Reads agent turn state instead of guessing from CPU, 14 safety gates, no UAC prompt. Python + Tkinter,…

    Python

  4. comfy-container comfy-container Public

    kamiljan.com — personal site, case studies and CV

    TypeScript

  5. mas-garage mas-garage Public

    Mountain Car Garage — trilingual (EN/PL/IS) installable PWA landing page, no framework and no build step. Live: garage.masgroup.is

    HTML

  6. mountaincar-is mountaincar-is Public

    Mountain Car — car rental Iceland. Next.js marketing site with server-side quote requests. Live: mountaincar.is

    TypeScript