$npx -y skills add vouchdev/vouch --skill vouch-rememberFile something the user wants remembered as a cited, review-gated proposal
| 1 | # /vouch-remember |
| 2 | |
| 3 | Turn "$ARGUMENTS" into durable KB knowledge — proposed, never self-approved. |
| 4 | |
| 5 | Steps: |
| 6 | |
| 7 | 1. Call `kb_register_source` with the user's exact wording as `content` |
| 8 | (`source_type: "message"`, a short descriptive `title`). Sources are |
| 9 | evidence intake; registering one writes no knowledge. |
| 10 | 2. Distill the durable fact(s) into one `kb_propose_claim` each, citing the |
| 11 | registered source id in `evidence`. Keep each claim one sentence, |
| 12 | present tense, self-contained. |
| 13 | 3. If the fact is about a person, org, or project the KB doesn't know yet, |
| 14 | also file `kb_propose_entity` (and `kb_propose_relation` to link it). |
| 15 | 4. Report the proposal id(s) and remind the user: pending items are invisible |
| 16 | to retrieval until a human runs `vouch approve <id>` or `vouch review`. |
| 17 | |
| 18 | Never call `kb_approve` — the human at the gate decides what the KB believes. |