@claudinho/cli 0.8.10 → 0.8.11

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.
Files changed (3) hide show
  1. package/README.md +33 -14
  2. package/dist/index.js +1 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,11 +1,6 @@
1
1
  # @claudinho/cli ⚽
2
2
 
3
- **The 2026 men's football tournament, right in your terminal.** Live scores, fixtures, group tables, and market signals — TZ-aware, localized, scriptable.
4
-
5
- > ⚠️ **Not affiliated with, endorsed by, or connected to FIFA or Anthropic.**
6
- > Claudinho is an independent, open-source fan project. It shows factual match
7
- > data (scores, fixtures, standings) with emoji flags only — no logos, crests,
8
- > kits, broadcast footage, or player likenesses.
3
+ **The 2026 men's football tournament, right in your terminal.** Live scores, fixtures, group tables, and market signals — TZ-aware, localized, scriptable. No API key, no signup.
9
4
 
10
5
  ## Install
11
6
 
@@ -15,6 +10,24 @@ npm i -g @claudinho/cli # installs the `claudinho` binary
15
10
  npx @claudinho/cli today
16
11
  ```
17
12
 
13
+ `claudinho today` on a knockout night — penalty shootouts and all:
14
+
15
+ <!-- DEMO: verbatim `claudinho today <date>` from a knockout matchday. Shootouts render
16
+ as 1(3)–1(4). REGENERATE per matchday (capture after the day's games finish, so the
17
+ scores are live and current). Never hand-edit. -->
18
+ ```text
19
+ Matches · 2026-06-29
20
+
21
+ 🇧🇷 Brazil 2–1 Japan 🇯🇵 FT into the history books!
22
+ 🇩🇪 Germany 1(3)–1(4) Paraguay 🇵🇾 FT it's all over!
23
+ 🇳🇱 Netherlands 1(2)–1(3) Morocco 🇲🇦 FT the final whistle blows!
24
+
25
+ Live data: ESPN
26
+ Not affiliated with FIFA or Anthropic.
27
+ ```
28
+
29
+ All 104 fixtures ship bundled, so the schedule works offline; only live scores hit the network.
30
+
18
31
  ## Commands
19
32
 
20
33
  ```bash
@@ -120,18 +133,20 @@ claudinho share 760415 # one match by id
120
133
  claudinho share next MEX --copy # …and copy it straight to the clipboard
121
134
  ```
122
135
 
123
- <!-- DEMO CARD: verbatim output of `claudinho share next USA --tz America/Los_Angeles`.
124
- REGENERATE immediately before merging — the market block is gate-conditional
125
- and the numbers drift. Never hand-edit. -->
136
+ <!-- DEMO CARD: verbatim output of `claudinho share next MEX --tz America/Los_Angeles`.
137
+ REGENERATE before release — the matchup advances each round and any market block
138
+ drifts. Never hand-edit. -->
126
139
  ```text
127
- Next up for United States
140
+ Next up for Mexico
128
141
 
129
- 🇺🇸 United States vs Paraguay 🇵🇾
130
- Jun 12 · 18:00 America/Los_Angeles
131
- SoFi Stadium, Inglewood, California, USA
142
+ 🇲🇽 Mexico vs Ecuador 🇪🇨
143
+ Jun 30 · 18:00 America/Los_Angeles
144
+ Estadio Banorte, Mexico City, Mexico
145
+ Round of 32
132
146
 
147
+ Live data: ESPN
133
148
  #VibingLaVidaLoca · Independent fan project · not affiliated with FIFA or Anthropic.
134
- Try it: npx @claudinho/cli next USA
149
+ Try it: npx @claudinho/cli next MEX
135
150
  ```
136
151
 
137
152
  Snippets are **plain text** (no color codes — they paste cleanly everywhere) and
@@ -225,6 +240,10 @@ from Polymarket; provider attribution and rate limits are respected.
225
240
 
226
241
  MIT © 2026 Arturo Garrido · [source & issues](https://github.com/arturogarrido/claudinho)
227
242
 
243
+ > **Not affiliated with, endorsed by, or connected to FIFA or Anthropic.** An independent,
244
+ > open-source fan project showing factual match data (scores, fixtures, standings) with emoji
245
+ > flags only — no logos, crests, kits, broadcast footage, or player likenesses.
246
+
228
247
  ---
229
248
 
230
249
  _Built while watching the games._ **#VibingLaVidaLoca** ⚽
package/dist/index.js CHANGED
@@ -6319,7 +6319,7 @@ function handlePipeError(stream) {
6319
6319
  }
6320
6320
  handlePipeError(process.stdout);
6321
6321
  handlePipeError(process.stderr);
6322
- var VERSION = "0.8.10";
6322
+ var VERSION = "0.8.11";
6323
6323
  var DISCLAIMER = "Claudinho is an independent fan project. Not affiliated with or endorsed by FIFA or Anthropic.";
6324
6324
  function ctxFrom(cmd) {
6325
6325
  let root = cmd;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claudinho/cli",
3
- "version": "0.8.10",
3
+ "version": "0.8.11",
4
4
  "description": "Live scores, fixtures, group tables, and read-only prediction-market signals for the 2026 men's football tournament — in your terminal, Claude Code, and Cursor CLI statusline. No API keys. Not affiliated with FIFA or Anthropic.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -61,7 +61,7 @@
61
61
  "tsup": "^8.0.0",
62
62
  "typescript": "^5.7.0",
63
63
  "vitest": "^4.1.9",
64
- "@claudinho/core": "0.8.10"
64
+ "@claudinho/core": "0.8.11"
65
65
  },
66
66
  "scripts": {
67
67
  "build": "tsup",