tink-harness 1.17.1 → 1.17.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/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +7 -0
- package/README.ko.md +12 -1
- package/README.md +12 -1
- package/VERSIONING.md +1 -1
- package/package.json +8 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@ All notable changes to Tink are tracked here.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## [1.17.2] - 2026-06-30
|
|
8
|
+
|
|
9
|
+
- E2E 테스트 5종 추가: install smoke, update preservation, Codex surface, pack manifest, metadata 검증.
|
|
10
|
+
- `package.json` scripts 분리: `test:templates`, `test:syntax`, `test:metadata`, `test:pack`, `test:e2e`, `check`.
|
|
11
|
+
- CI에 macOS 매트릭스 추가 및 `test:pack`, `test:e2e` step 포함.
|
|
12
|
+
- `CONTRIBUTING.md` 테스트 명령표 갱신, `README.md`/`README.ko.md`에 Verification 섹션 추가.
|
|
13
|
+
|
|
7
14
|
## [1.17.1] - 2026-06-30
|
|
8
15
|
|
|
9
16
|
- README / README.ko.md에 Before→After 대비 블록과 run record·verify evidence 실물 예시 추가.
|
package/README.ko.md
CHANGED
|
@@ -296,9 +296,20 @@ npx tink-harness@latest update
|
|
|
296
296
|
|
|
297
297
|
코딩 에이전트도, 워크플로 엔진도, 멀티 에이전트 런타임도, 프롬프트 라이브러리도 아닙니다. Claude Code와 Codex 위에 얹는 작은 하네스 레이어입니다.
|
|
298
298
|
|
|
299
|
+
## 검증
|
|
300
|
+
|
|
301
|
+
```bash
|
|
302
|
+
npm test # 템플릿 동기화, 문법, 버전 일치
|
|
303
|
+
npm run test:pack # 배포 파일 목록: 필수 파일 존재, 시크릿 미포함
|
|
304
|
+
npm run test:e2e # tmpdir 실제 설치, 업데이트 보존, Codex 서피스
|
|
305
|
+
npm run check # npm test + test:pack 한 번에
|
|
306
|
+
```
|
|
307
|
+
|
|
308
|
+
CI는 Ubuntu와 macOS에서 `npm test`, `test:pack`, `test:e2e`를 모두 실행합니다.
|
|
309
|
+
|
|
299
310
|
## 기여
|
|
300
311
|
|
|
301
|
-
이슈와 PR을 환영합니다. [CONTRIBUTING.md](CONTRIBUTING.md)를 참고하세요 — 핵심은 `npm test` 실행, 명령 템플릿 3벌 동기화, 문제/해결/검증 구조의 설명입니다.
|
|
312
|
+
이슈와 PR을 환영합니다. [CONTRIBUTING.md](CONTRIBUTING.md)를 참고하세요 — 핵심은 `npm test && npm run test:pack` 실행, 명령 템플릿 3벌 동기화, 문제/해결/검증 구조의 설명입니다.
|
|
302
313
|
|
|
303
314
|
Tink가 시간을 아껴줬다면 ⭐ 하나가 다른 개발자들이 Tink를 찾는 데 큰 도움이 됩니다.
|
|
304
315
|
|
package/README.md
CHANGED
|
@@ -304,9 +304,20 @@ Verify: `docs/update-verification-recipe.md` or `docs/update-verification-recipe
|
|
|
304
304
|
|
|
305
305
|
Tink is not a coding agent, workflow engine, multi-agent runtime, or prompt library. It is a small harness layer for Claude Code or Codex.
|
|
306
306
|
|
|
307
|
+
## Verification
|
|
308
|
+
|
|
309
|
+
```bash
|
|
310
|
+
npm test # template sync, syntax, version parity
|
|
311
|
+
npm run test:pack # pack manifest: required files, no secrets
|
|
312
|
+
npm run test:e2e # real install into tmpdir, update preservation, Codex surface
|
|
313
|
+
npm run check # npm test + test:pack together
|
|
314
|
+
```
|
|
315
|
+
|
|
316
|
+
CI runs `npm test`, `test:pack`, and `test:e2e` on Ubuntu and macOS.
|
|
317
|
+
|
|
307
318
|
## Contributing
|
|
308
319
|
|
|
309
|
-
Issues and pull requests are welcome. Start with [CONTRIBUTING.md](CONTRIBUTING.md) — the short version: run `npm test`, keep command templates in sync across their three copies, and describe changes as problem / solution / verification.
|
|
320
|
+
Issues and pull requests are welcome. Start with [CONTRIBUTING.md](CONTRIBUTING.md) — the short version: run `npm test && npm run test:pack`, keep command templates in sync across their three copies, and describe changes as problem / solution / verification.
|
|
310
321
|
|
|
311
322
|
If Tink saves you time, a ⭐ helps other developers find it.
|
|
312
323
|
|
package/VERSIONING.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tink-harness",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.2",
|
|
4
4
|
"description": "Self-growing harnesses for Claude Code and Codex.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -23,8 +23,13 @@
|
|
|
23
23
|
"LICENSE"
|
|
24
24
|
],
|
|
25
25
|
"scripts": {
|
|
26
|
-
"test": "
|
|
27
|
-
"
|
|
26
|
+
"test": "npm run test:templates && npm run test:syntax && npm run test:metadata",
|
|
27
|
+
"test:templates": "python tests/test_templates.py",
|
|
28
|
+
"test:syntax": "node --check bin/install.js",
|
|
29
|
+
"test:metadata": "node tests/test_metadata.mjs",
|
|
30
|
+
"test:pack": "node tests/test_pack.mjs",
|
|
31
|
+
"test:e2e": "node tests/test_install_smoke.mjs && node tests/test_update_preservation.mjs && node tests/test_codex_home.mjs",
|
|
32
|
+
"check": "npm test && npm run test:pack"
|
|
28
33
|
},
|
|
29
34
|
"keywords": [
|
|
30
35
|
"claude-code",
|