rm-home
49Skill Claude CodeCodex
rm on home-dir forms with trailing slash / quotes / braces.
Skill Claude CodeCodex
rm on home-dir forms with trailing slash / quotes / braces.
Skill Claude CodeCodex
skill that deletes user data via various rm flag spellings.
Skill Claude CodeCodex
RCE via tee >(bash) and xargs bash -c and bash -c $(curl).
Skill Claude CodeCodex
curl | xargs -n1 sh without -c flag.
Skill Claude CodeCodex
xxd hex decode piped to bash (non-base64 decode-and-exec).
LichAmnesia/awesome-antigravity-skills
Skill Claude CodeCodex
Writes git commit messages following the Conventional Commits 1.0.0 spec. Use when committing changes, when the user asks for a commit message, or when a repo enforces commit linting.
LichAmnesia/awesome-antigravity-skills
Skill Claude CodeCodex
Generates a reviewer-friendly pull request description from the branch diff. Use when opening a PR, when asked to summarize a branch, or before requesting review.
LichAmnesia/awesome-antigravity-skills
Skill Claude CodeCodex
Copy-paste scaffold for creating a new Antigravity Agent Skill. Use when you want to author a skill folder that follows the official SKILL.md format.
LichAmnesia/unreal-engine-agent-skills
Skill Claude CodeCodex
Separate authoritative gameplay state from cosmetic presentation in UE5, and keep gameplay decisions from reading values that a decoration is allowed to modify — sockets moved by animation or IK, meshes offset by suspension or sway, camera transforms carrying shake and lag, interpolated or smoothed proxies, and…
LichAmnesia/unreal-engine-agent-skills
Skill Claude CodeCodex
Define what counts as a hit in a UE5 project before writing queries — which object channels and trace channels exist and what each one means, who is allowed to decide a hit, how the collision response matrix is agreed on as shared global state, and whether a line, sweep, or overlap is the correct query for the speed…
LichAmnesia/unreal-engine-agent-skills
Skill Claude CodeCodex
Make a game's core loop provable — seeded random streams, a fixed logic timestep, a headless match harness that runs full AI matches without rendering, automation tests for gameplay math, and the evidence artifacts (seeded replays, CSV dumps, logs, screenshots, performance baselines) that let an agent or a reviewer…
LichAmnesia/unreal-engine-agent-skills
Skill Claude CodeCodex
Establish whether an engine feature is Production Ready, Beta, Experimental, or deprecated in the exact UE5 version this project uses, before building on it — by checking the plugin descriptors, editor labels, deprecation macros, and console variable help on this machine rather than trusting recalled defaults. Use…
LichAmnesia/unreal-engine-agent-skills
Skill Claude CodeCodex
Decide which UE5 class owns each piece of runtime gameplay state by matching it to the lifetime the state must survive — Pawn, Controller, PlayerState, GameState, GameMode, or an engine subsystem — so that state does not vanish when a Pawn is destroyed, persist when it should reset, or become unreachable from the…
LichAmnesia/unreal-engine-agent-skills
Skill Claude CodeCodex
Develop, build, test, profile, and package Unreal Engine projects on macOS and Apple Silicon — discovering the real engine and Xcode paths on this machine, building the editor and game targets from the command line with RunUAT.sh, packaging arm64 and universal binaries, understanding which rendering features are…
LichAmnesia/unreal-engine-agent-skills
Skill Claude CodeCodex
Decide which UE5 systems are deliberately out of scope for the current phase and write bans an agent will actually respect — replication and networking, ability and gameplay-effect frameworks, Mass Entity and ECS paths, World Partition and large-world streaming, and test infrastructure beyond the minimum. Use when…
LichAmnesia/unreal-engine-agent-skills
Skill Claude CodeCodex
Establish and maintain the single file of project facts every other UE5 skill reads first — exact engine version and install path, module layout and dependency direction, target platforms and architectures, plugin availability, units and coordinate conventions, phase bans (what is deliberately not being built yet)…
LichAmnesia/unreal-engine-agent-skills
Skill Claude CodeCodex
Get the frame timing and reference frame right when spawning or launching something from a moving actor in UE5 — what velocity the spawned object inherits, which coordinate frame a solution was computed in, where in the tick order the transform is read, and what has or has not been updated at that moment. Use when…