tink-harness 1.9.20 → 1.9.21

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tink",
3
3
  "description": "A small harness layer for Claude Code and Codex.",
4
- "version": "1.9.20",
4
+ "version": "1.9.21",
5
5
  "author": {
6
6
  "name": "dotori"
7
7
  }
package/CHANGELOG.md CHANGED
@@ -6,6 +6,12 @@ All notable changes to Tink are tracked here.
6
6
 
7
7
  No unreleased changes yet.
8
8
 
9
+ ## [1.9.21] - 2026-06-11
10
+
11
+ ### Changed
12
+
13
+ - README repositioned problem-first (EN/KO): the hero now leads with "Stop losing context between Claude Code and Codex runs", followed by Who-this-is-for, a concrete tour of the files Tink leaves behind, and a "Why not just CLAUDE.md / slash commands / skills / MCP?" comparison table. The knitting metaphor moved into the origin-story section, and a small star call-to-action sits under the demo GIF. Added a release-pacing note to VERSIONING.md.
14
+
9
15
  ## [1.9.20] - 2026-06-11
10
16
 
11
17
  ### Changed
package/README.ko.md CHANGED
@@ -4,16 +4,61 @@
4
4
 
5
5
  # Tink
6
6
 
7
- Claude Code Codex 위한 작은 하네스 레이어입니다.
7
+ **Claude Code · Codex 작업의 맥락이 더는 사라지지 않게.**
8
8
 
9
- Tink는 지금 작업에 맞는 하네스를 고르고, 실행 상태를 보이게 만들고, 실제 사용 생긴 실패와 피드백으로 하네스 세트를 개선합니다.
9
+ Tink는 사소하지 않은 모든 에이전트 작업을 눈에 보이는 파일로 남깁니다 — 작업 계약, 실행 상태, 검증 단계, 그리고 승인해야만 저장되는 재사용 하네스. 서버도, 텔레메트리도, 숨은 상태도 없습니다.
10
10
 
11
- **최신 패키지:** v1.9.20 — 로컬 건강 리포트가 탭형 대시보드로 바뀌었습니다. 3D 하네스 지도, 쉬운 말 건강 요약, Claude Code와 Codex 양쪽 복사-붙여넣기 명령이 포함된 다음 행동 제안을 제공합니다. 전체 변경 이력은 [CHANGELOG](CHANGELOG.md)를 확인하세요.
11
+ <sub>Claude Code와 Codex 위한 작은 하네스 레이어</sub>
12
+
13
+ **최신 패키지:** v1.9.21 — 로컬 건강 리포트가 탭형 대시보드로 바뀌었습니다. 3D 하네스 지도, 쉬운 말 건강 요약, Claude Code와 Codex 양쪽 복사-붙여넣기 명령이 포함된 다음 행동 제안을 제공합니다. 전체 변경 이력은 [CHANGELOG](CHANGELOG.md)를 확인하세요.
12
14
 
13
15
  [English](README.md) · **한국어** · [변경 이력](CHANGELOG.md)
14
16
 
15
17
  ---
16
18
 
