paput-mcp 4.2.28 → 4.2.41

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 (36) hide show
  1. package/dist/cli/rules/paput-00-completion-checklist.md +1 -0
  2. package/dist/cli/rules/paput-zz-self-verify.md +2 -1
  3. package/dist/cli/setup-ai.js +8 -2
  4. package/dist/cli/setup-ai.js.map +1 -1
  5. package/dist/handlers/add-knowledge-candidates/handler.js +27 -8
  6. package/dist/handlers/add-knowledge-candidates/handler.js.map +1 -1
  7. package/dist/handlers/add-knowledge-candidates/tool.js +15 -7
  8. package/dist/handlers/add-knowledge-candidates/tool.js.map +1 -1
  9. package/dist/handlers/create-memos/tool.js +5 -4
  10. package/dist/handlers/create-memos/tool.js.map +1 -1
  11. package/dist/handlers/save-pending-candidate/tool.js +3 -2
  12. package/dist/handlers/save-pending-candidate/tool.js.map +1 -1
  13. package/dist/handlers/update-memo/tool.js +1 -1
  14. package/dist/handlers/update-memo/tool.js.map +1 -1
  15. package/dist/handlers/update-pending-candidate/tool.js +7 -2
  16. package/dist/handlers/update-pending-candidate/tool.js.map +1 -1
  17. package/dist/http.js +10 -0
  18. package/dist/http.js.map +1 -1
  19. package/dist/plugin/skills/analyze-discard-policy/SKILL.md +1 -0
  20. package/dist/plugin/skills/capture/SKILL.md +18 -1
  21. package/dist/plugin/skills/dashboard-analysis/SKILL.md +1 -0
  22. package/dist/plugin/skills/harvest/SKILL.md +297 -5
  23. package/dist/plugin/skills/interview-qa/SKILL.md +1 -0
  24. package/dist/plugin/skills/principle-synthesizer/SKILL.md +1 -0
  25. package/dist/plugin/skills/project-document/SKILL.md +3 -2
  26. package/dist/plugin/skills/project-episodes/SKILL.md +1 -0
  27. package/dist/plugin/skills/save/SKILL.md +1 -0
  28. package/dist/plugin/skills/self-pr-draft/SKILL.md +1 -0
  29. package/dist/schemas/tool-input.js +55 -13
  30. package/dist/schemas/tool-input.js.map +1 -1
  31. package/dist/services/api/knowledge-candidate.js.map +1 -1
  32. package/dist/services/api/onboarding.js +19 -0
  33. package/dist/services/api/onboarding.js.map +1 -0
  34. package/dist/services/onboarding-nudge.js +85 -0
  35. package/dist/services/onboarding-nudge.js.map +1 -0
  36. package/package.json +1 -1
@@ -1,5 +1,7 @@
1
1
  ---
2
- description: Use this to harvest reusable knowledge from past local Claude/Codex sessions when the AI client can read local files. Safe to run repeatedly — it skips already-processed sessions and only reviews new ones — so use it both for first-time onboarding and for periodic catch-up. Pay special attention to AI-collaboration practices and postures (operation / principle), the scarce, durable axis.
2
+ name: paput-harvest
3
+ description: Use this to harvest reusable knowledge from past local Claude/Codex sessions when the AI client can read local files. Safe to run repeatedly — it skips already-processed sessions and only reviews new ones — so use it both for first-time onboarding and for periodic catch-up. Pay special attention to AI-collaboration practices and postures (operation / principle), the scarce, durable axis. Also covers the backfill sweep for repeated user instructions (invoke with the `backfill` argument, or ask "同じ指示を拾い直して" / "backfill repeated instructions"), which re-reads already-processed sessions.
4
+ argument-hint: [backfill]
3
5
  ---
4
6
 
5
7
  # PaPut Harvest
@@ -22,10 +24,27 @@ periodic catch-up. There is no separate "init" step.
22
24
  2. Find local session files the AI client can access:
23
25
  - Claude: `~/.claude/projects/**/*.jsonl`
24
26
  - Codex: `~/.codex/sessions/**/*.jsonl`
27
+ Decisively agent-driven transcripts are OUT OF SCOPE at discovery: Claude
28
+ files whose basename starts with `agent-`, and Codex files whose
29
+ first-line `session_meta` carries `payload.source` of `exec` or a
30
+ `{"subagent": ...}` value. Checking the basename or that first metadata
31
+ line IS the filter and is always allowed; what out-of-scope prohibits is
32
+ reading the transcript body, counting the file into the backlog, and
33
+ marking it. Their yield (reviewer/implementer-side practices) has proven
34
+ to saturate, and the verdict is recomputable from the file itself on every
35
+ run, so keeping processed markers for them would only add per-run write
36
+ cost. Files with missing or unrecognized origin metadata stay in scope
37
+ (safe side). Reading agent-driven transcripts remains possible only as an
38
+ explicit opt-in — the user names them, or a backfill run is asked to
39
+ include them.
25
40
  3. For each file, derive:
26
41
  - `source`: `claude` or `codex`
27
42
  - `session_id`: file basename without `.jsonl`
28
43
  - `source_session_updated_at`: file modified time in ISO 8601 format
