Ilao Dzindin

ShipPad: Making AI Build For You — Not Just With You

The AI that has no teacher builds beautifully on sand.

  non-technical user + AI, no scaffolding:

  describe app → AI writes code → looks right


                               what is not visible:
                               • user input → SQL directly
                               • API keys in git history
                               • no tests exist
                               • no auth pattern
                               • mobile layout broken on Android

The code ran. The data leaked in a month.

The AI built what it was asked to build. It was not asked to build safely — because the builder did not know what to ask for.


The problem is not the AI. The problem is not the non-technical user.

The problem is the absence of the right questions.

If you do not know what SQL injection is, you will not ask Claude to prevent it.

If you have never seen a test suite, you will not ask Claude to write one.

The output reflects the knowledge of the person guiding it.


  project/
  ├── CLAUDE.md            ← rules Claude reads automatically
  ├── .claude/
  │   ├── rules/
  │   │   ├── security.md  ← never hardcode secrets
  │   │   ├── testing.md   ← never say done without tests
  │   │   └── git.md       ← never push to main directly
  │   └── skills/
  │       ├── deploy.md    ← how to push to production
  │       └── review.md    ← OWASP checklist
  └── ...

Claude reads these files when it starts. It knows the rules. The builder does not need to know the rules.


  with ShipPad:

  describe app → AI reads rules → AI builds safely

                       ├── validates all inputs
                       ├── puts secrets in env vars
                       ├── writes tests first
                       └── uses known auth patterns

The guardrails are in the project. The builder focuses on the product.


The foundation is not visible in the finished house. But without it, the house falls.

ShipPad is the foundation. The AI is the builder. You are the architect.

Ilao Dzindin