gitextract_t1gbyqj_/ ├── .github/ │ └── workflows/ │ └── stale.yml ├── .gitignore ├── CHANGELOG.md ├── CLAUDE.md ├── LICENSE ├── README.md ├── config.schema.json ├── homebridge-ui/ │ ├── public/ │ │ └── index.html │ └── server.js ├── index.js ├── package.json ├── sample-config.json └── src/ ├── constants.js ├── functions.js ├── impulsegenerator.js ├── localApi/ │ ├── message.js │ ├── packets.js │ ├── sgcrypto.js │ ├── simple.js │ ├── structure.js │ └── xboxlocalapi.js ├── mqtt.js ├── restful.js ├── webApi/ │ ├── authentication.js │ ├── providers/ │ │ ├── achievements.js │ │ ├── catalog.js │ │ ├── gameclips.js │ │ ├── messages.js │ │ ├── people.js │ │ ├── pins.js │ │ ├── screenshots.js │ │ ├── social.js │ │ ├── titlehub.js │ │ ├── userpresence.js │ │ └── userstats.js │ └── xboxwebapi.js └── xboxdevice.js