Build This Now
Build This Now
リアルなビルド事例State of Claude Code 2026: What 2,500 Public Repos Revealもうボトルネックは「作ること」じゃない新しい堀はディストリビューションだAI開発の本当のボトルネックがQAである理由24時間でMVPが作れる時代の第一原理思考自律性のカーブ:AI エージェントにどこまで自由を渡せるのかアイデアからSaaSへGANループ自己進化するフックトレースからスキルへ配信エージェントAI セキュリティエージェント自律型 AI スウォームAIメールシーケンスAIが自分自身を掃除するAgent Swarm OrchestrationClaude Codeでフルアプリを作る:実際の例非開発者のためのClaude Code:実際の使用例Claude Code for Freelancers: Ship 3x FasterA Security Update from Build This NowOwn Your Vercel Analytics: I Built a Drain-to-Postgres Pipeline
speedy_devvkoen_salo
Blog/Real Builds/A Security Update from Build This Now

A Security Update from Build This Now

A customer flagged something suspicious. We investigated, found a security issue in a file we ship, fixed it the same day. Here is what happened and what to do.

設定をやめて、構築を始めよう。

AIオーケストレーション付きSaaSビルダーテンプレート。

Published May 12, 20264 min readReal Builds hub

One of our customers flagged something suspicious in their project. We investigated, found a security issue in a file we ship with the SaaS skeleton, fixed it, and updated the skeleton the same day.

This post explains what happened in plain terms, how to check your copy, and how the framework keeps your projects protected going forward.

What happened

Here is the simplest way to explain a supply chain attack.

Imagine a config file that is normally 8 lines long. Small, boring, never changes. Your project uses it every time you run the app locally. Nobody reads it. Why would you?

An attacker found that file. They added a hidden chunk of malicious code at the very end of the last line, after hundreds of blank spaces. In any code editor, the file still looked like 8 lines. You would have to scroll horizontally past a wall of whitespace to see it.

That is a supply chain attack. They do not break into your app. They hide inside something your app already trusts and runs automatically.

A customer noticed something was off. They reported it. We investigated immediately and fixed it that same day.

What to do

The SaaS skeleton is delivered by cloning a GitHub repository. If you cloned it recently, check one file: webapp/postcss.config.mjs. It should be short. Under 10 lines. Nothing unusual at the end.

Not sure what you are looking at? Reach out at buildthisnow.com or DM on X. We will check your installation with you directly.

How your projects stay protected

A customer caught this one. Going forward, the framework catches it automatically.

Build This Now ships with three commands that run security checks on a schedule.

/security scans your project for vulnerabilities. Config files, auth logic, database rules, exposed secrets. Critical findings send you an email immediately.

/audit checks your dependencies and build files for anything unexpected or out of place.

/monitor keeps both of these running in the background automatically, even when you are not working. Run it once:

/monitor --defaults

After that, checks happen on their own. You get notified when something needs attention.

Going forward

We are running these checks more frequently on our own distribution chain now. The tools were already there. We are using them more aggressively.

Supply chain attacks are an industry-wide problem. The response is not paranoia. It is automated checks running continuously so issues surface fast.

The skeleton is clean. The framework is clean. If you have questions, reach out at buildthisnow.com or DM on X.

More in Real Builds

  • AIが自分自身を掃除する
    AIの乱雑さを自動的に掃除する3つの夜間Claude Codeワークフロー: slop-cleanerがデッドコードを削除し、/healが壊れたブランチを修復し、/driftがパターンドリフトを捉えます。
  • Agent Swarm Orchestration
    Four infrastructure layers that stop agent swarms from double-claiming tasks, drifting on field names, and collapsing under merge chaos.
  • GANループ
    1つのエージェントが生成し、もう1つが徹底的に批評し、スコアが改善しなくなるまでループする。エージェント定義とルーブリックテンプレートを含むGANループの実装。
  • 自律性のカーブ:AI エージェントにどこまで自由を渡せるのか
    AI エージェントにどれだけ自律性を渡せるかは、たった一つの要素で決まります。モデルが脱線せずにどこまで長くタスクを保てるか、です。優れた harness と信頼できるモデルがそろって、はじめて本物のエージェント作業が動き出します。
  • AIメールシーケンス
    Claude Codeの1コマンドで6シーケンス17本のライフサイクルメールを生成し、Inngestの行動トリガーを配線してデプロイ可能な分岐型メールファネルを構築します。
  • AI セキュリティエージェント
    Claude Code の 2 つのコマンドで 8 つのセキュリティサブエージェントを起動。フェーズ 1 で SaaS の RLS ギャップと認証バグをスキャンし、フェーズ 2 で本物の脆弱性を攻撃して確認します。

設定をやめて、構築を始めよう。

AIオーケストレーション付きSaaSビルダーテンプレート。

Claude Code for Freelancers: Ship 3x Faster

How freelance developers use Claude Code to cut implementation time, handle more clients, and increase effective hourly rate without working more hours.

Own Your Vercel Analytics: I Built a Drain-to-Postgres Pipeline

Vercel has no API to query Web Analytics history. The only export path is a Drain. Here is the HMAC-signed receiver, the Postgres rollup, and the one-session build that owns the data.

On this page

What happened
What to do
How your projects stay protected
Going forward

設定をやめて、構築を始めよう。

AIオーケストレーション付きSaaSビルダーテンプレート。