thumbgate 1.4.0 → 1.4.1
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/README.md +25 -0
- package/.claude-plugin/marketplace.json +1 -1
- package/README.md +195 -168
- package/adapters/chatgpt/INSTALL.md +59 -4
- package/bin/cli.js +4 -0
- package/config/github-about.json +1 -1
- package/package.json +9 -5
- package/public/index.html +44 -23
- package/scripts/auto-promote-gates.js +5 -3
- package/scripts/billing-setup.js +109 -0
- package/scripts/build-claude-mcpb.js +71 -5
- package/scripts/distribution-surfaces.js +28 -0
- package/scripts/feedback-to-rules.js +27 -8
- package/scripts/gates-engine.js +51 -7
- package/scripts/hosted-config.js +2 -0
- package/scripts/hybrid-feedback-context.js +26 -16
- package/scripts/operational-summary.js +41 -5
- package/scripts/ralph-loop.js +376 -0
- package/scripts/ralph-mode-ci.js +331 -0
- package/scripts/rotate-stripe-webhook-secret.js +314 -0
- package/src/api/server.js +23 -3
- package/scripts/__pycache__/train_from_feedback.cpython-312.pyc +0 -0
|
@@ -0,0 +1,376 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
const fs = require('node:fs');
|
|
5
|
+
const path = require('node:path');
|
|
6
|
+
const { spawnSync } = require('node:child_process');
|
|
7
|
+
const {
|
|
8
|
+
buildEngagementAudit,
|
|
9
|
+
DEFAULT_DRAFTS_PATH,
|
|
10
|
+
DEFAULT_LAUNCH_ASSETS_PATH,
|
|
11
|
+
DEFAULT_REPLY_STATE_PATH,
|
|
12
|
+
DEFAULT_TIMEZONE,
|
|
13
|
+
} = require('./social-analytics/engagement-audit');
|
|
14
|
+
|
|
15
|
+
const REPO_ROOT = path.resolve(__dirname, '..');
|
|
16
|
+
const DEFAULT_ARTIFACT_DIR = path.join(REPO_ROOT, '.artifacts', 'ralph-loop');
|
|
17
|
+
const VALID_MODES = new Set(['all', 'engage', 'poll', 'audit', 'post']);
|
|
18
|
+
const RALPH_STATE_PATHS = [
|
|
19
|
+
path.relative(REPO_ROOT, DEFAULT_REPLY_STATE_PATH),
|
|
20
|
+
path.relative(REPO_ROOT, DEFAULT_DRAFTS_PATH),
|
|
21
|
+
path.relative(REPO_ROOT, DEFAULT_LAUNCH_ASSETS_PATH),
|
|
22
|
+
];
|
|
23
|
+
const VALUE_OPTIONS = new Map([
|
|
24
|
+
['--artifact-dir', 'artifactDir'],
|
|
25
|
+
['--date', 'date'],
|
|
26
|
+
['--mode', 'mode'],
|
|
27
|
+
['--timezone', 'timezone'],
|
|
28
|
+
]);
|
|
29
|
+
|
|
30
|
+
function parseArgs(argv = []) {
|
|
31
|
+
const options = {
|
|
32
|
+
artifactDir: DEFAULT_ARTIFACT_DIR,
|
|
33
|
+
date: '',
|
|
34
|
+
dryRun: false,
|
|
35
|
+
mode: 'all',
|
|
36
|
+
timezone: DEFAULT_TIMEZONE,
|
|
37
|
+
replyStatePath: DEFAULT_REPLY_STATE_PATH,
|
|
38
|
+
draftsPath: DEFAULT_DRAFTS_PATH,
|
|
39
|
+
launchAssetsPath: DEFAULT_LAUNCH_ASSETS_PATH,
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
for (let index = 0; index < argv.length; index += 1) {
|
|
43
|
+
index = consumeArg(options, argv, index);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
options.mode = normalizeMode(options.mode);
|
|
47
|
+
return options;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
function consumeArg(options, argv, index) {
|
|
51
|
+
const token = String(argv[index] || '').trim();
|
|
52
|
+
if (token === '--dry-run') {
|
|
53
|
+
options.dryRun = true;
|
|
54
|
+
return index;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
const inline = token.match(/^(--[^=]+)=(.*)$/);
|
|
58
|
+
if (inline && VALUE_OPTIONS.has(inline[1])) {
|
|
59
|
+
setOption(options, VALUE_OPTIONS.get(inline[1]), inline[2]);
|
|
60
|
+
return index;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
if (VALUE_OPTIONS.has(token) && argv[index + 1]) {
|
|
64
|
+
setOption(options, VALUE_OPTIONS.get(token), argv[index + 1]);
|
|
65
|
+
return index + 1;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
return index;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
function setOption(options, name, value) {
|
|
72
|
+
const trimmed = String(value || '').trim();
|
|
73
|
+
if (name === 'artifactDir') {
|
|
74
|
+
options.artifactDir = path.resolve(trimmed || DEFAULT_ARTIFACT_DIR);
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
if (name === 'timezone') {
|
|
78
|
+
options.timezone = trimmed || DEFAULT_TIMEZONE;
|
|
79
|
+
return;
|
|
80
|
+
}
|
|
81
|
+
options[name] = trimmed || options[name];
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
function normalizeMode(mode) {
|
|
85
|
+
const normalized = String(mode || 'all').trim().toLowerCase();
|
|
86
|
+
if (!VALID_MODES.has(normalized)) {
|
|
87
|
+
throw new Error(`Invalid Ralph mode: ${mode}. Expected one of: ${[...VALID_MODES].join(', ')}`);
|
|
88
|
+
}
|
|
89
|
+
return normalized;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
function hasAnyEnv(env, keys = []) {
|
|
93
|
+
return keys.some((key) => Boolean(env[key]));
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
function hasAllEnv(env, keys = []) {
|
|
97
|
+
return keys.every((key) => Boolean(env[key]));
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
function makeNodeStep(id, scriptPath, args = [], extra = {}) {
|
|
101
|
+
return {
|
|
102
|
+
id,
|
|
103
|
+
command: process.execPath,
|
|
104
|
+
args: [path.join(REPO_ROOT, scriptPath), ...args],
|
|
105
|
+
scriptPath,
|
|
106
|
+
type: 'node',
|
|
107
|
+
...extra,
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
function withSkipReason(step, env) {
|
|
112
|
+
if (step.requiredEnvAll && !hasAllEnv(env, step.requiredEnvAll)) {
|
|
113
|
+
return {
|
|
114
|
+
...step,
|
|
115
|
+
skipReason: `missing env: ${step.requiredEnvAll.filter((key) => !env[key]).join(', ')}`,
|
|
116
|
+
};
|
|
117
|
+
}
|
|
118
|
+
if (step.requiredEnvAny && !hasAnyEnv(env, step.requiredEnvAny)) {
|
|
119
|
+
return {
|
|
120
|
+
...step,
|
|
121
|
+
skipReason: `missing one of: ${step.requiredEnvAny.join(', ')}`,
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
return step;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
function wants(mode, names) {
|
|
128
|
+
return mode === 'all' || names.includes(mode);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
function buildRalphSteps(options = {}, env = process.env) {
|
|
132
|
+
const mode = normalizeMode(options.mode || 'all');
|
|
133
|
+
const dryRun = Boolean(options.dryRun);
|
|
134
|
+
const steps = [];
|
|
135
|
+
|
|
136
|
+
if (wants(mode, ['poll'])) {
|
|
137
|
+
steps.push(makeNodeStep(
|
|
138
|
+
'poll-analytics',
|
|
139
|
+
'scripts/social-analytics/poll-all.js',
|
|
140
|
+
[],
|
|
141
|
+
{
|
|
142
|
+
stage: 'sense',
|
|
143
|
+
description: 'Polls configured social analytics for audience and attribution signals.',
|
|
144
|
+
}
|
|
145
|
+
));
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
if (wants(mode, ['engage'])) {
|
|
149
|
+
steps.push(withSkipReason(makeNodeStep(
|
|
150
|
+
'sync-launch-assets',
|
|
151
|
+
'scripts/social-analytics/sync-launch-assets.js',
|
|
152
|
+
['--limit=50', `--state-path=${options.launchAssetsPath || DEFAULT_LAUNCH_ASSETS_PATH}`],
|
|
153
|
+
{
|
|
154
|
+
stage: 'sense',
|
|
155
|
+
description: 'Syncs owned Zernio launch assets so reply monitoring anchors on current campaign posts.',
|
|
156
|
+
requiredEnvAll: ['ZERNIO_API_KEY'],
|
|
157
|
+
}
|
|
158
|
+
), env));
|
|
159
|
+
|
|
160
|
+
const replyArgs = [];
|
|
161
|
+
if (dryRun) {
|
|
162
|
+
replyArgs.push('--dry-run');
|
|
163
|
+
}
|
|
164
|
+
steps.push(makeNodeStep(
|
|
165
|
+
'reply-monitor',
|
|
166
|
+
'scripts/social-reply-monitor.js',
|
|
167
|
+
replyArgs,
|
|
168
|
+
{
|
|
169
|
+
stage: 'engage',
|
|
170
|
+
description: 'Checks Reddit, X, and LinkedIn reply surfaces with platform-safe posting and draft rules.',
|
|
171
|
+
}
|
|
172
|
+
));
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
if (mode === 'post') {
|
|
176
|
+
const postArgs = [];
|
|
177
|
+
if (dryRun) {
|
|
178
|
+
postArgs.push('--dry-run');
|
|
179
|
+
}
|
|
180
|
+
steps.push(makeNodeStep(
|
|
181
|
+
'daily-social-post',
|
|
182
|
+
'scripts/social-post-hourly.js',
|
|
183
|
+
postArgs,
|
|
184
|
+
{
|
|
185
|
+
stage: 'publish',
|
|
186
|
+
description: 'Runs the one-quality-post lane on demand. Ralph hourly mode does not call this step.',
|
|
187
|
+
requiredEnvAll: ['ZERNIO_API_KEY'],
|
|
188
|
+
}
|
|
189
|
+
));
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
steps.push({
|
|
193
|
+
id: 'engagement-audit',
|
|
194
|
+
stage: 'prove',
|
|
195
|
+
type: 'internal',
|
|
196
|
+
description: 'Builds a machine-readable Ralph Loop audit from reply state, drafts, and launch assets.',
|
|
197
|
+
});
|
|
198
|
+
|
|
199
|
+
return steps.map((step) => withSkipReason(step, env));
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
function runExternalStep(step, env = process.env) {
|
|
203
|
+
const result = spawnSync(step.command, step.args, {
|
|
204
|
+
cwd: REPO_ROOT,
|
|
205
|
+
env,
|
|
206
|
+
encoding: 'utf8',
|
|
207
|
+
maxBuffer: 20 * 1024 * 1024,
|
|
208
|
+
});
|
|
209
|
+
|
|
210
|
+
return {
|
|
211
|
+
exitCode: typeof result.status === 'number' ? result.status : 1,
|
|
212
|
+
stdout: result.stdout || '',
|
|
213
|
+
stderr: result.stderr || '',
|
|
214
|
+
error: result.error ? result.error.message : '',
|
|
215
|
+
};
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
function runAuditStep(options = {}) {
|
|
219
|
+
return buildEngagementAudit({
|
|
220
|
+
date: options.date,
|
|
221
|
+
timezone: options.timezone || DEFAULT_TIMEZONE,
|
|
222
|
+
replyStatePath: options.replyStatePath || DEFAULT_REPLY_STATE_PATH,
|
|
223
|
+
draftsPath: options.draftsPath || DEFAULT_DRAFTS_PATH,
|
|
224
|
+
launchAssetsPath: options.launchAssetsPath || DEFAULT_LAUNCH_ASSETS_PATH,
|
|
225
|
+
});
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
function runStep(step, options = {}, deps = {}) {
|
|
229
|
+
const startedAt = new Date().toISOString();
|
|
230
|
+
|
|
231
|
+
if (step.skipReason) {
|
|
232
|
+
return {
|
|
233
|
+
id: step.id,
|
|
234
|
+
stage: step.stage,
|
|
235
|
+
status: 'skipped',
|
|
236
|
+
skipReason: step.skipReason,
|
|
237
|
+
startedAt,
|
|
238
|
+
finishedAt: new Date().toISOString(),
|
|
239
|
+
};
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
if (step.type === 'internal') {
|
|
243
|
+
const audit = runAuditStep(options);
|
|
244
|
+
return {
|
|
245
|
+
id: step.id,
|
|
246
|
+
stage: step.stage,
|
|
247
|
+
status: 'passed',
|
|
248
|
+
audit,
|
|
249
|
+
startedAt,
|
|
250
|
+
finishedAt: new Date().toISOString(),
|
|
251
|
+
};
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
const runner = deps.runner || runExternalStep;
|
|
255
|
+
const result = runner(step, deps.env || process.env);
|
|
256
|
+
if (result.stdout) process.stdout.write(result.stdout);
|
|
257
|
+
if (result.stderr) process.stderr.write(result.stderr);
|
|
258
|
+
|
|
259
|
+
return {
|
|
260
|
+
id: step.id,
|
|
261
|
+
stage: step.stage,
|
|
262
|
+
status: result.exitCode === 0 ? 'passed' : 'failed',
|
|
263
|
+
exitCode: result.exitCode,
|
|
264
|
+
error: result.error || '',
|
|
265
|
+
stdoutTail: tail(result.stdout),
|
|
266
|
+
stderrTail: tail(result.stderr),
|
|
267
|
+
startedAt,
|
|
268
|
+
finishedAt: new Date().toISOString(),
|
|
269
|
+
};
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
function tail(text, maxChars = 4000) {
|
|
273
|
+
const value = String(text || '');
|
|
274
|
+
return value.length <= maxChars ? value : value.slice(value.length - maxChars);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
function renderMarkdownReport(report) {
|
|
278
|
+
const lines = [
|
|
279
|
+
'# Ralph Loop Audience Engagement Report',
|
|
280
|
+
'',
|
|
281
|
+
`Generated: ${report.generatedAt}`,
|
|
282
|
+
`Mode: ${report.mode}`,
|
|
283
|
+
`Dry run: ${report.dryRun ? 'yes' : 'no'}`,
|
|
284
|
+
'',
|
|
285
|
+
'Ralph Mode keeps the Reliability Gateway pointed at acquisition: sense audience signals, engage safely, and preserve proof for Pre-Action Gates, DPO, and Thompson Sampling review.',
|
|
286
|
+
'',
|
|
287
|
+
'## Steps',
|
|
288
|
+
'',
|
|
289
|
+
'| Step | Stage | Status | Evidence |',
|
|
290
|
+
'|------|-------|--------|----------|',
|
|
291
|
+
];
|
|
292
|
+
|
|
293
|
+
for (const step of report.steps) {
|
|
294
|
+
const evidence = step.skipReason || step.error || `exit ${step.exitCode ?? 0}`;
|
|
295
|
+
lines.push(`| ${step.id} | ${step.stage} | ${step.status} | ${String(evidence).replaceAll('|', '/')} |`);
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
lines.push(
|
|
299
|
+
'',
|
|
300
|
+
'## Audit',
|
|
301
|
+
'',
|
|
302
|
+
`- Checked: ${report.audit.totals.checked}`,
|
|
303
|
+
`- Replied: ${report.audit.totals.replied}`,
|
|
304
|
+
`- Drafted: ${report.audit.totals.drafted}`,
|
|
305
|
+
`- Skipped: ${report.audit.totals.skipped}`,
|
|
306
|
+
'',
|
|
307
|
+
'Authority evidence: docs/VERIFICATION_EVIDENCE.md',
|
|
308
|
+
''
|
|
309
|
+
);
|
|
310
|
+
|
|
311
|
+
return `${lines.join('\n')}\n`;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
function writeReports(report, artifactDir = DEFAULT_ARTIFACT_DIR) {
|
|
315
|
+
fs.mkdirSync(artifactDir, { recursive: true });
|
|
316
|
+
const jsonPath = path.join(artifactDir, 'ralph-loop-report.json');
|
|
317
|
+
const markdownPath = path.join(artifactDir, 'ralph-loop-report.md');
|
|
318
|
+
fs.writeFileSync(jsonPath, `${JSON.stringify(report, null, 2)}\n`, 'utf8');
|
|
319
|
+
fs.writeFileSync(markdownPath, renderMarkdownReport(report), 'utf8');
|
|
320
|
+
return { jsonPath, markdownPath };
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
function runRalphLoop(options = {}, deps = {}) {
|
|
324
|
+
const normalized = {
|
|
325
|
+
...parseArgs([]),
|
|
326
|
+
...options,
|
|
327
|
+
mode: normalizeMode(options.mode || 'all'),
|
|
328
|
+
};
|
|
329
|
+
const env = deps.env || process.env;
|
|
330
|
+
const steps = buildRalphSteps(normalized, env);
|
|
331
|
+
const results = steps.map((step) => runStep(step, normalized, { ...deps, env }));
|
|
332
|
+
const auditStep = results.find((step) => step.id === 'engagement-audit');
|
|
333
|
+
const audit = auditStep?.audit ? auditStep.audit : runAuditStep(normalized);
|
|
334
|
+
const report = {
|
|
335
|
+
generatedAt: new Date().toISOString(),
|
|
336
|
+
mode: normalized.mode,
|
|
337
|
+
dryRun: Boolean(normalized.dryRun),
|
|
338
|
+
cadence: 'hourly_ci',
|
|
339
|
+
statePaths: RALPH_STATE_PATHS,
|
|
340
|
+
steps: results,
|
|
341
|
+
audit,
|
|
342
|
+
};
|
|
343
|
+
report.artifacts = writeReports(report, normalized.artifactDir || DEFAULT_ARTIFACT_DIR);
|
|
344
|
+
return report;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
function isCliEntrypoint(argv = process.argv) {
|
|
348
|
+
return Boolean(argv[1] && path.resolve(argv[1]) === __filename);
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
if (isCliEntrypoint()) {
|
|
352
|
+
try {
|
|
353
|
+
const report = runRalphLoop(parseArgs(process.argv.slice(2)));
|
|
354
|
+
process.stdout.write(`\n[ralph-loop] Report: ${report.artifacts.jsonPath}\n`);
|
|
355
|
+
if (report.steps.some((step) => step.status === 'failed')) {
|
|
356
|
+
process.exitCode = 1;
|
|
357
|
+
}
|
|
358
|
+
} catch (err) {
|
|
359
|
+
console.error(`[ralph-loop] Fatal: ${err.message}`);
|
|
360
|
+
process.exit(1);
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
module.exports = {
|
|
365
|
+
DEFAULT_ARTIFACT_DIR,
|
|
366
|
+
RALPH_STATE_PATHS,
|
|
367
|
+
VALID_MODES,
|
|
368
|
+
buildRalphSteps,
|
|
369
|
+
isCliEntrypoint,
|
|
370
|
+
normalizeMode,
|
|
371
|
+
parseArgs,
|
|
372
|
+
renderMarkdownReport,
|
|
373
|
+
runRalphLoop,
|
|
374
|
+
runStep,
|
|
375
|
+
writeReports,
|
|
376
|
+
};
|