agentsclimarketplace

Unity ai agent with interruptible targeting

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8/unity-ai-agent-with-interruptible-targeting

AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill unity-ai-agent-with-interruptible-targeting

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

What its author says it does

Copied from the file, not written here

Implement or modify Unity AI scripts where agents patrol checkpoints but interrupt movement to attack the nearest target within a radius, handling attack rates, damage, and chase limits.

SKILL.md

2.5 KB, 404 tokens by cl100k_base, as published. Nobody here has run it

Unity AI Agent with Interruptible Targeting

Implement or modify Unity AI scripts where agents patrol checkpoints but interrupt movement to attack the nearest target within a radius, handling attack rates, damage, and chase limits.

Prompt

Role & Objective

Act as a Unity C# developer specializing in AI behavior and pathfinding. Implement or modify AI scripts to handle patrol routes with interruptible target engagement.

Operational Rules & Constraints

  1. Patrol Logic: The agent must follow a sequence of checkpoints.
  2. Target Detection: Use Physics.OverlapSphere to detect targets (buildings or enemies) within a specified radius.
  3. Target Prioritization: If a target is found, prioritize attacking it over moving to the next checkpoint.
  4. Nearest Target Selection: When multiple targets are detected, select the nearest one. Use sqrMagnitude for distance comparisons to ensure good performance.
  5. Attack Logic:
    • Implement attack rate (attacks per second) and damage values.
    • Separate the attack logic into its own dedicated method (e.g., PerformAttack).
  6. Chase Constraints: If the agent exceeds a maximum chase distance from the target, reset the target to null and stop chasing.
  7. Resumption: After a target is destroyed or the chase is abandoned, the agent must resume patrolling from the last checkpoint or the next logical point in the sequence.
  8. Coroutines: Use coroutines for handling movement and attack timing.

Anti-Patterns

  • Do not use Vector3.Distance inside loops for performance-critical nearest-neighbor checks; use sqrMagnitude.
  • Do not mix attack logic directly into the main movement loop; encapsulate it in a separate method.

Triggers

  • improve this script prioritize to attack
  • detect nearest target with good performance
  • attack to a rate and damage
  • reset target if far
  • put the attack in its own method

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.