Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
0d165e6
chore: auto-commit 76 files from session
Apr 3, 2026
d1ce7b3
chore: auto-commit 2 files from session
Apr 3, 2026
942663c
chore(web): auto-commit 6 files from session
Apr 3, 2026
eff1f2e
chore: auto-commit 11 files from session
Apr 3, 2026
ae66ee1
chore(python): auto-commit 27 files from session
Apr 3, 2026
0c18cd4
chore(flutter): auto-commit 12 files from session
Apr 3, 2026
26c632f
chore: auto-commit 25 files from session
Apr 4, 2026
295e198
chore(flutter): auto-commit 12 files from session
Apr 4, 2026
40013c8
chore(flutter): auto-commit 13 files from session
Apr 4, 2026
340e365
chore(flutter): auto-commit 10 files from session
Apr 4, 2026
f124f73
chore(python): auto-commit 3 files from session
Apr 4, 2026
20da2e4
chore(python): auto-commit 6 files from session
Apr 4, 2026
191745e
chore(flutter): auto-commit 4 files from session
Apr 4, 2026
23fa8db
chore(python): auto-commit 3 files from session
Apr 4, 2026
413325c
chore(python): auto-commit 5 files from session
Apr 4, 2026
ddf2c14
chore(multi): auto-commit 34 files from session
Apr 4, 2026
03bb98c
chore(flutter): auto-commit 19 files from session
Apr 5, 2026
b55dce3
chore(flutter): auto-commit 9 files from session
Apr 5, 2026
0789fc2
chore(flutter): auto-commit 277 files from session
Apr 5, 2026
289081c
chore: auto-commit 1 files from session
Apr 5, 2026
396308e
merge(flutter): bring Flutter super-app from worktree into main
Apr 6, 2026
48d5af0
restore(flutter): bring back app/lib/ deleted in 8bd6eef
Apr 6, 2026
a90eba8
feat(anonymizer): wire L7-L10 real implementations, connect anonymize…
Apr 6, 2026
dee1179
feat(browser+ai): wire proxy port to AI sidebar, fix browser controls
Apr 6, 2026
6e90688
feat(email): PII scan before send with anonymize/send/cancel dialog
Apr 6, 2026
23d4749
feat(messenger): gate demo auto-reply behind isLive check
Apr 6, 2026
981ffc4
chore(rust): auto-commit 5 files from session
Apr 6, 2026
bf8382c
feat(mesh): add Wave 2 attestation types (PresenceProof, VitalAuth, E…
Apr 6, 2026
5aad2e4
feat(email): add file attachment picker with anonymization support
Apr 6, 2026
f93bbb6
feat(qai): add Ollama local LLM support to Flutter Q-AI screen
Apr 6, 2026
7874b41
chore(python): auto-commit 5 files from session
Apr 6, 2026
469f05f
chore(python): auto-commit 1 files from session
Apr 6, 2026
e0295ce
feat(flutter): restore platform dirs, fix analysis errors, iOS builds
Apr 6, 2026
ff0ac7d
chore(python): auto-commit 5 files from session
Apr 6, 2026
f231b21
chore: auto-commit 3 files from session
Apr 6, 2026
bf52235
feat(research+docs): strengthen Paper 1 for ePrint, add IP report wit…
Apr 6, 2026
cf53d49
fix(test): replace Stripe test keys with fake placeholders
Apr 6, 2026
b3de282
chore(deps)(deps): Bump react-dom from 18.3.1 to 19.2.4 in /demo
dependabot[bot] Apr 6, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .claude/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"RUFLO_INTELLIGENCE_PIPELINE": "true",
"RUFLO_AGENT_BOOSTER": "true",
"RUFLO_MODEL_ROUTING": "auto",
"CLAUDE_CODE_MAX_OUTPUT_TOKENS": "8000",
"CLAUDE_CODE_MAX_OUTPUT_TOKENS": "128000",
"DISABLE_NON_ESSENTIAL_MODEL_CALLS": "1",
"DISABLE_COST_WARNINGS": "1",
"USE_BUILTIN_RIPGREP": "1",
Expand Down
11 changes: 11 additions & 0 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,14 @@ DEMO_BACKEND_PORT="5000"

# Use quantum simulator for testing (true = free, false = real hardware)
# USE_QUANTUM_SIMULATOR="true"

# =============================================================================
# OpenRouter Multi-Provider Paper Review
# =============================================================================
OPENROUTER_API_KEY=
OPENROUTER_MODEL_REVIEW=openai/gpt-5.4
OPENROUTER_MODEL_STRUCTURAL=google/gemini-3.1-pro-preview
OPENROUTER_MODEL_NOVELTY=xai/grok-4
OPENROUTER_MODEL_MATH=deepseek/deepseek-r1
OPENROUTER_MODEL_LIT=qwen/qwen-3.6
OPENROUTER_MODEL_LIT_ALT=zhipu/glm-5.1-mythos
8 changes: 8 additions & 0 deletions app/android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,14 @@ android {
}
}

dependencies {
// Google AI Edge LiteRT-LM runtime for on-device Gemma inference.
// https://github.com/google-ai-edge/gallery
implementation("com.google.ai.edge.litert:litert-lm:1.0.0")
// MediaPipe fallback (older models that use .task format).
implementation("com.google.mediapipe:tasks-genai:0.10.22")
}

flutter {
source = "../.."
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ public static void registerWith(@NonNull FlutterEngine flutterEngine) {
} catch (Exception e) {
Log.e(TAG, "Error registering plugin google_sign_in_android, io.flutter.plugins.googlesignin.GoogleSignInPlugin", e);
}
try {
flutterEngine.getPlugins().add(new io.flutter.plugins.localauth.LocalAuthPlugin());
} catch (Exception e) {
Log.e(TAG, "Error registering plugin local_auth_android, io.flutter.plugins.localauth.LocalAuthPlugin", e);
}
try {
flutterEngine.getPlugins().add(new com.crazecoder.openfile.OpenFilePlugin());
} catch (Exception e) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
package com.qdaria.zipminator

import io.flutter.embedding.android.FlutterActivity
import io.flutter.embedding.engine.FlutterEngine

class MainActivity : FlutterActivity()
class MainActivity : FlutterActivity() {
private var onDevicePlugin: OnDeviceInferencePlugin? = null

override fun configureFlutterEngine(flutterEngine: FlutterEngine) {
super.configureFlutterEngine(flutterEngine)
onDevicePlugin = OnDeviceInferencePlugin(this, flutterEngine)
}

override fun cleanUpFlutterEngine(flutterEngine: FlutterEngine) {
onDevicePlugin?.dispose()
onDevicePlugin = null
super.cleanUpFlutterEngine(flutterEngine)
}
}
46 changes: 0 additions & 46 deletions app/assets/logos/Z.svg

This file was deleted.

Loading
Loading