claudial 0.1.1 → 0.1.3

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 (2) hide show
  1. package/README.md +39 -29
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -46,6 +46,45 @@ takes over:
46
46
 
47
47
  Four seconds of glory, then back to the board.
48
48
 
49
+ ## Claude Code, World Cup edition
50
+
51
+ The whole point. Two commands and your Claude Code becomes a World Cup
52
+ workstation — Claude working on top, every live score ticking in a strip
53
+ below, forever.
54
+
55
+ Needs [tmux](https://github.com/tmux/tmux) (`sudo pacman -S tmux` /
56
+ `sudo apt install tmux` / `brew install tmux`), then:
57
+
58
+ ```bash
59
+ npm install -g claudial
60
+ cat >> ~/.zshrc <<'EOF'
61
+ alias claude-mundial="tmux new-session 'claude' \; split-window -v -l 5 'claudial --ticker' \; select-pane -U"
62
+ EOF
63
+ ```
64
+
65
+ Open a new shell, type `claude-mundial`, and:
66
+
67
+ ```
68
+ ┌──────────────────────────────────────┐
69
+ │ > implement the parser │
70
+ │ │
71
+ │ ⏺ Working… │
72
+ │ │
73
+ ├──────────────────────────────────────┤
74
+ │ ⏺ 67' QAT 0—1 SUI │
75
+ │ ○ BRA—MOR Sun 01:00 │
76
+ └──────────────────────────────────────┘
77
+ ```
78
+
79
+ When a goal goes in, the strip lights up while Claude keeps working.
80
+ (`bash` users: append to `~/.bashrc` instead. Prefer the full board beside
81
+ Claude rather than a strip below? Use
82
+ `split-window -h -l 44 'claudial'` in the alias.)
83
+
84
+ Want the score *inside* Claude Code itself — in its status bar, no tmux at
85
+ all? There's a [statusline integration](extras/statusline/) for that:
86
+ `⚽ QAT 0—1 SUI 67' · main`, refreshed every 15 s.
87
+
49
88
  ## Why a TUI
50
89
 
51
90
  The World Cup happens during work hours somewhere. This sits in a terminal
@@ -78,35 +117,6 @@ Beyond goals, every live match carries its incident feed: yellow cards,
78
117
  substitutions, injury time — and a `⚖ VAR` badge the moment a review starts.
79
118
  Red cards and VAR decisions get the full-screen treatment, same as goals.
80
119
 
81
- ## Run it next to Claude Code
82
-
83
- claudial is built to sit beside [Claude Code](https://claude.com/claude-code)
84
- all day. One command opens both — Claude Code working, the World Cup ticking
85
- in a strip below it:
86
-
87
- ```bash
88
- tmux new-session 'claude' \; split-window -v -l 5 'npx claudial --ticker' \; select-pane -U
89
- ```
90
-
91
- Prefer the full board on the side instead:
92
-
93
- ```bash
94
- tmux new-session 'claude' \; split-window -h -l 44 'npx claudial' \; select-pane -L
95
- ```
96
-
97
- Make it permanent — add to your `~/.zshrc` (or `~/.bashrc`):
98
-
99
- ```bash
100
- alias claude-mundial="tmux new-session 'claude' \; split-window -v -l 5 'npx claudial --ticker' \; select-pane -U"
101
- ```
102
-
103
- Then `claude-mundial` starts your whole World Cup workstation. When a goal
104
- goes in, the strip lights up while Claude keeps working.
105
-
106
- Want the score *inside* Claude Code instead? There's a
107
- [statusline integration](extras/statusline/) that renders live scores in
108
- Claude Code's status bar — `⚽ QAT 0—1 SUI 67' · main`, refreshed every 15 s.
109
-
110
120
  ## Status
111
121
 
112
122
  v1 is being built live during the group stage. Follow the commits.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudial",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Live World Cup 2026 fixtures in your terminal — goal, red-card and VAR takeovers included",
5
5
  "type": "module",
6
6
  "bin": {