Discogs user identity
Skill Nikolasgrizli/discogs-api-skills/discogs-user-identity
Model-agnostic Agent Skills covering the entire public Discogs API (api.discogs.com).
npx -y skills add Nikolasgrizli/discogs-api-skills --skill discogs-user-identityAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Reference for the Discogs user identity and profile endpoints (api.discogs.com). Make sure to use this skill whenever the task involves the authenticated user or a user profile: confirming who a token/OAuth credential belongs to via oauth/identity, reading a user profile, editing your own profile, or listing a user's submissions and contributions to the database. Use oauth/identity as the canonical "is my auth working / who am I" check after wiring up authentication.
SKILL.md
1.3 KB, 203 tokens by cl100k_base, as published. Nobody here has run it
Discogs API — User Identity
Who the credentials belong to, plus public profile data. Editing a profile is per-user (auth required — see [[discogs-authentication]]).
Endpoints
| Method | Path | Purpose |
|---|---|---|
| GET | /oauth/identity | The authenticated user (id, username, etc.) — auth sanity check |
| GET | /users/{username} | A user's profile |
| POST | /users/{username} | Edit your own profile (auth; 403 for others) |
| GET | /users/{username}/submissions | The user's database submissions |
| GET | /users/{username}/contributions{?sort,sort_order} | The user's contributions |
GET /oauth/identity is the standard test that authentication is set up
correctly: a success response identifies the authenticated user.
See reference.md for editable profile fields and responses.