tink-harness 1.11.0 → 1.11.1
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/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +4 -0
- package/README.ko.md +1 -1
- package/README.md +2 -2
- package/VERSIONING.md +1 -1
- package/bin/install.js +19 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Tink are tracked here.
|
|
4
4
|
|
|
5
|
+
## [1.11.1] - 2026-06-12
|
|
6
|
+
|
|
7
|
+
- Installer component labels clarified after user confusion: "Claude Code commands (/tink:*)" and "Claude Code skill (operating rules)" now state their role and install path in the label/hint (`.claude/commands/tink/` vs `.claude/skills/tink/`), and Codex skills explicitly say `~/.codex/skills/ (CODEX_HOME)` - the two Claude items no longer look like duplicates, and the Codex item can't be mistaken for a Claude one.
|
|
8
|
+
|
|
5
9
|
## [1.11.0] - 2026-06-12
|
|
6
10
|
|
|
7
11
|
- **Fixed: update wiped run history.** `.tink/maintenance/` record files (`ledger.jsonl`, `friction.jsonl`, `weave-queue.json`) were in the always-overwrite set, so every npx `update` replaced the user's approval ledger and weave/friction signals with empty seeds - silently resetting dashboard usage history. They are now seed-only: created when missing, never overwritten.
|
package/README.ko.md
CHANGED
|
@@ -10,7 +10,7 @@ Tink는 사소하지 않은 모든 에이전트 작업을 눈에 보이는 파
|
|
|
10
10
|
|
|
11
11
|
<sub>Claude Code와 Codex를 위한 작은 하네스 레이어</sub>
|
|
12
12
|
|
|
13
|
-
**최신 패키지:** v1.11.
|
|
13
|
+
**최신 패키지:** v1.11.1 — 한 줄 대시보드: `npx tink-harness dashboard`로 하네스 건강 리포트를 만들고 브라우저로 바로 엽니다. update가 승인 이력·신호 기록을 지우던 심각한 버그를 고쳤고, 설치 항목 라벨(명령 vs skill, 설치 경로 표기)도 명확해졌습니다. 전체 변경 이력은 [CHANGELOG](CHANGELOG.md)를 확인하세요.
|
|
14
14
|
|
|
15
15
|
[English](README.md) · **한국어** · [변경 이력](CHANGELOG.md)
|
|
16
16
|
|
package/README.md
CHANGED
|
@@ -17,14 +17,14 @@
|
|
|
17
17
|
<p><sub>A small harness layer for Claude Code and Codex</sub></p>
|
|
18
18
|
|
|
19
19
|
<p>
|
|
20
|
-
<a href="https://github.com/dotoricode/tink-harness/releases/tag/v1.11.
|
|
20
|
+
<a href="https://github.com/dotoricode/tink-harness/releases/tag/v1.11.1"><img src="https://img.shields.io/github/v/release/dotoricode/tink-harness?label=release&color=2ea44f" alt="GitHub release"></a>
|
|
21
21
|
<a href="https://www.npmjs.com/package/tink-harness"><img src="https://img.shields.io/npm/v/tink-harness?label=npm&color=cb3837" alt="npm version"></a>
|
|
22
22
|
<a href="https://github.com/dotoricode/tink-harness/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/dotoricode/tink-harness/ci.yml?branch=main&label=ci" alt="CI"></a>
|
|
23
23
|
<a href="https://github.com/dotoricode/tink-harness/blob/main/LICENSE"><img src="https://img.shields.io/github/license/dotoricode/tink-harness" alt="License"></a>
|
|
24
24
|
<a href="https://github.com/dotoricode/tink-harness/stargazers"><img src="https://img.shields.io/github/stars/dotoricode/tink-harness?style=social" alt="GitHub stars"></a>
|
|
25
25
|
</p>
|
|
26
26
|
|
|
27
|
-
<p><strong>Latest package:</strong> v1.11.
|
|
27
|
+
<p><strong>Latest package:</strong> v1.11.1 - One-line dashboard: <code>npx tink-harness dashboard</code> generates the harness health report and opens it in your browser. Also fixes a serious update bug that wiped approval-ledger and signal history, and clarifies the installer component labels (commands vs skill, with install paths). See <a href="CHANGELOG.md">CHANGELOG</a> for release history.</p>
|
|
28
28
|
|
|
29
29
|
**English** · [한국어](README.ko.md) · [Changelog](CHANGELOG.md)
|
|
30
30
|
|
package/VERSIONING.md
CHANGED
package/bin/install.js
CHANGED
|
@@ -79,24 +79,24 @@ const COPY = {
|
|
|
79
79
|
|
|
80
80
|
const COMPONENTS = {
|
|
81
81
|
en: [
|
|
82
|
-
{ value: 'commands', label: 'Claude Code commands', hint: '
|
|
82
|
+
{ value: 'commands', label: 'Claude Code commands (/tink:*)', hint: '7 slash commands (cast, verify, frog, ...) → .claude/commands/tink/' },
|
|
83
83
|
{ value: 'skill', label: 'Tink skill', hint: 'Tink operating rules for Claude Code' },
|
|
84
|
-
{ value: 'harnesses', label: 'Built-in harnesses', hint: '
|
|
85
|
-
{ value: 'memory', label: 'Memory templates', hint: 'Approved mistakes/preferences/lessons files' },
|
|
84
|
+
{ value: 'harnesses', label: 'Built-in harnesses', hint: 'Specialized task procedures → .tink/harnesses/' },
|
|
85
|
+
{ value: 'memory', label: 'Memory templates', hint: 'Approved mistakes/preferences/lessons files → .tink/memory/' },
|
|
86
86
|
{ value: 'hook', label: 'Hook recommendation (optional)', hint: 'Registers a safe UserPromptSubmit hook when selected. Off by default.' }
|
|
87
87
|
],
|
|
88
88
|
ko: [
|
|
89
|
-
{ value: 'commands', label: 'Claude Code 명령', hint: '
|
|
89
|
+
{ value: 'commands', label: 'Claude Code 명령 (/tink:*)', hint: '슬래시 명령 7개 (cast, verify, frog 등) → .claude/commands/tink/' },
|
|
90
90
|
{ value: 'skill', label: 'Tink skill', hint: 'Claude Code가 읽는 Tink 작업 원칙' },
|
|
91
|
-
{ value: 'harnesses', label: '기본 harness', hint: '
|
|
92
|
-
{ value: 'memory', label: 'Memory 템플릿', hint: '승인된 실수/선호/교훈 파일' },
|
|
91
|
+
{ value: 'harnesses', label: '기본 harness', hint: '기능 특화 작업 절차 → .tink/harnesses/' },
|
|
92
|
+
{ value: 'memory', label: 'Memory 템플릿', hint: '승인된 실수/선호/교훈 파일 → .tink/memory/' },
|
|
93
93
|
{ value: 'hook', label: 'Hook 추천 (선택)', hint: '선택하면 안전한 UserPromptSubmit hook으로 등록합니다. 기본 off.' }
|
|
94
94
|
],
|
|
95
95
|
zh: [
|
|
96
|
-
{ value: 'commands', label: 'Claude Code 命令', hint: '
|
|
96
|
+
{ value: 'commands', label: 'Claude Code 命令 (/tink:*)', hint: '7 个斜杠命令 (cast, verify, frog 等) → .claude/commands/tink/' },
|
|
97
97
|
{ value: 'skill', label: 'Tink skill', hint: 'Claude Code 读取的 Tink 工作规则' },
|
|
98
|
-
{ value: 'harnesses', label: '内置 harness', hint: '
|
|
99
|
-
{ value: 'memory', label: 'Memory 模板', hint: '经批准的错误/偏好/经验文件' },
|
|
98
|
+
{ value: 'harnesses', label: '内置 harness', hint: '功能特化任务流程 → .tink/harnesses/' },
|
|
99
|
+
{ value: 'memory', label: 'Memory 模板', hint: '经批准的错误/偏好/经验文件 → .tink/memory/' },
|
|
100
100
|
{ value: 'hook', label: 'Hook 推荐(可选)', hint: '选择后注册安全的 UserPromptSubmit hook。默认关闭。' }
|
|
101
101
|
]
|
|
102
102
|
};
|
|
@@ -270,17 +270,21 @@ function componentOptionsFor(agent, language) {
|
|
|
270
270
|
|
|
271
271
|
const claudeSkill = {
|
|
272
272
|
value: 'claude-skill',
|
|
273
|
-
label: 'Claude Code
|
|
273
|
+
label: language === 'ko' ? 'Claude Code skill (작업 원칙)' : language === 'zh' ? 'Claude Code skill(工作规则)' : 'Claude Code skill (operating rules)',
|
|
274
274
|
hint: language === 'ko'
|
|
275
|
-
? 'Claude Code가 읽는
|
|
276
|
-
:
|
|
275
|
+
? '명령과 별개 항목 — Claude Code가 항상 읽는 동작 규칙 문서 → .claude/skills/tink/'
|
|
276
|
+
: language === 'zh'
|
|
277
|
+
? '与命令不同的项目 — Claude Code 始终读取的工作规则 → .claude/skills/tink/'
|
|
278
|
+
: 'Different from the commands - the rules document Claude Code always reads → .claude/skills/tink/'
|
|
277
279
|
};
|
|
278
280
|
const codexSkills = {
|
|
279
281
|
value: 'codex-skills',
|
|
280
|
-
label: 'Codex
|
|
282
|
+
label: language === 'ko' ? 'Codex skills ($tink:*)' : 'Codex skills ($tink:*)',
|
|
281
283
|
hint: language === 'ko'
|
|
282
|
-
? 'Codex
|
|
283
|
-
:
|
|
284
|
+
? 'Codex 전용 — $tink:* action skills → ~/.codex/skills/ (CODEX_HOME)'
|
|
285
|
+
: language === 'zh'
|
|
286
|
+
? '仅用于 Codex — $tink:* action skills → ~/.codex/skills/ (CODEX_HOME)'
|
|
287
|
+
: 'Codex only - $tink:* action skills → ~/.codex/skills/ (CODEX_HOME)'
|
|
284
288
|
};
|
|
285
289
|
|
|
286
290
|
if (agent === 'claude') return [claudeSkill];
|