@mkterswingman/5mghost-twinkler 0.1.6 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -17,6 +17,10 @@ was unavailable during install; normal AI workflows should start with
|
|
|
17
17
|
Auth defaults to browser OAuth via `twinkler login`. PAT login is an advanced
|
|
18
18
|
fallback with `twinkler login --pat-stdin`.
|
|
19
19
|
|
|
20
|
+
`GET /api/v1/search/advanced` intentionally returns 501 and is not part of the
|
|
21
|
+
public-ready supported surface. Use `/api/v1/search`, rankings, channel, or game
|
|
22
|
+
routes instead.
|
|
23
|
+
|
|
20
24
|
Watch jobs are remembered locally in `~/.mkterswingman/twinkler/jobs.json` so AI
|
|
21
25
|
sessions can recover active and recent jobs without making users remember job
|
|
22
26
|
IDs.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mkterswingman/5mghost-twinkler",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "Lightweight AI helper for the 5mghost Twinkler API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
|
-
"url": "https://github.com/
|
|
14
|
+
"url": "https://github.com/mkterswingman/mcp_projects.git",
|
|
15
15
|
"directory": "5mghost-twinkler/client"
|
|
16
16
|
},
|
|
17
17
|
"bin": {
|
|
@@ -61,6 +61,8 @@ Pick the smallest API that answers the question:
|
|
|
61
61
|
- Broad Twitch leaderboards: `/rankings/channels`, `/rankings/games`,
|
|
62
62
|
`/rankings/teams`.
|
|
63
63
|
- Live CCV/chat sampling: create a watch job instead of polling summary pages.
|
|
64
|
+
- Do not use `/search/advanced`; it intentionally returns 501 and is not part
|
|
65
|
+
of the public-ready supported surface.
|
|
64
66
|
|
|
65
67
|
## Watch Job Layer
|
|
66
68
|
|