Gojiberry AI
AI agents that find and contact high-intent leads for you
Try Gojiberry free →
Hermes Agent
Run your Hermes agent, fully managed
Launch on Hostinger →
Hostinger VPS
Spin up a VPS in one click, 20% off
Launch on Hostinger →
Firecrawl
Crawl and scrape any site into clean data
Try Firecrawl free →
Runable
One AI agent to build, run, and grow your business
Try Runable free →
Context.dev
One API to scrape, enrich, and extract the web
Start building free →
Jotform
Forms, workflows, and AI Agents for your team
Try Jotform free →
Runable
One AI agent to build, run, and grow your business
Try Runable free →
OpenClaw
Deploy a managed OpenClaw agent in 60 seconds
Launch on Hostinger →
Sponsor here
9/10 sponsor slots taken — 1 left
Claim it →
Claude Market
Menu
SkillsMCPPluginsMarketplacesNewsletterSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Claude Market
SkillsMCPPluginsMarketplacesNewsletterSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Skills/gamedev-skills/awesome-gamedev-agent-skills/fps-shooter
fps-shooter logo

fps-shooter

gamedev-skills/awesome-gamedev-agent-skills
913 installs462 stars
Run it on Hostinger, 20% off →Your friend gets 20% off too, using this linkFree API →|View on GitHub|Create your own skill →

Installation

npx skills add https://github.com/gamedev-skills/awesome-gamedev-agent-skills --skill fps-shooter

Summary

>

SKILL.md

FPS Shooter

A playbook for first-person shooters — the look/move controller, the shooting model, weapon feel, and combat. This is a compositional skill: it wires a 3D controller, input, and AI into a shooter. It does not re-teach 3D nodes or raycasts; it defines the shooting model and the feel knobs (TTK, recoil, spread) that decide whether the guns feel good.

When to use

  • Use when building a first-person game whose core verb is aim and shoot — arena shooter,

tactical FPS, PvE shooter, boomer-shooter.

  • Use when deciding hitscan vs. projectile, tuning time-to-kill, recoil, spread, or aim feel.

*When not to use:* third-person/2D shooting → reuse the shooting model here but build the camera/controller from the relevant genre. Wave survival with towers → tower-defense. For the camera/character body itself, use godot-3d-essentials / unreal-cpp-gameplay.

Core loop

Scan → acquire a target → aim and fire → confirm the kill (feedback) → reposition / reload / advance. The whole experience rests on the aim-and-fire micro-loop feeling crisp: responsive look, clear hit feedback, and a death that reads instantly.

Must-have systems

  1. First-person controller — move (WASD/stick) + mouse/stick look, gravity, jump/crouch.
  2. Camera — eye-height view, configurable FOV and sensitivity, recoil kick.
  3. Shooting model — hitscan raycast and/or projectile spawn; one impact path for feedback.
  4. Weapons + ammo — damage, fire rate, magazine, reload, switching.
  5. Health + damage — HP, hit/headshot multipliers, death; player and enemy share the model.
  6. Enemy AI — perceive → alert → attack → search; cover and reaction delays (game-ai).
  7. Feedback — hitmarkers, impact decals/particles, hit sounds, screen shake, kill confirms.
  8. Objectives — what you do besides shoot: clear, capture, survive, escort.

Design knobs

KnobEffectSane default
Time-to-kill (TTK)lethality, forgivenessTune dmg × fire-rate × HP together (refs).
Hitscan vs projectileaim skill typeHitscan = flick; projectile = lead/dodge.
Damage falloffrange limitingFull to ~20 m, floor by ~60 m.
Headshot multiplierskill reward~1.5–2.0×.
Recoil patternlearnable kickFixed pattern > pure random.
Spread (bloom)suppress laser-accuracyFirst shot accurate; grows while firing.
Fire rate / magazine / reloadrhythm, downtimeReload = vulnerability window.
Mouse sensitivity / FOVcomfort, readabilityAlways expose both as options.
Aim assist (pad)controller parityMagnetism/slowdown near targets.

Patterns

1. Hitscan shot (instant ray, the workhorse)

# Pseudocode. Cast from the camera; first hit takes damage scaled by range + headshot.
direction = apply_spread(camera.forward, current_spread)
hit = raycast(camera.world_position, direction, max_dist=RANGE, mask=SHOOTABLE)
if hit:
    dmg = base_damage * falloff(hit.distance)
    if hit.is_head: dmg *= HEADSHOT_MULT
    hit.actor.take_damage(dmg)
    spawn_impact_fx(hit.point, hit.normal)        # decal + sound + hitmarker

2. Projectile shot (dodgeable, leads the target)

# Pseudocode. Spawn a moving body; it deals damage on its own collision.
p = spawn(projectile_scene, at=muzzle.world_position)
p.velocity = camera.forward * PROJECTILE_SPEED
p.on_hit   = lambda other, point: (other.take_damage(base_damage), explode_fx(point))
p.lifetime = RANGE / PROJECTILE_SPEED             # despawn so shots don't live forever

3. Time-to-kill (balance the trio together)

