From b0151b7165fec4f06dbdff1f7a091c23ebb0a446 Mon Sep 17 00:00:00 2001 From: Ziyi Zhang <90444077+ziyiunity@users.noreply.github.com> Date: Tue, 8 Sep 2026 15:33:50 -0400 Subject: [PATCH] chore: prepare the Codex manifest for submission Bumps the Codex manifest to 0.1.3-beta. It was still on 0.1.0-beta, two releases and thirteen skills behind what the repo actually ships. Fixes the plugin source path in the agents marketplace file: the spec requires every path to start with `./`, and this one was a bare `.`. Deliberately NOT changed: policy.authentication is still ON_INSTALL. This plugin needs no authentication, so that value looks wrong, but the field is required and ON_INSTALL is the only value the published spec names. Asking before guessing at an enum in a submission manifest. --- .agents/plugins/marketplace.json | 2 +- .codex-plugin/plugin.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.agents/plugins/marketplace.json b/.agents/plugins/marketplace.json index 5721699..1f1f1b7 100644 --- a/.agents/plugins/marketplace.json +++ b/.agents/plugins/marketplace.json @@ -8,7 +8,7 @@ "name": "unity", "source": { "source": "local", - "path": "." + "path": "./" }, "policy": { "installation": "AVAILABLE", diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json index 06634b9..ea6a483 100644 --- a/.codex-plugin/plugin.json +++ b/.codex-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "unity", - "version": "0.1.0-beta", + "version": "0.1.3-beta", "description": "Unity's official plugin for Codex, with curated skills for game development, monetization, and performance optimization.", "author": { "name": "Unity Technologies",