Fix help text, add missing descriptions for pipx/mas, add 3 built-in themes#39
Draft
Fix help text, add missing descriptions for pipx/mas, add 3 built-in themes#39
Conversation
…g themes Agent-Logs-Url: https://github.com/neur0map/glazepkg/sessions/7dee8bac-e8c6-4b9c-b61d-c42e45894158 Co-authored-by: neur0map <90535780+neur0map@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update issue tracking with top priorities
Fix help text, add missing descriptions for pipx/mas, add 3 built-in themes
Apr 3, 2026
Contributor
programmersd21
left a comment
There was a problem hiding this comment.
@neur0map pls check it. lgtm :D
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Four top-priority gaps identified in the repo: stale CLI help listing only 13 of 36 managers, two managers with no description support (
pipx,mas), and three themes listed in the roadmap but never shipped.Changes
cmd/gpk/main.go— help textUpdated
Supported managers:to list all 36 managers accurately.internal/manager/pipx.go— addDescribe()Reads
Summaryfrom each tool's.dist-info/METADATAinside its pipx venv — same offline approach asuv.go. RespectsPIPX_HOMEenv var.internal/manager/mas.go— addDescribe()Scan()now stores the numeric App Store ID inPackage.Location.Describe()fans out concurrent iTunes lookup API calls (https://itunes.apple.com/lookup?id=<id>, max 5 goroutines) and trims descriptions to the first line, capped at 200 chars.internal/config/themes/— missing built-in themesAdded
solarized-dark.toml,one-dark.toml, androse-pine.toml— all three were listed inROADMAP.mdbut absent from the themes directory.tests/parsing/pipx_mas_describe_test.goNew tests covering METADATA Summary extraction, iTunes JSON response parsing, empty-result handling, and the updated
mas.Scan()ID-capture logic.