commit d34b4cae328d9eb2a0e62fced99f01727d301522 Author: wxm Date: Mon May 18 20:50:51 2026 +0800 创建了plugin框架 diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json new file mode 100644 index 0000000..071acb5 --- /dev/null +++ b/.codex-plugin/plugin.json @@ -0,0 +1,28 @@ +{ + "name": "codex-game-studios", + "version": "0.1.0", + "description": "[TODO: Brief plugin description]", + "author": { + "name": "[TODO: Author Name]", + "email": "[TODO: author@example.com]", + "url": "[TODO: https://example.com]" + }, + "homepage": "[TODO: https://example.com/codex-game-studios]", + "repository": "https://gitea.wuxianming.ac.cn/wxm/codex-game-studios", + "license": "[TODO: License identifier, for example MIT]", + "keywords": [], + "interface": { + "displayName": "Codex Game Studios", + "shortDescription": "[TODO: Short description for compact views]", + "longDescription": "[TODO: Longer plugin description for details views]", + "developerName": "[TODO: Developer or team name]", + "category": "Coding", + "capabilities": [], + "websiteURL": "[TODO: https://example.com]", + "privacyPolicyURL": "[TODO: https://example.com/privacy]", + "termsOfServiceURL": "[TODO: https://example.com/terms]", + "defaultPrompt": [], + "brandColor": "#0F766E", + "screenshots": [] + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3323b34 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.env +.DS_Store diff --git a/README.md b/README.md new file mode 100644 index 0000000..9a5244c --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# Codex Game Studios + +This repository is the minimal starting framework for a Codex plugin. + +Current state: + +- No skills +- No hooks +- No agents +- No rules +- No commands +- No MCP servers +- No app integrations + +The only required plugin manifest is: + +```text +.codex-plugin/plugin.json +``` + +Add plugin components one at a time so each addition can be reviewed, explained, and adjusted before the next component is introduced.