tink-harness 1.15.0 → 1.15.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.
@@ -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.15.0",
4
+ "version": "1.15.2",
5
5
  "author": {
6
6
  "name": "dotori"
7
7
  }
package/CHANGELOG.md CHANGED
@@ -6,6 +6,14 @@ All notable changes to Tink are tracked here.
6
6
 
7
7
  - Added a geobench product spec and runbook for measuring Tink's LLM answer visibility with hit rate, MRR, share of voice, and citation metrics. The runbook keeps benchmark execution separate from this repo and says to publish aggregate metrics only.
8
8
 
9
+ ## [1.15.2] - 2026-06-24
10
+
11
+ - `/tink:cast` without an argument now shows the current mode and all three mode descriptions directly, with no change prompt. `/tink:cast <mode>` sets the mode with a single confirmation line and no Lane 1 framing.
12
+
13
+ ## [1.15.1] - 2026-06-24
14
+
15
+ - Fixed `CLAUDE_CONFIG_DIR` being ignored for repo-scope installs. It now behaves like `CODEX_HOME` — when set, it redirects Claude commands to the specified directory regardless of install scope.
16
+
9
17
  ## [1.15.0] - 2026-06-24
10
18
 
11
19
  - Added cast mode system: `/tink:cast` now supports three modes — `quick` (forces Lane 1 fast path), `standard` (default, auto triage), and `deep` (structured interview before planning). The active mode is persisted in `.tink/config.json` as `cast_mode`. Setting the mode with `/tink:cast <mode>` shows the current mode and offers a change option when called without a task.
package/README.ko.md CHANGED
@@ -10,7 +10,7 @@ Tink는 사소하지 않은 모든 에이전트 작업을 눈에 보이는 파
10
10
 
11
11
  <sub>Claude Code와 Codex를 위한 작은 하네스 레이어</sub>
12
12
 
13
- **최신 패키지:** v1.15.0 — `/tink:cast`에 가지 모드(quick / standard / deep)가 생겼습니다. deep 모드는 계획 전에 최대 10라운드 인터뷰를 진행하고, Stitch는 Phase A(차단) · Phase B(계획 조정)로 나뉩니다. 전체 변경 이력은 [CHANGELOG](CHANGELOG.md)를 확인하세요.
13
+ **최신 패키지:** v1.15.2 — `/tink:cast` 단독 실행 모드 설명 바로 표시, 모드 설정 배너 없이 확인. 전체 변경 이력은 [CHANGELOG](CHANGELOG.md)를 확인하세요.
14
14
 
15
15
  [English](README.md) · **한국어** · [변경 이력](CHANGELOG.md)
16
16
 
package/README.md CHANGED
@@ -24,7 +24,7 @@
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.15.0 - <code>/tink:cast</code> now supports three modes (quick / standard / deep); deep mode runs a structured 10-round interview before planning, and Stitch is split into Phase A (blocking) and Phase B (plan-shaping). See <a href="CHANGELOG.md">CHANGELOG</a> for release history.</p>
27
+ <p><strong>Latest package:</strong> v1.15.2 - <code>/tink:cast</code> without an argument now shows mode descriptions directly; setting a mode is silent. 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
@@ -1,6 +1,6 @@
1
1
  # Versioning
2
2
 
3
- Current version: `1.15.0`
3
+ Current version: `1.15.2`
4
4
 
5
5
  Tink follows semver from `1.0.0` onward.
6
6
 
package/bin/install.js CHANGED
@@ -228,10 +228,10 @@ function codexHome() {
228
228
  return process.env.CODEX_HOME || path.join(os.homedir(), '.codex');
229
229
  }
230
230
 
231
- // CLAUDE_CONFIG_DIR replaces ~/.claude for global installs (like direnv per-project overrides).
232
- // Repo-scope installs always use <repo>/.claude regardless of this env var.
231
+ // CLAUDE_CONFIG_DIR replaces ~/.claude whenever set (mirrors CODEX_HOME behavior).
232
+ // Unset: repo-scope uses <repo>/.claude, global uses ~/.claude.
233
233
  function claudeDir(target) {
234
- if (process.env.CLAUDE_CONFIG_DIR && target === os.homedir()) {
234
+ if (process.env.CLAUDE_CONFIG_DIR) {
235
235
  return process.env.CLAUDE_CONFIG_DIR;
236
236
  }
237
237
  return path.join(target, '.claude');
package/commands/cast.md CHANGED
@@ -33,7 +33,7 @@ A valid `/tink:cast` response must do one of these:
33
33
  If the task is clear enough to classify, do not ask broad clarification first. Make a best recommendation, ask for approval, then act.
34
34
 
35
35
  ## Cast mode
36
- `/tink:cast` without a task argument shows the current mode and offers a change option. `/tink:cast <mode>` sets the mode and saves it to `cast_mode` in `.tink/config.json`.
36
+ `/tink:cast` without a task argument shows the current mode and the description of all three modes directly — no change prompt, just information. `/tink:cast <mode>` sets the mode and saves it to `cast_mode` in `.tink/config.json` with a single confirmation line and no Lane 1 framing.
37
37
 
38
38
  Modes:
39
39
  - `quick` — Forces Lane 1 fast path regardless of task complexity. Skips harness selection and starts immediately.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tink-harness",
3
- "version": "1.15.0",
3
+ "version": "1.15.2",
4
4
  "description": "Self-growing harnesses for Claude Code and Codex.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -33,7 +33,7 @@ A valid `/tink:cast` response must do one of these:
33
33
  If the task is clear enough to classify, do not ask broad clarification first. Make a best recommendation, ask for approval, then act.
34
34
 
35
35
  ## Cast mode
36
- `/tink:cast` without a task argument shows the current mode and offers a change option. `/tink:cast <mode>` sets the mode and saves it to `cast_mode` in `.tink/config.json`.
36
+ `/tink:cast` without a task argument shows the current mode and the description of all three modes directly — no change prompt, just information. `/tink:cast <mode>` sets the mode and saves it to `cast_mode` in `.tink/config.json` with a single confirmation line and no Lane 1 framing.
37
37
 
38
38
  Modes:
39
39
  - `quick` — Forces Lane 1 fast path regardless of task complexity. Skips harness selection and starts immediately.