44
+ - the session's project hint: for Claude, the project directory name in the
45
+ file path (`~/.claude/projects/<project-dir>/...`); for Codex, the `cwd`
46
+ recorded near the top of the file. Worktree paths resolve to their parent
47
+ repository.
29
48
  4. Skip sessions already returned by `paput_list_processed_sessions`.
30
49
  5. Report the count and a short summary of unprocessed sessions to the user.
31
50
  6. Only when the user wants it, read the relevant session transcript directly
@@ -45,11 +64,277 @@ periodic catch-up. There is no separate "init" step.
45
64
  it around memo types. Then set `memo_type_keys` from the finalized body
46
65
  (see Memo Type below); classify AI-collaboration practices as `operation`
47
66
  and postures as `principle`.
67
+ Also set `projects: [{id, title}]` on every candidate from the session's
68
+ project hint (Step 3): resolve the repository / directory name to a PaPut
69
+ project with `paput_get_project_context`, once per distinct repository, not
70
+ per candidate. The link records where the knowledge came from — the body
71
+ still stays generalized and cross-project. If the hint does not resolve to
72
+ a project, register with `projects` empty and say so in the report; never
73
+ guess a project from the candidate's topic.
48
74
  9. If the session was reviewed but no candidates should be added, call
49
75
  `paput_mark_processed_session` with `source`, `session_id`, and
50
76
  `source_session_updated_at`.
