Install
$ agentstack add skill-xeldaralz-everything-claude-unity-commit-trailers ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Structured Commit Trailers
When creating git commit messages, append structured trailers that capture decision context. This metadata makes architectural decisions searchable in git history and helps future developers understand why changes were made the way they were.
Trailers
Required (every commit)
Scope-risk: — How much of the project does this change affect?
low— isolated change, single file or tightly scoped featuremedium— touches multiple systems or changes shared interfaceshigh— modifies shared infrastructure, serialization format, or build pipeline
Conditional (include when applicable)
Constraint: — Architectural constraints that were respected during this change. Reference the rule or convention by name.
Rejected: — Alternatives that were considered and rejected, with brief reason. Helps future developers avoid re-exploring dead ends.
Not-tested: — Known gaps in test coverage or scenarios that weren't verified. Use none if everything is covered.
Format Rules
- Trailers go after a blank line at the end of the commit message body
- One trailer per line
- Keep each trailer under 100 characters
Scope-riskis always present- Omit
Constraintif no specific constraints were relevant - Omit
Rejectedif no alternatives were considered - Omit
Not-testedfor trivial changes; include it for anything non-trivial
Examples
Simple feature addition
Add object pooling for projectiles
Replaces Instantiate/Destroy cycle with a pre-warmed pool of 32.
Pool size is configurable via SerializeField on SpawnSystem.
Scope-risk: low
Constraint: no-alloc-in-update — pool grows only in Awake
Rejected: addressables-pool — overkill for single prefab type
Not-tested: pool exhaustion when max size exceeded during boss fight
Bug fix
Fix enemy health not resetting on respawn
EnemyModel.Health was not reset in ObjectPool.OnGet callback.
Added explicit reset in EnemySystem.OnSpawn().
Scope-risk: low
Not-tested: none
Cross-system refactor
Migrate score tracking from static class to VContainer
ScoreManager was a static singleton — replaced with ScoreSystem
registered in GameLifetimeScope. All 4 consumers updated to
use constructor injection.
Scope-risk: high
Constraint: no-singletons — VContainer is the only DI mechanism
Rejected: SO-based-score-channel — adds complexity for simple int tracking
Not-tested: score persistence across scene transitions
Serialization change
Rename _speed to _moveSpeed on PlayerView
Added FormerlySerializedAs to preserve prefab overrides.
All 3 prefab variants verified in inspector.
Scope-risk: medium
Constraint: formerly-serialized-as — mandatory on all serialized field renames
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: XeldarAlz
- Source: XeldarAlz/everything-claude-unity
- License: MIT
- Homepage: https://github.com/XeldarAlz/everything-claude-unity#readme
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.