claudial 0.1.0 → 0.1.2

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 +36 -25
  2. package/package.json +24 -6
package/README.md CHANGED
@@ -46,6 +46,42 @@ 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
+ ```bash
56
+ npm install -g claudial
57
+ cat >> ~/.zshrc <<'EOF'
58
+ alias claude-mundial="tmux new-session 'claude' \; split-window -v -l 5 'claudial --ticker' \; select-pane -U"
59
+ EOF
60
+ ```
61
+
62
+ Open a new shell, type `claude-mundial`, and:
63
+
64
+ ```
65
+ ┌──────────────────────────────────────┐
66
+ │ > implement the parser │
67
+ │ │
68
+ │ ⏺ Working… │
69
+ │ │
70
+ ├──────────────────────────────────────┤
71
+ │ ⏺ 67' QAT 0—1 SUI │
72
+ │ ○ BRA—MOR Sun 01:00 │
73
+ └──────────────────────────────────────┘
74
+ ```
75
+
76
+ When a goal goes in, the strip lights up while Claude keeps working.
77
+ (`bash` users: append to `~/.bashrc` instead. Prefer the full board beside
78
+ Claude rather than a strip below? Use
79
+ `split-window -h -l 44 'claudial'` in the alias.)
80
+
81
+ Want the score *inside* Claude Code itself — in its status bar, no tmux at
82
+ all? There's a [statusline integration](extras/statusline/) for that:
83
+ `⚽ QAT 0—1 SUI 67' · main`, refreshed every 15 s.
84
+
49
85
  ## Why a TUI
50
86
 
51
87
  The World Cup happens during work hours somewhere. This sits in a terminal
@@ -78,31 +114,6 @@ Beyond goals, every live match carries its incident feed: yellow cards,
78
114
  substitutions, injury time — and a `⚖ VAR` badge the moment a review starts.
79
115
  Red cards and VAR decisions get the full-screen treatment, same as goals.
80
116
 
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
117
  ## Status
107
118
 
108
119
  v1 is being built live during the group stage. Follow the commits.
package/package.json CHANGED
@@ -1,11 +1,17 @@
1
1
  {
2
2
  "name": "claudial",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Live World Cup 2026 fixtures in your terminal — goal, red-card and VAR takeovers included",
5
5
  "type": "module",
6
- "bin": { "claudial": "dist/index.js" },
7
- "files": ["dist"],
8
- "engines": { "node": ">=18.18" },
6
+ "bin": {
7
+ "claudial": "dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "engines": {
13
+ "node": ">=18.18"
14
+ },
9
15
  "scripts": {
10
16
  "build": "tsc",
11
17
  "dev": "tsx src/index.tsx",
@@ -23,9 +29,21 @@
23
29
  "typescript": "^5.5.0",
24
30
  "vitest": "^2.1.0"
25
31
  },
26
- "keywords": ["worldcup", "world-cup-2026", "tui", "cli", "football", "soccer", "live-scores", "ink"],
32
+ "keywords": [
33
+ "worldcup",
34
+ "world-cup-2026",
35
+ "tui",
36
+ "cli",
37
+ "football",
38
+ "soccer",
39
+ "live-scores",
40
+ "ink"
41
+ ],
27
42
  "license": "MIT",
28
- "repository": { "type": "git", "url": "git+https://github.com/lefProg/claudial.git" },
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "git+https://github.com/lefProg/claudial.git"
46
+ },
29
47
  "homepage": "https://github.com/lefProg/claudial#readme",
30
48
  "bugs": "https://github.com/lefProg/claudial/issues",
31
49
  "author": "Wim Iliano"