ultracost 0.3.1 → 0.3.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.
- package/CHANGELOG.md +13 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,17 @@ All notable changes to this project are documented here. The format is based on
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.3.2] - 2026-06-14
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- **Slash commands now match the `npx` visual experience.** Each `/ultracost:<verb>` command
|
|
13
|
+
runs the bundled CLI with `env -u NO_COLOR FORCE_COLOR=3`, so the visual kit emits its
|
|
14
|
+
panels, tables, bars, and sparklines in color even though the Bash tool is not a TTY (and
|
|
15
|
+
any ambient `NO_COLOR` is cleared for that one invocation). The command files now instruct
|
|
16
|
+
the model to surface that output as the answer rather than paraphrasing it. (A chat markdown
|
|
17
|
+
code block still can't render ANSI color — color shows in the command-output view; the
|
|
18
|
+
unicode panels/bars read fine either way.)
|
|
19
|
+
|
|
9
20
|
## [0.3.1] - 2026-06-14
|
|
10
21
|
|
|
11
22
|
### Added
|
|
@@ -141,7 +152,8 @@ dependencies, Claude-Code-only, and offline on the hot path.
|
|
|
141
152
|
and tiers whose model is in `neverUse`).
|
|
142
153
|
- `ultracost status`, `ultracost doctor`, `ultracost uninstall`.
|
|
143
154
|
|
|
144
|
-
[Unreleased]: https://github.com/danielkremen818/ultracost/compare/v0.3.
|
|
155
|
+
[Unreleased]: https://github.com/danielkremen818/ultracost/compare/v0.3.2...HEAD
|
|
156
|
+
[0.3.2]: https://github.com/danielkremen818/ultracost/compare/v0.3.1...v0.3.2
|
|
145
157
|
[0.3.1]: https://github.com/danielkremen818/ultracost/compare/v0.3.0...v0.3.1
|
|
146
158
|
[0.3.0]: https://github.com/danielkremen818/ultracost/compare/v0.2.1...v0.3.0
|
|
147
159
|
[0.2.1]: https://github.com/danielkremen818/ultracost/compare/v0.2.0...v0.2.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ultracost",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Per-stage model routing for Claude Code dynamic workflows (ultracode). Quality-first policy, CLAUDE.md rule injection, and a workflow-script guard that catches subagent stages that would silently inherit Opus.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|