From bd05df58b16014032c7ddb886f2c5a72d31e7d88 Mon Sep 17 00:00:00 2001 From: josegironn <30703536+josegironn@users.noreply.github.com> Date: Thu, 23 Jul 2026 23:16:37 -0700 Subject: [PATCH] fix: point $schema at schemas.major.build The published JSON Schemas moved from schemas.major.tech to schemas.major.build. Update the starter project.json and example agent.json $schema refs to match. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01RXiDMg9GbDAqPFEXPYK1SH --- project.json | 2 +- src/agents/example/agent.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/project.json b/project.json index 865bec0..d5afac9 100644 --- a/project.json +++ b/project.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.major.tech/project.json", + "$schema": "https://schemas.major.build/project.json", "name": "My Project", "srcDir": "src/" } diff --git a/src/agents/example/agent.json b/src/agents/example/agent.json index 584fed1..1cb2518 100644 --- a/src/agents/example/agent.json +++ b/src/agents/example/agent.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.major.tech/agent.json", + "$schema": "https://schemas.major.build/agent.json", "slug": "example", "name": "Example Agent", "description": "A starter agent. Rename the directory and edit this file.",