@zalom/plastic 1.0.0-beta.9 → 1.0.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.
Files changed (107) hide show
  1. package/PLASTIC-reference.md +133 -0
  2. package/PLASTIC.md +398 -82
  3. package/README.md +99 -82
  4. package/agents/plastic-brainstorming.md +12 -9
  5. package/agents/plastic-enforcer.md +52 -12
  6. package/agents/plastic-executor.md +10 -10
  7. package/agents/plastic-future-intent-researcher.md +4 -8
  8. package/agents/plastic-intent-curator.md +12 -14
  9. package/agents/plastic-intent-discovery.md +35 -0
  10. package/agents/plastic-planner.md +15 -10
  11. package/agents/plastic-spec-specialist.md +15 -10
  12. package/bin/plastic.js +7 -3
  13. package/hooks/code-gate +10 -1
  14. package/hooks/hooks.json +28 -3
  15. package/hooks/lock-gate +21 -0
  16. package/hooks/retrieval-gate +10 -0
  17. package/hooks/savepoint-pre +10 -0
  18. package/hooks/statusline +48 -6
  19. package/package.json +2 -1
  20. package/scripts/agent-report +21 -0
  21. package/scripts/dashboard.rb +98 -23
  22. package/scripts/doctor.rb +232 -5
  23. package/scripts/hook-auto-arm +1 -1
  24. package/scripts/hook-bash-gate +22 -4
  25. package/scripts/hook-code-gate +11 -6
  26. package/scripts/hook-continue +17 -0
  27. package/scripts/hook-create-gate +45 -9
  28. package/scripts/hook-gate-check +24 -23
  29. package/scripts/hook-lock-gate +83 -0
  30. package/scripts/hook-retrieval-gate +148 -0
  31. package/scripts/hook-savepoint-pre +32 -0
  32. package/scripts/hook-session-start +1 -1
  33. package/scripts/insight-append +51 -0
  34. package/scripts/install.rb +44 -7
  35. package/scripts/lib/agent_models.rb +43 -0
  36. package/scripts/lib/bridge.rb +924 -84
  37. package/scripts/lib/dashboard_banner.rb +42 -0
  38. package/scripts/lib/hook_registry.rb +95 -0
  39. package/scripts/lib/insights.rb +86 -0
  40. package/scripts/lib/installer_core.rb +100 -60
  41. package/scripts/lib/link_suggestions.rb +319 -0
  42. package/scripts/lib/lock.rb +375 -0
  43. package/scripts/lib/power_tools.rb +22 -21
  44. package/scripts/lib/preflight.rb +79 -0
  45. package/scripts/lib/qmd_sync.rb +15 -0
  46. package/scripts/lib/retrieval_gate.rb +211 -0
  47. package/scripts/lib/worktree.rb +384 -0
  48. package/scripts/link-suggest +213 -0
  49. package/scripts/new-intent +9 -1
  50. package/scripts/plastic-lock +164 -0
  51. package/scripts/read-config +4 -0
  52. package/scripts/spawn-preamble +11 -3
  53. package/scripts/update.rb +16 -7
  54. package/skills/auto/SKILL.md +126 -19
  55. package/skills/auto/references/agent-architecture.md +7 -4
  56. package/skills/auto/references/agent-report-contract.md +36 -1
  57. package/skills/auto/references/end-tail.md +56 -0
  58. package/skills/auto/references/human-report-contract.md +55 -0
  59. package/skills/auto/references/tiers.md +77 -0
  60. package/skills/brainstorming/SKILL.md +7 -34
  61. package/skills/brainstorming/references/design-principles.md +49 -0
  62. package/skills/continuing/SKILL.md +26 -7
  63. package/skills/creating-intent/SKILL.md +13 -28
  64. package/skills/creating-project/SKILL.md +11 -74
  65. package/skills/creating-project/references/project-scaffolding.md +97 -0
  66. package/skills/creating-skills/SKILL.md +65 -0
  67. package/skills/creating-skills/evals/evals.json +108 -0
  68. package/skills/creating-skills/references/agents.md +168 -0
  69. package/skills/creating-skills/references/evals.md +41 -0
  70. package/skills/creating-skills/references/hooks.md +248 -0
  71. package/skills/creating-skills/references/progressive-disclosure.md +176 -0
  72. package/skills/creating-skills/references/scripts.md +166 -0
  73. package/skills/creating-skills/references/skills.md +165 -0
  74. package/skills/creating-skills/scripts/scaffold.rb +313 -0
  75. package/skills/dashboard/SKILL.md +13 -11
  76. package/skills/dashboard/references/classification.md +22 -0
  77. package/skills/doctor/SKILL.md +10 -7
  78. package/skills/executing-plan/SKILL.md +4 -4
  79. package/skills/humanizer/SKILL.md +39 -0
  80. package/skills/humanizer/evals/evals.json +70 -0
  81. package/skills/humanizer/references/always-on-snippet.md +9 -0
  82. package/skills/humanizer/references/examples.md +48 -0
  83. package/skills/install/SKILL.md +75 -84
  84. package/skills/intent-curator/SKILL.md +5 -1
  85. package/skills/intent-discovery/SKILL.md +47 -0
  86. package/skills/intent-starting/SKILL.md +130 -0
  87. package/skills/intent-starting/evals/evals.json +117 -0
  88. package/skills/intent-starting/references/boarding-matrix.md +35 -0
  89. package/skills/linking-intents/SKILL.md +48 -12
  90. package/skills/lock/SKILL.md +41 -0
  91. package/skills/managing-index/SKILL.md +6 -0
  92. package/skills/releasing/SKILL.md +44 -29
  93. package/skills/releasing/references/promotion-and-tagging.md +60 -0
  94. package/skills/roadmap/SKILL.md +51 -0
  95. package/skills/roadmap/references/file-format.md +91 -0
  96. package/skills/roadmap/references/operations.md +78 -0
  97. package/skills/uninstall/SKILL.md +29 -11
  98. package/skills/update/SKILL.md +34 -23
  99. package/skills/versions/SKILL.md +27 -12
  100. package/skills/writing-plans/SKILL.md +10 -88
  101. package/skills/writing-plans/references/plan-format.md +102 -0
  102. package/templates/config.yml +8 -0
  103. package/templates/outcome.md +3 -0
  104. package/templates/revisions.md +58 -0
  105. package/templates/roadmap.md +30 -0
  106. package/skills/writing-instructions/SKILL.md +0 -159
  107. package/skills/writing-instructions/references/agentskills-spec.md +0 -135
