Cocos creator install and debug
Skill ChrisLamDev/cocos-creator-debug-skills/skills/cocos-creator-install-and-debug
17 executable AI agent skills for Cocos Creator 3.x debugging
npx -y skills add ChrisLamDev/cocos-creator-debug-skills --skill cocos-creator-install-and-debugAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when installing Cocos Creator 3.x and debugging scene import errors.
SKILL.md
1.4 KB, 278 tokens by cl100k_base, as published. Nobody here has run it
Cocos Creator 3.x Install & Debug
Install Cocos Creator 3.x on macOS from terminal and fix common scene import errors.
Install
# Download from official site
open "https://www.cocos.com/en/creator-download"
# Or use direct .dmg
open /path/to/CocosCreator_v3.x.dmg
Install to /Applications/CocosCreator.app.
Common Scene Import Errors
| Error | Likely Cause | Quick Fix |
|---|---|---|
| Error 1222/1223 | Corrupted scene JSON | Rebuild scene from backup |
scene._load is not a function | Broken id references | Don't manually edit scene JSON |
| Gray screen on preview | Script component not loaded | Check Canvas node exists in Hierarchy |
| Missing textures | Asset bundle not imported | Re-import assets in Editor |
Debug Flow
- Check Console in Cocos Creator (Window → Console)
- Verify scene loads:
LoadScene MainScene.scene: XXmsin output - Read scene JSON integrity:
python3 -c "import json; json.load(open('assets/scenes/MainScene.scene'))" - If scene corrupt, restore from git backup or rebuild
See references/full-debug.md for complete error catalog and fixes.