@claudinho/cli 0.7.0 → 0.8.0
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 +5 -1
- package/dist/index.js +1321 -228
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -22,10 +22,11 @@ claudinho today [date] # a day's fixtures in your timezone (default: today)
|
|
|
22
22
|
claudinho live # matches in play right now
|
|
23
23
|
claudinho next [TEAM] # a team's next fixture + countdown (default: $CLAUDINHO_TEAM)
|
|
24
24
|
claudinho table [GROUP] # live cumulative group standings (default: all groups)
|
|
25
|
+
claudinho bracket [STAGE] # knockout bracket (R32, R16, QF, SF, 3P, F); --tree for ASCII tree
|
|
25
26
|
claudinho match <id> # a single match's detail
|
|
26
27
|
claudinho markets [target] # prediction-market signals: today | <date> | <id> | next <TEAM>
|
|
27
28
|
# (next prefers the team's IN-PLAY match while one is live)
|
|
28
|
-
claudinho share [target] # copy-pasteable snippet: today | live | <date> | <id> | next <TEAM> | table <GROUP>
|
|
29
|
+
claudinho share [target] # copy-pasteable snippet: today | live | <date> | <id> | next <TEAM> | table <GROUP> | bracket [STAGE]
|
|
29
30
|
claudinho prompt # one compact status line (for statusline/tmux/Starship)
|
|
30
31
|
claudinho init cursor # one-step Cursor setup: statusline + MCP paste (--print for snippets)
|
|
31
32
|
claudinho init claude # one-step Claude Code setup: statusline + hook + MCP one-liner
|
|
@@ -42,6 +43,7 @@ claudinho vibe # a matchday-coder one-liner (#VibingLaVidaLoca)
|
|
|
42
43
|
claudinho today --tz America/Mexico_City --lang es
|
|
43
44
|
claudinho next BRA --tz America/Sao_Paulo --lang pt
|
|
44
45
|
claudinho table A
|
|
46
|
+
claudinho bracket R32 --tree
|
|
45
47
|
claudinho live --json | jq '.matches[].status'
|
|
46
48
|
claudinho today --flavor off # just the facts, no commentary
|
|
47
49
|
claudinho share next MEX --copy # a shareable card, copied to your clipboard
|
|
@@ -112,6 +114,8 @@ claudinho share # today's matches
|
|
|
112
114
|
claudinho share live # matches in play
|
|
113
115
|
claudinho share next MEX # a team's next fixture (+ market read, when reliable)
|
|
114
116
|
claudinho share table A # a group's standings card (facts only, no market line)
|
|
117
|
+
claudinho share bracket # knockout bracket card (facts only, no market line)
|
|
118
|
+
claudinho share bracket R16 # one round only
|
|
115
119
|
claudinho share 760415 # one match by id
|
|
116
120
|
claudinho share next MEX --copy # …and copy it straight to the clipboard
|
|
117
121
|
```
|