tink-harness 1.1.1 → 1.2.0
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 +8 -8
- package/CHANGELOG.md +134 -104
- package/LICENSE +21 -21
- package/README.ko.md +21 -9
- package/README.md +148 -136
- package/VERSIONING.md +73 -73
- package/bin/install.js +434 -414
- package/commands/cast.md +556 -481
- package/commands/frog.md +86 -86
- package/commands/setup.md +185 -185
- package/commands/verify.md +145 -16
- package/commands/weave.md +57 -57
- package/docs/compatibility-policy.md +30 -0
- package/docs/mcp-safe-profile.md +118 -0
- package/docs/pr/2026-06-07-v1.2.0.md +60 -0
- package/docs/repo-signals.md +77 -0
- package/hooks/hooks.json +15 -15
- package/package.json +53 -49
- package/skills/tink/SKILL.md +2 -1
- package/templates/claude/commands/tink/cast.md +556 -481
- package/templates/claude/commands/tink/frog.md +86 -86
- package/templates/claude/commands/tink/setup.md +185 -185
- package/templates/claude/commands/tink/verify.md +145 -16
- package/templates/claude/commands/tink/weave.md +57 -57
- package/templates/claude/skills/tink/SKILL.md +2 -1
- package/templates/codex/skills/tink-cast/SKILL.md +13 -0
- package/templates/codex/skills/tink-core/RULES.md +112 -0
- package/templates/codex/skills/tink-frog/SKILL.md +13 -0
- package/templates/codex/skills/tink-list/SKILL.md +13 -0
- package/templates/codex/skills/tink-setup/SKILL.md +13 -0
- package/templates/codex/skills/tink-update/SKILL.md +13 -0
- package/templates/codex/skills/tink-verify/SKILL.md +13 -0
- package/templates/codex/skills/tink-weave/SKILL.md +13 -0
- package/templates/tink/config.json +20 -20
- package/templates/tink/harnesses/harness-synthesis.md +52 -52
- package/templates/tink/harnesses/index.json +174 -174
- package/templates/tink/harnesses/pr-merge.md +53 -53
- package/templates/tink/harnesses/research.md +31 -31
- package/templates/tink/harnesses/review.md +31 -31
- package/templates/tink/harnesses/ship.md +33 -33
- package/templates/tink/hooks/user-prompt-submit.json +7 -7
- package/templates/tink/maintenance/weave-queue.json +3 -3
- package/templates/tink/memory/lessons.md +17 -17
- package/templates/tink/memory/mistakes.md +16 -16
- package/templates/tink/memory/preferences.md +16 -16
- package/templates/tink/schemas/context-map.schema.json +154 -0
- package/templates/tink/schemas/contract.schema.json +29 -2
- package/templates/tink/schemas/verification.schema.json +141 -0
- package/templates/codex/skills/tink/SKILL.md +0 -79
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "tink",
|
|
3
|
-
"description": "A small harness layer for Claude Code.",
|
|
4
|
-
"version": "1.
|
|
5
|
-
"author": {
|
|
6
|
-
"name": "dotori"
|
|
7
|
-
}
|
|
8
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "tink",
|
|
3
|
+
"description": "A small harness layer for Claude Code and Codex.",
|
|
4
|
+
"version": "1.2.0",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "dotori"
|
|
7
|
+
}
|
|
8
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,42 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to Tink are tracked here.
|
|
4
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to Tink are tracked here.
|
|
4
|
+
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
7
|
No unreleased changes yet.
|
|
8
8
|
|
|
9
9
|
|
|
10
|
+
## [1.2.0] - 2026-06-07
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Codex autocomplete aliases matching the Claude Code command surface: `$tink:cast`, `$tink:verify`, `$tink:list`, `$tink:frog`, `$tink:weave`, `$tink:setup`, and `$tink:update`.
|
|
15
|
+
- Contract-first context artifacts for non-trivial runs: `context-pack.md`, `context-map.json`, and `excluded-context.md`.
|
|
16
|
+
- Repo Signal fixtures and documentation so `/tink:cast` can select relevant tests, schemas, sync partners, and verification hints without adding a new `tink index` command.
|
|
17
|
+
- Verify Runner schema and fixtures for `.tink/current/verification.json`, including pass, fail, blocked, skipped, final report, notes summary, and maintenance signal behavior.
|
|
18
|
+
- MCP Safe Profile documentation and external-context profile schema support for sources such as Figma, GitHub, official docs, dashboards, API responses, screenshots, attachments, and runbooks.
|
|
19
|
+
- Compatibility policy documenting that new Tink work must support Claude Code and Codex, plus macOS and Windows.
|
|
20
|
+
- PR history draft for this release in `docs/pr/2026-06-07-v1.2.0.md`.
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- Codex documentation and installer next-step guidance now prefer `$tink:*` spelling while keeping legacy `$tink <action>` prompts compatible.
|
|
25
|
+
- Project guidance now uses lower-case `templates/codex/skills/` and the actual `.claude/` / `.claude-plugin/` paths so Mac/Linux case-sensitive filesystems match the documented structure.
|
|
26
|
+
- Codex skill display is focused on action aliases only; shared Codex rules now live in non-visible `tink-core/RULES.md`.
|
|
27
|
+
- `/tink:cast` records included, excluded, and external context more explicitly, including sensitivity, confidence, source handles, and verification hints.
|
|
28
|
+
- `/tink:verify` now uses one portable runner model for Claude Code `/tink:verify` and Codex `$tink:verify`.
|
|
29
|
+
- README and Korean README now explain the 1.2.0 release highlights and point to compatibility, repo signal, and MCP Safe Profile docs.
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- Existing Codex installs that still have the old visible `skills/tink/SKILL.md` directory are cleaned up during install/update when it is recognized as the legacy Tink skill.
|
|
34
|
+
|
|
35
|
+
### Removed
|
|
36
|
+
|
|
37
|
+
- Removed the old installable Codex `tink` skill surface so the picker no longer shows duplicate or awkward `Tink: Tink` entries.
|
|
38
|
+
|
|
39
|
+
|
|
10
40
|
## [1.1.1] - 2026-05-26
|
|
11
41
|
|
|
12
42
|
### Added
|
|
@@ -39,103 +69,103 @@ No unreleased changes yet.
|
|
|
39
69
|
### Planned
|
|
40
70
|
|
|
41
71
|
- Layered scope model: merge `global` (`~/.tink/`) + `repo` (`.tink/`) + `local` (`.tink/local/` or `.tink/settings.local.json`) following the Claude Code settings pattern. Tracked separately.
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
## [1.0.0] - 2026-05-25
|
|
45
|
-
|
|
46
|
-
First stable release. All hardening gates passed.
|
|
47
|
-
|
|
48
|
-
### Added
|
|
49
|
-
|
|
50
|
-
- `pre-publish-multi-agent-verify` harness: 5-agent parallel verification harness for npm publish readiness. Agents cover install matrix, UX walkthrough, doc consistency, secret leak audit, and slash/contract coverage.
|
|
51
|
-
|
|
52
|
-
### Fixed
|
|
53
|
-
|
|
54
|
-
- `update` subcommand never propagated template changes to existing installs. Commands, skills, and maintenance files now always overwrite on update; harnesses, hooks, memory, and config are preserved when user-modified (respects `weave` customizations).
|
|
55
|
-
- `VERSIONING.md` update command used `npx tink-harness@latest update` (npm registry form, fails before first publish). Changed to `npx github:dotoricode/tink-harness update` (GitHub form, always works).
|
|
56
|
-
|
|
57
|
-
### Removed
|
|
58
|
-
|
|
59
|
-
- Remaining phantom references to `context-habit-calibration` in `cast.md`, `list.md`, and `SKILL.md` (harness was merged into `harness-curation` in v0.1.5).
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
## [0.1.5] - 2026-05-24
|
|
63
|
-
|
|
64
|
-
### Added
|
|
65
|
-
|
|
66
|
-
- `tink-feedback-apply` harness: classify user feedback about Tink into the correct layer (behavioral, UX, preference, harness procedure, or new harness) and apply the minimum viable change.
|
|
67
|
-
- `/tink:list` output redesign: multi-line per harness, header field description, three categories (작업용 / 메타 / 이 저장소 전용), assessment section, and next-command suggestions.
|
|
68
|
-
|
|
69
|
-
### Changed
|
|
70
|
-
|
|
71
|
-
- Built-in harness `## Checks` sections replaced generic boilerplate with domain-specific checks:
|
|
72
|
-
- `research`: decision named, options compared, facts/guesses labeled, recommendation follows evidence.
|
|
73
|
-
- `review`: correctness/security/data/UX risk addressed, severity labeled, no speculative blockers.
|
|
74
|
-
- `ship`: CI checks pass or reason stated, rollback documented, artifacts listed, risks explicit.
|
|
75
|
-
- `ship` Plan step 3: "Prepare notes for humans" → "Draft PR or release summary: what changed, what risks, what rollback."
|
|
76
|
-
- `harness-curation` now includes context habit calibration (signals, 6 habit types, calibration procedure) as an inline section. No separate harness needed.
|
|
77
|
-
- `index.json`: `harness-synthesis` and `harness-curation` classified as `kind: "meta"` to distinguish from work harnesses.
|
|
78
|
-
|
|
79
|
-
### Removed
|
|
80
|
-
|
|
81
|
-
- `context-habit-calibration` standalone harness. Its content is now part of `harness-curation`.
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
## [0.1.4] - 2026-05-23
|
|
85
|
-
|
|
86
|
-
### Added
|
|
87
|
-
|
|
88
|
-
- `/tink:update` slash command: detects install source, diagnoses user-modified files, and shows the safe update command.
|
|
89
|
-
- `npx tink-harness update` subcommand: data-preserving update that keeps user-modified files. Use `--force` to overwrite everything (data loss risk).
|
|
90
|
-
- HARNESS.md harness catalog for fast human scanning.
|
|
91
|
-
- Hard-gate behavior for `ship` harness (release/publish/deploy/PR) — runs the safety gate at initial approval, not just at the first risky step.
|
|
92
|
-
|
|
93
|
-
### Changed
|
|
94
|
-
|
|
95
|
-
- Default installer language now auto-detects from `LANG`/`LANGUAGE`/`LC_ALL`, falling back to English; previously hardcoded to Korean.
|
|
96
|
-
- README Update section recommends `npx ... update` only. The `install --force` path is no longer documented as a user-facing option (the `--force` flag remains in the code for emergency use but is not advertised).
|
|
97
|
-
- `/tink:cast` approval format uses plain language for the soft-gate review block; internal labels are kept in code/docs but not shown to the user.
|
|
98
|
-
- `/tink:cast` UX overhauls: shorter prompts, fewer approval gates for trivial tasks, single consolidated approval for soft-gate cases.
|
|
99
|
-
|
|
100
|
-
### Fixed
|
|
101
|
-
|
|
102
|
-
- Restored the README hero image after the previous fix targeted the wrong surface.
|
|
103
|
-
- Increased the installer TINK banner contrast for dark terminal themes.
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
## [0.1.3]
|
|
107
|
-
|
|
108
|
-
Skipped during pre-v1 sequencing.
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
## [0.1.2] - 2026-05-22
|
|
112
|
-
|
|
113
|
-
### Changed
|
|
114
|
-
|
|
115
|
-
- Added a synthesis probe so `/tink:cast` can detect when a built-in harness is only a generic fit.
|
|
116
|
-
- Made run-only draft harnesses the default path for generic-fit cases, with saving still requiring separate approval.
|
|
117
|
-
- Clarified that `harness-synthesis` should handle both `no fit` and `generic fit` cases.
|
|
118
|
-
|
|
119
|
-
## [0.1.1] - 2026-05-22
|
|
120
|
-
|
|
121
|
-
### Added
|
|
122
|
-
|
|
123
|
-
- Existing-user update instructions for Claude Code plugin installs.
|
|
124
|
-
- Standalone compatibility installer refresh command using `--force`.
|
|
125
|
-
- Maintenance evidence structure: approval ledger and weave queue templates.
|
|
126
|
-
- Run record fields for selected, rejected, actually loaded, and maintenance evidence.
|
|
127
|
-
|
|
128
|
-
### Changed
|
|
129
|
-
|
|
130
|
-
- Bumped the Claude Code plugin version to make `/plugin update` detect the latest release.
|
|
131
|
-
- Clarified `unknown` evidence handling for `/tink:list`.
|
|
132
|
-
- Added evidence grades for `/tink:frog` and evidence handles for `/tink:weave`.
|
|
133
|
-
|
|
134
|
-
## [0.1.0] - 2026-05-22
|
|
135
|
-
|
|
136
|
-
### Added
|
|
137
|
-
|
|
138
|
-
- Initial pre-v1 plugin shape for Tink.
|
|
139
|
-
- Plugin-first `/tink:*` command surface.
|
|
140
|
-
- Standalone compatibility installer.
|
|
141
|
-
- Built-in harnesses, setup flow, optional hook recommendation, and visible `.tink/` state model.
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
## [1.0.0] - 2026-05-25
|
|
75
|
+
|
|
76
|
+
First stable release. All hardening gates passed.
|
|
77
|
+
|
|
78
|
+
### Added
|
|
79
|
+
|
|
80
|
+
- `pre-publish-multi-agent-verify` harness: 5-agent parallel verification harness for npm publish readiness. Agents cover install matrix, UX walkthrough, doc consistency, secret leak audit, and slash/contract coverage.
|
|
81
|
+
|
|
82
|
+
### Fixed
|
|
83
|
+
|
|
84
|
+
- `update` subcommand never propagated template changes to existing installs. Commands, skills, and maintenance files now always overwrite on update; harnesses, hooks, memory, and config are preserved when user-modified (respects `weave` customizations).
|
|
85
|
+
- `VERSIONING.md` update command used `npx tink-harness@latest update` (npm registry form, fails before first publish). Changed to `npx github:dotoricode/tink-harness update` (GitHub form, always works).
|
|
86
|
+
|
|
87
|
+
### Removed
|
|
88
|
+
|
|
89
|
+
- Remaining phantom references to `context-habit-calibration` in `cast.md`, `list.md`, and `SKILL.md` (harness was merged into `harness-curation` in v0.1.5).
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
## [0.1.5] - 2026-05-24
|
|
93
|
+
|
|
94
|
+
### Added
|
|
95
|
+
|
|
96
|
+
- `tink-feedback-apply` harness: classify user feedback about Tink into the correct layer (behavioral, UX, preference, harness procedure, or new harness) and apply the minimum viable change.
|
|
97
|
+
- `/tink:list` output redesign: multi-line per harness, header field description, three categories (작업용 / 메타 / 이 저장소 전용), assessment section, and next-command suggestions.
|
|
98
|
+
|
|
99
|
+
### Changed
|
|
100
|
+
|
|
101
|
+
- Built-in harness `## Checks` sections replaced generic boilerplate with domain-specific checks:
|
|
102
|
+
- `research`: decision named, options compared, facts/guesses labeled, recommendation follows evidence.
|
|
103
|
+
- `review`: correctness/security/data/UX risk addressed, severity labeled, no speculative blockers.
|
|
104
|
+
- `ship`: CI checks pass or reason stated, rollback documented, artifacts listed, risks explicit.
|
|
105
|
+
- `ship` Plan step 3: "Prepare notes for humans" → "Draft PR or release summary: what changed, what risks, what rollback."
|
|
106
|
+
- `harness-curation` now includes context habit calibration (signals, 6 habit types, calibration procedure) as an inline section. No separate harness needed.
|
|
107
|
+
- `index.json`: `harness-synthesis` and `harness-curation` classified as `kind: "meta"` to distinguish from work harnesses.
|
|
108
|
+
|
|
109
|
+
### Removed
|
|
110
|
+
|
|
111
|
+
- `context-habit-calibration` standalone harness. Its content is now part of `harness-curation`.
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
## [0.1.4] - 2026-05-23
|
|
115
|
+
|
|
116
|
+
### Added
|
|
117
|
+
|
|
118
|
+
- `/tink:update` slash command: detects install source, diagnoses user-modified files, and shows the safe update command.
|
|
119
|
+
- `npx tink-harness update` subcommand: data-preserving update that keeps user-modified files. Use `--force` to overwrite everything (data loss risk).
|
|
120
|
+
- HARNESS.md harness catalog for fast human scanning.
|
|
121
|
+
- Hard-gate behavior for `ship` harness (release/publish/deploy/PR) — runs the safety gate at initial approval, not just at the first risky step.
|
|
122
|
+
|
|
123
|
+
### Changed
|
|
124
|
+
|
|
125
|
+
- Default installer language now auto-detects from `LANG`/`LANGUAGE`/`LC_ALL`, falling back to English; previously hardcoded to Korean.
|
|
126
|
+
- README Update section recommends `npx ... update` only. The `install --force` path is no longer documented as a user-facing option (the `--force` flag remains in the code for emergency use but is not advertised).
|
|
127
|
+
- `/tink:cast` approval format uses plain language for the soft-gate review block; internal labels are kept in code/docs but not shown to the user.
|
|
128
|
+
- `/tink:cast` UX overhauls: shorter prompts, fewer approval gates for trivial tasks, single consolidated approval for soft-gate cases.
|
|
129
|
+
|
|
130
|
+
### Fixed
|
|
131
|
+
|
|
132
|
+
- Restored the README hero image after the previous fix targeted the wrong surface.
|
|
133
|
+
- Increased the installer TINK banner contrast for dark terminal themes.
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
## [0.1.3]
|
|
137
|
+
|
|
138
|
+
Skipped during pre-v1 sequencing.
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
## [0.1.2] - 2026-05-22
|
|
142
|
+
|
|
143
|
+
### Changed
|
|
144
|
+
|
|
145
|
+
- Added a synthesis probe so `/tink:cast` can detect when a built-in harness is only a generic fit.
|
|
146
|
+
- Made run-only draft harnesses the default path for generic-fit cases, with saving still requiring separate approval.
|
|
147
|
+
- Clarified that `harness-synthesis` should handle both `no fit` and `generic fit` cases.
|
|
148
|
+
|
|
149
|
+
## [0.1.1] - 2026-05-22
|
|
150
|
+
|
|
151
|
+
### Added
|
|
152
|
+
|
|
153
|
+
- Existing-user update instructions for Claude Code plugin installs.
|
|
154
|
+
- Standalone compatibility installer refresh command using `--force`.
|
|
155
|
+
- Maintenance evidence structure: approval ledger and weave queue templates.
|
|
156
|
+
- Run record fields for selected, rejected, actually loaded, and maintenance evidence.
|
|
157
|
+
|
|
158
|
+
### Changed
|
|
159
|
+
|
|
160
|
+
- Bumped the Claude Code plugin version to make `/plugin update` detect the latest release.
|
|
161
|
+
- Clarified `unknown` evidence handling for `/tink:list`.
|
|
162
|
+
- Added evidence grades for `/tink:frog` and evidence handles for `/tink:weave`.
|
|
163
|
+
|
|
164
|
+
## [0.1.0] - 2026-05-22
|
|
165
|
+
|
|
166
|
+
### Added
|
|
167
|
+
|
|
168
|
+
- Initial pre-v1 plugin shape for Tink.
|
|
169
|
+
- Plugin-first `/tink:*` command surface.
|
|
170
|
+
- Standalone compatibility installer.
|
|
171
|
+
- Built-in harnesses, setup flow, optional hook recommendation, and visible `.tink/` state model.
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 dotori
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 dotori
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.ko.md
CHANGED
|
@@ -35,7 +35,7 @@ Standalone / Codex 호환 설치:
|
|
|
35
35
|
npx tink-harness@latest install
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
-
설치 중 `Claude Code`, `Codex`, 또는 둘 다를 선택할 수 있습니다. Codex에서는 `$tink
|
|
38
|
+
설치 중 `Claude Code`, `Codex`, 또는 둘 다를 선택할 수 있습니다. Codex에서는 `$tink:cast <task>`로 시작합니다.
|
|
39
39
|
|
|
40
40
|
## 업데이트
|
|
41
41
|
|
|
@@ -53,35 +53,45 @@ Standalone / Codex:
|
|
|
53
53
|
npx tink-harness@latest update
|
|
54
54
|
```
|
|
55
55
|
|
|
56
|
+
## 1.2.0에서 달라진 점
|
|
57
|
+
|
|
58
|
+
이번 릴리스는 Tink를 Claude Code와 Codex에서 같은 하네스 레이어로 쓰기 쉽게 정리합니다.
|
|
59
|
+
|
|
60
|
+
- Codex에는 하나의 넓은 `tink` 스킬 대신 `$tink:cast`, `$tink:verify` 같은 action skill만 보이도록 설치됩니다.
|
|
61
|
+
- 비단순 작업은 `context-pack.md`, `context-map.json`, `excluded-context.md`로 어떤 context를 썼고 뺐는지 남깁니다.
|
|
62
|
+
- Repo Signal은 새 `tink index` 명령을 만들지 않고도 관련 테스트, 스키마, 동기화 파일, 검증 힌트를 고르는 데 쓰입니다.
|
|
63
|
+
- `/tink:verify`와 `$tink:verify`는 같은 Verify Runner 모델을 쓰며 `.tink/current/verification.json`에 검증 증거를 남깁니다.
|
|
64
|
+
- 외부 context는 MCP Safe Profile을 따릅니다. 가장 작은 source handle만 남기고, 신뢰도와 민감도를 표시하며, 위험하거나 너무 넓은 context는 `excluded-context.md`에 따로 기록합니다.
|
|
65
|
+
|
|
56
66
|
## 명령
|
|
57
67
|
|
|
58
|
-
Claude Code에서는 `/tink:*`, Codex에서는 `$tink
|
|
68
|
+
Claude Code에서는 `/tink:*`, Codex에서는 `$tink:*`을 씁니다. 예전 `$tink cast` 형식도 호환되지만, 기본 안내와 자동완성 표면은 `$tink:*`입니다.
|
|
59
69
|
|
|
60
|
-
### `/tink:cast`
|
|
70
|
+
### `/tink:cast` / `$tink:cast`
|
|
61
71
|
|
|
62
72
|
작업을 읽고, 필요한 하네스만 고르고, `.tink/current/` 실행 상태를 만든 뒤 첫 번째 안전한 단계를 시작합니다.
|
|
63
73
|
|
|
64
74
|
Tink는 이제 비단순 작업에 대해 `.tink/current/contract.json`도 만듭니다. 이 파일에는 작업 종류, 위험, 성공 조건, 금지 사항, 검증 명령이 들어갑니다.
|
|
65
75
|
|
|
66
|
-
### `/tink:verify`
|
|
76
|
+
### `/tink:verify` / `$tink:verify`
|
|
67
77
|
|
|
68
78
|
`contract.json`에 적힌 검증을 실제로 실행하고 증거를 남깁니다.
|
|
69
79
|
|
|
70
80
|
릴리스, 배포, 공개 PR처럼 "된 것 같다"가 아니라 "확인했다"가 필요한 작업에서 씁니다.
|
|
71
81
|
|
|
72
|
-
### `/tink:frog`
|
|
82
|
+
### `/tink:frog` / `$tink:frog`
|
|
73
83
|
|
|
74
84
|
거의 쓰지 않거나 겹치거나 너무 무거운 하네스를 정리 후보로 제안합니다. 사용자 승인 없이는 삭제하지 않습니다.
|
|
75
85
|
|
|
76
|
-
### `/tink:weave`
|
|
86
|
+
### `/tink:weave` / `$tink:weave`
|
|
77
87
|
|
|
78
88
|
실제 실패, 반복 사용, 사용자 수정 내용을 바탕으로 하네스를 조금 더 정확하게 고칩니다. 필요한 경우 `.tink/rules/`의 rule graph나 opt-in hook guard 후보로 승격합니다.
|
|
79
89
|
|
|
80
90
|
### 기타
|
|
81
91
|
|
|
82
|
-
- `/tink:setup`: 언어, 설치 범위, git 추적, hook 정책 설정
|
|
83
|
-
- `/tink:list`: 사용 가능한 하네스와 사용 신호 확인
|
|
84
|
-
- `/tink:update`: 설치 출처를 확인하고 안전한 업데이트 안내
|
|
92
|
+
- `/tink:setup` / `$tink:setup`: 언어, 설치 범위, git 추적, hook 정책 설정
|
|
93
|
+
- `/tink:list` / `$tink:list`: 사용 가능한 하네스와 사용 신호 확인
|
|
94
|
+
- `/tink:update` / `$tink:update`: 설치 출처를 확인하고 안전한 업데이트 안내
|
|
85
95
|
|
|
86
96
|
## 작동 방식
|
|
87
97
|
|
|
@@ -97,6 +107,8 @@ Tink는 직접 볼 수 있는 파일을 씁니다.
|
|
|
97
107
|
|
|
98
108
|
Rule graph는 작게 유지합니다. Tink는 먼저 필수 규칙을 고르고, 작업 사실이나 keyword에 맞는 선택 규칙만 가져오며, phase별로 이미 읽은 rule id를 기록해 같은 안내를 반복하지 않습니다.
|
|
99
109
|
|
|
110
|
+
설계 메모는 `docs/`에 둡니다. 기본 호환성 기준은 `docs/compatibility-policy.md`에 있으며, 새 작업은 Claude Code와 Codex, macOS와 Windows를 함께 고려해야 합니다. Repo Signal 동작은 `docs/repo-signals.md`에 정리되어 있고, 외부 context 안전 기준은 `docs/mcp-safe-profile.md`에 정리되어 있습니다.
|
|
111
|
+
|
|
100
112
|
중요한 원칙은 승인입니다. 현재 작업을 진행하는 승인과, 미래에도 재사용될 상태를 저장하는 승인은 별개입니다. 새 하네스, 메모리, rule graph, hook guard 저장은 항상 별도 승인이 필요합니다.
|
|
101
113
|
|
|
102
114
|
## Tink가 아닌 것
|