HxB Steam Achievement Manager Enhanced

A comprehensive Steam library management and achievement tracking tool built for power users who want full control over their gaming profile.

What Is HxB SAM Enhanced?

HxB SAM Enhanced is a desktop application designed to give Steam users deeper insight into their gaming library. It provides a streamlined interface for browsing achievements, tracking progress, and managing your game collection more efficiently than the default Steam client allows.

Key Features

Library Statistics Dashboard

The dashboard aggregates data across your entire game library, showing completion percentages, total playtime breakdowns, and achievement unlock rates. Visual charts help identify which games you've spent the most time on and which still have milestones to reach.

Achievement Explorer

Browse your achievement list for any owned game with rich detail — including unlock descriptions, rarity percentages from the global Steam community, and timestamp tracking for when each achievement was earned.

Profile Export

Export your achievement history and library statistics in multiple formats (JSON, CSV) for personal record-keeping or sharing with friends.

Technical Stack

The app is built with:

  • C# / .NET 8 for the core application logic
  • WPF for the desktop UI with a modern dark theme
  • Steam Web API for fetching public profile and achievement data
  • SQLite for local caching of game metadata
  • // Example: Fetching achievement stats for a game
    

    var response = await steamClient.GetGameAchievements(appId); var unlocked = response.Achievements .Where(a => a.Achieved) .OrderByDescending(a => a.UnlockTime);

    How It Works

  • You provide your Steam profile URL or Steam ID
  • The app fetches your public game list via the Steam Web API
  • Achievement data is loaded and cached locally for fast browsing
  • Statistics are computed and displayed in the dashboard
  • Note: HxB SAM Enhanced only reads publicly available data from the Steam Web API. It requires your profile's game details to be set to "Public" in Steam privacy settings.

    Privacy & Safety

  • The application never asks for your Steam password
  • All data is fetched from official Steam API endpoints
  • No data is sent to third-party servers
  • Local caching means fewer API calls and faster performance
  • Download & Source

    The tool is open-source and available on GitHub. Visit the project page for downloads, documentation, and contribution guidelines.

    Roadmap

  • Achievement comparison tool for friends lists
  • Historical achievement tracking with timeline view
  • Integration with Steam sales for wishlisted games
  • Multi-account support for households