YakApp Studio

Premium creative modes for YakApp P2P chat — manga panels, story narratives, and document export.

Overview

YakApp Studio extends the KATHA chat experience with premium visual modes and export capabilities. Three modes are free, two are premium, and all content can be exported to PDF, ePub, or Markdown.

Studio is a proprietary module — free for personal/educational use, with license tiers for commercial use. Payment is accepted via Stripe (credit card) or QRL cryptocurrency.

Chat Modes

Mode Description Tier
Standard Traditional chat interface Free
Bubble PSO:BB style floating speech bubbles Free
Terminal Retro CRT terminal aesthetic Free
Manga Comic panel layout with speech bubbles and visual effects Premium
Story Novel narrative format for roleplay and collaborative fiction Premium

Integration

import { ChatWithModes, ModeSelector, useChatMode } from 'yakapp-studio/integration/ChatWithModes';

function App() {
  const { mode, setMode } = useChatMode();

  return (
    <div>
      <ModeSelector currentMode={mode} onChange={setMode} />
      <ChatWithModes
        mode={mode}
        messages={messages}
        currentUserId={user.userId}
        roomName={currentRoom.name}
        onSend={handleSendMessage}
      />
    </div>
  );
}

Export Options

PDF

Print-ready manga panels or formatted story pages

ePub

Story mode exports as e-book for readers

Markdown

Universal export for all modes

Licensing & Pricing

Tier Monthly Lifetime QRL
Creator $5 50 QRL
Studio $15 150 QRL
Lifetime $99 1000 QRL
import { activateLicense, checkLicense, getQRLPaymentInfo } from 'yakapp-studio';

// Activate with license key
activateLicense('STUDIO-XXXX-XXXX-XXXX');

// Or activate with QRL transaction hash
const paymentInfo = getQRLPaymentInfo('studio');
// { amount: 150, address: 'Q010500...', memo: 'STUDIO-LICENSE' }
activateLicense('QRL_TX_HASH_HERE');

// Check license status
const license = checkLicense();
// { status: 'licensed', tier: 'studio' }

Version History

Version Changes
v3.0.0 Initial Studio module: 5 chat modes, PDF/ePub/Markdown export, Stripe + QRL licensing, React component integration.