@@ -0,0 +1,384 @@
1
+ # encoding: UTF-8
2
+ # frozen_string_literal: true
3
+
4
+ require "json"
5
+ require "yaml"
6
+ require "socket"
7
+ require "time"
8
+ require_relative "lock"
9
+
10
+ # Worktree -- Plastic-supplied git worktree isolation and the delivery lock
11
+ # (intent 73c / 73c1).
12
+ #
13
+ # The harness `EnterWorktree` tool assumes cwd IS the repo root, which is false
14
+ # for Plastic (cwd is often the parent of the repo subdir). When the mismatch
15
+ # occurs the tool silently degrades to a plain feature branch on the shared
16
+ # checkout, so parallel intent deliveries are NOT isolated. This module makes
17
+ # isolation deterministic and cwd-independent: Plastic resolves the repo from
18
+ # projects.yml and runs `git -C <repo> worktree add`, so the cwd-not-root bug
19
+ # dies by construction (decision D6).
20
+ #
21
+ # Two worktrees per project intent, both named `{id}--{slug}` (decision D2):
22
+ # code worktree <repo>/.claude/worktrees/{id}--{slug} branch plastic/{id}--{slug}
23
+ # store worktree <plastic_home>/.worktrees/{id}--{slug} branch plastic-store/{id}--{slug}
24
+ #
25
+ # The durable delivery.lock file in the intent dir is the single-owner
26
+ # delivery lock (intent 108): session-keyed, lease-based, explicit takeover.
27
+ #
28
+ # Pure and dependency-injected: every git call goes through an injected
29
+ # `ShellRunner`, so unit tests are hermetic (no real git; inject a fake runner).
30
+ # No eval, no global/ENV config injection.
31
+ module Worktree
32
+ module_function
33
+
34
+ # --- ShellRunner (DI seam) -------------------------------------------------
35
+
36
+ # The default runner shells out to real `git`. Tests inject a fake with the
37
+ # same `run(*args)` contract so no real git runs in unit tests.
38
+ class ShellRunner
39
+ Result = Struct.new(:status, :stdout, :stderr) do
40
+ def success?
41
+ status.zero?
42
+ end
43
+ end
44
+
45
+ def run(*args)
46
+ require "open3"
47
+ out, err, status = Open3.capture3("git", *args.map(&:to_s))
48
+ Result.new(status.exitstatus.to_i, out, err)
49
+ end
50
+ end
51
+
52
+ # --- pure helpers ----------------------------------------------------------
53
+
54
+ def blank?(value)
55
+ value.nil? || value.to_s.strip.empty?
56
+ end
57
+
58
+ # The `{id}--{slug}` identity shared by both worktrees and both branches.
59
+ def dir_name(intent_id, intent_slug)
60
+ "#{intent_id}--#{intent_slug}"
61
+ end
62
+
63
+ # Pure, deterministic. Returns the four paths/branches. No git calls.
64
+ # `repo_path` is resolved from projects.yml when nil; when it cannot be
65
+ # resolved the code worktree path/branch are nil (a global-store-only intent).
66
+ def paths(slug:, intent_id:, intent_slug:, home: Dir.home, repo_path: nil)
67
+ name = dir_name(intent_id, intent_slug)
68
+ repo = repo_path || repo_for(slug, home: home)
69
+ plastic_home = File.expand_path(File.join(home, ".plastic"))
70
+
71
+ code_path = repo ? File.join(File.expand_path(repo), ".claude", "worktrees", name) : nil
72
+ store_path = File.join(plastic_home, ".worktrees", name)
73
+
74
+ {
75
+ "code" => code_path,
76
+ "code_branch" => code_path ? "plastic/#{name}" : nil,
77
+ "store" => store_path,
78
+ "store_branch" => "plastic-store/#{name}",
79
+ }
80
+ end
81
+
82
+ # Absolute repo path for a project slug from `~/.plastic/projects.yml`, or nil.
83
+ # Reuses the qmd_sync safe-loader pattern: any failure yields nil.
84
+ def repo_for(slug, home: Dir.home)
85
+ return nil if blank?(slug)
86
+ projects = load_projects(home)
87
+ info = projects[slug.to_s]
88
+ path = info.is_a?(Hash) ? info["path"] : nil
89
+ return nil if blank?(path)
90
+ File.expand_path(path)
91
+ end
92
+
93
+ # --- provisioning ----------------------------------------------------------
94
+
95
+ # Resolve the slug from the bridge's intent.store, create code + store
96
+ # worktrees (idempotent: reuse an existing worktree path, do not error), write
97
+ # the `worktree` block plus `provisioned: true` onto bridge_data, return it.
98
+ #
99
+ # Fails open with a stderr log when the repo is non-git or unresolvable:
100
+ # sets `provisioned: false` and leaves `code: null`. All git ops use
101
+ # `git -C <resolved path>` -- never cwd (decision D6).
102
+ def provision(bridge_data, home: Dir.home, runner: ShellRunner.new)
103
+ return bridge_data unless bridge_data.is_a?(Hash)
104
+ intent = bridge_data["intent"] || {}
105
+ intent_id = intent["id"].to_s
106
+ store = intent["store"].to_s
107
+ intent_slug = slug_from_dir(intent["dir"]) || slug_from_dir(store)
108
+
109
+ slug = slug_for_store(store, home: home)
110
+ p = paths(slug: slug, intent_id: intent_id, intent_slug: intent_slug, home: home)
111
+
112
+ block = {
113
+ "code" => nil,
114
+ "code_branch" => nil,
115
+ "store" => p["store"],
116
+ "store_branch" => p["store_branch"],
117
+ "provisioned" => false,
118
+ }
119
+
120
+ plastic_home = File.expand_path(File.join(home, ".plastic"))
121
+
122
+ # Gitignore safety (intent 73c3): the store worktrees live under the store git
123
+ # repo, so without ignoring `.worktrees/` a `git add -A` sweeps their gitlinks
124
+ # into the store commit. Ensure both ignore entries before any worktree add.
125
+ ensure_gitignored(plastic_home, ".worktrees/", runner: runner)
126
+
127
+ # The durable lock files live inside intent dirs under the store git repo
128
+ # (intent 108, D2): transient state, never committed.
129
+ ensure_gitignored(plastic_home, "*.lock", runner: runner)
130
+
131
+ # Store worktree: created against the plastic home git repo. Fail-open if the
132
+ # store repo is not a git repo (a fresh global store may be ungit'd).
133
+ store_ok = add_worktree(runner, repo: plastic_home,
134
+ worktree: p["store"], branch: p["store_branch"],
135
+ label: "store")
136
+
137
+ # Code worktree: MANDATORY for project intents. Fail-open when the repo is
138
+ # unresolvable or non-git -- that is the global-store-only / non-git case.
139
+ repo = repo_for(slug, home: home)
140
+ code_ok = false
141
+ if repo && git_repo?(runner, repo)
142
+ ensure_gitignored(repo, ".claude/worktrees/", runner: runner)
143
+ code_ok = add_worktree(runner, repo: repo,
144
+ worktree: p["code"], branch: p["code_branch"],
145
+ label: "code")
146
+ if code_ok
147
+ block["code"] = p["code"]
148
+ block["code_branch"] = p["code_branch"]
149
+ end
150
+ else
151
+ warn "plastic: worktree provision fail-open -- repo for slug #{slug.inspect} " \
152
+ "is unresolvable or not a git repo; code worktree skipped"
153
+ end
154
+
155
+ block["store"] = store_ok ? p["store"] : nil
156
+ block["store_branch"] = store_ok ? p["store_branch"] : nil
157
+
158
+ # provisioned is true only when the MANDATORY code worktree exists. The gate
159
+ # fails open on provisioned: false (non-git / global-only).
160
+ block["provisioned"] = code_ok
161
+
162
+ bridge_data["worktree"] = block
163
+ bridge_data
164
+ end
165
+
166
+ # Remove both worktrees (then `git worktree prune`), clear the worktree block.
167
+ # No-op when nothing was provisioned. CLEANUP (73c3) layers the merge-vs-remove
168
+ # policy on top via `finish`; this is the plain remove. Pass `remove: false` to
169
+ # clear the block WITHOUT touching git (so `finish` can merge first, then call
170
+ # release to drop the worktrees once the code branch is integrated).
171
+ def release(bridge_data, home: Dir.home, runner: ShellRunner.new, remove: true)
172
+ return bridge_data unless bridge_data.is_a?(Hash)
173
+ block = bridge_data["worktree"]
174
+ return bridge_data unless block.is_a?(Hash)
175
+
176
+ if remove
177
+ plastic_home = File.expand_path(File.join(home, ".plastic"))
178
+ slug = slug_for_store(bridge_data.dig("intent", "store").to_s, home: home)
179
+ repo = repo_for(slug, home: home)
180
+
181
+ remove_worktree(runner, repo: repo, worktree: block["code"]) if repo && block["code"]
182
+ remove_worktree(runner, repo: plastic_home, worktree: block["store"]) if block["store"]
183
+
184
+ prune(runner, repo: repo) if repo
185
+ prune(runner, repo: plastic_home)
186
+ end
187
+
188
+ bridge_data.delete("worktree")
189
+ bridge_data
190
+ end
191
+
192
+ # --- cleanup policy (merge-vs-remove) -------------------------------------
193
+
194
+ # Finish an intent's delivery by tearing down its worktrees, optionally merging
195
+ # the code branch back first (intent 73c3). The merge-vs-remove decision is the
196
+ # one piece of policy on top of the plain `release`:
197
+ #
198
+ # merge: true -> the releasing path. Merge the intent's code branch
199
+ # (`plastic/{id}--{slug}`) into the repo's default branch
200
+ # BEFORE removing the worktrees, so the work is integrated and
201
+ # not lost when the worktree disappears. Then `release`.
202
+ # merge: false -> the disarm / abandon path. Just `release` (plain remove);
203
+ # the branch survives and can be reclaimed.
204
+ #
205
+ # Fail-open and idempotent throughout: a missing block, missing branch, or any
206
+ # git failure never raises and never blocks teardown. All git ops use
207
+ # `git -C <path>`, never cwd (decision D6). No-op when nothing was provisioned.
208
+ def finish(bridge_data, home: Dir.home, runner: ShellRunner.new, merge: false)
209
+ return bridge_data unless bridge_data.is_a?(Hash)
210
+ block = bridge_data["worktree"]
211
+ return bridge_data unless block.is_a?(Hash)
212
+
213
+ if merge
214
+ slug = slug_for_store(bridge_data.dig("intent", "store").to_s, home: home)
215
+ repo = repo_for(slug, home: home)
216
+ branch = block["code_branch"]
217
+ merge_branch(runner, repo: repo, branch: branch) if repo && !blank?(branch)
218
+ end
219
+
220
+ release(bridge_data, home: home, runner: runner, remove: true)
221
+ end
222
+
223
+ # Merge `branch` into the repo's default branch from the main checkout. The
224
+ # worktree the branch is checked out in stays put; we merge in the repo dir
225
+ # itself (its own current branch is the integration target). Idempotent: a
226
+ # no-op merge ("Already up to date") still succeeds. Fail-open: a conflicting
227
+ # or otherwise failing merge is aborted and logged, never raised, so teardown
228
+ # still proceeds (CLEANUP must not strand a worktree).
229
+ def merge_branch(runner, repo:, branch:)
230
+ return false if blank?(repo) || blank?(branch)
231
+ target = current_branch(runner, repo: repo)
232
+ return false if blank?(target) || target == branch
233
+
234
+ res = runner.run("-C", repo, "merge", "--no-ff", "--no-edit", branch)
235
+ return true if res.success?
236
+
237
+ # Leave the integration branch clean: abort a half-applied/conflicted merge.
238
+ runner.run("-C", repo, "merge", "--abort")
239
+ warn "plastic: worktree finish could not merge #{branch.inspect} into " \
240
+ "#{target.inspect}: #{res.stderr.to_s.strip}; removing worktree without merge"
241
+ false
242
+ end
243
+
244
+ # The repo's current branch (the integration target), or nil when detached /
245
+ # unresolvable.
246
+ def current_branch(runner, repo:)
247
+ return nil if blank?(repo)
248
+ res = runner.run("-C", repo, "rev-parse", "--abbrev-ref", "HEAD")
249
+ return nil unless res.success?
250
+ name = res.stdout.to_s.strip
251
+ (name.empty? || name == "HEAD") ? nil : name
252
+ end
253
+
254
+ # --- gitignore safety ------------------------------------------------------
255
+
256
+ # Ensure `entry` is present in `<repo>/.gitignore`, appending it once if absent
257
+ # (idempotent). Without this, the store worktrees that live UNDER the store git
258
+ # repo (~/.plastic/.worktrees/) get swept into the store commit by a `git add
259
+ # -A`, polluting the index with worktree gitlinks (observed during 73c1
260
+ # integration). Provisioning and cleanup both call this so the repos' indexes
261
+ # stay clean. Best-effort and non-raising: any failure is logged, never raised.
262
+ def ensure_gitignored(repo, entry, runner: ShellRunner.new)
263
+ return false if blank?(repo) || blank?(entry) || !Dir.exist?(repo)
264
+ gitignore = File.join(File.expand_path(repo), ".gitignore")
265
+ want = entry.to_s.strip
266
+
267
+ existing = File.exist?(gitignore) ? File.read(gitignore) : ""
268
+ present = existing.each_line.any? { |line| line.strip == want }
269
+ return true if present
270
+
271
+ File.open(gitignore, "a") do |io|
272
+ io.write("\n") unless existing.empty? || existing.end_with?("\n")
273
+ io.write("#{want}\n")
274
+ end
275
+ true
276
+ rescue StandardError => e
277
+ warn "plastic: ensure_gitignored(#{entry.inspect}) failed for #{repo.inspect}: #{e.message}"
278
+ false
279
+ end
280
+
281
+ # --- lock ------------------------------------------------------------------
282
+
283
+ # True iff ANOTHER session's delivery.lock is FRESH on this intent's dir
284
+ # (intent 108, D2): the durable lock file decides; /tmp bridges are not
285
+ # consulted and no pid is probed. current_session being the owner or a
286
+ # delegate does not count as "other". A stale lock does not hold (explicit
287
+ # takeover reclaims it).
288
+ def lock_held_by_other?(intent_id:, store:, current_session:, home: Dir.home,
289
+ ttl: Lock::TTL_SECONDS, now: Time.now)
290
+ return false if blank?(store)
291
+ dir = Dir.glob(File.join(File.expand_path(store), "#{intent_id}--*")).first
292
+ return false unless dir
293
+ data = Lock.read(dir)
294
+ return false unless data
295
+ return false if Lock.authorized?(data, current_session)
296
+ Lock.fresh?(dir, ttl: ttl, now: now)
297
+ rescue StandardError
298
+ false
299
+ end
300
+
301
+ # --- git operations (all use -C, never cwd) --------------------------------
302
+
303
+ # Idempotent worktree add. If `worktree` already exists on disk, treat as
304
+ # reuse (success, no git call). Otherwise `git -C <repo> worktree add <wt>
305
+ # -b <branch>`; if the branch already exists, retry without -b (reattach).
306
+ def add_worktree(runner, repo:, worktree:, branch:, label:)
307
+ return false if blank?(repo) || blank?(worktree)
308
+ return true if Dir.exist?(worktree) # idempotent reuse
309
+
310
+ res = runner.run("-C", repo, "worktree", "add", worktree, "-b", branch)
311
+ return true if res.success?
312
+
313
+ # Branch may already exist (a prior provision that was pruned but kept the
314
+ # branch). Retry attaching the existing branch.
315
+ res2 = runner.run("-C", repo, "worktree", "add", worktree, branch)
316
+ return true if res2.success?
317
+
318
+ warn "plastic: worktree add (#{label}) failed: #{res.stderr.to_s.strip}"
319
+ false
320
+ end
321
+
322
+ def remove_worktree(runner, repo:, worktree:)
323
+ return false if blank?(repo) || blank?(worktree)
324
+ res = runner.run("-C", repo, "worktree", "remove", worktree)
325
+ unless res.success?
326
+ # Force-remove tolerates dirty/locked worktrees; CLEANUP owns merge policy.
327
+ res = runner.run("-C", repo, "worktree", "remove", "--force", worktree)
328
+ end
329
+ res.success?
330
+ end
331
+
332
+ def prune(runner, repo:)
333
+ return false if blank?(repo)
334
+ runner.run("-C", repo, "worktree", "prune").success?
335
+ end
336
+
337
+ # True iff `repo` is a git work tree (idempotent, no mutation).
338
+ def git_repo?(runner, repo)
339
+ return false if blank?(repo) || !Dir.exist?(repo)
340
+ res = runner.run("-C", repo, "rev-parse", "--is-inside-work-tree")
341
+ res.success? && res.stdout.to_s.strip == "true"
342
+ end
343
+
344
+ # --- internals (projects.yml resolution, mirrors qmd_sync) -----------------
345
+
346
+ def load_projects(home)
347
+ path = File.join(File.expand_path(home), ".plastic", "projects.yml")
348
+ return {} unless File.exist?(path)
349
+ data = begin
350
+ YAML.safe_load(File.read(path)) || {}
351
+ rescue StandardError
352
+ {}
353
+ end
354
+ projects = data.is_a?(Hash) ? data["projects"] : nil
355
+ projects.is_a?(Hash) ? projects : {}
356
+ end
357
+
358
+ # Resolve a project slug from a store directory. A project's tactical store
359
+ # lives at <plastic_home>/projects/<slug>/store; the global store yields nil
360
+ # (no project repo). Mirrors qmd_sync's slug_for_store fallback.
361
+ def slug_for_store(store_dir, home: Dir.home)
362
+ return nil if blank?(store_dir)
363
+ plastic_home = File.expand_path(File.join(home, ".plastic"))
364
+ store_dir = File.expand_path(store_dir)
365
+ return nil if store_dir == File.join(plastic_home, "store")
366
+
367
+ parts = store_dir.split(File::SEPARATOR)
368
+ idx = parts.rindex("projects")
369
+ return parts[idx + 1] if idx && parts[idx + 1] && parts[idx + 2] == "store"
370
+ nil
371
+ end
372
+
373
+ # Best-effort slug for the worktree dir-name from an intent dir/store path:
374
+ # the basename `{id}--{slug}` -> the `{slug}` portion (split on the first
375
+ # `--`). Used only for naming.
376
+ def slug_from_dir(dir)
377
+ return nil if blank?(dir)
378
+ base = File.basename(dir.to_s)
379
+ idx = base.index("--")
380
+ return nil unless idx
381
+ base[(idx + 2)..]
382
+ end
383
+
384
+ end
@@ -0,0 +1,213 @@
1
+ #!/usr/bin/env ruby
2
+ # encoding: UTF-8
3
+ # frozen_string_literal: true
4
+
5
+ # link-suggest - support links decided by CONTEXT INFLUENCE (intent 91, D7). Links are
6
+ # NOT graded by a script: whether one intent's context influenced another is a
7
+ # judgement an agent makes by reading the candidate's Intent + Context. This tool
8
+ # gathers candidates with that evidence, records a CONFIRMED edge in frontmatter plus a
9
+ # dated rating/reason line in the intent's `## Insights` section, and flags drift. It
10
+ # never writes a `## Links` line and never deletes.
11
+ #
12
+ # `## Links` is a DERIVED view of `sources`/`chain` (Convention over Configuration).
13
+ # Tiers, by context influence:
14
+ # sources - the foundational context that shaped this intent's creation.
15
+ # chain - the context that materially helps DELIVER this intent. HIGH bar.
16
+ # tags - loose theme grouping for search. Not a link.
17
+ #
18
+ # Usage:
19
+ # link-suggest <subject_id> [--store-dir PATH] [--plastic-home PATH]
20
+ # link-suggest <subject_id> --record <target_id> --edge <sources|chain>
21
+ # --rating <high|medium|low> --reason "..." --confirm
22
+ # link-suggest --help
23
+ #
24
+ # Default (no --record) prints candidates WITH their Intent+Context plus any drift, and
25
+ # writes nothing. --record without --confirm prints what would happen and writes
26
+ # nothing. --edge is explicit and required (sources is decided by origin, never
27
+ # inferred); --rating is required when --edge is chain.
28
+
29
+ require_relative "lib/link_suggestions"
30
+
31
+ module LinkSuggestCLI
32
+ module_function
33
+
34
+ DEFAULT_HOME = File.join(Dir.home, ".plastic")
35
+
36
+ USAGE = <<~TXT
37
+ Usage:
38
+ link-suggest <subject_id> [--store-dir PATH] [--plastic-home PATH]
39
+ link-suggest <subject_id> --record <target_id> --edge <sources|chain> \\
40
+ --rating <high|medium|low> --reason "..." --confirm
41
+ link-suggest --help
42
+
43
+ Links are decided by context influence, judged by an agent reading each
44
+ candidate's Intent + Context. This tool only gathers candidates with that
45
+ evidence, records a confirmed edge plus its rating/reason in the intent's
46
+ ## Insights section, and flags drift. It never writes a ## Links line and
47
+ never deletes.
48
+
49
+ --edge is explicit and required (sources is decided by origin, never inferred).
50
+ --rating is required when --edge is chain. Without --confirm, nothing is written.
51
+ TXT
52
+
53
+ def parse(argv)
54
+ opts = { home: DEFAULT_HOME, store_dir: nil, subject: nil, help: false,
55
+ record: nil, edge: nil, rating: nil, reason: nil, confirm: false }
56
+ i = 0
57
+ while i < argv.length
58
+ case argv[i]
59
+ when "--help", "-h" then opts[:help] = true; i += 1
60
+ when "--plastic-home" then opts[:home] = argv[i + 1]; i += 2
61
+ when "--store-dir" then opts[:store_dir] = argv[i + 1]; i += 2
62
+ when "--record" then opts[:record] = argv[i + 1]; i += 2
63
+ when "--edge" then opts[:edge] = (argv[i + 1] || "").to_sym; i += 2
64
+ when "--rating" then opts[:rating] = argv[i + 1]; i += 2
65
+ when "--reason" then opts[:reason] = argv[i + 1]; i += 2
66
+ when "--confirm" then opts[:confirm] = true; i += 1
67
+ else
68
+ opts[:subject] ||= argv[i]
69
+ i += 1
70
+ end
71
+ end
72
+ opts[:store_dir] ||= File.join(opts[:home], "store")
73
+ opts
74
+ end
75
+
76
+ # Print the discovery candidates with their Intent + Context evidence, plus drift.
77
+ def report(tool, subject, out: $stdout)
78
+ nodes = tool.load_nodes
79
+ unless nodes.key?(subject)
80
+ out.puts "link-suggest: no intent #{subject.inspect} in #{tool.store_dir}"
81
+ return 1
82
+ end
83
+
84
+ cands = tool.gather(subject, nodes: nodes)
85
+ out.puts "Candidates for #{subject} (discovery only; judge influence by reading context):"
86
+ if cands.empty?
87
+ out.puts " (none)"
88
+ else
89
+ cands.each { |c| print_candidate(c, out) }
90
+ end
91
+
92
+ flaws = tool.drift(subject, nodes: nodes)
93
+ out.puts "Drift for #{subject}:"
94
+ if flaws.empty?
95
+ out.puts " (none)"
96
+ else
97
+ flaws.each { |f| out.puts " [drift] #{f.detail}" }
98
+ end
99
+ 0
100
+ end
101
+
102
+ def print_candidate(cand, out)
103
+ out.puts " - #{cand.id} #{cand.label}"
104
+ out.puts " Intent: #{excerpt(cand.intent)}" unless cand.intent.empty?
105
+ out.puts " Context: #{excerpt(cand.context)}" unless cand.context.empty?
106
+ end
107
+
108
+ # A one-paragraph excerpt of a section, for scannable evidence.
109
+ def excerpt(text, limit: 280)
110
+ flat = text.to_s.gsub(/\s+/, " ").strip
111
+ flat.length > limit ? "#{flat[0, limit]}..." : flat
112
+ end
113
+
114
+ def do_record(tool, opts, out: $stdout)
115
+ if opts[:edge].nil? || !%i[sources chain].include?(opts[:edge])
116
+ out.puts "link-suggest: --record requires --edge sources|chain (explicit, never inferred)."
117
+ return 1
118
+ end
119
+ if opts[:edge] == :chain && (opts[:rating].nil? || !LinkSuggestions::RATINGS.include?(opts[:rating]))
120
+ out.puts "link-suggest: --rating high|medium|low is required for a chain edge."
121
+ return 1
122
+ end
123
+
124
+ unless opts[:confirm]
125
+ out.puts "Would record #{opts[:edge]} edge #{opts[:subject]} -> #{opts[:record]} " \
126
+ "(rating #{opts[:rating] || "-"}, reason: #{opts[:reason] || "-"}). " \
127
+ "Re-run with --confirm to write. Nothing written."
128
+ return 0
129
+ end
130
+
131
+ wrote = tool.record_edge(opts[:subject], opts[:record],
132
+ edge: opts[:edge], rating: opts[:rating],
133
+ reason: opts[:reason], confirm: true)
134
+ if wrote
135
+ out.puts "Recorded #{opts[:edge]} edge #{opts[:subject]} -> #{opts[:record]} " \
136
+ "and appended a rating/reason line to the intent's ## Insights. " \
137
+ "Reproject ## Links with scripts/project-links."
138
+ return 0
139
+ end
140
+ out.puts "No edge written (edge may already exist, or intent missing)."
141
+ 0
142
+ end
143
+
144
+ def run(argv, out: $stdout)
145
+ opts = parse(argv)
146
+ if opts[:help]
147
+ out.puts USAGE
148
+ return 0
149
+ end
150
+ unless opts[:subject]
151
+ out.puts USAGE
152
+ return 1
153
+ end
154
+
155
+ tool = LinkSuggestions.new(store_dir: opts[:store_dir], finder: build_finder(opts[:store_dir]))
156
+
157
+ return do_record(tool, opts, out: out) if opts[:record]
158
+
159
+ report(tool, opts[:subject], out: out)
160
+ end
161
+
162
+ # The real candidate-finder, wired here (not in the lib): use QMD when available,
163
+ # else fall back to the lib's cheap family/tag/adjacent net. Discovery only.
164
+ def build_finder(store_dir)
165
+ qmd = qmd_finder(store_dir)
166
+ qmd || LinkSuggestions::FamilyTagFinder.new
167
+ end
168
+
169
+ # A QMD-backed finder when the `qmd` (or qmd-sync) CLI is on PATH. It seeds discovery
170
+ # from the subject's intent line, unions the hits with the cheap fallback net, and
171
+ # returns ids present in the store. Any failure falls back silently. Discovery only,
172
+ # never a grade.
173
+ def qmd_finder(_store_dir)
174
+ return nil unless qmd_available?
175
+
176
+ fallback = LinkSuggestions::FamilyTagFinder.new
177
+ lambda do |subject_id, nodes|
178
+ base = fallback.call(subject_id, nodes)
179
+ subject = nodes[subject_id]
180
+ return base unless subject
181
+
182
+ hits = qmd_search_ids(subject[:label], nodes)
183
+ (base + hits).uniq.reject { |id| id == subject_id }
184
+ end
185
+ end
186
+
187
+ def qmd_available?
188
+ %w[qmd qmd-sync].any? { |c| system("command -v #{c} >/dev/null 2>&1") }
189
+ rescue StandardError
190
+ false
191
+ end
192
+
193
+ # Best-effort: ask qmd-sync for related text and map any id-shaped tokens back to
194
+ # store ids. Never raises; returns [] on any trouble.
195
+ def qmd_search_ids(query, nodes)
196
+ return [] if query.to_s.strip.empty?
197
+
198
+ out = `ruby #{File.join(Dir.home, ".plastic", "scripts", "qmd-sync")} search #{shell_quote(query)} 2>/dev/null`
199
+ return [] if out.nil? || out.empty?
200
+
201
+ out.scan(/\b([0-9]+[a-z0-9]*)\b/).flatten.uniq.select { |id| nodes.key?(id) }
202
+ rescue StandardError
203
+ []
204
+ end
205
+
206
+ def shell_quote(str)
207
+ "'#{str.to_s.gsub("'", "'\\\\''")}'"
208
+ end
209
+ end
210
+
211
+ if $PROGRAM_NAME == __FILE__
212
+ exit LinkSuggestCLI.run(ARGV)
213
+ end
@@ -311,7 +311,15 @@ def main(argv)
311
311
  File.write(File.join(intent_dir, name), "#{Bridge::PLACEHOLDER_SENTINEL}\n#{body}")
312
312
  end
313
313
 
314
- # 6. Self-validate (frontmatter + sanctioned sections).
314
+ # 6. Stamp the born savepoint line (intent 81). The first ledger line is the
315
+ # `What` bookend, written deterministically at creation rather than relying on
316
+ # a PostToolUse gate firing on the intent-file write (which is missed in some
317
+ # sessions / harnesses). The intent file is never a sentinel placeholder, so
318
+ # append_savepoint records `What {id}--{slug}.md`. Idempotent: a later gate
319
+ # fire adds nothing.
320
+ Bridge.append_savepoint(intent_dir, intent_file)
321
+
322
+ # 7. Self-validate (frontmatter + sanctioned sections).
315
323
  result = IntentValidator.validate(intent_dir)
316
324
  unless result[:ok]
317
325
  warn "new-intent: scaffolded intent is NOT born complete:"