51
- 10. Briefly report added candidates, duplicates, rejected candidates, and
52
- sessions marked as processed.
77
+ 10. Briefly report added candidates, duplicates, rejected candidates,
78
+ persistent-instruction-file additions proposed, and sessions marked as
79
+ processed.
80
+
81
+ When a run delegates session reading to subagents (batch processing), follow
82
+ Delegated Batch Reading below — every duty in these steps travels with the
83
+ reader, not with the coordinator. When the backlog is large — delegated or
84
+ not — triage sessions first (see Session Triage) to spend reading effort where
85
+ the yield is, and run the scope decision through the user (see Large-Backlog
86
+ Funnel) instead of choosing a strategy yourself.
87
+
88
+ ## Session Triage
89
+
90
+ When the unprocessed backlog is too large to read in one pass, rank sessions
91
+ with cheap machine signals before reading. All are computable by scanning each
92
+ JSONL once, without reading the full transcript. Check the origin metadata
93
+ first — when it yields a decisive verdict the delegation heuristic is
94
+ skipped:
95
+
96
+ - **Origin metadata (check first).** Session files usually record how the
97
+ session was launched; read this before any content heuristic. (After the
98
+ Step 2 scope filter, decisive agent-driven verdicts have normally already
99
+ removed those files from scope — this bullet chiefly serves the filter
100
+ itself, the pre-check of non-`agent-*` Claude files, and explicit opt-in
101
+ reads.) Codex: the
102
+ file's first line is a `session_meta` entry whose `payload.source` is `cli`
103
+ (TUI) or `vscode` (IDE extension) for human-driven sessions, and `exec` (a
104
+ `codex exec` one-shot, i.e. a spawned agent) or a `{"subagent": ...}` value
105
+ for in-client subagents. All four are decisive: `exec` / `subagent` mean
106
+ agent-driven unconditionally — no marker evidence needed — and `cli` /
107
+ `vscode` record a human launch path. Do not use `payload.originator` as a
108
+ substitute — it disagrees with `source` on subagent sessions (they can
109
+ carry `codex-tui`). Claude: `agent-*.jsonl` files are subagent transcripts,
110
+ decisively agent-driven; but the absence of the prefix is only a prior, not
111
+ a verdict — headless `claude -p` / SDK spawns write regular `<uuid>.jsonl`
112
+ files — so non-`agent-*` Claude files, and any session whose metadata is
113
+ missing or unrecognized (older clients, other formats), still go through
114
+ the delegation heuristic below.
115
+ - **Delegation heuristic (fallback when origin metadata is inconclusive).** A
116
+ session is likely an agent-driven one-shot run (a reviewer or implementer
117
+ spawned by another agent, not driven by the human — distinct from
118
+ delegating the harvest reading itself, covered in the next section) when it
119
+ has at most ~2 real user text messages AND its first user message contains
120
+ delegation-template markers (review severity vocabulary such
121
+ as must-fix/should-fix, static-verification constraints, plan-file
122
+ references) inside a task-prompt-shaped message. Marker evidence is
123
+ required: a long first prompt alone, with no markers, defaults to
124
+ interactive — a human pasting one long request looks exactly the same, and
125
+ misreading it as agent-driven would discard user-prompt-axis evidence. Count
126
+ only real user text — skip tool results, command echoes, and injected
127
+ instruction/environment blocks; on some clients global instruction files
128
+ leak into user messages, so ignore marker hits inside injected boilerplate.
129
+ Errors must fall on the safe side: an agent-driven session misread as
130
+ interactive merely gets a full read; never let an interactive session be
131
+ misread as agent-driven and downgraded.
132
+ - **Capture signal.** Whether the session already called
133
+ `paput_add_knowledge_candidates` itself. Detect actual tool calls (tool_use /
134
+ function_call entries), not string mentions — tool definitions and
135
+ instruction files mention the tool name in nearly every session. On Codex
136
+ transcripts the tool name also appears inside tools-listing execution
137
+ metadata, so a plain string match over the file still false-positives:
138
+ match the call entry shape itself (a `function_call` payload carrying the
139
+ tool name), and confirm the signal on a spot-check before acting on it at
140
+ scale (see Large-Backlog Funnel).
141
+
142
+ Then read in priority order:
143
+
144
+ 1. **Interactive sessions with no capture call** — full extraction first. The
145
+ user-prompt axis applies with full force; this is where unharvested human
146
+ judgment concentrates.
147
+ 2. **Interactive sessions that already captured** — read, but expect most
148
+ candidates to duplicate what the session captured about itself in real time;
149
+ the residual value is usually side topics the in-session capture skipped.
150
+ (Such sessions still appear in the backlog when their capture ran with a
151
+ session id that does not match the file basename — common before id
152
+ normalization — so the processed marker never matched the file.) On a large
153
+ backlog, the user may direct these to be marked processed without reading
154
+ (see Large-Backlog Funnel) — that is the user's call, never the agent's.
155
+ 3. **Agent-driven sessions** — with the Step 2 scope filter, decisively
156
+ agent-driven transcripts normally never reach this list; this priority
157
+ applies to sessions judged agent-driven by the delegation heuristic and to
158
+ explicit opt-in reads. Their user messages were authored by the
159
+ delegating agent, NOT the human user: never treat them as user-prompt-axis
160
+ evidence. This applies to the backfill sweep too: never count an
161
+ agent-driven session's user messages as recurring user instructions —
162
+ delegation templates repeat verbatim across spawned sessions and would
163
+ falsely feed the server-side repetition counter and trip skill proposals.
164
+ Their unique value concentrates in reviewer/implementer-side practices,
165
+ which saturates after a few batches. Group same-feature rounds (an R1/R2/R3
166
+ review chain, an implement-then-review pair) and read one representative
167
+ fully, skimming the rest for deltas. Once a group shape's yield has proven
168
+ near-zero across batches, skimming down to mark-only is acceptable for that
169
+ shape — never for interactive sessions.
170
+
171
+ ## Large-Backlog Funnel (ask, don't decide)
172
+
173
+ When the unprocessed backlog is large (roughly 50+ sessions), the scope
174
+ decision belongs to the user, not the agent. Do the cheap analysis first, then
175
+ ask — with evidence attached — instead of picking a strategy yourself. Reading
176
+ everything overspends; marking sessions processed without reading on your own
177
+ judgment overreaches. Neither default is yours to take.
178
+
179
+ 1. **Prepare the evidence before asking.** Without reading full transcripts:
180
+ build a project × month × capture-signal breakdown of the backlog; run the
181
+ Session Triage signals and spot-check the newest 1-2 sessions against the
182
+ transcript to confirm the signals hold (one spot-check catches a
183
+ miscalibrated capture signal before it discards real backlog); then extract
184
+ the first real user message of each session without a capture signal (skip
185
+ injected instruction files, environment blocks, and command echoes) and
186
+ bucket the sessions by request type. Typical buckets and their observed
187
+ yield:
188
+ - implementation / fix / design-consultation requests — highest yield; user
189
+ judgment and corrections concentrate here
190
+ - review-request one-shots — yield starts high but saturates once a
191
+ feature's lessons are memoized; sample one per feature group
192
+ - mechanical work (rebase and conflict resolution, branch pulls, commit
193
+ runs, doc generation, skill invocations) — near-zero yield
194
+ - error/log investigations and short Q&A — low yield
195
+ - empty / greeting-only — zero yield
196
+ 2. **Ask the user in one round.** Present the breakdown, the bucket table with
197
+ counts and a few example first-messages per bucket, and the spot-check
198
+ findings, then ask at bucket level: whether capture-verified sessions may
199
+ be marked processed without reading (their learnings were extracted
200
+ in-session; the residual is usually side topics); which first-message
201
+ buckets to read and which to mark processed without reading; and how far
202
+ back this run should go. Batch these into a single question round — do not
203
+ interrogate stage by stage. Record in the report which buckets were marked
204
+ processed without reading at the user's direction.
205
+ 3. **Execute the user's split.** Bulk-mark the excluded buckets with cheap
206
+ parallel marker subagents; send only the approved buckets to Delegated
207
+ Batch Reading, grouped by feature/repo.
208
+ 4. **Close with the reconciliation audit** defined in Delegated Batch Reading.
209
+ It closes every run that delegated writes, funnel or not.
210
+ 5. **Headless fallback.** If no user is available to answer (scheduled or
211
+ unattended runs), do not mark anything processed without reading: fall back
212
+ to the standard priority order and process only as much as the run's budget
213
+ allows, leaving the rest for the next run. A scheduled or unattended
214
+ invocation is itself the user's standing consent to read within that
215
+ budget — it satisfies the Step 6 gate — but it never grants marking
216
+ sessions processed without reading.
217
+
218
+ ## Delegated Batch Reading
219
+
220
+ Large backlogs are best processed by delegating session reading to parallel
221
+ subagents. This applies to the normal steps and equally to a delegated backfill
222
+ sweep. Keep the division of labor explicit — the default failure mode is the
223
+ coordinator absorbing duties it cannot fulfill or suppressing registrations it
224
+ should not gate:
225
+
226
+ - The flow is two-phase (readers report → coordinator cross-checks → readers
227
+ register), so readers must be spawned in a resumable form that can receive a
228
+ second message from the coordinator; a one-shot task that terminates after
229
+ returning its result cannot execute the registration phase.
230
+ - Every extraction duty of this skill travels with the reader: the extraction
231
+ criteria, the AI-collaboration and user-prompt axes, exclusion rules, and the
232
+ project-document routing. Do not reduce readers to text extractors.
233
+ - Readers report candidate titles, memo types, and one-to-two-line gists to the
234
+ coordinator — not full bodies. The coordinator's role is what only the
235
+ cross-reader view enables: merging same-shape candidates that different
236
+ readers extracted from related sessions, and rejecting duplicates of already
237
+ pending (check with `paput_list_pending_candidates`) or recently added
238
+ candidates.
239
+ - To merge same-shape candidates, the coordinator designates one reader as the
240
+ absorbing side and relays the other candidates' key points as text; the
241
+ absorbing reader folds them into its own draft and registers the merged
242
+ candidate under its own session. The coordinator never regenerates candidate
243
+ bodies — that doubles generation cost.
244
+ - After the coordinator's cross-check, each reader registers its approved
245
+ candidates with `paput_add_knowledge_candidates`, and marks with
246
+ `paput_mark_processed_session` every reviewed session that ends up with no
247
+ registration — both sessions that produced no candidates and sessions whose
248
+ candidates were all rejected or absorbed in the cross-check. The coordinator
249
+ distributes the real session identity (the Step 3 fields `source`,
250
+ `session_id`, `source_session_updated_at`) AND the resolved project link
251
+ (`projects` id and title, resolved centrally once per distinct repository)
252
+ to each reader up front — reconstructing identifiers from truncated listings
253
+ is an error source, and per-reader project resolution wastes calls.
254
+ - Project-specific repeated instructions and procedures are NOT subject to
255
+ coordinator approval. Each reader registers every occurrence directly with
256
+ `paput_add_project_document` (kind `procedure`) as it appears, resolving the
257
+ project with `paput_get_project_context` when needed. The server deduplicates
258
+ and counts repetitions via duplicate hits; collapsing or filtering repeats
259
+ client-side — including "the coordinator decided it was already documented" —
260
+ starves the repetition counter and skill proposals never fire. Only the
261
+ secrets/customer-data exclusion applies. Surface any skill proposal returned
262
+ by the server to the user.
263
+ - Treat subagent success reports about external writes (registrations, marks)
264
+ as claims, not facts — a subagent can report success for a call that never
265
+ took effect, and can rationalize the gap when questioned. Close every run
266
+ that delegated writes with a reconciliation audit: re-fetch the processed
267
+ markers and reconcile them against the local file list (match Codex markers
268
+ by both the rollout basename and the bare UUID — both formats exist in
269
+ history). Gap detection runs in the file→marker direction only, over the
270
+ in-scope sessions this run actually processed — sessions deliberately left
271
+ for a future run (budget limits, deferred buckets) are not gaps. A
272
+ processed-but-unmarked file means a silently failed write.
273
+ Exclude files that are out of harvest scope per Step 2, and ignore
274
+ historical markers that point at out-of-scope or since-deleted files —
275
+ orphan markers are not failures and need no action. Any session still unmatched means a delegated write silently
276
+ failed despite a success report: re-execute it and verify by reading the
277
+ record back. The audit is the accounting of record — when it contradicts a
278
+ report, trust the ledger. Completion is declared only at zero gaps.
279
+
280
+ ## Backfill: repeated-instruction sweep
281
+
282
+ Run this mode when the skill is invoked with the `backfill` argument, or when
283
+ the user explicitly asks for it (for example "backfill repeated instructions"
284
+ or "同じ指示を拾い直して"). Unlike the normal run it re-reads sessions that are
285
+ already marked processed, so it is opt-in, not part of the idempotent catch-up.
286
+
287
+ Why it exists: sessions processed before the user-prompt axis lens was added
288
+ were marked processed and are never re-reviewed, so the repeated instructions
289
+ they contain never reach the server-side repetition counter and no skill
290
+ proposal can fire. This sweep recovers that history.
291
+
292
+ 1. Discover session files as in Steps 2–3, but do NOT skip processed sessions.
293
+ 2. Read user messages only (see JSONL Parsing Guide; `role: user`). Skip
294
+ assistant output and tool results — this keeps the sweep cheap. With a large
295
+ history, start from the most recent sessions or the projects the user names,
296
+ report progress per batch, and ask before expanding further back.
297
+ 3. Collect recurring same-shape user instructions: declared constraints,
298
+ requested procedures, and corrections that appear across sessions.
299
+ 4. Separate standing norms from task procedures. A recurring instruction that
300
+ is a standing behavioral norm — one meant to apply to every turn or session
301
+ rather than to a triggerable task (respond in a given language, keep
302
+ comments minimal, always declare X before Y) — does not belong in a
303
+ procedure document or a skill: a skill would never fire for it. Instead,
304
+ propose a one-line addition to the client's persistent instruction file
305
+ (CLAUDE.md / AGENTS.md or the client's equivalent), showing the exact line
306
+ and where it would go. Pick the target by the norm's scope: a norm tied to
307
+ one project goes to that project's file, a norm the user restates across
308
+ projects goes to the user-global file. Propose only — never edit that file
309
+ without the user's approval. If the norm also generalizes across projects as a stance,
310
+ it may additionally become a `principle` pending candidate under step 6's
311
+ session-state rule.
312
+ 5. Route task-shaped repeats by the user-prompt axis rules. Project-specific
313
+ repeated instructions go to `paput_add_project_document` (kind `procedure`) — register
314
+ each recurrence as it appears, without collapsing repeats on the client side;
315
+ the server deduplicates, counts the repetition via duplicate hits, and
316
+ includes a skill proposal in the response once the threshold is reached.
317
+ Surface any returned proposal to the user instead of silently continuing.
318
+ `paput_add_project_document` never touches processed-session markers, so
319
+ this is safe for processed and unprocessed sessions alike.
320
+ 6. Handle cross-project practices and postures by session state, because
321
+ `paput_add_knowledge_candidates` marks the source session as processed (see
322
+ Notes) and cannot be separated from that side effect:
323
+ - From already-processed sessions, add them to pending as usual; the
324
+ resulting re-mark only refreshes the marker timestamp and is acceptable.
325
+ - From unprocessed sessions, do NOT add pending candidates during the
326
+ sweep — the backfill has read only the user messages, and marking the
327
+ session processed now would hide the unreviewed assistant side from the
328
+ normal harvest forever. Note the finding and leave the session to the
329
+ normal harvest flow (or review it fully now if the user asks).
330
+ 7. Report what was found: the recurring instruction groups, procedures
331
+ registered, duplicates counted toward repetition, skill proposals surfaced,
332
+ persistent-instruction-file additions proposed, and any unprocessed sessions
333
+ deferred to the normal flow.
334
+
335
+ All exclusion rules below still apply. Secrets and customer data are excluded
336
+ on every path — procedure documents included; the additional pending-only
337
+ rules (no local paths or project-specific content) apply to pending candidates.
53
338
 
54
339
  ## JSONL Parsing Guide
55
340
 
@@ -131,7 +416,11 @@ for:
131
416
  `principle`.
132
417
  - Declared constraint / prohibition: "do not ..." or "always ..." style
133
418
  instructions. When the same constraint recurs across projects, treat it as
134
- `principle` material.
419
+ `principle` material. When it is a standing norm the user keeps re-stating
420
+ in prompts — one meant to apply to every turn, not to a triggerable task —
421
+ also propose a one-line addition to the client's persistent instruction file
422
+ (CLAUDE.md / AGENTS.md or equivalent); propose only, never edit that file
423
+ without approval.
135
424
  - Repeated boilerplate instruction: nearly the same request appearing again and
136
425
  again. If it is project-specific, try to save it as a `procedure` with
137
426
  `paput_add_project_document` so that repeated registrations are counted toward
@@ -201,6 +490,9 @@ or service behavior stays `knowledge` even when written as guidance.
201
490
  - Do not save directly to PaPut.
202
491
  - Add candidates to the API-backed pending queue first.
203
492
  - `paput_add_knowledge_candidates` marks the source session as processed when candidates are submitted.
204
- - Use `paput_mark_processed_session` after reviewing a session that produces no candidates.
493
+ - Use `paput_mark_processed_session` after reviewing a session that produces no candidates — or, on a large backlog, for buckets the user explicitly directed to be marked processed without reading (see Large-Backlog Funnel).
205
494
  - Report duplicates or similar memos when found.
206
495
  - Prefer high-quality pending candidates over increasing the pending count.
496
+ - Every candidate carries its source project in `projects` (Step 8); a
497
+ registration wave with all-empty `projects` is a process error, not a
498
+ normal outcome.
@@ -1,4 +1,5 @@
1
1
  ---
2
+ name: paput-interview-qa
2
3
  description: Use this to source, draft, and optionally save the PaPut skill sheet Q&A (FAQ) section from interview questions, public and private memo clusters, and general technical-interview FAQ research. Trigger when the user asks to build, refresh, or add to their FAQ, interview Q&A, or "frequently asked questions" section.
3
4
  ---
4
5
 
@@ -1,4 +1,5 @@
1
1
  ---
2
+ name: paput-principle-synthesizer
2
3
  description: Use this to synthesize cross-cutting principle candidates from the user's accumulated public decision/operation memos (and private design docs) and add them to pending. It surfaces the postures that run through many decisions — the thinnest, most AI-durable memo type — which the per-conversation paput-capture cannot reach. It only proposes to pending; it never saves to PaPut.
3
4
  ---
4
5
 
@@ -1,4 +1,5 @@
1
1
  ---
2
+ name: paput-project-document
2
3
  description: Use this to save a project-specific design decision (design_doc) or repeatable procedure (procedure) as a PaPut project document via paput_add_project_document. This is Check 1 of the completion checklist, independent from reusable-knowledge capture.
3
4
  ---
4
5
 
@@ -14,7 +15,7 @@ Save a project-specific design decision or a repeatable project procedure as a p
14
15
 
15
16
  ## Steps
16
17
 
17
- 1. Identify the active project. Call `paput_get_project_context` if it has not been loaded this session, and take the `skill_sheet_project_id` from the result.
18
+ 1. Identify the active project. Call `paput_get_project_context` if it has not been loaded this session — pass a project name if the connection is not already pinned to one — and take the `skill_sheet_project_id` from the result.
18
19
  2. Decide the kind: `design_doc` for a decision (include the decision, the reasons, and the rejected alternatives) or `procedure` for repeatable steps.
19
20
  3. Save with `paput_add_project_document`. Review the result: if `duplicate` is set, update the existing document instead of saving again; if `similar_documents` are returned, confirm you are not duplicating them.
20
21
  4. If the result contains a `skill_proposal`, ask the user whether to turn the repeated procedure into a skill. On approval, create the skill first, then call `paput_promote_project_documents` with the related document IDs; on rejection, call `paput_discard_project_proposal` with the reason.
@@ -22,7 +23,7 @@ Save a project-specific design decision or a repeatable project procedure as a p
22
23
 
23
24
  ## Do Not Save
24
25
 
25
- - Repository conventions or anything that belongs in CLAUDE.md / AGENTS.md.
26
+ - Repository conventions or anything that belongs in your own project instruction files (for example CLAUDE.md or AGENTS.md).
26
27
  - Reusable cross-project knowledge — that goes to the `paput-capture` workflow (Check 2).
27
28
  - Secrets or customer data.
28
29
 
@@ -1,4 +1,5 @@
1
1
  ---
2
+ name: paput-project-episodes
2
3
  description: Use this to draft and optionally save design-and-judgment episodes for a PaPut skill sheet project from the project's public linked memos. Trigger when the user asks to generate, refresh, or save project episodes, project judgment episodes, or the "design and judgment" section for a skill sheet project.
3
4
  ---
4
5
 
@@ -1,4 +1,5 @@
1
1
  ---
2
+ name: paput-save
2
3
  description: Use this to review pending candidates first, then save only candidates explicitly approved by the user. This skill never saves automatically.
3
4
  ---
4
5
 
@@ -1,4 +1,5 @@
1
1
  ---
2
+ name: paput-self-pr-draft
2
3
  description: Use this to draft a first-person self PR for the PaPut skill sheet from existing profile, skills, projects, project episodes, achievements, and public decision/operation/principle memos. It presents a draft first and saves only when the user explicitly asks.
3
4
  ---
4
5
 
@@ -116,9 +116,17 @@ const knowledgeCandidateSchema = z.object({
116
116
  title: z.string(),
117
117
  body: z.string(),
118
118
  categories: z.array(z.string()).optional(),
119
- memo_type_keys: z.array(z.string()).optional(),
119
+ memo_type_keys: z
120
+ .array(z.string())
121
+ .describe('Array of memo type classification keys (each one of: knowledge, decision, operation, principle). A memo can have multiple keys at once.')
122
+ .optional(),
120
123
  projects: z.array(projectReferenceSchema).optional(),
121
- confidence: z.number().optional(),
124
+ confidence: z
125
+ .number()
126
+ .min(0)
127
+ .max(1)
128
+ .describe('Confidence score from 0 (low) to 1 (high) that this candidate is reusable and worth saving.')
129
+ .optional(),
122
130
  is_public: z.boolean().default(false).optional(),
123
131
  });
124
132
  const createMemoInputSchema = z.object({
@@ -127,16 +135,17 @@ const createMemoInputSchema = z.object({
127
135
  is_public: z.boolean().default(false).describe('Whether to publish the memo'),
128
136
  created_at: z
129
137
  .string()
130
- .describe('Memo creation timestamp in ISO 8601 format, for example 2026-05-30T12:34:56Z')
138
+ .datetime({ offset: true })
139
+ .describe('Memo creation timestamp in ISO 8601 date-time format, for example 2026-05-30T12:34:56Z')
131
140
  .optional(),
132
141
  categories: z.array(z.string()).describe('Memo categories').optional(),
133
142
  projects: z
134
143
  .array(projectReferenceSchema)
135
- .describe('Projects to link when creating the memo')
144
+ .describe('Explicit project references to link (each needs an existing project id). If provided, project_match is ignored.')
136
145
  .optional(),
137
146
  project_match: z
138
147
  .string()
139
- .describe('Project title fragment to search and link when projects are not provided')
148
+ .describe('Project title fragment to search and link, used only when projects is not provided. Ignored if projects is provided.')
140
149
  .optional(),
141
150
  });
142
151
  const goalCategorySchema = z
@@ -156,6 +165,7 @@ const goalInputSchema = z.object({
156
165
  .describe('Goal priority. Lower numbers are higher priority.'),
157
166
  target_date: z
158
167
  .string()
168
+ .date()
159
169
  .describe('Target date in YYYY-MM-DD format')
160
170
  .nullable()
161
171
  .optional(),
@@ -247,11 +257,11 @@ const toolInputSchemas = {
247
257
  categories: z.array(memoCategorySchema).describe('Categories').optional(),
248
258
  projects: z
249
259
  .array(projectReferenceSchema)
250
- .describe('Projects to link when updating the memo')
260
+ .describe('Explicit project references to link (each needs an existing project id). If provided, project_match is ignored.')
251
261
  .optional(),
252
262
  project_match: z
253
263
  .string()
254
- .describe('Project title fragment to search and link when projects are not provided')
264
+ .describe('Project title fragment to search and link, used only when projects is not provided. Ignored if projects is provided.')
255
265
  .optional(),
256
266
  }),
257
267
  paput_get_categories: emptySchema,
@@ -445,8 +455,13 @@ const toolInputSchemas = {
445
455
  .describe('Promotion target, e.g. the skill name or file path (max 255 chars)'),
446
456
  }),
447
457
  paput_add_knowledge_candidates: z.object({
448
- session_id: z.string().describe('Source session ID'),
449
- source: z.enum(['claude', 'codex']).describe('Source session provider'),
458
+ session_id: z
459
+ .string()
460
+ .describe('Source session ID. Required when source is claude or codex; omit for conversation clients without a local session file.')
461
+ .optional(),
462
+ source: z
463
+ .enum(['claude', 'codex', 'claude-ai', 'chatgpt'])
464
+ .describe('Source client. claude = Claude Code CLI, codex = Codex CLI (local sessions), claude-ai = Claude web/desktop/mobile, chatgpt = ChatGPT clients.'),
450
465
  source_session_updated_at: z
451
466
  .string()
452
467
  .describe('Source session updated timestamp in ISO 8601 format')
@@ -485,9 +500,14 @@ const toolInputSchemas = {
485
500
  .optional(),
486
501
  memo_type_keys: z
487
502
  .array(z.enum(['knowledge', 'decision', 'operation', 'principle']))
488
- .describe('Memo type classification keys (a memo can have multiple). decision/operation/principle are the primary material for durable judgment and working-practice summaries.')
503
+ .describe('Array of memo type classification keys (each one of: knowledge, decision, operation, principle). A memo can have multiple keys at once. decision/operation/principle are the primary material for durable judgment and working-practice summaries.')
504
+ .optional(),
505
+ confidence: z
506
+ .number()
507
+ .min(0)
508
+ .max(1)
509
+ .describe('Confidence score from 0 (low) to 1 (high) that this candidate is reusable and worth saving.')
489
510
  .optional(),
490
- confidence: z.number().describe('Confidence score').optional(),
491
511
  is_public: z
492
512
  .boolean()
493
513
  .describe('Whether the saved memo will be public')
@@ -507,7 +527,8 @@ const toolInputSchemas = {
507
527
  body: z.string().describe('Body override when saving').optional(),
508
528
  created_at: z
509
529
  .string()
510
- .describe('Creation timestamp to use for the PaPut memo. Defaults to the source session updated timestamp, then the pending candidate created timestamp.')
530
+ .datetime({ offset: true })
531
+ .describe('Creation timestamp to use for the PaPut memo, in ISO 8601 date-time format. Defaults to the source session updated timestamp, then the pending candidate created timestamp.')
511
532
  .optional(),
512
533
  categories: z.array(z.string()).optional(),
513
534
  projects: z
@@ -543,6 +564,27 @@ export function getGeneratedInputSchema(toolName) {
543
564
  target: 'jsonSchema7',
544
565
  });
545
566
  delete jsonSchema.$schema;
546
- return jsonSchema;
567
+ return normalizeNullableTypeArrays(jsonSchema);
568
+ }
569
+ // zod-to-json-schema が nullable フィールドを `type: [X, "null"]` の配列型で出力すると、
570
+ // 型情報を持たない `any` として扱う JSON Schema コンシューマがある。既存の outputSchema と
571
+ // 同じ `anyOf` 表現に正規化して、型を明示的に保つ。
572
+ function normalizeNullableTypeArrays(value) {
573
+ if (Array.isArray(value)) {
574
+ return value.map(normalizeNullableTypeArrays);
575
+ }
576
+ if (!value || typeof value !== 'object') {
577
+ return value;
578
+ }
579
+ const normalizedEntries = Object.entries(value).map(([key, entry]) => [key, normalizeNullableTypeArrays(entry)]);
580
+ const normalized = Object.fromEntries(normalizedEntries);
581
+ if (Array.isArray(normalized.type)) {
582
+ const { type, ...rest } = normalized;
583
+ return {
584
+ anyOf: type.map((t) => ({ type: t })),
585
+ ...rest,
586
+ };
587
+ }
588
+ return normalized;
547
589
  }
548
590
  //# sourceMappingURL=tool-input.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"tool-input.js","sourceRoot":"","sources":["../../src/schemas/tool-input.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"tool-input.js","sourceRoot":"","sources":["../../src/schemas/tool-input.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"knowledge-candidate.js","sourceRoot":"","sources":["../../../src/services/api/knowledge-candidate.ts"],"names":[],"mappings":"AAgDA,MAAM,CAAC,KAAK,UAAU,4BAA4B,CAChD,MAAiB,EACjB,MAA0C;IAE1C,OAAO,MAAM,CAAC,IAAI,CAChB,kCAAkC,EAClC,MAAM,CACP,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,6BAA6B,CACjD,MAAiB,EACjB,SAA8C,EAAE;IAEhD,MAAM,WAAW,GAAG,IAAI,eAAe,EAAE,CAAC;IAC1C,IAAI,MAAM,CAAC,MAAM;QAAE,WAAW,CAAC,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;IAC/D,IAAI,MAAM,CAAC,KAAK;QAAE,WAAW,CAAC,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;IACpE,MAAM,MAAM,GAAG,WAAW,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,IAAI,WAAW,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IAC1E,OAAO,MAAM,CAAC,GAAG,CACf,mCAAmC,MAAM,EAAE,CAC5C,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,2BAA2B,CAC/C,MAAiB,EACjB,WAAmB;IAEnB,OAAO,MAAM,CAAC,GAAG,CACf,mCAAmC,kBAAkB,CAAC,WAAW,CAAC,EAAE,CACrE,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,8BAA8B,CAClD,MAAiB,EACjB,MAA+B;IAE/B,OAAO,MAAM,CAAC,GAAG,CACf,iCAAiC,EACjC,MAAM,CACP,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,4BAA4B,CAChD,MAAiB,EACjB,MAA+B;IAS/B,OAAO,MAAM,CAAC,GAAG,CACf,sCAAsC,EACtC,MAAM,CACP,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,+BAA+B,CACnD,MAAiB,EACjB,MAAiD;IAOjD,OAAO,MAAM,CAAC,GAAG,CACf,yCAAyC,EACzC,MAAM,CACP,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,sBAAsB,CAC1C,MAAiB;IAEjB,OAAO,MAAM,CAAC,GAAG,CAAgB,4BAA4B,CAAC,CAAC;AACjE,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,yBAAyB,CAC7C,MAAiB,EACjB,QAAgB;IAEhB,OAAO,MAAM,CAAC,GAAG,CAAgB,4BAA4B,EAAE;QAC7D,QAAQ;KACT,CAAC,CAAC;AACL,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,6BAA6B,CACjD,MAAiB,EACjB,KAAc;IAEd,MAAM,MAAM,GAAG,KAAK,CAAC,CAAC,CAAC,UAAU,kBAAkB,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IAC1E,OAAO,MAAM,CAAC,GAAG,CACf,qCAAqC,MAAM,EAAE,CAC9C,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,2BAA2B,CAC/C,MAAiB,EACjB,MAAsB;IAEtB,MAAM,MAAM,GAAG,MAAM,CAAC,CAAC,CAAC,WAAW,kBAAkB,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IACrE,OAAO,MAAM,CAAC,GAAG,CACf,iCAAiC,MAAM,EAAE,CAC1C,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,0BAA0B,CAC9C,MAAiB,EACjB,MAIC;IAED,OAAO,MAAM,CAAC,IAAI,CAAmB,gCAAgC,EAAE,MAAM,CAAC,CAAC;AACjF,CAAC"}
1
+ {"version":3,"file":"knowledge-candidate.js","sourceRoot":"","sources":["../../../src/services/api/knowledge-candidate.ts"],"names":[],"mappings":"AAiDA,MAAM,CAAC,KAAK,UAAU,4BAA4B,CAChD,MAAiB,EACjB,MAA0C;IAE1C,OAAO,MAAM,CAAC,IAAI,CAChB,kCAAkC,EAClC,MAAM,CACP,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,6BAA6B,CACjD,MAAiB,EACjB,SAA8C,EAAE;IAEhD,MAAM,WAAW,GAAG,IAAI,eAAe,EAAE,CAAC;IAC1C,IAAI,MAAM,CAAC,MAAM;QAAE,WAAW,CAAC,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;IAC/D,IAAI,MAAM,CAAC,KAAK;QAAE,WAAW,CAAC,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;IACpE,MAAM,MAAM,GAAG,WAAW,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,IAAI,WAAW,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IAC1E,OAAO,MAAM,CAAC,GAAG,CACf,mCAAmC,MAAM,EAAE,CAC5C,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,2BAA2B,CAC/C,MAAiB,EACjB,WAAmB;IAEnB,OAAO,MAAM,CAAC,GAAG,CACf,mCAAmC,kBAAkB,CAAC,WAAW,CAAC,EAAE,CACrE,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,8BAA8B,CAClD,MAAiB,EACjB,MAA+B;IAE/B,OAAO,MAAM,CAAC,GAAG,CACf,iCAAiC,EACjC,MAAM,CACP,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,4BAA4B,CAChD,MAAiB,EACjB,MAA+B;IAS/B,OAAO,MAAM,CAAC,GAAG,CACf,sCAAsC,EACtC,MAAM,CACP,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,+BAA+B,CACnD,MAAiB,EACjB,MAAiD;IAOjD,OAAO,MAAM,CAAC,GAAG,CACf,yCAAyC,EACzC,MAAM,CACP,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,sBAAsB,CAC1C,MAAiB;IAEjB,OAAO,MAAM,CAAC,GAAG,CAAgB,4BAA4B,CAAC,CAAC;AACjE,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,yBAAyB,CAC7C,MAAiB,EACjB,QAAgB;IAEhB,OAAO,MAAM,CAAC,GAAG,CAAgB,4BAA4B,EAAE;QAC7D,QAAQ;KACT,CAAC,CAAC;AACL,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,6BAA6B,CACjD,MAAiB,EACjB,KAAc;IAEd,MAAM,MAAM,GAAG,KAAK,CAAC,CAAC,CAAC,UAAU,kBAAkB,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IAC1E,OAAO,MAAM,CAAC,GAAG,CACf,qCAAqC,MAAM,EAAE,CAC9C,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,2BAA2B,CAC/C,MAAiB,EACjB,MAAsB;IAEtB,MAAM,MAAM,GAAG,MAAM,CAAC,CAAC,CAAC,WAAW,kBAAkB,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IACrE,OAAO,MAAM,CAAC,GAAG,CACf,iCAAiC,MAAM,EAAE,CAC1C,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,0BAA0B,CAC9C,MAAiB,EACjB,MAIC;IAED,OAAO,MAAM,CAAC,IAAI,CAAmB,gCAAgC,EAAE,MAAM,CAAC,CAAC;AACjF,CAAC"}