tweakcc-fixed 2.6.7 → 2.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
@@ -6,7 +6,7 @@
6
6
 
7
7
  [![npm](https://img.shields.io/npm/v/tweakcc-fixed?color=cb3837&label=npm&logo=npm&style=flat-square)](https://www.npmjs.com/package/tweakcc-fixed)
8
8
  [![downloads](https://img.shields.io/npm/dt/tweakcc-fixed?color=cb3837&style=flat-square)](https://www.npmjs.com/package/tweakcc-fixed)
9
- [![Claude Code](https://img.shields.io/badge/Claude%20Code-2.0.98%20%E2%86%92%202.1.205-d97757?style=flat-square)](https://github.com/anthropics/claude-code)
9
+ [![Claude Code](https://img.shields.io/badge/Claude%20Code-2.0.98%20%E2%86%92%202.1.206-d97757?style=flat-square)](https://github.com/anthropics/claude-code)
10
10
  [![license](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](#credit--license)
11
11
 
12
12
  **[Install](#install) · [Customize](#what-you-can-customize) · [The fork](#what-this-fork-adds) · [How it works](#how-it-works)**
@@ -17,7 +17,7 @@
17
17
 
18
18
  Claude Code only exposes so much through its settings. tweakcc reaches the rest: it patches the installed binary directly — the `cli.js`, and the JavaScript baked into the native Bun build — so you can restyle the interface, rewrite the prompts Claude actually runs on, and change how it behaves. You pick what you want from a terminal UI, apply it in one command, and roll it back whenever you like.
19
19
 
20
- This is **tweakcc-fixed**, a fork of [Piebald's tweakcc](https://github.com/Piebald-AI/tweakcc) that keeps everything the original does and pushes further — roughly twice the prompt coverage, a deeper set of patches, and overrides that reach the native install where upstream stops. More on that [below](#what-this-fork-adds).
20
+ This is **tweakcc-fixed**, a fork of [Piebald's tweakcc](https://github.com/Piebald-AI/tweakcc) that keeps everything the original does and pushes further — over four times the prompt coverage, a deeper set of patches, and overrides that reach the native install where upstream stops. More on that [below](#what-this-fork-adds).
21
21
 
22
22
  ```console
23
23
  $ npx -y tweakcc-fixed@latest --apply
@@ -52,12 +52,12 @@ It works the same on npm and native (Bun-compiled) installs, every change is a t
52
52
 
53
53
  tweakcc-fixed is a strict superset of the original: everything above still applies, on the same latest Claude Code target. What it adds is reach.
54
54
 
55
- The biggest difference is coverage. Its extractor pulls roughly twice the prompt surface upstream does — every model-facing string, including the short ones the base skips which is what makes serious prompt editing possible in the first place.
55
+ The biggest difference is coverage. Its extractor pulls over four times the prompt surface upstream does — every model-facing string at any length: tool results, system reminders, utility-agent prompts, the usage-nudge catalog, and the short fragments the base skips. Every candidate string is classified by its emission site (model-facing vs UI vs internal) with verdicts cached content-addressed, so coverage is complete by construction, not by heuristic. That is what makes serious prompt editing possible in the first place.
56
56
 
57
57
  | | tweakcc-fixed | upstream |
58
58
  | ---------------------------- | :-----------: | :-------: |
59
- | Prompt sites (CC 2.1.205) | **1,555** | 561 |
60
- | Unique prompt IDs | **1,441** | 561 |
59
+ | Prompt sites (CC 2.1.206) | **2,635** | 570 |
60
+ | Unique prompt IDs | **2,439** | 570 |
61
61
  | Patches | **58** | 45 |
62
62
  | Overrides on native installs | **yes** | gated off |
63
63