ruvnet/ruflo · error
[GUPP] Push not implemented - stub adapter
Error message
[GUPP] Push not implemented - stub adapter
What it means
Log warning in the stub GUPP adapter's push: remote GUPP sync is not implemented, so push is a no-op that reports zero pushed beads (with a not-configured error when the endpoint is missing) and warns that this is stub behavior.
Source
Thrown at v3/plugins/gastown-bridge/src/index.ts:400
isAvailable(): boolean {
return this.enabled && !!this.endpoint;
}
async pull(_options?: { rig?: string; since?: Date }): Promise<Bead[]> {
if (!this.isAvailable()) {
return [];
}
// Stub: Would connect to GUPP endpoint
console.warn('[GUPP] Pull not implemented - stub adapter');
return [];
}
async push(_beads: Bead[]): Promise<{ pushed: number; errors: string[] }> {
if (!this.isAvailable()) {
return { pushed: 0, errors: ['GUPP not configured'] };
}
// Stub: Would connect to GUPP endpoint
console.warn('[GUPP] Push not implemented - stub adapter');
return { pushed: 0, errors: ['Not implemented'] };
}
async sync(): Promise<{ pulled: number; pushed: number; conflicts: string[] }> {
if (!this.isAvailable()) {
return { pulled: 0, pushed: 0, conflicts: [] };
}
// Stub: Would connect to GUPP endpoint
console.warn('[GUPP] Sync not implemented - stub adapter');
return { pulled: 0, pushed: 0, conflicts: [] };
}
}
// ============================================================================
// Logger
// ============================================================================
interface PluginLogger {View on GitHub (pinned to fa13ee4ad6)
Solutions
- Replace the stub adapter with a real GUPP push implementation, or avoid calling push in this configuration.
Defensive patterns
Strategy: fallback
When it happens
Trigger: Thrown at v3/plugins/gastown-bridge/src/index.ts:400 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of ruvnet/ruflo@fa13ee4ad6 (2026-08-18).
Data as JSON: /api/errors/f6708e55580c6a06.
Report an issue: GitHub.