Chatbot: the PIF risk is the answer, not a footnote

Marty: the answer has to cover what a member is risking when they send POL to
somebody they have not spoken to and have no commitment from.

The canned answer now leads the advice with "do not send anything until you have
actually talked to that person and they have told you they will use it", then says
plainly: the transfer is wallet to wallet and irreversible, there is no refund and
no chargeback, support cannot pull it back, the gift is theirs whatever they do with
it, and they are free to go quiet or spend it on something else without breaking any
rule. It names the worst case for what it is, which is that a tank member joined
with nobody working with them and may never have engaged, so an unanswered PIF is
the easiest money on this site to lose.

It gives the arithmetic both ways rather than only the upside: a gift that works
costs about half, because the contract pays the sponsor 50 percent when they buy;
a gift to someone who never answers costs all of it. It ends on never gift money
you need and never borrow to do it.

The same guidance goes into the AI prompt as a standing rule, so PIF is never sold
as a tactic on any phrasing that misses the canned pattern, and a "should I PIF
someone from the tank" question starts with talk to them first, not the mechanics.

qa/chatbot-parse.mjs is now 16 assertions: the 9 response-shape cases plus 7 that
pin each risk line, so a future rewrite cannot quietly drop them.
qa/run.sh member: 0 bugs.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
martbost
2026-09-17 05:36:42 -05:00
parent 6c8cc0ede2
commit 3867b28bd4
2 changed files with 14 additions and 3 deletions
+11 -1
View File
@@ -56,7 +56,17 @@ BODY = '';
const pif = await ask('Should I pif someone from the holding tank');
t('the PIF question answers with no AI at all', /PIF is a gift/.test(pif), pif.slice(0, 80));
t('and it says you cannot PIF someone still in the tank', /still sitting in the holding tank/.test(pif));
t('and it does not promise they will buy', /no guarantee they buy at all/.test(pif));
// Marty, 2026-09-17: the risk is the answer, not a footnote. Sending POL to someone
// who has never replied is the easiest money on the site to lose, so every one of
// these must survive any future edit to the wording.
t('it says talk to them and get a commitment FIRST', /do not send anything until you have actually talked to that person/i.test(pif));
t('it says the transfer is irreversible with no refund', /no refund, no chargeback/i.test(pif));
t('it says support cannot pull it back', /nothing we can do to pull it back/i.test(pif));
t('it says they may go quiet or spend it elsewhere', /go quiet, spend it on something else, or never sign in again/i.test(pif));
t('it flags the tank member as the highest risk case', /easiest money on this site to lose/i.test(pif));
t('it gives the honest arithmetic both ways', /costs you about half/.test(pif) && /costs you all of it/.test(pif));
t('it says never gift money you need and never borrow', /never gift money you need, never borrow/i.test(pif));
t('it never sells PIF as a tactic', !/you should (definitely |really )?pif/i.test(pif));
https.request = realRequest;
srv.close();