litclaude-ai 0.3.37 → 0.3.38
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 +9 -0
- package/README.md +6 -6
- package/README_ko-KR.md +6 -6
- package/RELEASE_CHECKLIST.md +7 -7
- package/package.json +1 -1
- package/plugins/litclaude/.claude-plugin/plugin.json +1 -1
- package/plugins/litclaude/bin/litclaude-mcp.js +1 -1
- package/plugins/litclaude/skills/lit-scientific-visualization/SKILL.md +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.38 - 2026-08-02 — figure output safety
|
|
4
|
+
|
|
5
|
+
- `lit-scientific-visualization` now requires an explicit, user-approved output
|
|
6
|
+
path and forbids overwriting a figure the task did not create. The immutable
|
|
7
|
+
vendor examples it defers to save to fixed names (`figure1.pdf`, `figure1.png`,
|
|
8
|
+
`multi_panel.pdf`), and figures are written through Bash rather than the file
|
|
9
|
+
tools, so the harness read-before-write guard never sees them — copying an
|
|
10
|
+
example literally could clobber a file in the user's working directory.
|
|
11
|
+
|
|
3
12
|
## Unreleased — `lit-comprehend` explainer artifacts
|
|
4
13
|
|
|
5
14
|
- Add the `lit-comprehend` skill, the `/litclaude:lit-comprehend` command, and the
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
</p>
|
|
10
10
|
<p align="center">
|
|
11
11
|
<img src="https://img.shields.io/badge/npm-litclaude--ai-cb3837" />
|
|
12
|
-
<img src="https://img.shields.io/badge/version-0.3.
|
|
12
|
+
<img src="https://img.shields.io/badge/version-0.3.38-2ea44f" />
|
|
13
13
|
<img src="https://img.shields.io/badge/Claude%20Code-plugin-blueviolet" />
|
|
14
14
|
<img src="https://img.shields.io/badge/license-MIT-blue" />
|
|
15
15
|
</p>
|
|
@@ -174,18 +174,18 @@ cd /tmp
|
|
|
174
174
|
npx --yes litclaude-ai@latest install
|
|
175
175
|
```
|
|
176
176
|
|
|
177
|
-
`0.3.
|
|
177
|
+
`0.3.38` is the version prepared by this checkout. Registry lookup is authoritative
|
|
178
178
|
for whether that exact version can be installed:
|
|
179
179
|
|
|
180
180
|
```bash
|
|
181
|
-
npm view litclaude-ai@0.3.
|
|
181
|
+
npm view litclaude-ai@0.3.38 version
|
|
182
182
|
```
|
|
183
183
|
|
|
184
|
-
If that lookup returns 0.3.
|
|
184
|
+
If that lookup returns 0.3.38, the exact install is available:
|
|
185
185
|
|
|
186
186
|
```bash
|
|
187
187
|
cd /tmp
|
|
188
|
-
npx --yes litclaude-ai@0.3.
|
|
188
|
+
npx --yes litclaude-ai@0.3.38 install
|
|
189
189
|
```
|
|
190
190
|
|
|
191
191
|
Otherwise, wait for explicit human publication and repeat the lookup before using
|
|
@@ -216,7 +216,7 @@ The installer also sets Claude Code's `statusLine` command to the packaged
|
|
|
216
216
|
LitClaude HUD. A typical no-color render starts like:
|
|
217
217
|
|
|
218
218
|
```text
|
|
219
|
-
[🔥LITCLAUDE v0.3.
|
|
219
|
+
[🔥LITCLAUDE v0.3.38] | O4.8 │ ctx [▎░░] 9%/1000k │ 5h [▏░] 4% ↻2h15m │ 1w [▊░] 35% ↻3d6h │ git main +3 ✓
|
|
220
220
|
```
|
|
221
221
|
|
|
222
222
|
The `↻` suffix is a compact rate-limit reset countdown. It is separated from
|
package/README_ko-KR.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
</p>
|
|
10
10
|
<p align="center">
|
|
11
11
|
<img src="https://img.shields.io/badge/npm-litclaude--ai-cb3837" />
|
|
12
|
-
<img src="https://img.shields.io/badge/version-0.3.
|
|
12
|
+
<img src="https://img.shields.io/badge/version-0.3.38-2ea44f" />
|
|
13
13
|
<img src="https://img.shields.io/badge/Claude%20Code-plugin-blueviolet" />
|
|
14
14
|
<img src="https://img.shields.io/badge/license-MIT-blue" />
|
|
15
15
|
</p>
|
|
@@ -183,18 +183,18 @@ cd /tmp
|
|
|
183
183
|
npx --yes litclaude-ai@latest install
|
|
184
184
|
```
|
|
185
185
|
|
|
186
|
-
`0.3.
|
|
186
|
+
`0.3.38`은 이 checkout에서 준비 중인 version입니다. exact version의 설치 가능
|
|
187
187
|
여부에는 registry 조회 결과를 authoritative한 기준으로 사용합니다.
|
|
188
188
|
|
|
189
189
|
```bash
|
|
190
|
-
npm view litclaude-ai@0.3.
|
|
190
|
+
npm view litclaude-ai@0.3.38 version
|
|
191
191
|
```
|
|
192
192
|
|
|
193
|
-
조회 결과가 0.3.
|
|
193
|
+
조회 결과가 0.3.38이면 exact install을 사용할 수 있습니다.
|
|
194
194
|
|
|
195
195
|
```bash
|
|
196
196
|
cd /tmp
|
|
197
|
-
npx --yes litclaude-ai@0.3.
|
|
197
|
+
npx --yes litclaude-ai@0.3.38 install
|
|
198
198
|
```
|
|
199
199
|
|
|
200
200
|
그렇지 않으면 명시적인 human publication을 기다립니다. 게시 후 조회를 다시 실행해
|
|
@@ -225,7 +225,7 @@ installer는 Claude Code의 `statusLine` command도 packaged LitClaude HUD로
|
|
|
225
225
|
설정합니다. 색상을 제거한 예시는 다음처럼 시작합니다.
|
|
226
226
|
|
|
227
227
|
```text
|
|
228
|
-
[🔥LITCLAUDE v0.3.
|
|
228
|
+
[🔥LITCLAUDE v0.3.38] | O4.8 │ ctx [▎░░] 9%/1000k │ 5h [▏░] 4% ↻2h15m │ 1w [▊░] 35% ↻3d6h │ git main +3 ✓
|
|
229
229
|
```
|
|
230
230
|
|
|
231
231
|
`↻` 표시는 rate-limit reset까지 남은 시간을 짧게 보여주는 countdown입니다.
|
package/RELEASE_CHECKLIST.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# LitClaude Release Checklist
|
|
2
2
|
|
|
3
|
-
Status: `litclaude-ai@0.3.
|
|
3
|
+
Status: `litclaude-ai@0.3.38` is the current release candidate — exact canonical
|
|
4
4
|
frontend corpus plus Claude-native `autoresearch`, `autoconference`, and `wikify`
|
|
5
5
|
workflow-family integration. It byte-pins the frontend library, legal companions,
|
|
6
6
|
family source closures, and adapters through independent commitments and package
|
|
@@ -45,9 +45,9 @@ side-effect-free, the launcher starts only a separate Claude Code
|
|
|
45
45
|
print/background worker, and the release preserves the Korean polishing
|
|
46
46
|
command, strict multi-agent review pipeline, fidelity guardrails, package
|
|
47
47
|
hygiene checks, native route gates, and safe start-work handoff behavior.
|
|
48
|
-
`package.json` is aligned to `0.3.
|
|
49
|
-
`plugins/litclaude/.claude-plugin/plugin.json` is aligned to `0.3.
|
|
50
|
-
plugin-local MCP server reports `0.3.
|
|
48
|
+
`package.json` is aligned to `0.3.38`,
|
|
49
|
+
`plugins/litclaude/.claude-plugin/plugin.json` is aligned to `0.3.38`, and the
|
|
50
|
+
plugin-local MCP server reports `0.3.38`.
|
|
51
51
|
|
|
52
52
|
This release carries the v0.2.2 Dynamic workflow hardening surfaces:
|
|
53
53
|
`/dynamic-workflow`, `workflow-check --json`, native `/goal` fallback guidance,
|
|
@@ -280,9 +280,9 @@ checkout and from an isolated install of the packed tarball:
|
|
|
280
280
|
Before requesting publication approval, confirm these artifacts from the current
|
|
281
281
|
checkout:
|
|
282
282
|
|
|
283
|
-
- `package.json` version is `0.3.
|
|
284
|
-
- `plugins/litclaude/.claude-plugin/plugin.json` version is `0.3.
|
|
285
|
-
- `plugins/litclaude/bin/litclaude-mcp.js` reports server version `0.3.
|
|
283
|
+
- `package.json` version is `0.3.38`.
|
|
284
|
+
- `plugins/litclaude/.claude-plugin/plugin.json` version is `0.3.38`.
|
|
285
|
+
- `plugins/litclaude/bin/litclaude-mcp.js` reports server version `0.3.38`.
|
|
286
286
|
- Prompt-hook tests cover bundled `SKILL.md` body injection for bare `hyperplan`, `litresearch`, `lit research`, `init-deep`, and explicit leading `$start-work`; diagnostic/copy mentions stay inert while leading natural-language `lit start work` stays BLOCKED.
|
|
287
287
|
- `lit search` and `lit query` route to `/litclaude:litresearch` without activating on slash mentions, code spans, or non-lit prompts.
|
|
288
288
|
- Litresearch web lanes require public API/feed preference, validator-first checks, route traces, prompt-injection quarantine, and honest auth/paywall/private-data stop reasons.
|
package/package.json
CHANGED
|
@@ -49,7 +49,8 @@ verdicts: [PASS, DEGRADED, FAIL, BLOCKED]
|
|
|
49
49
|
5. Insert both the installed source root's `scripts/` and `assets/` directories into Python's module search path. Import `rcparams` and export helpers from `scripts/`, and import `color_palettes` from `assets/`; adding only `scripts/` is incomplete because the immutable source's palette example imports `color_palettes` as a top-level module. Resolve `.mplstyle` resources from that same `assets/` directory.
|
|
50
50
|
6. Validate the data semantics before choosing a chart. Independent observations remain scatter-only; a line requires an ordered trajectory or justified model fit.
|
|
51
51
|
7. Generate the smallest correct figure, export the requested vector and/or 600+ DPI raster artifacts, and inspect layout, clipping, legends, axes, labels, accessibility, and file integrity.
|
|
52
|
-
8.
|
|
52
|
+
8. Save to an explicit output path the user chose or approved. The immutable source examples save to fixed names such as `figure1.pdf`, `figure1.png`, and `multi_panel.pdf`; copying those literally writes into the user's working directory. Never overwrite an existing file that this task did not create — check first, and ask when the intended name is already taken.
|
|
53
|
+
9. Report dependency status, exact outputs, verification observations, and residual limitations.
|
|
53
54
|
|
|
54
55
|
## #contract.outputs
|
|
55
56
|
|