ccsidekick 1.6.4 → 1.7.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 CHANGED
@@ -1,9 +1,14 @@
1
1
  # ccsidekick
2
2
 
3
- A Claude Code status line with an animated, reactive character and a full widget layer. It reads
4
- from disk, so there is no Claude API call and no token spend on the render path. The only network is
5
- an optional weekly currency-rate refresh and an optional account-usage lookup, both off the render
6
- path and disableable.
3
+ **Claude Code status line with a reactive ASCII character, 33 widgets, and 75+ themes.**
4
+
5
+ ![Animated reel cycling through ccsidekick's character packs (Batman, Spider-Man, Yoda, and more), each an ASCII figure in its own theme beside a live Claude Code status line of git, cost, context, and usage with an in-character comment](https://raw.githubusercontent.com/krayong/ccsidekick/main/assets/characters.gif)
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
@@ -245,18 +245,7 @@ var pricing_default = [
245
245
  cache_write_1h: 4,
246
246
  cache_read: 0.2,
247
247
  batch_input: 1,
248
- batch_output: 5,
249
- until: "2026-09-01"
250
- },
251
- {
252
- key: "claude-sonnet-5",
253
- input: 3,
254
- output: 15,
255
- cache_write_5m: 3.75,
256
- cache_write_1h: 6,
257
- cache_read: 0.3,
258
- batch_input: 1.5,
259
- batch_output: 7.5
248
+ batch_output: 5
260
249
  },
261
250
  {
262
251
  key: "claude-sonnet-4-6",
@@ -2662,18 +2662,7 @@ var init_pricing = __esm(() => {
2662
2662
  cache_write_1h: 4,
2663
2663
  cache_read: 0.2,
2664
2664
  batch_input: 1,
2665
- batch_output: 5,
2666
- until: "2026-09-01"
2667
- },
2668
- {
2669
- key: "claude-sonnet-5",
2670
- input: 3,
2671
- output: 15,
2672
- cache_write_5m: 3.75,
2673
- cache_write_1h: 6,
2674
- cache_read: 0.3,
2675
- batch_input: 1.5,
2676
- batch_output: 7.5
2665
+ batch_output: 5
2677
2666
  },
2678
2667
  {
2679
2668
  key: "claude-sonnet-4-6",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccsidekick",
3
- "version": "1.6.4",
3
+ "version": "1.7.0",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "exports": {