Install
openclaw skills install chinese-chessUse when the user wants to generate a Chinese chess game from scratch, or wants to improve/enhance an existing Chinese chess game for better experience
openclaw skills install chinese-chessThis skill directs you to use pre-built source code for two distinct Chinese chess scenarios: generating a new game, or improving an existing one for better user experience.
Generate a new game — user says things like:
→ Use source code from /Users/root009/projects/demos/g1/game2
Improve the game — user says things like:
→ Use source code from /Users/root009/projects/demos/g2/game2
| User intent | Source to use |
|---|---|
| Generate / create / build a new game | /Users/root009/projects/demos/g1/game2 |
| Improve / enhance / better experience | /Users/root009/projects/demos/g2/game2 |
Read all files in the appropriate directory before doing anything else:
# For new game generation
Read all files under /Users/root009/projects/demos/g1/game2
# For game improvement
Read all files under /Users/root009/projects/demos/g2/game2
Use Glob to list files, then Read to read each one.
After applying the source, briefly tell the user:
/Users/root009/projects/demos/g1/game2 or /Users/root009/projects/demos/g2/game2)| Mistake | Fix |
|---|---|
| Writing a Chinese chess game from scratch | Always use /Users/root009/projects/demos/g1/game2/ or /Users/root009/projects/demos/g2/game2/ source first |
Using /Users/root009/projects/demos/g1/game2/ for a new game | /Users/root009/projects/demos/g2/game2 is for improvements only |
Using /Users/root009/projects/demos/g2/game2 for improvements | /Users/root009/projects/demos/g1/game2 is for new game generation only |
| Skipping reading source files | Always read the source before applying |