ccsidekick 1.6.3 → 1.6.5
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 +51 -4
- package/dist/ccsidekick-render.js +11 -0
- package/dist/ccsidekick.js +11 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
# ccsidekick
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
**Claude Code status line with a reactive ASCII character, 33 widgets, and 75+ themes.**
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
The character notices what Claude is doing (tests passing, builds breaking, commits landing, a
|
|
8
|
+
struggle and then a recovery) and comments in character. Everything it reads comes off disk, so
|
|
9
|
+
there is no Claude API call and no token spend on the render path. The only network is an optional
|
|
10
|
+
weekly currency-rate refresh and an optional account-usage lookup, both off the render path and
|
|
11
|
+
disableable.
|
|
7
12
|
|
|
8
13
|
```bash
|
|
9
14
|
npx ccsidekick
|
|
@@ -14,6 +19,48 @@ wizard (character, theme, comments), a later run opens the full dashboard. Eithe
|
|
|
14
19
|
Claude config dir and wires the status line and the tool-call hooks into your `settings.json`.
|
|
15
20
|
Remove it with `npx ccsidekick uninstall`.
|
|
16
21
|
|
|
22
|
+
New characters and widgets land regularly.
|
|
23
|
+
[Releases](https://github.com/krayong/ccsidekick/releases) lists what has shipped; set the repo's
|
|
24
|
+
Watch menu to Releases to hear about the next one.
|
|
25
|
+
|
|
26
|
+
## Characters
|
|
27
|
+
|
|
28
|
+
Eighteen packs ship bundled with the engine, so a fresh install has every one of them. There is no
|
|
29
|
+
download step and no network call to pick a character. Fixed mode pins one; random mode rotates a
|
|
30
|
+
roster and picks per session.
|
|
31
|
+
|
|
32
|
+
Barbie, Batman, Ben 10, Darth Vader, Deadpool, Gandalf, Harry Potter, Hello Kitty, Iron Man, James
|
|
33
|
+
Bond, Joker, Naruto, Pikachu, Sherlock Holmes, Shin-chan, Spider-Man, Superman, Yoda.
|
|
34
|
+
|
|
35
|
+
Each pack also registers its own theme, so every character you install adds a palette to the 75+
|
|
36
|
+
built-in ones. See them animated at [ccsidekick.krayong.com](https://ccsidekick.krayong.com).
|
|
37
|
+
|
|
38
|
+
## Author your own character
|
|
39
|
+
|
|
40
|
+
A pack is data, not code: one `pack.json` holding a single ASCII figure, a message library, a theme,
|
|
41
|
+
and its spinner verbs. Nothing to compile, no plugin API. If your favourite character is missing,
|
|
42
|
+
add it.
|
|
43
|
+
|
|
44
|
+
What a pack needs:
|
|
45
|
+
|
|
46
|
+
- **One figure**, at most 9 rows by 25 columns, sourced through the `ascii-art` image-to-ASCII skill
|
|
47
|
+
rather than drawn freehand, crediting the original artist in `attribution`.
|
|
48
|
+
- **A voice**: the message library plus at least 25 in-character spinner verbs.
|
|
49
|
+
- **A theme** (optional), which then becomes selectable by every user rather than only yours.
|
|
50
|
+
|
|
51
|
+
The authoring kit width-normalizes the figure, checks coverage and legibility, and generates the
|
|
52
|
+
pack's README with a live statusline preview in its own theme.
|
|
53
|
+
`bun run pack:lint packages/packs/<name>` gates all of it before you open a pull request.
|
|
54
|
+
|
|
55
|
+
Start at
|
|
56
|
+
[CONTRIBUTING.md](https://github.com/krayong/ccsidekick/blob/main/CONTRIBUTING.md#contributing-a-character-pack).
|
|
57
|
+
The full contract lives in the `pack-author` skill at
|
|
58
|
+
[`.claude/skills/pack-author`](https://github.com/krayong/ccsidekick/blob/main/.claude/skills/pack-author),
|
|
59
|
+
which Claude Code picks up in a clone of this repo, so you can just ask it to author a pack.
|
|
60
|
+
|
|
61
|
+
Would rather just ask? Open a
|
|
62
|
+
[character request](https://github.com/krayong/ccsidekick/issues/new?template=character_request.yml).
|
|
63
|
+
|
|
17
64
|
## Non-interactive setup (for scripts and AI agents)
|
|
18
65
|
|
|
19
66
|
No TTY required. `npx ccsidekick setup` configures and wires everything from flags, so an agent can
|
|
@@ -164,6 +164,17 @@ var pricing_default = [
|
|
|
164
164
|
batch_input: 5,
|
|
165
165
|
batch_output: 25
|
|
166
166
|
},
|
|
167
|
+
{
|
|
168
|
+
key: "claude-opus-5",
|
|
169
|
+
input: 5,
|
|
170
|
+
output: 25,
|
|
171
|
+
cache_write_5m: 6.25,
|
|
172
|
+
cache_write_1h: 10,
|
|
173
|
+
cache_read: 0.5,
|
|
174
|
+
batch_input: 2.5,
|
|
175
|
+
batch_output: 12.5,
|
|
176
|
+
fast_mult: 2
|
|
177
|
+
},
|
|
167
178
|
{
|
|
168
179
|
key: "claude-opus-4-8",
|
|
169
180
|
input: 5,
|
package/dist/ccsidekick.js
CHANGED
|
@@ -2581,6 +2581,17 @@ var init_pricing = __esm(() => {
|
|
|
2581
2581
|
batch_input: 5,
|
|
2582
2582
|
batch_output: 25
|
|
2583
2583
|
},
|
|
2584
|
+
{
|
|
2585
|
+
key: "claude-opus-5",
|
|
2586
|
+
input: 5,
|
|
2587
|
+
output: 25,
|
|
2588
|
+
cache_write_5m: 6.25,
|
|
2589
|
+
cache_write_1h: 10,
|
|
2590
|
+
cache_read: 0.5,
|
|
2591
|
+
batch_input: 2.5,
|
|
2592
|
+
batch_output: 12.5,
|
|
2593
|
+
fast_mult: 2
|
|
2594
|
+
},
|
|
2584
2595
|
{
|
|
2585
2596
|
key: "claude-opus-4-8",
|
|
2586
2597
|
input: 5,
|