创建了plugin框架

This commit is contained in:
wxm
2026-05-18 20:50:51 +08:00
commit d34b4cae32
3 changed files with 51 additions and 0 deletions

28
.codex-plugin/plugin.json Normal file
View File

@@ -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": []
}
}

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
.env
.DS_Store

21
README.md Normal file
View File

@@ -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.