19
+ ## 누구를 위한 도구인가
20
+
21
+ 이런 순간에 쓰세요:
22
+
23
+ - Claude Code나 Codex가 작업 사이에 맥락을 자꾸 잃을 때
24
+ - 같은 리뷰 / 리팩터링 / 디버깅 절차를 매번 손으로 반복할 때
25
+ - 숨은 채팅 기억 대신 눈에 보이는 실행 상태를 원할 때
26
+ - 재사용 가능한 에이전트 워크플로를 원하지만, 명시적 승인 후에만 저장되길 원할 때
27
+
28
+ 내 얘기 같다면, 버려도 되는 repo에서 먼저 시도해 보세요:
29
+
30
+ ```bash
31
+ npx tink-harness@latest install
32
+ ```
33
+
34
+ ## 실제로 남는 것
35
+
36
+ 사소하지 않은 작업마다 열어보고, diff하고, 커밋할 수 있는 평범한 파일이 남습니다:
37
+
38
+ ```text
39
+ .tink/current/ # 진행 중인 실행 — 언제든 열람 가능
40
+ contract.json # 작업이 끝났을 때 참이어야 하는 것
41
+ plan.md # 눈에 보이는 계획
42
+ checks.md # "완료" 선언 전 돌릴 검증
43
+ .tink/runs/
44
+ 2026-06-11-1430-auth-refactor.md # 끝난 실행의 간결한 기록
45
+ .tink/harnesses/
46
+ refactor-review.md # 재사용 작업 방식 — 승인해야 저장
47
+ ```
48
+
49
+ ## CLAUDE.md·슬래시 명령·스킬만으로는 왜 부족할까?
50
+
51
+ | 도구 | 제공하는 것 | Tink가 얹는 것 |
52
+ |---|---|---|
53
+ | CLAUDE.md | 프로젝트 전역 지침 | 작업 단위 계약·실행 상태·검증 |
54
+ | 슬래시 명령 | 재사용 프롬프트 | 하네스 선택, 실행 기록, 진행도 추적 |
55
+ | 스킬 | 재사용 능력 | 사용 생애주기: 건강 점수·정리·개선 신호 |
56
+ | MCP | 외부 컨텍스트·도구 | 로컬, 승인 게이트 워크플로 메모리 |
57
+
58
+ Tink는 이들을 대체하지 않고 함께 동작합니다.
59
+
60
+ ---
61
+
17
62
  ## 빠른 시작
18
63
 
19
64
  1분이면 Tink를 직접 써볼 수 있습니다.
@@ -66,6 +111,8 @@ node .tink/tools/render-harness-health-report.mjs
66
111
 
67
112
  ![Tink 대시보드 데모 — 건강 그룹 클릭, 하네스 카드 탐색, 3D 지도 조작](.github/assets/demo.gif)
68
113
 
114
+ <sub>당신의 워크플로와 맞는다면, ⭐ 하나가 다른 개발자들이 찾는 데 도움이 됩니다.</sub>
115
+
69
116
  하네스와 그들이 쓰는 규칙·메모리, 그 연결을 보여주는 인터랙티브 3D 지도 — 무리마다 고유한 색을 갖고, 살아있는 관계 위로 신호가 흐릅니다:
70
117
 
71
118
  ![Tink 하네스 지도 — 하네스·규칙·메모리·단계를 보여주는 인터랙티브 3D 뷰](.github/assets/dashboard-map.ko.png)
package/README.md CHANGED
@@ -6,30 +6,73 @@
6
6
  <strong>Tink</strong>
7
7
  </h1>
8
8
 
9
- <p>A small harness layer for Claude Code and Codex</p>
9
+ <p><strong>Stop losing context between Claude Code and Codex runs.</strong></p>
10
10
 
11
11
  <p>
12
- Tink helps Claude Code or Codex choose the right harness, keep run state visible, and improve the harness set as you work.
12
+ Tink keeps every non-trivial agent task in visible files - a task contract, run state,
13
+ verification steps, and reusable harnesses that are saved only after your approval.
14
+ No server, no telemetry, no hidden state.
13
15
  </p>
14
16
 
15
- <p>
16
- <em>Tink is <strong>knit</strong> in reverse: untying tangled workflows and knitting better ones back together. It also nods to Tinker Bell, the small helper at your side.</em>
17
- </p>
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.9.20"><img src="https://img.shields.io/github/v/release/dotoricode/tink-harness?label=release&color=2ea44f" alt="GitHub release"></a>
20
+ <a href="https://github.com/dotoricode/tink-harness/releases/tag/v1.9.21"><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.9.20 - The local health report is now a tabbed dashboard with a 3D harness map, plain-language health summaries, and next-action suggestions with copy-paste commands for both Claude Code and Codex. See <a href="CHANGELOG.md">CHANGELOG</a> for release history.</p>
27
+ <p><strong>Latest package:</strong> v1.9.21 - The local health report is now a tabbed dashboard with a 3D harness map, plain-language health summaries, and next-action suggestions with copy-paste commands for both Claude Code and Codex. See <a href="CHANGELOG.md">CHANGELOG</a> for release history.</p>
28
28
 
