Codex AI Game Studio

Contributing

Thanks for helping make AI-assisted game development safer and more reproducible. Contributions are welcome as issues, Discussions, documentation, catalog records, recipes, tests, or code.

Can I contribute?

Yes. The project verifies the proposed change rather than using account age, followers, employer, or private identity as a trust score. External contributors work through forks and pull requests; only a maintainer can merge. Read the contributor verification policy for the exact automated, provenance, and human-review gates.

First contribution in 10 minutes

  1. Choose an open good first issue or a help wanted task. Comment before starting so two people do not duplicate work.
  2. Fork the repository, clone your fork, and create a focused branch from main.
  3. Make the smallest complete change that satisfies the issue's acceptance checks.
  4. Run python tools/validate_repository.py and the focused test named in the issue. The full standard-library suite usually completes without installing project dependencies.
  5. Commit with a DCO sign-off: git commit -s -m "docs: describe the change".
  6. Open a pull request, complete the provenance section, and link the issue with Closes #NUMBER.

Python 3.11 or newer and Git are sufficient for repository validation. Plugin or skill changes additionally need the pinned official validators used by CI. Large integrations or security-sensitive changes should start with the contribution proposal form.

Certification, licensing, and AI assistance

Every non-bot commit must certify the Developer Certificate of Origin 1.1 with a Signed-off-by line:

git commit -s -m "catalog: verify an engine adapter"

To repair the latest local commit, run git commit --amend --no-edit --signoff and then git push --force-with-lease. A sign-off certifies the right to submit; it does not transfer your copyright. Contributions remain under the license that applies to their destination: MIT for original project surfaces, Apache-2.0 for the retained img2threejs snapshot, or another license explicitly identified in the file.

AI-assisted work is welcome when the contributor reviews it personally and accepts responsibility for the result. Disclose the tool or model when known and list relevant source material, licenses, immutable revisions, and transformations. Never submit private prompts, secret values, proprietary project content, or identity/voice material without the required rights and consent.

Before opening a pull request

  1. Search existing issues and Discussions.
  2. Keep the core plugin portable and free of required hosted MCP services.
  3. Do not vendor external repositories, model weights, engines, DCC applications, or datasets.
  4. Pin executable dependencies to a release, tag, commit, and integrity value where the upstream supports it.
  5. Preserve the inspect → plan → digest confirmation → apply → verify → rollback contract.
  6. Add tests proportional to the risk and run the full validation command.
python plugins/ai-game-studio/scripts/ai_game_studio.py validate plugin
python plugins/ai-game-studio/scripts/ai_game_studio.py validate skills
python plugins/ai-game-studio/scripts/ai_game_studio.py validate catalog
python plugins/ai-game-studio/scripts/ai_game_studio.py validate parity
python plugins/ai-game-studio/scripts/ai_game_studio.py validate platform
python -m unittest discover -s tests -v

Catalog contributions

A catalog pull request must include:

Unknown/custom commercial terms must remain blocked. Do not infer permissive rights from an absent license. See the full catalog guide.

Skills and recipes

Hooks and automation

Hook commands must work on native Windows and POSIX systems, use PLUGIN_ROOT and PLUGIN_DATA, accept the official JSON event on standard input, return bounded JSON, and never log secret values. Plugin hooks remain untrusted until reviewed through /hooks.

All mutations need a deterministic plan, backup, explicit confirmed digest, and tested rollback. Tests may mock editors and MCP servers; they must never install external software on a contributor's machine.

Attribution

If you adapt third-party material, add its source, license, pinned revision, destination, and transformation to NOTICE.md or the relevant ledger. Do not copy code or documentation with incompatible or unknown terms.

Pull request checklist