Cheat engine cli
Skill chengyixu/cheat-engine-cli-skill/skills/cheat-engine-cli
This skill should be used when the user asks to use Cheat Engine CLI or cecli, automate Cheat Engine from a terminal, scan or read process memory, connect to ceserver, inspect a local macOS or Windows process, preview an authorized memory write, or says “命令行扫描内存”, “读取进程数值”, “修改单机游戏数值”, or “连接 ceserver”. It guides safe target selection, JSON-first inspection, exact scans, typed reads, and confirmation-gated writes for authorized processes.From its SKILL.md
npx -y skills add chengyixu/cheat-engine-cli-skill --skill cheat-engine-cliAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 17 days oldThe repository was created 17 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 1 stars1 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.
SKILL.md
6.0 KB, ~1.3k tokens by cl100k_base, as published. Nobody here has run it
Cheat Engine CLI
Turn authorized process-memory work into a repeatable command sequence instead of an improvised terminal session.
Start With Authorization
Confirm that the target process, application, game, machine, and network endpoint are owned by the user or explicitly authorized for inspection.
Refuse workflows involving multiplayer cheating, credential extraction, stealth, persistence, anti-cheat bypass, or access to third-party processes without permission.
Treat memory writes, process termination, injection, debugger controls, thread controls, remote file mutation, allocation, and protection changes as destructive. Never infer confirmation from earlier conversation. Require an explicit approval immediately before execution.
Discover the Installed CLI
Prefer an existing cecli on PATH. Otherwise check ./bin/cecli, ./bin/cecli.exe, and the build output of the official companion repository.
Run:
cecli --version
cecli self-check
If the binary is unavailable, follow references/getting-started.md or references/getting-started.zh-CN.md.
Select One Target Mode
Choose exactly one mode:
- Local macOS or Windows: add
--nativeto each command. - Remote Linux or Android: add
--endpoint host:52736and connect to an authorized upstreamceserver. - Remote macOS or Windows VM: use
--endpoint host:portwith the optionalcebridgetransport.
Never combine --native and --endpoint.
On macOS, require a debugger-signed CLI and explain that SIP-protected processes remain unavailable. On Windows, recommend an elevated terminal only when the authorized target runs at higher integrity.
Build a Verified Baseline
Run read-only discovery before any scan or write:
cecli --native server info --human
cecli --native process list --filter '<name>' --human
cecli --native process info --pid <pid> --human
cecli --native memory regions --pid <pid> --human
Replace --native with --endpoint host:52736 for remote targets.
Verify the process name, PID, architecture, and a readable address range. Do not guess a PID or address.
Prefer Machine-Readable Output
Use JSON for automation and --human only for interactive review.
cecli --native process list --filter game \
| jq '.data.processes[] | {pid,name}'
cecli memory scan --help --pretty \
| jq '.data.commands[0]'
Use --fields path,... to minimize agent context and --quiet when only the exit code matters. Keep diagnostics on stderr.
Read Before Scanning
Inspect mapped regions, then perform bounded reads:
cecli --native memory read \
--pid <pid> --address <address> --size 16
cecli --native memory read \
--pid <pid> --address <address> \
--format typed --type i32
Use exact typed reads only when the data type is known. Supported types include signed and unsigned integers, floats, UTF-8, UTF-16LE, and hexadecimal data.
Scan Deliberately
Prefer the portable client-side scanner:
cecli --native memory scan \
--pid <pid> --type i32 --value 100 \
--alignment 4 --protection writable --limit 100
For byte patterns:
cecli --native memory scan \
--pid <pid> --pattern '48 8B ?? FF' \
--start <address> --end <address> --limit 100
Constrain address range, protection, alignment, and result count whenever possible. Do not claim unknown-initial-value or changed/unchanged refinement support; current scans are exact-value or exact-pattern scans.
Use memory aobscan only for explicit remote protocol compatibility testing against the bundled patched server, never as the default scanner.
Gate Every Write
Follow this sequence without shortcuts:
- Read the current value.
- Run the exact write with
--dry-run. - Show the PID, address, type, old value, proposed value, and encoded bytes.
- Ask for explicit confirmation.
- Execute with
--yes --verifyonly after confirmation. - Report the read-back result.
- Offer to restore the original value.
cecli --native memory write \
--pid <pid> --address <address> \
--type i32 --value <value> --dry-run
cecli --native memory write \
--pid <pid> --address <address> \
--type i32 --value <value> --yes --verify
Never use --yes in a reusable example that could execute without a fresh human review. Keep reusable examples in dry-run mode.
Handle Failures Precisely
- Exit
2: fix invalid input or obtain required confirmation. - Exit
10: verify the endpoint, server, firewall, and tunnel. - Exit
20: refresh the process list, regions, or remote path. - Exit
30: stop after a conflict or failed write verification; do not retry blindly. - macOS native denial: verify signing and permissions; do not attempt to bypass SIP.
- Windows native denial: verify PID and integrity level; do not target protected processes.
Use cecli issue create for structured local feedback when a reproducible CLI defect appears.
Load References Progressively
- Read
references/getting-started.mdfor English installation and platform setup. - Read
references/getting-started.zh-CN.mdfor 简体中文 installation and platform setup. - Read
references/workflows.mdfor complete English inspection, scan, and write playbooks. - Read
references/workflows.zh-CN.mdfor完整的中文操作流程。 - Read
references/safety.mdorreferences/safety.zh-CN.mdbefore destructive or ambiguous requests.
Use the canonical CLI repository for the current command reference and release artifacts: https://github.com/chengyixu/cheat-engine-cli.
What ships with it: 7 files
10.4 KB alongside SKILL.md
agents/
- openai.yaml328 B
references/
- getting-started.md1.8 KB
- getting-started.zh-CN.md1.7 KB
- safety.md1.3 KB
- safety.zh-CN.md1.2 KB
- workflows.md2.1 KB
- workflows.zh-CN.md2.1 KB