# Pseudocode. TTK falls out of HP, per-shot damage, and fire rate — tune as one system.
shots_to_kill = ceil(target_hp / damage_per_shot)
ttk_seconds   = (shots_to_kill - 1) / fire_rate_per_second   # first shot at t=0

Pitfalls / failure modes

  • Look tied to frame rate or unscaled by dt → sensitivity changes with FPS. Look should

be driven by raw mouse delta; movement integration uses dt (see physics-tuning).

  • Pure random recoil/spread → feels uncontrollable and unfair. Use a learnable recoil

pattern; keep the first shot accurate.

  • Hitscan with no falloff → pistols snipe across the map. Add range-based damage falloff.
  • No hit feedback → players can't tell if shots land. Always show hitmarkers, impact FX, and

a distinct kill confirm.

  • Mismatched TTK → too low feels twitchy/unfair; too high feels spongy. Tune damage,

fire rate, and HP as one system (Pattern 3).

  • Trusting the client in multiplayer → cheating and "I shot first" disputes. Keep authority

server-side; use lag compensation (refs) and defer netcode to the engine multiplayer skill.

  • No FOV / sensitivity options → motion sickness and accessibility failures. Always expose them.

Composition (build it from these skills)

  • Controller + camera: godot-3d-essentials (Godot) or unreal-cpp-gameplay / unreal-blueprints; Unity uses unity-physics + a character controller.
  • Input: input-systems (or unreal-enhanced-input) for look/move, rebinding, and gamepad aim assist.
  • Shooting physics: godot-physics / unity-physics for raycasts and projectile collision.
  • Enemies: game-ai with unity-navmesh / unreal-behavior-trees / Godot navigation.
  • Camera & feel: camera-systems for FOV/recoil kick and look smoothing; game-feel for hit-stop, screen shake, and impact juice.
  • Polish: audio-design for weapon/impact sound; shader-programming for muzzle/impact VFX.
  • Process: prototype-fast to validate aim feel before building content.

References

  • For hitscan vs. projectile trade-offs, damage falloff, recoil/spread, TTK math, hit

registration/lag compensation, and enemy AI states, read references/shooting-and-feel.md.

Score

0–100
55/ 100

Grade

C

Popularity15/30

913 installs — growing adoption.

Completeness19/30

Documented: full SKILL.md body, one-line install. Missing: description, category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Fps Shooter skill score badge previewScore badge

Markdown

[![Fps Shooter skill](https://www.claudemarket.ai/skills/gamedev-skills/awesome-gamedev-agent-skills/fps-shooter/badges/score.svg)](https://www.claudemarket.ai/skills/gamedev-skills/awesome-gamedev-agent-skills/fps-shooter)

HTML

<a href="https://www.claudemarket.ai/skills/gamedev-skills/awesome-gamedev-agent-skills/fps-shooter"><img src="https://www.claudemarket.ai/skills/gamedev-skills/awesome-gamedev-agent-skills/fps-shooter/badges/score.svg" alt="Fps Shooter skill"/></a>

Fps Shooter FAQ

How do I install the Fps Shooter skill?

Run “npx skills add https://github.com/gamedev-skills/awesome-gamedev-agent-skills --skill fps-shooter” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Fps Shooter skill do?

> The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Fps Shooter skill free?

Yes. Fps Shooter is a free, open-source skill published from gamedev-skills/awesome-gamedev-agent-skills. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Fps Shooter work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Fps Shooter works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Recommended skills

Browse all →
find-skills logo

find-skills

vercel-labs/skills

2.9M installsInstall
grill-me logo

grill-me

mattpocock/skills

816K installsInstall
frontend-design logo

frontend-design

anthropics/skills

761K installsInstall
grill-with-docs logo

grill-with-docs

mattpocock/skills

695K installsInstall
improve-codebase-architecture logo

improve-codebase-architecture

mattpocock/skills

670K installsInstall
agent-browser logo

agent-browser

vercel-labs/agent-browser

651K installsInstall

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before InstallingGuideOpenclaw Skills Complete Guide

Skills by category

FrontendBackend & APIsTesting & QASecurityDevOps & CI/CDMCP & ToolingAutomationData & Analysis+27 more

MCP servers by category

MCP & ToolingBackend & APIsData & AnalysisDevOps & CI/CDAutomationSecurityDocsTesting & QA+24 more

Plugins by category

AutomationDevOps & CI/CDData & AnalysisDesign & CreativeSecurityBackend & APIsFrontendTesting & QA+16 more

Marketplaces by category

AutomationData & AnalysisDevOps & CI/CDDesign & CreativeFrontendBackend & APIsTesting & QASecurity+21 more

The Agent Stack

Weekly Claude Code, Agent SDK, and MCP moves worth your time — free.

Claude Market

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

Independent project, not affiliated with Anthropic.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Plugins
  • Browse Marketplaces
  • Newsletter

More

  • Submit a Tool
  • Create a Skill
  • Advertise
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy
© 2026 Claude Market · Not affiliated with Anthropic
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed