{"slug":"clshortfuse-setup-game-mod-dev","name":"setup-game-mod-dev","description":"RenoDX workflow for setting up or resuming game mod development with Clang debug builds, DevKit, MCP bridge, ReShade game-folder links, live shader paths, per-game addon scaffolds, metadata, shader dump/decompile baselines, and verification. Use when starting a new src/games/{game} mod, continuing game-specific addon work, configuring DevKit for a game, or turning DevKit findings into a real mod.","long_description":"---\nname: setup-game-mod-dev\ndescription: \"RenoDX workflow for setting up or resuming game mod development with Clang debug builds, DevKit, MCP bridge, ReShade game-folder links, live shader paths, per-game addon scaffolds, metadata, shader dump/decompile baselines, and verification. Use when starting a new src/games/{game} mod, continuing game-specific addon work, configuring DevKit for a game, or turning DevKit findings into a real mod.\"\nargument-hint: \"game title/folder, install path, graphics API, and fresh vs continuing\"\n---\n\n# Setup Game Mod Development\n\nSet up **RenoDX mod development for a specific game**. Cover the local toolchain, DevKit/MCP inspection, game-folder ReShade/addon links, and the initial or continued `src/games/{game}` workflow.\n\nFocus on the **development environment and mod scaffold**. For swapchain/resource tracing, HDR source proof, resource upgrades, or rejecting final-SDR inverse-tonemap approaches, use `swapchain-resource-analysis`. For shader-side tonemap/LUT math after the target pass is known, use `handle-sdr-tonemap-lut`.\n\n## Related skills and scope\n\n| Need | Use |\n|---|---|\n| Create/resume a game folder, build targets, link ReShade/addons, configure DevKit paths | This skill |\n| Trace final output, resource formats, swapchain proxy, `SwapChainPass`, SDR/HDR output toggle, or HDR source proof | `swapchain-resource-analysis` |\n| Edit the proven game shader for RenoDRT/PsychoV/LUT bridge math | `handle-sdr-tonemap-lut` |\n\nKeep this skill focused on getting the mod development environment and baseline workflow ready. Record enough facts for handoff, but do not duplicate the specialized swapchain/resource or shader-math workflows.\n\n## Boundaries\n\n- Keep changes local to one `src/games/{game}` folder unless cross-mod work is explicitly requested.\n- Do not change global CMake presets, CI workflows, vendored dependencies, or external submodules.\n- New mods start from `src/games/generic`.\n- Use the CMake target named after the mod folder; the output artifact is `renodx-{mod}.addon64` or `.addon32`.\n- Use the `devkit` and `mcp_bridge` targets for local inspection; their debug outputs are `renodx-devkit.addon64` and `renodx-mcp-bridge.exe`.\n- Prefer Clang CMake presets for real development builds. Use VS Code CMake build integration when available, but select the `clang-*` configure/build presets. Treat `ninja-*` and `vs-*` presets as workflow testing paths only, not normal mod development paths.\n- Do not build a game addon while that game is running with the addon loaded; the DLL can be locked.\n- Do not put dumped `.cso` files in `src/games/{game}`. They can shadow editable HLSL during live shader loading.\n\n## Required setup facts\n\nCollect or infer these before editing files or changing a game folder:\n\n| Fact | Notes |\n|---|---|\n| Work mode | `continue` if `src/games/{game}` exists or the user says resume; `fresh` otherwise. |\n| Mod folder id | Lowercase folder name under `src/games`, usually no spaces. |\n| Game title | Human-readable metadata title. |\n| Game binary folder | The folder where ReShade and `.addon64`/`.addon32` files must load from. Infer from metadata when possible, but verify because it may be a subfolder such as `...\\Binaries\\Win64`. |\n| Executable/process | `game_exe` or `process_name` for metadata and runtime checks. |\n| Graphics API | Usually `d3d11`, `d3d12`, or `vulkan`; affects loader DLL naming and shader targets. |\n| Architecture | Usually `x64`; use `.addon32` only for 32-bit games. |\n| Swapchain/output state | Optional early fact: known swapchain format/color space, especially RGBA8U/UNORM bottlenecks or existing HDR/scRGB/PQ paths. |\n| Proxy/resource need | Optional early fact: whether evidence suggests a RGBA16F proxy, resource upgrade, `SwapChainPass` output shader, or output preset cbuffer is needed before shader-side tonemap work. |\n| Store ids | Steam/GOG/Microsoft/Nexus ids if known. |\n| Loader name | Default is often `dxgi.dll`; honor `deploy.reshade_preferred_name` or game-specific requirements. |\n| ReShade state | Whether the game folder already has a ReShade loader DLL, `ReShade.ini`, and `ReShade.log`. |\n\nBefore asking for missing facts, read `src/games/{mod}/metadata.json` when it exists. Use `deploy.steam_appid`, `deploy.game_exe`, `deploy.process_name`, `deploy.api`, `deploy.architecture`, `deploy.reshade_preferred_name`, and `deploy.detection.default_install_paths` to reduce guessing. If `steam_appid` is present, resolve the local Steam install by reading Steam `libraryfolders.vdf` and `appmanifest_{appid}.acf`, then use `game_exe`/`process_name` to locate the binary folder. Steam metadata alone usually resolves only the install root; still ask when executable metadata is missing, the game is not locally installed, or multiple executable matches make the injection folder ambiguous.\n\n## Expected agent output\n\nWhen invoked, produce or maintain these sections in the response or working notes:\n\n1. **Setup facts** - game folder, install/binary folder, API, arch, and mode.\n2. **Existing state** - mod folder files, metadata, registered shaders, current build artifacts, and relevant scratch/verification notes.\n3. **Build plan** - exact Clang debug CMake targets (`devkit`, `mcp_bridge`, `{mod}`) and any game-shutdown requirement.\n4. **Game-folder link plan** - ReShade bootstrap state, loader DLL, DevKit addon, and game addon symlink/copy targets; list conflicts instead of deleting unknown files.\n5. **DevKit plan** - MCP connection, tools path, live shader path, snapshot, draw/resource/shader inspection steps, and any handoff needed for swapchain/resource proof.\n6. **Baseline plan** - original capture, dump/decompile location, editable HLSL location, 1:1 live baseline validation.\n7. **Verification checklist** - target built, files generated, addon loaded, shader replacement active, runtime output validated.\n\n## Continue an existing mod\n\nUse this path when `src/games/{mod}` already exists.\n\n1. Inspect the existing folder:\n   - `metadata.json`\n   - `addon.cpp`\n   - `shared.h`\n   - existing shader replacements and includes\n   - committed `README.md`, verification/dev notes, or repo memory if present\n2. Treat the folder name as the build target unless CMake target listing proves otherwise.\n3. Preserve existing shader registrations and settings unless the user asks to replace them.\n4. Rebuild only the smallest relevant targets:\n   - `devkit` and `mcp_bridge` if inspection tooling changed or is missing\n   - `{mod}` for the game addon\n5. Re-link only the game folder artifacts needed for this session:\n   - ReShade loader DLL if missing or known-good symlink target changed\n   - `renodx-devkit.addon64` or `.addon32`\n   - `renodx-{mod}.addon64` or `.addon32`\n6. Point DevKit live shaders at the existing mod folder only if it is clean of dumped binaries and unrelated scratch files.\n7. Keep concise build/runtime checks in the agent response or existing committed mod docs when setup knowledge changes.\n\n## Start a fresh mod\n\n1. Create `src/games/{mod}` by copying the relevant files from `src/games/generic`.\n2. Keep the first scaffold minimal:\n   - `addon.cpp`\n   - `shared.h`\n   - `metadata.json`\n   - shader files only after a real target shader is proven\n3. Update exported addon text in `addon.cpp`:\n   - `NAME` should identify RenoDX for the game.\n   - `DESCRIPTION` should identify the game-specific module.\n4. Create `metadata.json` with the schema, `id`, `title`, `status`, optional `summary`/`tags`, and `deploy` fields such as `game_exe`, `api`, `steam_appid`, and `architecture`.\n5. Let the top-level CMake auto-discover the mod through `addon.cpp`; do not edit global CMake just to add a game folder.\n6. Build the new mod target before adding shader complexity.\n7. Add shader registrations only after DevKit identifies stable target shader hashes.\n\n## Local toolchain and build setup\n\nClang debug is the default path for mod development builds.\n\n| Architecture | Configure preset | Development build preset |\n|---|---|---|\n| x64 | `clang-x64` | `clang-x64-debug` |\n| x86 | `clang-x86` | `clang-x86-debug` |\n\nWhen working on mods, assume debug build artifacts. Use release presets only for explicit packaging/deploy requests, not normal development or DevKit iteration. Do not use `ninja-*`, `vs-*`, or ad-hoc build folders for real mod development; reserve them for workflow testing or explicit user requests.\n\n1. Ensure repo-local shader tools exist in `bin` when DevKit decompilation or DXC isolation is needed:\n   - `dxc.exe`\n   - `dxcompiler.dll`\n   - `cmd_Decompiler.exe`\n   - optional SPIR-V tools\n2. If tools are missing, run the repo setup script from the repo root with install/update intent.\n3. Build these targets for live inspection:\n   - `devkit`\n   - `mcp_bridge`\n4. Build the game target named `{mod}`.\n5. If a build fails because the output `.addon64`/`.addon32` is locked, stop the game and rebuild; do not work around it by renaming random artifacts.\n\n## Game-folder ReShade and addon links\n\nUse symlinks for local development when possible; copy only when symlinks are unavailable or the user asks for deploy-like behavior.\n\n1. Resolve the **game binary folder** from metadata when possible. Prefer `deploy.detection.default_install_paths`, then Steam `deploy.steam_appid` via local `appmanifest_{appid}.acf`, then locate `deploy.game_exe`/`process_name` under that root. Do not assume the Steam install root is the injection folder.\n2. Check for existing loader/addon files:\n   - ReShade loader DLL, usually `dxgi.dll`\n   - `ReShade.ini`\n   - `renodx-devkit.addon64`/`.addon32`\n   - `renodx-{mod}.addon64`/`.addon32`\n3. If a target exists and is not a symlink or known build artifact, report it as a conflict or backup candidate instead of deleting it.\n4. Use `scripts/setup-reshade.ps1` against the game binary folder when ReShade search paths or baseline `ReShade.ini` need setup.\n5. Link the DevKit addon from the active build output.\n6. Link the game addon from the active build output.\n7. Launch the game and confirm `ReShade.log` shows both addons loaded.\n\n### If the game folder has no ReShade yet\n\nFirst use `scripts/setup-dev-env.ps1 -Update` or `-Install` to populate repo-local `bin` with `ReShade32.dll` and `ReShade64.dll` when they are available from the machine's ReShade install. Then use `scripts/setup-reshade.ps1` against the resolved game binary folder before linking addons. If a mod folder already has metadata, prefer `scripts/setup-reshade.ps1 -Mod {mod}` so the script can infer the Steam install and loader defaults from `metadata.json`.\n\nThe script currently does useful development setup tasks:\n\n- creates the loader DLL, default `dxgi.dll`, as a symlink to repo-local `bin\\ReShade64.dll`/`bin\\ReShade32.dll` when available, falling back to `%ProgramData%\\ReShade`;\n- copies `%ProgramData%\\ReShade\\ReShade.ini` into the game folder when `ReShade.ini` is missing;\n- updates `EffectSearchPaths` and `TextureSearchPaths` in `ReShade.ini` for the game folder and common ReShade shader folders.\n- writes `[renodx-dev] ToolsPath` to the repo `bin` folder and `[renodx-dev] LivePath` to `src/games/{mod}` when `-Mod` resolves an existing mod folder, otherwise to the game folder's `renodx-dev\\live` path. This avoids starting DevKit with no tools directory configured.\n\nIf setup reports that ReShade DLLs or `%ProgramData%\\ReShade\\ReShade.ini` are missing, install/configure ReShade first, rerun `scripts/setup-dev-env.ps1 -Update`, then rerun the game-folder setup. Do not fabricate a loader path.\n\nTreat these as script limitations unless the user asks to change it:\n\n- it defaults to `-Arch x64` and `-LoaderName dxgi.dll`;\n- it leaves an existing non-symlink `dxgi.dll` untouched and reports the conflict.\n\nFor a 32-bit game, call the script with `-Arch x86`. For a non-`dxgi.dll` loader or a game that needs `deploy.reshade_preferred_name`, pass `-LoaderName` explicitly and still report any existing non-symlink conflict.\n\nPass `-LivePath <path>` when the DevKit l","tagline":"RenoDX workflow for setting up or resuming game mod development with Clang debug builds, DevKit, MCP bridge, ReShade game-folder links, live shader paths, per-game addon scaffolds, metadata, shader dump/decompile baselines, and verification. Use when starting a new src/games/{gam","category":"research","tags":["agent-skill"],"author":"clshortfuse","verified":false,"attribution":{"status":"registry_indexed","statusLabel":"Registry indexed","shortLabel":"REGISTRY INDEXED","sourceLabel":"incremental repository rescan","sourceDetail":"clshortfuse/renodx","creatorName":"clshortfuse","creatorUrl":"https://github.com/clshortfuse","sourceUrl":"https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev","indexedBy":"OpenAgentSkill community index","claimUrl":"https://www.openagentskill.com/skills/clshortfuse-setup-game-mod-dev#claim-this-skill","claimCta":"Claim this skill","trustNote":"This listing was indexed from public sources and is not marked official until a maintainer claim is approved.","publicNote":"Attribution links to the public repository or creator profile. Creators can claim the listing to update ownership signals."},"stats":{"stars":3760,"forks":142,"verified_installs":0,"successful_runs":0,"total_outcomes":0,"rating":0,"review_count":0,"quality_score":48.13},"quality":{"score":83,"tier":"strong","label":"Strong","summary":"Solid option that is likely worth shortlisting for production workflows.","signals":[{"label":"GitHub stars","value":"3.8K","tone":"positive"},{"label":"Freshness","value":"1d ago","tone":"positive"},{"label":"Install ready","value":"Yes","tone":"positive"},{"label":"License","value":"MIT","tone":"neutral"}],"warnings":["The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill."]},"trust":{"version":"trust-score-v5","score":64,"base_score":72,"outcome_confidence":0,"tier":"review","label":"Sandbox only","summary":"Useful candidate with missing or mixed trust signals. Keep it in an isolated workspace until the outcome loop proves task fit.","recommendedAction":"Run only in a sandbox and compare close alternatives before using it for real work.","decision":{"install_policy":"human_review_before_install","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["64/100 Trust Score v5","72/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":86,"weight":0.13,"status":"pass","detail":"3.8K GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":77,"weight":0.08,"status":"info","detail":"3.8K stars, 142 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"1d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":64,"weight":0.12,"status":"info","detail":"credential or environment access, network or browser surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":34,"weight":0.07,"status":"fail","detail":"secrets or environment access, filesystem or document access"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"pass","label":"GitHub adoption","detail":"3.8K GitHub stars"},{"status":"info","label":"Stars/forks activity","detail":"3.8K stars, 142 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"1d since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"info","label":"Dependency/runtime risk","detail":"credential or environment access, network or browser surface"},{"status":"pass","label":"Install availability","detail":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, filesystem or document access"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Meaningful GitHub adoption signal","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","Quality score needs review","Permission surface needs review: secrets or environment access, filesystem or document access","Permission surface: secrets or environment access, filesystem or document access","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"3.8K GitHub stars","repoActivity":"3.8K stars, 142 forks","lastPushed":"1d since push","license":"MIT","repository":"https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev","install":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, filesystem or document access","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","1d since push","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","Quality score needs review","Permission surface needs review: secrets or environment access, filesystem or document access","Permission surface: secrets or environment access, filesystem or document access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v4","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms","source_version"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["research","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev","trust_score":64,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["research","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"knownRisks":["The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","Quality score needs review","Permission surface needs review: secrets or environment access, filesystem or document access","Permission surface: secrets or environment access, filesystem or document access"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":72,"tier":"strong","label":"Strong shortlist","summary":"Good trust signals with a few areas worth checking before rollout."}}},"trust_score_v5":{"version":"trust-score-v5","score":64,"base_score":72,"outcome_confidence":0,"tier":"review","label":"Sandbox only","summary":"Useful candidate with missing or mixed trust signals. Keep it in an isolated workspace until the outcome loop proves task fit.","recommendedAction":"Run only in a sandbox and compare close alternatives before using it for real work.","decision":{"install_policy":"human_review_before_install","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["64/100 Trust Score v5","72/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":86,"weight":0.13,"status":"pass","detail":"3.8K GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":77,"weight":0.08,"status":"info","detail":"3.8K stars, 142 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"1d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":64,"weight":0.12,"status":"info","detail":"credential or environment access, network or browser surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":34,"weight":0.07,"status":"fail","detail":"secrets or environment access, filesystem or document access"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"pass","label":"GitHub adoption","detail":"3.8K GitHub stars"},{"status":"info","label":"Stars/forks activity","detail":"3.8K stars, 142 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"1d since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"info","label":"Dependency/runtime risk","detail":"credential or environment access, network or browser surface"},{"status":"pass","label":"Install availability","detail":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, filesystem or document access"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Meaningful GitHub adoption signal","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","Quality score needs review","Permission surface needs review: secrets or environment access, filesystem or document access","Permission surface: secrets or environment access, filesystem or document access","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"3.8K GitHub stars","repoActivity":"3.8K stars, 142 forks","lastPushed":"1d since push","license":"MIT","repository":"https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev","install":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, filesystem or document access","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","1d since push","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","Quality score needs review","Permission surface needs review: secrets or environment access, filesystem or document access","Permission surface: secrets or environment access, filesystem or document access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v4","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms","source_version"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["research","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev","trust_score":64,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["research","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"knownRisks":["The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","Quality score needs review","Permission surface needs review: secrets or environment access, filesystem or document access","Permission surface: secrets or environment access, filesystem or document access"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":72,"tier":"strong","label":"Strong shortlist","summary":"Good trust signals with a few areas worth checking before rollout."}}},"trust_score_v4":{"version":"trust-score-v4","score":72,"tier":"strong","label":"Strong shortlist","summary":"Good trust signals with a few areas worth checking before rollout.","recommendedAction":"Test in a sandbox workflow and compare its install path with close alternatives.","dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":86,"weight":0.13,"status":"pass","detail":"3.8K GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":77,"weight":0.08,"status":"info","detail":"3.8K stars, 142 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"1d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":64,"weight":0.12,"status":"info","detail":"credential or environment access, network or browser surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":34,"weight":0.07,"status":"fail","detail":"secrets or environment access, filesystem or document access"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"pass","label":"GitHub adoption","detail":"3.8K GitHub stars"},{"status":"info","label":"Stars/forks activity","detail":"3.8K stars, 142 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"1d since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"info","label":"Dependency/runtime risk","detail":"credential or environment access, network or browser surface"},{"status":"pass","label":"Install availability","detail":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, filesystem or document access"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Meaningful GitHub adoption signal","Install command has no obvious high-risk pattern"],"warnings":["The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","Quality score needs review","Permission surface needs review: secrets or environment access, filesystem or document access","Permission surface: secrets or environment access, filesystem or document access"],"evidence":{"stars":"3.8K GitHub stars","repoActivity":"3.8K stars, 142 forks","lastPushed":"1d since push","license":"MIT","repository":"https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev","install":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, filesystem or document access","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"installReadiness":{"ready":true,"command":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","1d since push"]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","Quality score needs review","Permission surface needs review: secrets or environment access, filesystem or document access","Permission surface: secrets or environment access, filesystem or document access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Human review or sandbox validation is required before automatic installation."},"bestFor":["research","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"knownRisks":["The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","Quality score needs review","Permission surface needs review: secrets or environment access, filesystem or document access","Permission surface: secrets or environment access, filesystem or document access"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"outcome_stats":null,"safety":{"score":50,"level":"avoid_auto_install","label":"Avoid automatic install","safety_tier":{"tier":"experimental","label":"Experimental","badge":"EXPERIMENTAL","summary":"Sparse or mixed signals. Useful for discovery, but not for autonomous installation.","recommended_action":"Test manually in an isolated workspace and compare against safer alternatives.","auto_install_policy":"review","reasons":["High-risk permission hints: Secrets or environment access","50/100 agent safety score"]},"auto_install_allowed":false,"human_review_required":true,"blocked":false,"audit_risk":"needs_review","permission_hints":[{"id":"network","label":"Network access","reason":"Skill likely fetches remote pages, APIs, repositories, or external services.","severity":"medium"},{"id":"filesystem","label":"Filesystem access","reason":"Skill may read or write project files, documents, generated artifacts, or local workspace state.","severity":"medium"},{"id":"secrets","label":"Secrets or environment access","reason":"Skill metadata references credentials, tokens, environment variables, or secret-bearing workflows.","severity":"high"},{"id":"database","label":"Database access","reason":"Skill may inspect schemas, query databases, or work with persistent stores.","severity":"medium"}],"policy_warnings":["High-risk permission hints: Secrets or environment access","Permission surface may require sandboxing"],"constraints_applied":{"max_risk":"medium","needs_install_command":true,"min_stars":0}},"safety_gate":{"tier":"experimental","label":"Experimental","badge":"EXPERIMENTAL","auto_install_policy":"review","auto_install_allowed":false,"blocked":false,"human_review_required":true,"recommended_action":"Test manually in an isolated workspace and compare against safer alternatives.","reasons":["High-risk permission hints: Secrets or environment access","50/100 agent safety score"]},"eval":{"version":"openagentskill-skill-eval-v1","status":"failed","score":74,"risk_level":"high","decision":{"recommendation":"do_not_auto_install","reason":"Permission surface: secrets or environment access, filesystem or document access","auto_install_allowed":false,"policy":"block","human_review_required":true},"blockers":["Permission surface: secrets or environment access, filesystem or document access"],"warnings":["Trust score: Good trust signals with a few areas worth checking before rollout.","Audit score: Needs review","Agent safety gate: Sparse or mixed signals. Useful for discovery, but not for autonomous installation.","High-risk permission hints: Secrets or environment access","Permission surface may require sandboxing","The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","The SKILL.md does not explicitly mention how to handle sensitive data (e.g., Steam credentials) or avoid exfiltration, but it only reads local metadata and does not request secrets.","Quality score needs review","Permission surface needs review: secrets or environment access, filesystem or document access","Permission surface: secrets or environment access, filesystem or document access"],"validation_plan":["Inspect repository, README/SKILL.md, license, and recent commits before production use.","Install in an isolated workspace or sandbox with no production secrets available.","Run the smallest representative task and record files touched, commands run, network access, and outputs.","Compare the selected skill against at least one alternative when the eval status is review or failed.","Promote only after the agent reports a successful verification result and unresolved warnings are accepted."],"checks":[{"id":"task_fit","label":"Task fit","status":"pass","score":94,"required_for_auto_install":true,"detail":"Task wording matches this skill metadata.","evidence":["Evaluate setup-game-mod-dev before installing it in an agent workflow","research","Research agents workflows; Claude Code teams; teams that value GitHub adoption signals"]},{"id":"install_path","label":"Install path","status":"pass","score":92,"required_for_auto_install":true,"detail":"Install handoff is available.","evidence":["npx skills add clshortfuse/renodx --skill setup-game-mod-dev"]},{"id":"install_safety","label":"Install command safety","status":"pass","score":92,"required_for_auto_install":true,"detail":"standard package or runtime install path","evidence":["npx skills add clshortfuse/renodx --skill setup-game-mod-dev"]},{"id":"trust_score","label":"Trust score","status":"warn","score":72,"required_for_auto_install":true,"detail":"Good trust signals with a few areas worth checking before rollout.","evidence":["Strong shortlist","3.8K GitHub stars","MIT"]},{"id":"audit_score","label":"Audit score","status":"warn","score":82,"required_for_auto_install":true,"detail":"Needs review","evidence":["Permission surface may require sandboxing"]},{"id":"agent_safety_gate","label":"Agent safety gate","status":"warn","score":50,"required_for_auto_install":true,"detail":"Sparse or mixed signals. Useful for discovery, but not for autonomous installation.","evidence":["Test manually in an isolated workspace and compare against safer alternatives.","High-risk permission hints: Secrets or environment access"]},{"id":"readme_skillmd_completeness","label":"README/SKILL.md completeness","status":"pass","score":86,"required_for_auto_install":false,"detail":"Metadata includes enough usage and workflow context","evidence":["Strong README/SKILL.md context"]},{"id":"license_clarity","label":"License clarity","status":"pass","score":86,"required_for_auto_install":true,"detail":"MIT","evidence":["MIT"]},{"id":"recent_maintenance","label":"Recent maintenance","status":"pass","score":100,"required_for_auto_install":false,"detail":"1d since push","evidence":["1d since push"]},{"id":"permission_surface","label":"Permission surface","status":"fail","score":34,"required_for_auto_install":true,"detail":"secrets or environment access, filesystem or document access","evidence":["Network access: medium","Filesystem access: medium","Secrets or environment access: high"]},{"id":"alternatives","label":"Alternatives available","status":"info","score":55,"required_for_auto_install":false,"detail":"No close alternatives were found in the current shortlist.","evidence":[]}],"endpoints":{"web":"https://www.openagentskill.com/skills/clshortfuse-setup-game-mod-dev/evals","api":"/api/agent/evals?slug=clshortfuse-setup-game-mod-dev","text":"/api/agent/evals?slug=clshortfuse-setup-game-mod-dev&format=text"}},"agent_readable_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"clshortfuse-setup-game-mod-dev","name":"setup-game-mod-dev","description":"RenoDX workflow for setting up or resuming game mod development with Clang debug builds, DevKit, MCP bridge, ReShade game-folder links, live shader paths, per-game addon scaffolds, metadata, shader dump/decompile baselines, and verification. Use when starting a new src/games/{game} mod, continuing game-specific addon work, configuring DevKit for a game, or turning DevKit findings into a real mod.","category":"research","url":"https://www.openagentskill.com/skills/clshortfuse-setup-game-mod-dev","repository":"https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev","github_repo":"clshortfuse/renodx"},"suited_tasks":["Research agents workflows","Claude Code teams","teams that value GitHub adoption signals","Search sources","Extract claims","Synthesize findings","Move data between tools","Transform files"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","CLI"],"install":{"command":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add clshortfuse-setup-game-mod-dev"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"setup-game-mod-dev\" agent skill from https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: RenoDX workflow for setting up or resuming game mod development with Clang debug builds, DevKit, MCP bridge, ReShade game-folder links, live shader paths, per-game addon scaffolds, metadata, shader dump/decompile baselines, and verification. Use when starting a new src/games/{game} mod, continuing game-specific addon work, configuring DevKit for a game, or turning DevKit findings into a real mod. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"clshortfuse-setup-game-mod-dev\",\"task\":\"Install setup-game-mod-dev\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"setup-game-mod-dev\" as a Claude Code skill from https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: RenoDX workflow for setting up or resuming game mod development with Clang debug builds, DevKit, MCP bridge, ReShade game-folder links, live shader paths, per-game addon scaffolds, metadata, shader dump/decompile baselines, and verification. Use when starting a new src/games/{game} mod, continuing game-specific addon work, configuring DevKit for a game, or turning DevKit findings into a real mod. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"clshortfuse-setup-game-mod-dev\",\"task\":\"Install setup-game-mod-dev\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"setup-game-mod-dev\" from https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: RenoDX workflow for setting up or resuming game mod development with Clang debug builds, DevKit, MCP bridge, ReShade game-folder links, live shader paths, per-game addon scaffolds, metadata, shader dump/decompile baselines, and verification. Use when starting a new src/games/{game} mod, continuing game-specific addon work, configuring DevKit for a game, or turning DevKit findings into a real mod. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"clshortfuse-setup-game-mod-dev\",\"task\":\"Install setup-game-mod-dev\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/clshortfuse-setup-game-mod-dev/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/clshortfuse-setup-game-mod-dev"},"trust":{"score":72,"label":"Strong shortlist","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"3.8K GitHub stars","repoActivity":"3.8K stars, 142 forks","lastPushed":"1d since push","license":"MIT","repository":"https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev","install":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, filesystem or document access","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["research","agent-skill"],"known_risks":["The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","Quality score needs review","Permission surface needs review: secrets or environment access, filesystem or document access","Permission surface: secrets or environment access, filesystem or document access"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":82,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Permission surface may require sandboxing","The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","The SKILL.md does not explicitly mention how to handle sensitive data (e.g., Steam credentials) or avoid exfiltration, but it only reads local metadata and does not request secrets.","Quality score needs review","Permission surface needs review: secrets or environment access, filesystem or document access","Permission surface: secrets or environment access, filesystem or document access"]},"safety_gate":{"tier":"experimental","label":"Experimental","auto_install_policy":"review","auto_install_allowed":false,"human_review_required":true,"blocked":false,"recommended_action":"Test manually in an isolated workspace and compare against safer alternatives."},"quality":{"score":83,"label":"Strong"},"supply":{"track":"Research and knowledge work","scenario":"Research agents","maintenance":"1d since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","No OpenAgentSkill engagement data yet","High-risk permission hints: Secrets or environment access","Permission surface may require sandboxing","The SKILL.md does not explicitly mention how to handle sensitive data (e.g., Steam credentials) or avoid exfiltration, but it only reads local metadata and does not request secrets.","Quality score needs review"],"agent_contract":{"task_input":"Use setup-game-mod-dev in an agent workflow","recommended_action":"Test manually in an isolated workspace and compare against safer alternatives.","install_policy":"review","minimum_review_before_use":["Trust: 72/100 Strong shortlist","Audit: 82/100 Needs review","Safety: 50/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"clshortfuse-setup-game-mod-dev (setup-game-mod-dev)","install_command":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev","risk_summary":"Needs review; Experimental; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"clshortfuse-setup-game-mod-dev","task":"Use setup-game-mod-dev in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/clshortfuse-setup-game-mod-dev","api":"https://www.openagentskill.com/api/agent/skills/clshortfuse-setup-game-mod-dev","audit":"https://www.openagentskill.com/skills/clshortfuse-setup-game-mod-dev/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=clshortfuse-setup-game-mod-dev&task=Use%20setup-game-mod-dev%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20setup-game-mod-dev%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20setup-game-mod-dev%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/clshortfuse-setup-game-mod-dev/install","manifest":"https://www.openagentskill.com/api/registry/manifest/clshortfuse-setup-game-mod-dev"}},"machine_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"clshortfuse-setup-game-mod-dev","name":"setup-game-mod-dev","description":"RenoDX workflow for setting up or resuming game mod development with Clang debug builds, DevKit, MCP bridge, ReShade game-folder links, live shader paths, per-game addon scaffolds, metadata, shader dump/decompile baselines, and verification. Use when starting a new src/games/{game} mod, continuing game-specific addon work, configuring DevKit for a game, or turning DevKit findings into a real mod.","category":"research","url":"https://www.openagentskill.com/skills/clshortfuse-setup-game-mod-dev","repository":"https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev","github_repo":"clshortfuse/renodx"},"suited_tasks":["Research agents workflows","Claude Code teams","teams that value GitHub adoption signals","Search sources","Extract claims","Synthesize findings","Move data between tools","Transform files"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","CLI"],"install":{"command":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add clshortfuse-setup-game-mod-dev"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"setup-game-mod-dev\" agent skill from https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: RenoDX workflow for setting up or resuming game mod development with Clang debug builds, DevKit, MCP bridge, ReShade game-folder links, live shader paths, per-game addon scaffolds, metadata, shader dump/decompile baselines, and verification. Use when starting a new src/games/{game} mod, continuing game-specific addon work, configuring DevKit for a game, or turning DevKit findings into a real mod. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"clshortfuse-setup-game-mod-dev\",\"task\":\"Install setup-game-mod-dev\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"setup-game-mod-dev\" as a Claude Code skill from https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: RenoDX workflow for setting up or resuming game mod development with Clang debug builds, DevKit, MCP bridge, ReShade game-folder links, live shader paths, per-game addon scaffolds, metadata, shader dump/decompile baselines, and verification. Use when starting a new src/games/{game} mod, continuing game-specific addon work, configuring DevKit for a game, or turning DevKit findings into a real mod. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"clshortfuse-setup-game-mod-dev\",\"task\":\"Install setup-game-mod-dev\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"setup-game-mod-dev\" from https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: RenoDX workflow for setting up or resuming game mod development with Clang debug builds, DevKit, MCP bridge, ReShade game-folder links, live shader paths, per-game addon scaffolds, metadata, shader dump/decompile baselines, and verification. Use when starting a new src/games/{game} mod, continuing game-specific addon work, configuring DevKit for a game, or turning DevKit findings into a real mod. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"clshortfuse-setup-game-mod-dev\",\"task\":\"Install setup-game-mod-dev\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/clshortfuse-setup-game-mod-dev/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/clshortfuse-setup-game-mod-dev"},"trust":{"score":72,"label":"Strong shortlist","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"3.8K GitHub stars","repoActivity":"3.8K stars, 142 forks","lastPushed":"1d since push","license":"MIT","repository":"https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev","install":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, filesystem or document access","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["research","agent-skill"],"known_risks":["The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","Quality score needs review","Permission surface needs review: secrets or environment access, filesystem or document access","Permission surface: secrets or environment access, filesystem or document access"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":82,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Permission surface may require sandboxing","The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","The SKILL.md does not explicitly mention how to handle sensitive data (e.g., Steam credentials) or avoid exfiltration, but it only reads local metadata and does not request secrets.","Quality score needs review","Permission surface needs review: secrets or environment access, filesystem or document access","Permission surface: secrets or environment access, filesystem or document access"]},"safety_gate":{"tier":"experimental","label":"Experimental","auto_install_policy":"review","auto_install_allowed":false,"human_review_required":true,"blocked":false,"recommended_action":"Test manually in an isolated workspace and compare against safer alternatives."},"quality":{"score":83,"label":"Strong"},"supply":{"track":"Research and knowledge work","scenario":"Research agents","maintenance":"1d since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","No OpenAgentSkill engagement data yet","High-risk permission hints: Secrets or environment access","Permission surface may require sandboxing","The SKILL.md does not explicitly mention how to handle sensitive data (e.g., Steam credentials) or avoid exfiltration, but it only reads local metadata and does not request secrets.","Quality score needs review"],"agent_contract":{"task_input":"Use setup-game-mod-dev in an agent workflow","recommended_action":"Test manually in an isolated workspace and compare against safer alternatives.","install_policy":"review","minimum_review_before_use":["Trust: 72/100 Strong shortlist","Audit: 82/100 Needs review","Safety: 50/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"clshortfuse-setup-game-mod-dev (setup-game-mod-dev)","install_command":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev","risk_summary":"Needs review; Experimental; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"clshortfuse-setup-game-mod-dev","task":"Use setup-game-mod-dev in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/clshortfuse-setup-game-mod-dev","api":"https://www.openagentskill.com/api/agent/skills/clshortfuse-setup-game-mod-dev","audit":"https://www.openagentskill.com/skills/clshortfuse-setup-game-mod-dev/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=clshortfuse-setup-game-mod-dev&task=Use%20setup-game-mod-dev%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20setup-game-mod-dev%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20setup-game-mod-dev%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/clshortfuse-setup-game-mod-dev/install","manifest":"https://www.openagentskill.com/api/registry/manifest/clshortfuse-setup-game-mod-dev"}},"supply_profile":{"track":{"slug":"research","label":"Research and knowledge work","shortLabel":"Research","description":"Deep research, source comparison, literature review, RAG, knowledge search, and reports."},"scenario":{"label":"Research agents","description":"I need my agent to research a topic, compare sources, and produce a concise report.","useCases":[{"slug":"research-agents","title":"Research agents"},{"slug":"workflow-automation","title":"Workflow automation"},{"slug":"sports-analytics","title":"Sports analytics"}]},"applicableAgents":["Claude Code","CLI","Codex","Cursor"],"install":{"ready":true,"command":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev","primaryTarget":"CLI","targetCount":4},"githubQuality":{"stars":3760,"starsLabel":"3.8K","forks":142,"license":"MIT","qualityScore":83,"trustScore":72,"auditScore":82},"maintenance":{"status":"fresh","label":"1d since push","daysSincePush":1,"lastPushedAt":"2026-09-07T01:33:47+00:00"},"risk":{"level":"needs_review","label":"Needs review","requiresReview":true,"notes":["Permission surface may require sandboxing","The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","The SKILL.md does not explicitly mention how to handle sensitive data (e.g., Steam credentials) or avoid exfiltration, but it only reads local metadata and does not request secrets.","Quality score needs review","Permission surface needs review: secrets or environment access, filesystem or document access"]},"coverageTags":["Research","Research agents","agent-skill"]},"audit":{"audit_score":82,"risk_level":"needs_review","risk_label":"Needs review","quality_score":83,"trust_score":72,"maintenance_score":100,"security_score":75,"install_score":92,"warnings":["Permission surface may require sandboxing","The skill is highly specific to the RenoDX project, which may limit its applicability outside that ecosystem, but that is acceptable for a targeted skill.","The SKILL.md does not explicitly mention how to handle sensitive data (e.g., Steam credentials) or avoid exfiltration, but it only reads local metadata and does not request secrets.","Quality score needs review","Permission surface needs review: secrets or environment access, filesystem or document access","Permission surface: secrets or environment access, filesystem or document access"]},"quality_signals":{"model":"v2","star_score":25.03,"usage_score":0,"review_score":5.1,"metadata_score":3,"freshness_score":15},"platforms":["Claude Code"],"use_cases":[{"slug":"research-agents","title":"Research agents","url":"https://www.openagentskill.com/use-cases/research-agents"},{"slug":"workflow-automation","title":"Workflow automation","url":"https://www.openagentskill.com/use-cases/workflow-automation"},{"slug":"sports-analytics","title":"Sports analytics","url":"https://www.openagentskill.com/use-cases/sports-analytics"},{"slug":"testing-qa","title":"Testing and QA","url":"https://www.openagentskill.com/use-cases/testing-qa"}],"stacks":[{"slug":"research-report-agent","title":"Research report agent","url":"https://www.openagentskill.com/collections/research-report-agent"},{"slug":"content-growth-agent","title":"Content growth agent","url":"https://www.openagentskill.com/collections/content-growth-agent"},{"slug":"coding-review-agent","title":"Coding review agent","url":"https://www.openagentskill.com/collections/coding-review-agent"}],"install":"npx skills add clshortfuse/renodx --skill setup-game-mod-dev","install_targets":[{"id":"openagentskill-cli","label":"CLI","title":"OpenAgentSkill CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add clshortfuse-setup-game-mod-dev","description":"Resolve policy, run the source installer safely, and report a verified install receipt.","copyLabel":"Copy command"},{"id":"codex","label":"Codex","title":"Codex install prompt","kind":"agent-prompt","value":"Install the \"setup-game-mod-dev\" agent skill from https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: RenoDX workflow for setting up or resuming game mod development with Clang debug builds, DevKit, MCP bridge, ReShade game-folder links, live shader paths, per-game addon scaffolds, metadata, shader dump/decompile baselines, and verification. Use when starting a new src/games/{game} mod, continuing game-specific addon work, configuring DevKit for a game, or turning DevKit findings into a real mod. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"clshortfuse-setup-game-mod-dev\",\"task\":\"Install setup-game-mod-dev\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Give Codex a repo-aware install prompt when the skill is not available through a local CLI.","copyLabel":"Copy prompt"},{"id":"claude-code","label":"Claude Code","title":"Claude Code skill prompt","kind":"agent-prompt","value":"Add \"setup-game-mod-dev\" as a Claude Code skill from https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: RenoDX workflow for setting up or resuming game mod development with Clang debug builds, DevKit, MCP bridge, ReShade game-folder links, live shader paths, per-game addon scaffolds, metadata, shader dump/decompile baselines, and verification. Use when starting a new src/games/{game} mod, continuing game-specific addon work, configuring DevKit for a game, or turning DevKit findings into a real mod. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"clshortfuse-setup-game-mod-dev\",\"task\":\"Install setup-game-mod-dev\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this prompt to ask Claude Code to add the skill and explain the local activation steps.","copyLabel":"Copy prompt"},{"id":"cursor","label":"Cursor","title":"Cursor rule prompt","kind":"agent-prompt","value":"Turn \"setup-game-mod-dev\" from https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: RenoDX workflow for setting up or resuming game mod development with Clang debug builds, DevKit, MCP bridge, ReShade game-folder links, live shader paths, per-game addon scaffolds, metadata, shader dump/decompile baselines, and verification. Use when starting a new src/games/{game} mod, continuing game-specific addon work, configuring DevKit for a game, or turning DevKit findings into a real mod. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"clshortfuse-setup-game-mod-dev\",\"task\":\"Install setup-game-mod-dev\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this when installing as Cursor project rules or reusable agent instructions.","copyLabel":"Copy prompt"}],"repository":"https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev","github_repo":"clshortfuse/renodx","version":"1.0.0","license":"MIT","urls":{"web":"https://www.openagentskill.com/skills/clshortfuse-setup-game-mod-dev","repository":"https://github.com/clshortfuse/renodx/tree/main/.agents/skills/setup-game-mod-dev","api":"/api/agent/skills/clshortfuse-setup-game-mod-dev","install_api":"/api/skills/clshortfuse-setup-game-mod-dev/install"},"meta":{"created_at":"2026-09-06T06:05:43.431043+00:00","updated_at":"2026-09-07T06:05:13.875452+00:00","agent_friendly":true}}