108 lines
3.7 KiB
YAML
108 lines
3.7 KiB
YAML
# ════════════════════════════════════════════════════════════════════════════
|
|
# 🤖 ANTIGRAVITY ELITE CONFIGURATION (Plugin-Based Architecture)
|
|
# ════════════════════════════════════════════════════════════════════════════
|
|
# Dieses Brain ist modular aufgebaut. Jedes Verhalten ist ein autonomes Plugin.
|
|
# Einstellungen können global oder spezifisch für jedes Plugin definiert werden.
|
|
# Design-Prinzip: Zero Trust & Fail Fast.
|
|
|
|
identity:
|
|
username: "marisaundmarc"
|
|
persona: "Travel blogger, landscape photographer, and outdoors enthusiast"
|
|
vibe: "friendly, authentic, helpful, and appreciative of good art"
|
|
|
|
mission:
|
|
strategy: "aggressive_growth"
|
|
selectivity_threshold: "high"
|
|
target_audience: "travel, landscape, nature, mountain photography, wanderlust"
|
|
blacklist_topics: "onlyfans, nsfw, sale, discount, promo, 18+, giveaway, crypto"
|
|
|
|
# ── Core Action Jobs (Wann soll der Bot wo aktiv werden?) ──
|
|
actions:
|
|
feed: "5-10" # Anzahl der Posts im Home-Feed pro Session
|
|
explore: "5-10" # Anzahl der Posts im Explore-Grid
|
|
# reels: "5-10" # In Entwicklung
|
|
# stories: "3-5" # In Entwicklung
|
|
|
|
# ── Plugin Configuration (Das Herzstück der Verhaltenssteuerung) ──
|
|
plugins:
|
|
# 🛡️ Guards & Safety (Filtern, bevor Interaktion passiert)
|
|
ad_guard:
|
|
enabled: true
|
|
|
|
close_friends_guard:
|
|
enabled: true # Postings von 'Engen Freunden' ignorieren
|
|
|
|
obstacle_guard:
|
|
enabled: true # Popups, Update-Dialoge etc. wegräumen
|
|
|
|
anomaly_handler:
|
|
enabled: true # Erkennt Blockierungen oder Captchas sofort (Fail Fast)
|
|
|
|
# 🧠 Perception & Evaluation (Vorverarbeitung)
|
|
post_data_extraction:
|
|
enabled: true # Extrahiert Text, Hashtags und Metadata
|
|
|
|
resonance_evaluator:
|
|
visual_vibe_check_percentage: 100
|
|
selectivity_threshold: "high"
|
|
|
|
# ⚡ Interactions (Die eigentlichen Aktionen)
|
|
likes:
|
|
percentage: 100 # Wahrscheinlichkeit pro Post
|
|
count: "2-3" # Falls im Grid, wie viele?
|
|
|
|
comment:
|
|
percentage: 40
|
|
dry_run: true # Generiert KI-Kommentare ohne zu posten (Review-Mode)
|
|
|
|
follow:
|
|
percentage: 100
|
|
|
|
repost:
|
|
percentage: 20 # Teilen in die eigene Story
|
|
|
|
story_view:
|
|
percentage: 80
|
|
count: "1-3" # Wie viele Stories pro User schauen?
|
|
|
|
profile_visit:
|
|
percentage: 100 # Wahrscheinlichkeit, vom Feed ins Profil zu gehen
|
|
learn_own_profile: true
|
|
|
|
grid_like:
|
|
percentage: 60 # Liked Posts aus dem Profil-Grid des Users
|
|
count: "1-3"
|
|
|
|
# 🎢 Special Behaviors
|
|
carousel_browsing:
|
|
percentage: 100 # Erkennt Carousels und swiped durch
|
|
count: "2-4" # Wie viele Slides pro Post?
|
|
|
|
rabbit_hole:
|
|
percentage: 30 # Geht tiefer in verwandte Profile (Inception-Mode)
|
|
|
|
darwin_dwell:
|
|
percentage: 50 # Simuliert unregelmäßige Lesezeiten (Biometrie)
|
|
|
|
# ── Limits & Budget ──
|
|
limits:
|
|
daily_budget_hours: 2.5
|
|
max_comments_per_day: 40
|
|
total_likes_limit: 300
|
|
total_follows_limit: 50
|
|
speed_multiplier: 1.0
|
|
|
|
# ── Infrastructure & System ──
|
|
device: 192.168.1.206:40505
|
|
app-id: com.instagram.android
|
|
debug: true
|
|
blank_start: true
|
|
|
|
# ── AI Model Endpoints (Ollama / OpenRouter) ──
|
|
ai-model: qwen3.5:latest
|
|
ai-model-url: http://localhost:11434/api/generate
|
|
ai-telepathic-model: llama3.2-vision
|
|
ai-telepathic-url: http://localhost:11434/api/generate
|
|
ai-embedding-model: nomic-embed-text
|
|
ai-embedding-url: http://localhost:11434/api/embeddings
|