From 59f12d125384defe4c053374d089100ab7051e69 Mon Sep 17 00:00:00 2001 From: fOuttaMyPaint Date: Fri, 24 Apr 2026 22:46:04 -0400 Subject: [PATCH] feat: align with ecosystem standards v1.7.0 and add drift-check workflow Bumps standards-version signals across all skills, rules, and agent context files from 1.6.3 to 1.7.0 to align with the meta-repo's v1.7 standards generation. Adds .github/workflows/drift-check.yml as a standalone workflow that runs the meta-repo's drift checker against this repo's checkout on every PR and push to main. Standalone rather than integrated into existing CI workflows, matching the pattern established in CFX canary (TMHSDigital/CFX-Developer-Tools#4). Phase 2 Session D rollout. Parallel batch following the validated canary pattern. See TMHSDigital/Developer-Tools-Directory#1 Phase 2 Session D. Signed-off-by: 154358121+TMHSDigital@users.noreply.github.com Made-with: Cursor --- .github/workflows/drift-check.yml | 21 ++++++++++++++++++++ AGENTS.md | 2 +- CLAUDE.md | 2 +- rules/steam-api-error-handling.mdc | 2 +- rules/steam-api-key-usage.mdc | 2 +- rules/steam-appid-validation.mdc | 2 +- rules/steam-build-config-validation.mdc | 2 +- rules/steam-deck-compat.mdc | 2 +- rules/steam-launch-options-check.mdc | 2 +- rules/steam-network-security.mdc | 2 +- rules/steam-save-compat.mdc | 2 +- rules/steamworks-secrets.mdc | 2 +- skills/steam-achievement-designer/SKILL.md | 2 +- skills/steam-anticheat-integration/SKILL.md | 2 +- skills/steam-api-reference/SKILL.md | 2 +- skills/steam-bug-report-template/SKILL.md | 2 +- skills/steam-build-automation/SKILL.md | 2 +- skills/steam-cloud-saves/SKILL.md | 2 +- skills/steam-community-management/SKILL.md | 2 +- skills/steam-dlc-expansion-planning/SKILL.md | 2 +- skills/steam-friends-social/SKILL.md | 2 +- skills/steam-game-comparison/SKILL.md | 2 +- skills/steam-input-controller/SKILL.md | 2 +- skills/steam-inventory-economy/SKILL.md | 2 +- skills/steam-leaderboards/SKILL.md | 2 +- skills/steam-market-research/SKILL.md | 2 +- skills/steam-migration-guide/SKILL.md | 2 +- skills/steam-multiplayer-networking/SKILL.md | 2 +- skills/steam-player-stats/SKILL.md | 2 +- skills/steam-playtest-setup/SKILL.md | 2 +- skills/steam-price-history/SKILL.md | 2 +- skills/steam-pricing-strategy/SKILL.md | 2 +- skills/steam-profile-lookup/SKILL.md | 2 +- skills/steam-release-checklist/SKILL.md | 2 +- skills/steam-review-analysis/SKILL.md | 2 +- skills/steam-steamcmd-helper/SKILL.md | 2 +- skills/steam-store-lookup/SKILL.md | 2 +- skills/steam-store-page-optimizer/SKILL.md | 2 +- skills/steam-testing-sandbox/SKILL.md | 2 +- skills/steam-wishlist-estimates/SKILL.md | 2 +- skills/steam-workshop-helper/SKILL.md | 2 +- skills/steamworks-app-config/SKILL.md | 2 +- 42 files changed, 62 insertions(+), 41 deletions(-) create mode 100644 .github/workflows/drift-check.yml diff --git a/.github/workflows/drift-check.yml b/.github/workflows/drift-check.yml new file mode 100644 index 0000000..29d5abf --- /dev/null +++ b/.github/workflows/drift-check.yml @@ -0,0 +1,21 @@ +name: Ecosystem drift check + +on: + pull_request: + branches: [main] + push: + branches: [main] + workflow_dispatch: + +jobs: + drift-check: + name: Ecosystem drift check + runs-on: ubuntu-latest + permissions: + contents: read + steps: + - uses: actions/checkout@v5 + - uses: TMHSDigital/Developer-Tools-Directory/.github/actions/drift-check@v1.7 + with: + mode: self + format: gh-summary diff --git a/AGENTS.md b/AGENTS.md index 1630c03..a554c8e 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,4 +1,4 @@ - + # AGENTS.md diff --git a/CLAUDE.md b/CLAUDE.md index 1a4f5cc..7a4ca33 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -1,4 +1,4 @@ - + # CLAUDE.md diff --git a/rules/steam-api-error-handling.mdc b/rules/steam-api-error-handling.mdc index 2acb0bd..45bd770 100644 --- a/rules/steam-api-error-handling.mdc +++ b/rules/steam-api-error-handling.mdc @@ -7,7 +7,7 @@ globs: - "**/*.hpp" - "**/*.cs" - "**/*.gd" -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam API Error Handling diff --git a/rules/steam-api-key-usage.mdc b/rules/steam-api-key-usage.mdc index 33e88d2..6650145 100644 --- a/rules/steam-api-key-usage.mdc +++ b/rules/steam-api-key-usage.mdc @@ -9,7 +9,7 @@ globs: - "**/*.ts" - "**/*.yml" - "**/*.yaml" -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Prefer Steam MCP Tools Over Raw API Calls diff --git a/rules/steam-appid-validation.mdc b/rules/steam-appid-validation.mdc index eeec3db..a875b04 100644 --- a/rules/steam-appid-validation.mdc +++ b/rules/steam-appid-validation.mdc @@ -6,7 +6,7 @@ globs: - "**/*.vdf" - "**/steamcmd*" - "**/*steam*config*" -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam App ID Validation diff --git a/rules/steam-build-config-validation.mdc b/rules/steam-build-config-validation.mdc index 062f87f..69bbd7e 100644 --- a/rules/steam-build-config-validation.mdc +++ b/rules/steam-build-config-validation.mdc @@ -5,7 +5,7 @@ globs: - "**/*.vdf" - "**/app_build*" - "**/depot_build*" -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Build Config Validation diff --git a/rules/steam-deck-compat.mdc b/rules/steam-deck-compat.mdc index 7e0ce0f..0f8471c 100644 --- a/rules/steam-deck-compat.mdc +++ b/rules/steam-deck-compat.mdc @@ -11,7 +11,7 @@ globs: - "**/*.cfg" - "**/*.ini" - "**/*.json" -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Deck Compatibility diff --git a/rules/steam-launch-options-check.mdc b/rules/steam-launch-options-check.mdc index dc1eb85..346d377 100644 --- a/rules/steam-launch-options-check.mdc +++ b/rules/steam-launch-options-check.mdc @@ -6,7 +6,7 @@ globs: - "**/*launch*" - "**/*config*.json" - "**/*config*.cfg" -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Launch Options Check diff --git a/rules/steam-network-security.mdc b/rules/steam-network-security.mdc index a0a3ac4..0c4475d 100644 --- a/rules/steam-network-security.mdc +++ b/rules/steam-network-security.mdc @@ -7,7 +7,7 @@ globs: - "**/*.hpp" - "**/*.cs" - "**/*.gd" -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Network Security diff --git a/rules/steam-save-compat.mdc b/rules/steam-save-compat.mdc index fb0670e..b997b9e 100644 --- a/rules/steam-save-compat.mdc +++ b/rules/steam-save-compat.mdc @@ -9,7 +9,7 @@ globs: - "**/*.gd" - "**/*.json" - "**/*.cfg" -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Save File Compatibility diff --git a/rules/steamworks-secrets.mdc b/rules/steamworks-secrets.mdc index bd26297..bb33a6f 100644 --- a/rules/steamworks-secrets.mdc +++ b/rules/steamworks-secrets.mdc @@ -1,7 +1,7 @@ --- description: Prevent committing Steamworks publisher API keys, partner credentials, or sensitive authentication tokens. Flag files containing Steamworks secret patterns before they are committed. alwaysApply: true -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steamworks Secrets Protection diff --git a/skills/steam-achievement-designer/SKILL.md b/skills/steam-achievement-designer/SKILL.md index ed70110..2d9ad6f 100644 --- a/skills/steam-achievement-designer/SKILL.md +++ b/skills/steam-achievement-designer/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-achievement-designer description: Design and document Steam achievements. Helps structure achievement definitions (API name, display name, description, icon requirements, hidden flag) and generates the VDF/JSON config snippets for Steamworks upload. Use when planning or implementing achievements. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Achievement Designer diff --git a/skills/steam-anticheat-integration/SKILL.md b/skills/steam-anticheat-integration/SKILL.md index eb7f878..407b130 100644 --- a/skills/steam-anticheat-integration/SKILL.md +++ b/skills/steam-anticheat-integration/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-anticheat-integration description: Integrate anti-cheat solutions with Steam games. Covers EasyAntiCheat (EAC), BattlEye, and VAC setup, Proton/Linux compatibility, Steam Deck considerations, and custom anti-cheat patterns. Use when adding anti-cheat protection to a multiplayer Steam game. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Anti-Cheat Integration diff --git a/skills/steam-api-reference/SKILL.md b/skills/steam-api-reference/SKILL.md index 61fa53e..c3cdd45 100644 --- a/skills/steam-api-reference/SKILL.md +++ b/skills/steam-api-reference/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-api-reference description: Search and retrieve Steam Web API and Steamworks SDK documentation. Returns endpoint signatures, parameter descriptions, and code examples. Use when the user needs to call a Steam API, wants to know available endpoints, or is integrating Steamworks SDK methods. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam API Reference diff --git a/skills/steam-bug-report-template/SKILL.md b/skills/steam-bug-report-template/SKILL.md index 40dd2bf..81e6c03 100644 --- a/skills/steam-bug-report-template/SKILL.md +++ b/skills/steam-bug-report-template/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-bug-report-template description: Generate structured bug report templates for Steam games. Covers report structure, Steam system info integration, crash dump guidance, known issues tracking, and forum integration. Use when setting up bug reporting workflows or helping players submit useful reports. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Bug Report Template diff --git a/skills/steam-build-automation/SKILL.md b/skills/steam-build-automation/SKILL.md index 18ac95b..9f849f4 100644 --- a/skills/steam-build-automation/SKILL.md +++ b/skills/steam-build-automation/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-build-automation description: Automate Steam builds with SteamPipe CI/CD integration. Covers GitHub Actions, GitLab CI, and Jenkins pipelines for depot uploads, beta branch management, and Docker-containerized builds. Use when setting up automated Steam build pipelines or configuring CI/CD for Steamworks distribution. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Build Automation diff --git a/skills/steam-cloud-saves/SKILL.md b/skills/steam-cloud-saves/SKILL.md index 809cec1..d273496 100644 --- a/skills/steam-cloud-saves/SKILL.md +++ b/skills/steam-cloud-saves/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-cloud-saves description: Implement Steam Cloud save functionality. Covers ISteamRemoteStorage for manual cloud saves, Auto-Cloud configuration, conflict resolution, and quota management. Use when adding cloud save support to a game or debugging cloud sync issues. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Cloud Saves diff --git a/skills/steam-community-management/SKILL.md b/skills/steam-community-management/SKILL.md index 0d3bbd8..0b3acfe 100644 --- a/skills/steam-community-management/SKILL.md +++ b/skills/steam-community-management/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-community-management description: Post-launch community management for Steam games. Covers announcements, events, discussion forum moderation, update post templates, and Community Hub configuration. Use when managing player communication, creating events, or setting up community channels. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Community Management diff --git a/skills/steam-dlc-expansion-planning/SKILL.md b/skills/steam-dlc-expansion-planning/SKILL.md index c5c0d41..e8536b7 100644 --- a/skills/steam-dlc-expansion-planning/SKILL.md +++ b/skills/steam-dlc-expansion-planning/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-dlc-expansion-planning description: Plan and configure DLC, expansions, and post-launch content for Steam games. Covers DLC App ID creation, depot setup, season passes, content cadence, pricing tiers, and in-game ownership checks. Use when planning downloadable content or post-launch monetization. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam DLC & Expansion Planning diff --git a/skills/steam-friends-social/SKILL.md b/skills/steam-friends-social/SKILL.md index 579e5fd..482652c 100644 --- a/skills/steam-friends-social/SKILL.md +++ b/skills/steam-friends-social/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-friends-social description: Integrate Steam social features into your game. Covers friends list, rich presence, Steam Overlay, game invites, avatars, and persona names via ISteamFriends. Use when building social features, showing friends in-game, or setting up rich presence strings. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Friends & Social diff --git a/skills/steam-game-comparison/SKILL.md b/skills/steam-game-comparison/SKILL.md index 049f591..85acfe7 100644 --- a/skills/steam-game-comparison/SKILL.md +++ b/skills/steam-game-comparison/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-game-comparison description: Compare two or more Steam games side by side. Fetches store data and player counts for multiple titles and formats a comparison table. Use when comparing game prices, reviews, player counts, or features for competitive analysis, purchase decisions, or market research. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Game Comparison diff --git a/skills/steam-input-controller/SKILL.md b/skills/steam-input-controller/SKILL.md index 64d40d4..cbeab88 100644 --- a/skills/steam-input-controller/SKILL.md +++ b/skills/steam-input-controller/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-input-controller description: Integrate Steam Input for controller support. Covers ISteamInput for detecting controllers, configuring action sets, binding actions, and retrieving button glyphs. Use when adding controller support, configuring input for Steam Deck, or implementing action-based input systems. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Input / Controller Support diff --git a/skills/steam-inventory-economy/SKILL.md b/skills/steam-inventory-economy/SKILL.md index c73f79a..c5527fd 100644 --- a/skills/steam-inventory-economy/SKILL.md +++ b/skills/steam-inventory-economy/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-inventory-economy description: Implement Steam Inventory and in-game economy. Covers ISteamInventory for item management, ISteamMicroTxn for in-game purchases, inventory schema definition, and Web API queries. Use when adding items, loot, microtransactions, or a player-facing item store to a game. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Inventory & Economy diff --git a/skills/steam-leaderboards/SKILL.md b/skills/steam-leaderboards/SKILL.md index 30c2da7..5e65d62 100644 --- a/skills/steam-leaderboards/SKILL.md +++ b/skills/steam-leaderboards/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-leaderboards description: Implement and query Steam Leaderboards. Covers creating leaderboards, uploading scores, downloading entries (global, friends, around-user), and Web API queries. Use when adding leaderboards to a game or querying leaderboard data. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Leaderboards diff --git a/skills/steam-market-research/SKILL.md b/skills/steam-market-research/SKILL.md index d6fb4e8..ea4e629 100644 --- a/skills/steam-market-research/SKILL.md +++ b/skills/steam-market-research/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-market-research description: Genre trend analysis, tag popularity, competitor identification, and market gap analysis using Steam store data. Use when evaluating a game concept's market fit, scouting competitors, or analyzing genre saturation. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Market Research diff --git a/skills/steam-migration-guide/SKILL.md b/skills/steam-migration-guide/SKILL.md index 2ee1cea..0ceb8be 100644 --- a/skills/steam-migration-guide/SKILL.md +++ b/skills/steam-migration-guide/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-migration-guide description: Guide for migrating games to Steam from other platforms (Epic, GOG, itch.io) or integrating Steamworks across engines (Unity, Unreal, Godot). Covers feature parity mapping, SDK integration steps, store page strategy, and technical migration checklists. Use when porting an existing game to Steam or adding Steamworks to a multi-platform title. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Migration Guide diff --git a/skills/steam-multiplayer-networking/SKILL.md b/skills/steam-multiplayer-networking/SKILL.md index 6ec5453..fd5f8ff 100644 --- a/skills/steam-multiplayer-networking/SKILL.md +++ b/skills/steam-multiplayer-networking/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-multiplayer-networking description: Integrate Steam multiplayer networking into your game. Covers lobby creation, matchmaking, Steam Networking Sockets (relay), dedicated game servers, and auth tickets. Use when building multiplayer features, setting up lobbies, or implementing peer-to-peer or server-based networking with Steamworks. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Multiplayer Networking diff --git a/skills/steam-player-stats/SKILL.md b/skills/steam-player-stats/SKILL.md index 704832d..8c75516 100644 --- a/skills/steam-player-stats/SKILL.md +++ b/skills/steam-player-stats/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-player-stats description: Look up player and game statistics including player counts, achievement stats, leaderboards, and user game libraries for public profiles. Use when analyzing game performance, checking player engagement, or building features that consume player data. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Player Stats diff --git a/skills/steam-playtest-setup/SKILL.md b/skills/steam-playtest-setup/SKILL.md index 560ee65..d5f4764 100644 --- a/skills/steam-playtest-setup/SKILL.md +++ b/skills/steam-playtest-setup/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-playtest-setup description: Configure Steam Playtest for pre-release testing. Covers playtest App ID creation, open vs NDA playtests, key distribution, signup page setup, feedback collection, and transition to Early Access or launch. Use when setting up player testing before or during Early Access. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Playtest Setup diff --git a/skills/steam-price-history/SKILL.md b/skills/steam-price-history/SKILL.md index 9a40f6b..6fca54a 100644 --- a/skills/steam-price-history/SKILL.md +++ b/skills/steam-price-history/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-price-history description: Analyze pricing trends, sale history, regional pricing differences, and price-to-review value scoring for Steam games. Use when evaluating pricing strategy, comparing regional costs, or identifying sale patterns. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Price History diff --git a/skills/steam-pricing-strategy/SKILL.md b/skills/steam-pricing-strategy/SKILL.md index 6fead9d..67838eb 100644 --- a/skills/steam-pricing-strategy/SKILL.md +++ b/skills/steam-pricing-strategy/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-pricing-strategy description: Data-driven pricing strategy for Steam games. Covers regional pricing, launch discounts, sale participation, bundles, free-to-play conversion, and price change rules. Use when setting or adjusting game pricing on Steam. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Pricing Strategy diff --git a/skills/steam-profile-lookup/SKILL.md b/skills/steam-profile-lookup/SKILL.md index eec155b..f1fd909 100644 --- a/skills/steam-profile-lookup/SKILL.md +++ b/skills/steam-profile-lookup/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-profile-lookup description: Look up any Steam user's public profile. Fetch player summaries, owned games with playtime, recent activity, Steam level, badges, and friend lists. Use when someone wants to check a Steam profile, see their own stats, or look up another player. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Profile Lookup diff --git a/skills/steam-release-checklist/SKILL.md b/skills/steam-release-checklist/SKILL.md index d628c72..95475a4 100644 --- a/skills/steam-release-checklist/SKILL.md +++ b/skills/steam-release-checklist/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-release-checklist description: Pre-release validation checklist for Steam games. Covers store page completeness, depot configuration, achievements, cloud saves, Steam Deck compatibility, pricing, and launch readiness. Use when preparing to launch or update a game on Steam. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Release Checklist diff --git a/skills/steam-review-analysis/SKILL.md b/skills/steam-review-analysis/SKILL.md index 13bdf9a..66e7109 100644 --- a/skills/steam-review-analysis/SKILL.md +++ b/skills/steam-review-analysis/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-review-analysis description: Fetch and analyze Steam game reviews. Sentiment breakdown, common complaints, comparison across updates, language distribution, and review volume trends. Use when evaluating player feedback, analyzing competitor reception, or investigating review bombing. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Review Analysis diff --git a/skills/steam-steamcmd-helper/SKILL.md b/skills/steam-steamcmd-helper/SKILL.md index da2146d..3c777ef 100644 --- a/skills/steam-steamcmd-helper/SKILL.md +++ b/skills/steam-steamcmd-helper/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-steamcmd-helper description: Comprehensive steamcmd scripting reference. Common commands, batch/shell scripts, Docker containerized builds, Steam Guard handling, and troubleshooting. Use when writing steamcmd scripts, automating builds, or debugging steamcmd issues. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam SteamCMD Helper diff --git a/skills/steam-store-lookup/SKILL.md b/skills/steam-store-lookup/SKILL.md index 33bb42e..940f33e 100644 --- a/skills/steam-store-lookup/SKILL.md +++ b/skills/steam-store-lookup/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-store-lookup description: Look up any Steam game or app by name or App ID. Returns store page data including price, description, tags, reviews, release date, and system requirements. Use when the user asks about a Steam game, wants to check competitor pricing, or needs store metadata. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Store Lookup diff --git a/skills/steam-store-page-optimizer/SKILL.md b/skills/steam-store-page-optimizer/SKILL.md index 33f34e2..859dbc3 100644 --- a/skills/steam-store-page-optimizer/SKILL.md +++ b/skills/steam-store-page-optimizer/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-store-page-optimizer description: Optimize Steam store pages for maximum visibility and conversion. Covers capsule image specs, description structure, tag strategy, trailer guidance, demo setup, and screenshot optimization. Use when building or improving a Steam store page. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Store Page Optimizer diff --git a/skills/steam-testing-sandbox/SKILL.md b/skills/steam-testing-sandbox/SKILL.md index cca44c5..e2680b6 100644 --- a/skills/steam-testing-sandbox/SKILL.md +++ b/skills/steam-testing-sandbox/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-testing-sandbox description: Guide for using Steam's development sandbox environment. Covers App ID 480 (SpaceWar) for testing, test account setup, Steam client console commands, Steamworks partner test environments, and testing achievements/leaderboards/inventory without affecting production. Use when setting up a Steamworks development or testing workflow. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Testing Sandbox diff --git a/skills/steam-wishlist-estimates/SKILL.md b/skills/steam-wishlist-estimates/SKILL.md index d6df6ce..b8030bf 100644 --- a/skills/steam-wishlist-estimates/SKILL.md +++ b/skills/steam-wishlist-estimates/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-wishlist-estimates description: Estimate wishlist counts from follower data, review counts, and public signals. Provides conversion rate benchmarks (wishlist-to-sales, review-to-sales) and the Boxleiter method. Use when forecasting launch sales, evaluating pre-release traction, or setting marketing targets. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Wishlist Estimates diff --git a/skills/steam-workshop-helper/SKILL.md b/skills/steam-workshop-helper/SKILL.md index f60a03f..8376a25 100644 --- a/skills/steam-workshop-helper/SKILL.md +++ b/skills/steam-workshop-helper/SKILL.md @@ -1,7 +1,7 @@ --- name: steam-workshop-helper description: Query and manage Steam Workshop items. Search workshop by game, get item details, and document workshop integration patterns. Use when building Workshop support into a game or querying UGC data. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steam Workshop Helper diff --git a/skills/steamworks-app-config/SKILL.md b/skills/steamworks-app-config/SKILL.md index dd0cc97..98d857e 100644 --- a/skills/steamworks-app-config/SKILL.md +++ b/skills/steamworks-app-config/SKILL.md @@ -1,7 +1,7 @@ --- name: steamworks-app-config description: Manage Steamworks app configuration. Query and document depot configs, build configurations, launch options, and DLC setup. Use when working on Steamworks app admin tasks, setting up builds, or documenting deployment configs. -standards-version: 1.6.3 +standards-version: 1.7.0 --- # Steamworks App Config