tweakcc 4.0.11 → 4.0.14
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 +3 -1
- package/dist/config-BwBTAn1o.mjs +668 -0
- package/dist/content-ocNQmBNO.mjs +29 -0
- package/dist/index.mjs +11 -11
- package/dist/lib/index.mjs +1 -1
- package/dist/nativeInstallation-Bvgg0pO8.mjs +4 -0
- package/package.json +2 -2
- package/dist/config-ChxM7yMT.mjs +0 -669
- package/dist/content-DgJsD7od.mjs +0 -29
- package/dist/nativeInstallation-CyC73KTI.mjs +0 -4
package/README.md
CHANGED
|
@@ -161,7 +161,7 @@ $ pnpm dlx tweakcc
|
|
|
161
161
|
|
|
162
162
|
tweakcc works by patching Claude Code's minified `cli.js` file, reading customizations from `~/.tweakcc/config.json`. For npm-based installations `cli.js` is modified directly, but for native installations it's extracted from the binary using [node-lief](https://github.com/Piebald-AI/node-lief), patched, and then the binary is repacked. When you update your Claude Code installation, your customizations will be overwritten, but they're remembered in your configuration file, so they can be reapplied by just running `npx tweakcc --apply`.
|
|
163
163
|
|
|
164
|
-
tweakcc is verified to work with Claude Code **2.1.
|
|
164
|
+
tweakcc is verified to work with Claude Code **2.1.162.** In newer or earlier versions various patches might not work. However, if we have the [system prompts for your version](https://github.com/Piebald-AI/tweakcc/tree/main/data/prompts) then system prompt patching is guaranteed to work with that version, even if it's significantly different from the verified CC version—the version number stated above is only relevant for the non-system-prompt patches. We get the latest system prompts within minutes of each new CC release, so unless you're using a CC version older than 2.0.14, your version is supported.
|
|
165
165
|
|
|
166
166
|
You can also create custom patches using tweakcc without having to fork it or open a PR. [`tweakcc adhoc-patch`](#cli-commands) supports using custom scripts that work with native and npm-based installs and that automatically detect your Claude Code installation.
|
|
167
167
|
|
|
@@ -1279,6 +1279,8 @@ For detailed guidelines on development setup, code style, testing, and submittin
|
|
|
1279
1279
|
|
|
1280
1280
|
## Related projects
|
|
1281
1281
|
|
|
1282
|
+
- [**lobotomized-claude-code**](https://github.com/skrabe/lobotomized-claude-code) - System-prompt overrides for Claude Code, tuned for **Claude Opus 4.7**. CC ships every model the same prompt-by-volume Opus 4.5 needed. 4.7 follows instructions literally, gets jumpier on CAPS, and doesn't need the anti-laziness scaffolding. This repo cuts the bulk and rewrites the load-bearing fragments in a register the model actually behaves better under.
|
|
1283
|
+
- [**tweakcc-system-prompts-unnerfed**](https://github.com/BenIsLegit/tweakcc-system-prompts-unnerfed) - Modified Claude Code system prompts that remove the "be brief, be minimal" directives and replace them with instructions to be thorough.
|
|
1282
1284
|
- [**cc-mirror**](https://github.com/numman-ali/cc-mirror) - Create multiple isolated Claude Code variants with custom providers (Z.ai, MiniMax, OpenRouter, LiteLLM). Uses tweakcc to customize system prompts, themes, thinking styles, and toolsets.
|
|
1283
1285
|
|
|
1284
1286
|
Other tools for customizing Claude Code or adding functionality to it:
|