Borrowing it
Nothing to install: this file belongs to julienkay/com.doji.package-authoring. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/julienkay/com.doji.package-authoring/master/.codex/skills/repo-layout-hover-mapping/SKILL.mdgit clone --depth 1 https://github.com/julienkay/com.doji.package-authoringWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/julienkay/com.doji.package-authoring/repo-layout-hover-mapping)<a href="https://agentmods.dev/skills/julienkay/com.doji.package-authoring/repo-layout-hover-mapping"><img src="https://agentmods.dev/badge/skills/julienkay/com.doji.package-authoring/repo-layout-hover-mapping/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/julienkay/com.doji.package-authoring/repo-layout-hover-mapping"><img src="https://agentmods.dev/badge/skills/julienkay/com.doji.package-authoring/repo-layout-hover-mapping.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00050 | $0.00368 |
| Opus 5 | $0.00025 | $0.00184 |
| Sonnet 5 | $0.00010 | $0.00074 |
| Haiku 4.5 | $0.00005 | $0.00037 |
Grade A, and why
repo-layout-hover-mapping scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
Repo Layout Hover Mapping
Use this skill for changes to the package-creation repository layout preview hover system.
The workflow spans three places:
com.doji.package-authoring/Editor/Wizards/UI/RepositoryLayoutPreviewHoverTargets.csAdd or update the semantic target id.com.doji.package-authoring/Editor/Wizards/UI/RepositoryLayoutPreviewPanel.csMap that target inMatchesTarget(...).- The relevant drawer or window
Publish the target from the drawn IMGUI rects via
RepositoryLayoutPreviewHoverContext.SetHoveredTargetsIfHovered(...).
Rules:
- Prefer semantic target names such as
ProjectManifest, not file-path-shaped names. - Wire all relevant rects for composite controls, not just the first visible row.
- If the control has custom foldout or dynamic-height behavior, keep the hover wiring aligned with the same rects used by the height calculation.
- If the hovered file or folder is not already present in the repository layout preview tree, add it there too.
- If preview visibility depends on toggles or options, make sure
RepositoryLayoutPreviewDataandPreviewSnapshotKey.Create(...)include the relevant state so the preview cache invalidates correctly.
Verification checklist:
- confirm the target constant exists
- confirm
MatchesTarget(...)maps it to the intended preview rows - confirm every intended UI rect publishes the target
- confirm the preview tree actually contains the hovered node
- confirm the preview snapshot key changes when the hovered node is conditionally included
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 34 lines · 50 tokens per session scan A e50b6ab23016
repo-layout-hover-mapping is a skill published in the GitHub repository julienkay/com.doji.package-authoring (5 stars, last pushed 3mo ago), licensed MIT. It adds 50 tokens to every session and 368 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
gameobject-component-destroy
Destroy one or more Components from a target GameObject. Missing (null) components are skipped — they cannot be destroyed. Use 'gameobject-find' and 'gameobject-component-get' to identify the components first.
unity-version-split
Split a C# file into Unity 6.5+ and pre-Unity 6.5 variants. Use when a file needs different implementations for different Unity versions due to API changes (e.g., EntityId vs int, GetEntityId vs GetInstanceID).
unity-addressables
Manage Addressables groups, entries, profiles and content builds (com.unity.addressables, reflection-based).
motion
How an agent turns a character mesh into a usable animated FBX — and how to judge whether the result is shippable.
playtest-report
Generates a structured playtest report template or analyzes existing playtest notes into a structured format. Use this to standardize playtest feedback collection and analysis.
unity-manual-component
Manually add, configure, reorder, and copy components on GameObjects using Unity Editor UI. For one-off Inspector workflows that do not need REST automation.