29
29
  **English** · [한국어](README.ko.md) · [Changelog](CHANGELOG.md)
30
30
 
31
31
  ---
32
32
 
33
+ ## Who this is for
34
+
35
+ Use Tink when:
36
+
37
+ - Claude Code or Codex keeps losing task context between runs
38
+ - you repeat the same review / refactor / debug workflow by hand
39
+ - you want visible run state instead of hidden chat memory
40
+ - you want reusable agent workflows - saved only after explicit approval
41
+
42
+ If that sounds like your day, try it on a throwaway repo first:
43
+
44
+ ```bash
45
+ npx tink-harness@latest install
46
+ ```
47
+
48
+ ## What you actually get
49
+
50
+ Every non-trivial task leaves plain files you can open, diff, and commit:
51
+
52
+ ```text
53
+ .tink/current/ # the active run - always inspectable
54
+ contract.json # what must be true when the task is done
55
+ plan.md # the visible plan
56
+ checks.md # verification to run before claiming "done"
57
+ .tink/runs/
58
+ 2026-06-11-1430-auth-refactor.md # compact record of each finished run
59
+ .tink/harnesses/
60
+ refactor-review.md # reusable ways of working - approval-gated
61
+ ```
62
+
63
+ ## Why not just CLAUDE.md / slash commands / skills?
64
+
65
+ | Tooling | What it gives you | What Tink adds on top |
66
+ |---|---|---|
67
+ | CLAUDE.md | project-wide instructions | per-task contracts, run state, and verification |
68
+ | Slash commands | reusable prompts | harness selection, run records, progress tracking |
69
+ | Skills | reusable capability | usage lifecycle: health scores, cleanup and improvement signals |
70
+ | MCP | external context and tools | local, approval-gated workflow memory |
71
+
72
+ Tink composes with all of these - it does not replace them.
73
+
74
+ ---
75
+
33
76
  ## Install & quick start
34
77
 
35
78
  Try Tink in about a minute.
@@ -82,6 +125,8 @@ node .tink/tools/render-harness-health-report.mjs
82
125
 
83
126
  ![Tink dashboard demo - clicking a health group, browsing harness cards, and inspecting the 3D map](.github/assets/demo.gif)
84
127
 
128
+ <sub>If this matches your workflow, a ⭐ helps others find it.</sub>
129
+
85
130
  An interactive 3D map of your harnesses, the rules and memory they use, and how they connect - each cluster gets its own color, and neural pulses travel along live relationships:
86
131
 
87
132
  ![Tink harness map - an interactive 3D view of harnesses, rules, memory, and stages](.github/assets/dashboard-map.png)
@@ -96,6 +141,8 @@ No server, no telemetry, no hidden cache - it is a static local page that only p
96
141
 
97
142
  ## Why I made this
98
143
 
144
+ *Tink is <strong>knit</strong> in reverse: untying tangled workflows and knitting better ones back together. It also nods to Tinker Bell, the small helper at your side.*
145
+
99
146
  New coding harnesses show up almost every day. Many of them are genuinely useful.
100
147
 
101
148
  At first, I tried them one by one and kept the ones that fit me. But the more I mixed them, the more my environment got tangled. Resetting everything again and again was tiring, so I ended up falling back to a skill-based workflow that I could understand and control.
package/VERSIONING.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Versioning
2
2
 
3
- Current version: `1.9.20`
3
+ Current version: `1.9.21`
4
4
 
5
5
  Tink follows semver from `1.0.0` onward.
6
6
 
@@ -86,3 +86,7 @@ npx tink-harness@latest update
86
86
  ```
87
87
 
88
88
  `update` preserves user-modified files. The `--force` flag is reserved for emergency repair and is not the recommended path.
89
+
90
+ ## Release pacing
91
+
92
+ Batch small fixes on `main` and aim for at most about one release per day. Rapid version churn reads as instability to first-time visitors; a release should bundle a coherent set of changes with a short, plain note.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tink-harness",
3
- "version": "1.9.20",
3
+ "version": "1.9.21",
4
4
  "description": "Self-growing harnesses for Claude Code and Codex.",
5
5
  "license": "MIT",
6
6
  "type": "module",