9 Commits

Author SHA1 Message Date
3f778d46c9 refactor: purge localized hardcoded strings and enforce language agnosticism 2026-05-04 14:17:05 +02:00
49f82d467f feat(perception): VLM-driven Meta AI comment generation integration 2026-05-04 11:45:41 +02:00
a67072eec4 fix(perception): correct device hierarchy method and add TDD guard
- Fixed AttributeError where device.get_hierarchy() was called instead of dump_hierarchy()
- Replaced MagicMock with a real DummyDeviceForKeyboardTest in E2E tests to adhere to the strict mock ban policy.
- Verified TelepathicEngine actively calls device.back() when keyboard is open on non-typing intents.
2026-05-04 10:27:34 +02:00
59ba330029 fix(perception): active keyboard dismiss guard and POST_DETAIL structural share button
- Added active Keyboard Dismiss logic to TelepathicEngine.find_best_node():
  If the keyboard is open and the intent is NOT typing-related (e.g., 'tap post username'),
  the bot automatically issues a back press to close the keyboard and re-fetches the UI state.
- Broadened structural fast-path for 'tap send post button' in IntentResolver to
  also match 'direct_share_button' or 'send'/'share' desc, preventing VLM fallback
  on POST_DETAIL screens (Bug #3).
2026-05-04 10:18:27 +02:00
6f9da50ae2 fix(perception): add keyboard contamination guard to IntentResolver
Production Bug 2026-05-04: VLM clicked comment_composer → keyboard
opened → 30+ keyboard key nodes flooded candidate pool → VLM
hallucinated 'N' as 'tap post username' → cascading failure.

- Extract pre_filter_candidates() from _visual_discovery inline filter
- Add 'inputmethod' package exclusion to filter keyboard nodes at O(1)
- Add has_keyboard_open() detection helper for downstream recovery
- _visual_discovery() delegates to pre_filter_candidates()
- TDD: 4 new tests proving keyboard isolation and share button parity
2026-05-04 10:14:57 +02:00
720841103d purge: remove ALL hardcoded model/URL defaults across 11 modules
TDD cycle (RED → GREEN):

2 new codebase-wide enforcement tests:
- test_no_getattr_with_hardcoded_model_defaults_outside_config
  Catches getattr(args, 'ai_xxx', 'HARDCODED_DEFAULT') anti-pattern
- test_no_bare_localhost_url_string_literals_outside_config
  Catches bare 'localhost:11434' string literals in non-SSOT files

Purged 24 getattr-default violations and 14 bare-URL violations across:
- compiler_engine.py: ai_telepathic_model/url defaults
- screen_identity.py: ai_telepathic_model/url defaults
- intent_resolver.py: ai_telepathic_model/url defaults (2 spots)
- semantic_evaluator.py: ai_telepathic_model/url defaults
- brain.py: ai_model/url defaults
- dm_engine.py: ai_condenser_model/url defaults
- resonance_engine.py: ai_condenser_model/url defaults
- qdrant_memory.py: ai_embedding_model/url defaults
- bot_flow.py: ai_condenser_model/url defaults
- interaction.py: ai_writer_model/url defaults
- llm_provider.py: fallback model/url 'last resort' defaults

Architecture: Config() (config.py) is the SSOT for ALL AI model config.
Every other module reads from Config().args WITHOUT default values.
If Config() is uninitialized, the system crashes (Fail Fast).

Tests: 11 new, 121 passing, 0 regressions
2026-05-04 00:28:40 +02:00
c98e2caaa1 purge: remove ALL hardcoded UI markers + model defaults from SAE
TDD cycle (RED → GREEN):

SAE perceive() — Zero Maintenance:
- Removed ALL hardcoded marker tuples (instagram_modal_markers,
  creation_flow_markers, dismiss_button_patterns, blocked_markers)
- Removed ALL hardcoded model names (llava:latest, qwen3.5:latest)
- Removed ALL hardcoded URLs (localhost:11434)
- Removed naked except blocks with model fallback defaults

New autonomous flow (zero hardcoded UI identifiers):
1. Package-based foreign app detection (Android-level, not app-specific)
2. Qdrant semantic cache (O(1) recall of learned screen types)
3. ScreenIdentity structural delegation (MODAL/FOREIGN_APP)
4. LLM autonomous classification (first-encounter learning then cached)

GOAP smart UI polling:
- Replaced static random.uniform(1.6, 2.8) sleep with MAX_POLLS=5
  polling loop that detects actual UI transitions

Model config centralized via _get_model_config():
- ALL model/URL lookups go through Config() SSOT
- Fail Fast - no silent hardcoded fallbacks

Tests: 9 new, 119 passing, 0 regressions
2026-05-04 00:07:16 +02:00
32731ed7ec fix: structural hardening for grid selection and Reel author resolution 2026-05-03 23:41:00 +02:00
8a6c8a2249 fix: restrict grid candidates to valid area size to prevent clicking fullscreen background containers 2026-05-03 23:36:36 +02:00
177 changed files with 3425 additions and 2346 deletions

14
.gitignore vendored
View File

@@ -17,6 +17,8 @@
!tests/e2e/fixtures/*.jpg
!tests/e2e/fixtures/*.json
logs/
*.pyc
__pycache__/
.DS_Store
crashes
accounts
@@ -47,19 +49,7 @@ traceback.log
htmlcov/
.coverage
coverage.xml
coverage_e2e.json
.hypothesis/
# Local diagnostic traces
debug/
# Bytecode & Cache (Enforce at bottom to override whitelists)
**/__pycache__/
**/*.pyc
**/*.pyo
**/*.pyd
.pytest_cache/
.hypothesis/
.coverage
htmlcov/
coverage.xml

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/darwin_engine.py
# hypothesis_version: 6.141.1
[-0.5, -0.3, -0.2, -0.1, 0.0, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1.0, 1.2, 1.5, 2.0, 4.0, 10.0, 15.0, 20.0, 25.0, 150, 200, 300, 500, 1000, 1080, 2400, '1 kommentar ansehen', 'JPEG', '\\b0\\s*kommentare?\\b', 'ai_learn_comments', 'ai_vision_context', 'alle ', 'back', 'back_swipe_prob', 'comment number is', 'comment_read_dwell', 'config.yml', 'displayHeight', 'displayWidth', 'initial_dwell_sec', 'kommentare ansehen', 'params', 'profile_visit_prob', 'reward', 'scroll_velocity', 'tap comment button', 'timestamp', 'unknown', 'username', 'utf-8', 'view 1 comment', 'view all']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/benchmark_guard.py
# hypothesis_version: 6.141.1
['Context Condensation', 'Dopamine/Resonance', 'Vision/Telepathic', 'ai_condenser_model', 'ai_model', 'ai_telepathic_model', 'benchmarks', 'color', 'data', 'llm_benchmarks.json', 'models', 'r', 'resonance_score', 'telepathic_score']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/darwin_engine.py
# hypothesis_version: 6.140.2
[-0.5, -0.3, -0.2, 0.0, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1.0, 1.2, 1.5, 2.0, 4.0, 10.0, 15.0, 20.0, 25.0, 150, 200, 300, 500, 1000, 1080, 2400, '1 kommentar ansehen', 'JPEG', '\\b0\\s*kommentare?\\b', 'ai_learn_comments', 'ai_vision_context', 'alle ', 'back', 'back_swipe_prob', 'comment number is', 'comment_read_dwell', 'config.yml', 'displayHeight', 'displayWidth', 'initial_dwell_sec', 'kommentare ansehen', 'params', 'profile_visit_prob', 'reward', 'right', 'scroll_velocity', 'tap comment button', 'timestamp', 'unknown', 'username', 'utf-8', 'view 1 comment', 'view all']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/behaviors/story_view.py
# hypothesis_version: 6.141.1
[0.5, 0.9, 1.0, 2.0, 5.0, 100.0, 1080, 2400, "'s unseen story", '-', '1-2', 'back', 'displayHeight', 'displayWidth', 'has a new story', 'load_timeout', 'nav_failed', 'no_story', 'reason', 'reel_ring', 'stories_count', 'stories_percentage', 'stories_viewed', 'story von', 'story_view']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/__init__.py
# hypothesis_version: 6.141.1
['align_active_post', 'humanized_click', 'humanized_scroll', 'wait_for_post_loaded']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/timing.py
# hypothesis_version: 6.140.2
[0.1, 0.3, 0.4, 0.5, 0.7, 1.0, 1.5, 100, 250, 1080, 2400, 'action_bar_title', 'back', 'bounds', 'clips_viewer', 'displayHeight', 'displayWidth', 'original_attribs', 'post_load_timeout', 'profile_header', 'reel_viewer_root', 'story_viewer', 'timeout_sec', '✅ Recovered to Feed.']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/biomechanics.py
# hypothesis_version: 6.140.2
[-0.05, -0.04, -0.03, -0.003, 0.0, 0.002, 0.003, 0.01, 0.015, 0.02, 0.025, 0.03, 0.04, 0.05, 0.06, 0.08, 0.1, 0.12, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.6, 0.65, 0.7, 0.75, 0.8, 0.82, 0.85, 0.9, 0.92, 1.0, 1.2, 1.5, 3.0, 8.0, 1000.0, 200, 1080, 2400, 'displayHeight', 'displayWidth', 'right']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/behaviors/profile_guard.py
# hypothesis_version: 6.141.1
[100.0, 100, '\x1b[32m', '\x1b[36m', 'close friend', 'close_friend', 'color', 'empty', 'enge freunde', 'ignore_close_friends', 'konto ist privat', 'matches_niche', 'my_username', 'no posts yet', 'noch keine beiträge', 'persona_interests', 'private', 'profile_guard', 'quality_score', 'reason', 'score', 'self_profile', 'telepathic', 'vibe_check_failed']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/goap.py
# hypothesis_version: 6.141.1
[0.0, 0.3, 0.5, 0.75, 0.8, 0.85, 0.92, 1.0, 1.5, 1.6, 2.0, 2.8, 3.5, 540, 768, 800, 1600, '/', '<\\?xml.*?\\?>', 'ExploreFeed', 'FollowingList', 'Foreign app', 'HomeFeed', 'MessageInbox', 'Modal', 'OwnProfile', 'ReelsFeed', 'SearchFeed', 'StoriesFeed', '\\bfollow\\b', '_', 'abonniert', 'action', 'ai_embedding_model', 'ai_embedding_url', 'app_id', 'args', 'available_actions', 'back', 'blocked_by_modal', 'bookmark', 'bounds', 'clickable', 'clips_tab', 'comment', 'comments', 'confidence', 'content-desc', 'context', 'creation_flow', 'desc', 'direct_tab', 'dm_inbox', 'dm_thread', 'empty', 'explore', 'explore_grid', 'false', 'feed_tab', 'follow', 'follow_list', 'followers list', 'following', 'following list', 'foreign_app', 'go back', 'go to', 'goal', 'grid item', 'home', 'home_feed', 'id', 'is_liked', 'learn own profile', 'like', 'liked', 'llama3', 'message', 'message_input', 'messages', 'modal', 'nachricht', 'navigate', 'navigation_knowledge', 'node', 'open', 'open explore', 'open explore feed', 'open following list', 'open home', 'open home feed', 'open messages', 'open profile', 'open reels', 'other_profile', 'own_profile', 'package', 'packages', 'post', 'post_detail', 'press back', 'profile', 'profile_tab', 'quick_capture', 'reel_camera', 'reels', 'reels_feed', 'required_screen', 'resource-id', 'response', 'result_screen', 's', 'save', 'screen_type', 'scroll down', 'search_results', 'search_tab', 'selected', 'selected_tab', 'share', 'signature', 'skip', 'start_screen', 'step_count', 'steps', 'story_view', 'success', 'tab', 'tab_id', 'tap back button', 'tap comment button', 'tap explore tab', 'tap first grid item', 'tap follow button', 'tap following list', 'tap home tab', 'tap like button', 'tap message button', 'tap messages tab', 'tap profile tab', 'tap reels tab', 'tap save button', 'tap share button', 'text', 'timestamp', 'true', 'unknown', 'username', 'view', 'view profile', 'x', 'y', '|', '✅', '❌']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/q_nav_graph.py
# hypothesis_version: 6.141.1
[0.82, 1.0, 1.6, 2.0, 2.8, 3.0, 4.5, 'CONTEXT_LOST', 'ExploreFeed', 'FollowingList', 'HomeFeed', 'MessageInbox', 'OwnProfile', 'UNKNOWN', '_', 'args', 'available_actions', 'back', 'blocked_by_modal', 'color', 'comment', 'like', 'screen_type', 'selected', 'share', 'skip', 'source', 'tab', 'tap comment button', 'tap create post tab', 'tap explore tab', 'tap home tab', 'tap like button', 'tap post username', 'tap profile tab', 'tap reels tab', 'tap save button', 'tap share button', 'tap_back', 'tap_comment_button', 'tap_create_tab', 'tap_explore_tab', 'tap_follow_button', 'tap_following_list', 'tap_grid_first_post', 'tap_home_tab', 'tap_like_button', 'tap_message_icon', 'tap_newsfeed_tab', 'tap_post_username', 'tap_profile_tab', 'tap_reels_tab', 'tap_save_button', 'tap_share_button', 'tap_story_tray_item', 'telepathic', 'transitions', 'username', 'x', 'y']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/telepathic_engine.py
# hypothesis_version: 6.140.2
[0.0, 0.05, 0.1, 0.2, 0.3, 0.4, 0.45, 0.5, 0.75, 0.82, 0.85, 0.9, 0.92, 0.95, 0.98, 0.99, 1.0, 200, 999, 2000, 2400, 100000, 150000, 500000, 999999, '\x1b[36m', '(?:$|[\\s,._\\-:!?])', '(?:^|[\\s,._\\-:])', '(?<!\\w)description:', '(?<!\\w)text:', ', ', ',\\s*id context:', '/', '/>', '<\\?xml.*?\\?>', 'Already fulfilled', 'Escape Hatch', 'FAIL', 'HIGH', 'JPEG', 'LOW/UNSAFE', 'MEDIUM', 'NAF', 'No reason provided', 'PASS', '[0,0][0,0]', '[^\\w\\s]', '\\W+', '\\d+', '_', '_cached_app_id', '_cached_username', '_poll_', '```', '```json', 'a', 'abbrechen', 'abmelden', 'abonniert', 'accept', 'account', 'action', 'action_bar', 'action_sheet', 'add to story', 'agentic_fallback', 'ai_telepathic_model', 'ai_telepathic_url', 'ai_vision_navigation', 'allow', 'already_followed', 'already_liked', 'an', 'and', 'angefragt', 'app_id', 'area', 'args', 'ausloggen', 'author', 'beitrag erstellen', 'best_index', 'bezahlen', 'block', 'blocked_by_dm_thread', 'blocked_by_modal', 'blockieren', 'bottom_sheet', 'bounds', 'box', 'button', 'button_edit_profile', 'button_share_profile', 'buy now', 'camera', 'camera_button', 'cancel', 'caption', 'carousel', 'checkout', 'class', 'class_name', 'classification', 'clear text', 'clickable', 'clips', 'clips_comment_button', 'clips_like_button', 'clips_viewer', 'close', 'close friend', 'close_friend', 'close_friends', 'color', 'comment', 'comments_disabled', 'content', 'content-desc', 'content_desc', 'create post', 'create reel', 'create story', 'creation_tab', 'delete account', 'deny', 'desc', 'description', 'dialog', 'dialog_container', 'dialog_root', 'direct_tab', 'direct_thread_header', 'dismiss', 'displayHeight', 'done', 'edit profile', 'eingeschränkt', 'einschränken', 'enge freunde', 'escape', 'explore', 'explore grid', 'explore tab', 'false', 'feed', 'first', 'first image', 'follow', 'follow back', 'follow button', 'follower', 'followers', 'following', 'for', 'gefolgt', 'generic semantic', 'get_info', 'go live', 'go_live', 'goal', 'grid', 'grid first post', 'grid item', 'grid_fastpath', 'group', 'header', 'heart', 'height', 'home', 'home feed index', 'home tab', 'home_tab', 'icon', 'id context:', 'image', 'imageview', 'in', 'index', 'input', 'intent', 'is_unsuitable', 'item', 'jetzt kaufen', 'kamera', 'keyword', 'keyword_fast_path', 'konto löschen', 'konto wechseln', 'like', 'liked', 'list', 'live gehen', 'live_button', 'llama3.2-vision', 'llama3.2:1b', 'log out', 'long-clickable', 'main', 'matches_niche', 'media', 'media_group', 'media_header_user', 'melden', 'memory', 'menu', 'menu_item', 'message tab', 'message_list', 'modal', 'models', 'more', 'my profile', 'naf', 'name', 'navigation', 'navigation_bar', 'neue story', 'neuer beitrag', 'node', 'node_size', 'not now', 'obstacle', 'of', 'ok', 'on', 'option', 'or', 'original_attribs', 'own profile', 'own story', 'owner', 'passed_all', 'photo', 'poll', 'popup', 'post', 'post media content', 'post_count', 'profil bearbeiten', 'profile', 'profile grid', 'profile tab', 'profile_name', 'purchase', 'qdrant_nav', 'quality_score', 'quick_capture', 'r', 'raw_bounds', 'reason', 'reel', 'reel erstellen', 'reel_camera', 'reel_empty_badge', 'reel_viewer', 'reels', 'reels tab', 'reels_tab', 'rejected_node', 'reply', 'report', 'requested', 'resource-id', 'resource_id', 'response', 'restrict', 'row', 'row_feed_button_like', 'row_feed_view_group', 'row_profile_header', 'safe', 'save', 'schließen', 'score', 'scrollable', 'search', 'secondary_label', 'selected', 'semantic', 'semantic_string', 'send', 'share', 'share_sheet', 'skip', 'skip_positions', 'source', 'story erstellen', 'story ring', 'story_camera', 'story_create', 'structural intent', 'survey', 'survey_', 'switch account', 'tab', 'tab_bar', 'tab_layout', 'tap', 'tap comment button', 'tap explore tab', 'tap feed item', 'tap home tab', 'tap like button', 'tap newsfeed_tab', 'tap post author', 'tap post username', 'tap profile tab', 'tap reels tab', 'tap share button', 'tap user profile', 'telepathic_score', 'text', 'the', 'timestamp', 'to', 'true', 'ui_memory', 'user', 'username', 'utf-8', 'vector', 'video', 'visible', 'vlm_grid', 'vlm_hallucination', 'vlm_index', 'w', 'width', 'x', 'y', 'your story', 'zur kasse', 'zurückfolgen']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/device_facade.py
# hypothesis_version: 6.141.1
[0.01, 0.05, 0.1, 0.15, 0.3, 0.45, 0.5, 0.55, 1.5, 2.0, 2.54, 3.0, 160, 200, 400, 1000, 1030, 1080, 2100, '%Y-%m-%d_%H-%M-%S', 'JPEG', '_trace_counter', 'android', 'com.android.systemui', 'crash_dialog', 'debug', 'displaySizeDpX', 'displayWidth', 'duration', 'home', 'package', 'post_delay', 'screenOn', 'session_traces', 'system_dialog', 'utf-8', 'w', 'wait_timeout', 'x', 'y']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/perception/feed_analysis.py
# hypothesis_version: 6.140.2
[0.35, 'caption', 'desc', 'description', 'node', 'original_attribs', 'post media content', 'text', 'username']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/situational_awareness.py
# hypothesis_version: 6.140.2
[0.0, 0.3, 0.5, 0.8, 0.88, 1.0, 1.5, 2.0, 2.5, 3.5, 100, 500, 768, 2000, 3000, ' | ', '<\\?xml.*?\\?>', 'Battery NN per cent', 'Battery \\d+ per cent', 'CLICKABLE', 'EMPTY_SCREEN', 'EscapeAction', 'HH:MM', 'LLM-planned escape', 'NORMAL', 'OBSTACLE_MODAL', 'OBSTACLE_SYSTEM', '\\d{2}:\\d{2}', 'action', 'action blocked', 'action_type', 'ai_fallback_model', 'ai_fallback_url', 'ai_telepathic_model', 'ai_telepathic_url', 'alert', 'android', 'app_id', 'app_start', 'back', 'bottom_sheet', 'bounds', 'click', 'clickable', 'com.android.systemui', 'confidence', "confirm it's you", 'content-desc', 'creation_flow', 'dialog', 'eingeschränkt', 'false', 'handlung blockiert', 'home', 'home_then_app', 'info', 'kill_foreign_apps', 'llama3.2:1b', 'node', 'normal', 'obstacle_foreign_app', 'obstacle_modal', 'obstacle_system', 'package', 'package="([^"]+)"', 'quick_capture', 'qwen3.5:latest', 'reason', 'recall_count', 'reel_camera', 'resource-id', 'resource_id', 'response', 'sae_episodes_v1', 'screenOn', 'situation', 'success', 'text', 'text="([^"]{1,80})"', 'timestamp', 'true', 'try again later', 'unlock', 'x', 'y', '✅ SUCCESS', '❌ FAILURE']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/qdrant_memory.py
# hypothesis_version: 6.141.1
[0.0, 0.05, 0.1, 0.15, 0.3, 0.4, 0.5, 0.7, 0.8, 0.85, 0.9, 0.95, 0.98, 1.0, 5.0, 10.0, 100, 128, 200, 300, 500, 768, 3600, 4000, 8000, '\x1b[35m', ' | ', 'Authorization', 'General', 'NOT_FOUND', 'OPENROUTER_API_KEY', 'Previous Comments: ', 'QDRANT_URL', '\\s+', '_cached_args', 'action', 'ai_embedding_model', 'ai_embedding_url', 'amount', 'args', 'author', 'banned_at', 'bio', 'biography', 'bounds', 'category', 'checkable', 'classification', 'clickable', 'color', 'comment_sent', 'confidence', 'content-desc', 'data', 'description', 'effective_confidence', 'element_id', 'embedding', 'error', 'evaluated', 'focusable', 'focused', 'from', 'goal', 'goal_hash', 'gramaddict_dm_memory', 'gramaddict_ui_cache', 'ig_parasocial_crm', 'index', 'input', 'insight', 'instance', 'intent', 'interactions', 'last_interaction', 'long-clickable', 'message', 'model', 'nomic-embed-text', 'openai.com', 'openrouter.ai', 'package', 'password', 'pattern', 'pending', 'points', 'prompt', 'reason', 'recent_descriptions', 'regex', 'rule_type', 'score', 'screen_type', 'scrollable', 'selected', 'signature', 'solution', 'stage', 'status', 'stored_at', 'target_attribute', 'target_username', 'text', 'timestamp', 'to', 'transitions', 'type', 'unknown', 'username', 'utf-8', 'value', 'vibe']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/behaviors/__init__.py
# hypothesis_version: 6.141.1
[1.0, 'PluginRegistry', 'error']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/situational_awareness.py
# hypothesis_version: 6.141.1
[0.0, 0.3, 0.5, 0.8, 0.88, 1.0, 1.5, 2.0, 2.5, 3.5, 100, 500, 768, 2000, 3000, ' | ', '<\\?xml.*?\\?>', 'Battery NN per cent', 'Battery \\d+ per cent', 'CLICKABLE', 'EMPTY_SCREEN', 'EscapeAction', 'HH:MM', 'LLM-planned escape', 'NORMAL', 'OBSTACLE_MODAL', 'OBSTACLE_SYSTEM', '\\d{2}:\\d{2}', 'action', 'action blocked', 'action_type', 'ai_fallback_model', 'ai_fallback_url', 'ai_telepathic_model', 'ai_telepathic_url', 'alert', 'android', 'app_id', 'app_start', 'back', 'bottom_sheet', 'bounds', 'click', 'clickable', 'com.android.systemui', 'confidence', "confirm it's you", 'content-desc', 'creation_flow', 'dialog', 'eingeschränkt', 'false', 'handlung blockiert', 'home', 'home_then_app', 'info', 'kill_foreign_apps', 'llama3.2:1b', 'node', 'normal', 'obstacle_foreign_app', 'obstacle_modal', 'obstacle_system', 'package', 'package="([^"]+)"', 'quick_capture', 'qwen3.5:latest', 'reason', 'recall_count', 'reel_camera', 'resource-id', 'resource_id', 'response', 'sae_episodes_v1', 'screenOn', 'situation', 'success', 'text', 'text="([^"]{1,80})"', 'timestamp', 'true', 'try again later', 'unlock', 'x', 'y', '✅ SUCCESS', '❌ FAILURE']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/goap.py
# hypothesis_version: 6.141.1
[0.0, 0.3, 0.5, 0.75, 0.8, 0.85, 0.92, 1.0, 1.5, 1.6, 2.0, 2.8, 3.5, 540, 768, 800, 1600, '/', '<\\?xml.*?\\?>', 'ExploreFeed', 'FollowingList', 'Foreign app', 'HomeFeed', 'MessageInbox', 'Modal', 'OwnProfile', 'ReelsFeed', 'SearchFeed', 'StoriesFeed', '\\bfollow\\b', '_', 'abonniert', 'action', 'ai_embedding_model', 'ai_embedding_url', 'app_id', 'args', 'available_actions', 'back', 'blocked_by_modal', 'bookmark', 'bounds', 'clickable', 'clips_tab', 'comment', 'comments', 'confidence', 'content-desc', 'context', 'creation_flow', 'desc', 'direct_tab', 'dm_inbox', 'dm_thread', 'empty', 'explore', 'explore_grid', 'false', 'feed_tab', 'follow', 'follow_list', 'followers list', 'following', 'following list', 'foreign_app', 'go back', 'go to', 'goal', 'grid item', 'home', 'home_feed', 'id', 'is_liked', 'learn own profile', 'like', 'liked', 'llama3', 'message', 'message_input', 'messages', 'modal', 'nachricht', 'navigate', 'navigation_knowledge', 'node', 'open', 'open explore', 'open explore feed', 'open following list', 'open home', 'open home feed', 'open messages', 'open profile', 'open reels', 'other_profile', 'own_profile', 'package', 'packages', 'post', 'post_detail', 'press back', 'profile', 'profile_tab', 'quick_capture', 'reel_camera', 'reels', 'reels_feed', 'required_screen', 'resource-id', 'response', 'result_screen', 's', 'save', 'screen_type', 'scroll down', 'search_results', 'search_tab', 'selected', 'selected_tab', 'share', 'signature', 'skip', 'start_screen', 'step_count', 'steps', 'story_view', 'success', 'tab', 'tab_id', 'tap back button', 'tap comment button', 'tap explore tab', 'tap first grid item', 'tap follow button', 'tap following list', 'tap home tab', 'tap like button', 'tap message button', 'tap messages tab', 'tap profile tab', 'tap reels tab', 'tap save button', 'tap share button', 'text', 'timestamp', 'true', 'unknown', 'username', 'view', 'view profile', 'x', 'y', '|', '✅', '❌']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/utils.py
# hypothesis_version: 6.141.1
[0.2, 1.0, 3.0, -300, 300, '-', 'color', 'content-desc', 'home', 'node', 'resource-id', 'speed_multiplier', 'sponsored', 'sponsored_content', 'telepathic', 'text', 'unknown', 'versionName=(\\S+)']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/bot_flow.py
# hypothesis_version: 6.140.2
[0.0, 0.01, 0.05, 0.1, 0.2, 0.3, 0.35, 0.4, 0.45, 0.5, 0.7, 0.8, 0.85, 0.9, 1.0, 1.2, 1.5, 1.8, 2.0, 2.2, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0, 6.0, 7.0, 60.0, 100.0, 100, 120, 250, 999, 1080, 2400, ' --------', ' | ', '"', '%H:%M:%S - %Y/%m/%d', "'", ',', '-', '999', 'BOREDOM_CHANGE_FEED', 'CHECK_CURIOSITY', 'CONTEXT_LOST', 'DiscoverNewContent', 'ExploreFeed', 'FEED_EXHAUSTED', 'FollowingList', 'HomeFeed', 'LIKE', 'MessageInbox', 'No bio', 'Notifications', 'NurtureCommunity', 'ReelsFeed', 'SHIFT_CONTEXT', 'SKIP', 'STAY', 'SearchFeed', 'ShiftContext', 'SocialReciprocity', 'StoriesFeed', 'UNKNOWN', 'Unknown', '\\n- ', 'action', 'active_inference', 'agent_persona', 'agent_strategy', 'aggressive_growth', 'ai_condenser_model', 'ai_condenser_url', 'ai_learn_own_profile', 'ai_target_audience', 'ai_vibe', 'antworten', 'avatar', 'back', 'bio', 'blank_start', 'button_follow', 'button_like', 'button_post', 'caption', 'clips_viewer', 'close friend', 'color', 'comment', 'comment_percentage', 'comment_reply', 'commenter', 'content-desc="liked"', 'content_desc', 'context_lost', 'crm', 'darwin', 'debug_thumb_overlay', 'del', 'desc', 'description', 'displayHeight', 'displayWidth', 'dojo', 'dopamine', 'dry_run_comments', 'editText', 'enge freunde', 'enter', 'fast', 'feed', 'follow_percentage', 'followers', 'following', 'friendly', 'growth_brain', 'handedness', 'hide replies', 'high', 'ignore_close_friends', 'interact', 'interact_percentage', 'interacted', 'kommentieren', 'konto ist privat', 'learn own profile', 'like', 'likes_percentage', 'llama3.2:1b', 'low', 'manual_interrupt', 'matches_niche', 'medium', 'misses', 'my_username', 'nature', 'nav_graph', 'no posts yet', 'noch keine beiträge', 'original_attribs', 'passive_learning', 'persona', 'persona_interests', 'photography', 'plugin_registry', 'profile', 'profile_name', 'quality', 'quality_score', 'radome', 'reel_viewer', 'reply', 'reposted', 'resonance', 'resource_id', 'response', 'right', 'row_feed', 'score', 'scrape', 'scrape_profiles', 'search', 'see translation', 'semantic_string', 'sessions', 'skip', 'speed_multiplier', 'stories', 'swarm', 'tap comment button', 'tap like button', 'tap post username', 'tap share button', 'target', 'target_audience', 'telepathic', 'text', 'title', 'translate', 'travel', 'unknown', 'unknown_user', 'unlike', 'username', 'vibe', 'view replies', 'x', 'y', 'zero_engine']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/timing.py
# hypothesis_version: 6.141.1
[0.3, 0.4, 0.5, 0.7, 1.0, 1.5, 100, 250, 1080, 2400, 'back', 'bounds', 'clips_viewer', 'displayHeight', 'displayWidth', 'post_load_timeout', 'profile_header', 'reel_viewer_root', 'story_viewer', 'timeout_sec', '✅ Recovered to Feed.']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/sendevent_injector.py
# hypothesis_version: 6.140.2
[0.01, 255, 300, 330, 1000, 1080, 2400, ' && ', 'ABS_MT_POSITION_X', 'ABS_MT_POSITION_Y', 'ABS_MT_PRESSURE', 'ABS_MT_TOUCH_MAJOR', 'add device', 'displayHeight', 'displayWidth', 'getevent -pl', 'max\\s+(\\d+)']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/sensors/honeypot_radome.py
# hypothesis_version: 6.141.1
[0.9, 1080, 2400, '\x1b[33m', '&#10;', '&#13;', 'bounds', 'clickable', 'color', 'content-desc', 'false', 'resource-id', 'text', 'true', 'unicode', 'visible-to-user']

View File

@@ -0,0 +1,4 @@
# file: /Users/marcmintel/Library/Python/3.9/bin/pytest
# hypothesis_version: 6.141.1
['__main__']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/__init__.py
# hypothesis_version: 6.141.1
['humanized_click', 'humanized_scroll']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/__init__.py
# hypothesis_version: 6.140.2
['BezierGesture', 'GestureBus', 'PhysicsBody', 'SendEventInjector', 'align_active_post', 'humanized_click', 'humanized_scroll', 'wait_for_post_loaded']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/situational_awareness.py
# hypothesis_version: 6.140.2
[0.0, 0.3, 0.5, 0.8, 0.88, 1.0, 1.5, 2.0, 2.5, 3.5, 300, 500, 768, 2000, 3000, ' | ', '<\\?xml.*?\\?>', 'Battery NN per cent', 'Battery \\d+ per cent', 'CLICKABLE', 'EMPTY_SCREEN', 'EscapeAction', 'HH:MM', 'LLM-planned escape', 'NORMAL', 'OBSTACLE_MODAL', 'OBSTACLE_SYSTEM', '\\d{2}:\\d{2}', 'action', 'action blocked', 'action_type', 'ai_fallback_model', 'ai_fallback_url', 'ai_telepathic_model', 'ai_telepathic_url', 'alert', 'android', 'app_id', 'app_start', 'back', 'bottom_sheet', 'bottom_sheet_drag', 'bounds', 'click', 'clickable', 'clips_tab', 'com.android.systemui', 'confidence', "confirm it's you", 'content-desc', 'creation_flow', 'dialog', 'dialog_container', 'dialog_root', 'eingeschränkt', 'false', 'feed_tab', 'handlung blockiert', 'home', 'home_then_app', 'info', 'kill_foreign_apps', 'llama3.2:1b', 'node', 'normal', 'obstacle_foreign_app', 'obstacle_modal', 'obstacle_system', 'package', 'package="([^"]+)"', 'profile_tab', 'quick_capture', 'qwen3.5:latest', 'reason', 'recall_count', 'reel_camera', 'resource-id', 'resource_id', 'response', 'sae_episodes_v1', 'screenOn', 'search_tab', 'situation', 'success', 'text', 'text="([^"]{1,80})"', 'timestamp', 'true', 'try again later', 'unlock', 'x', 'y', '✅ SUCCESS', '❌ FAILURE']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/compiler_engine.py
# hypothesis_version: 6.141.1
[0.1, '\x1b[1m\x1b[32m', '\x1b[1m\x1b[35m', ' AND ', "', '", "']", '11434', 'FAIL', 'HIGH', 'LOW/UNSAFE', 'MEDIUM', 'PASS', "['", '```', '```json', 'ai_telepathic_model', 'ai_telepathic_url', 'args', 'color', 'content-desc', 'is_unsuitable', 'llama3.2:1b', 'localhost', 'models', 'node', 'passed_all', 'pattern', 'r', 'regex', 'resource-id', 'rule_type', 'target_attribute', 'telepathic_score', 'text', 'xpath']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/bot_flow.py
# hypothesis_version: 6.141.1
[-0.3, -0.1, 0.0, 0.01, 0.05, 0.08, 0.1, 0.12, 0.15, 0.18, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.6, 0.7, 0.75, 0.8, 0.85, 0.9, 0.95, 1.0, 1.2, 1.3, 1.5, 1.8, 2.0, 2.2, 2.5, 3.0, 3.2, 3.5, 4.0, 4.5, 5.0, 6.0, 7.0, 60.0, 100.0, 100, 120, 250, 999, 1000, 1080, 2400, ' --------', ' | ', '"', '%H:%M:%S - %Y/%m/%d', "'", "'s unseen story", ',', '-', '1-2', '999', 'BOREDOM_CHANGE_FEED', 'CHECK_CURIOSITY', 'CONTEXT_LOST', 'DiscoverNewContent', 'ExploreFeed', 'FEED_EXHAUSTED', 'FollowingList', 'HomeFeed', 'LIKE', 'MessageInbox', 'No bio', 'Notifications', 'NurtureCommunity', 'ReelsFeed', 'SHIFT_CONTEXT', 'SKIP', 'STAY', 'SearchFeed', 'ShiftContext', 'SocialReciprocity', 'StoriesFeed', 'UNKNOWN', 'Unknown', '\\n- ', 'action', 'active_inference', 'agent_persona', 'agent_strategy', 'aggressive_growth', 'ai_condenser_model', 'ai_condenser_url', 'ai_learn_own_profile', 'ai_target_audience', 'ai_vibe', 'antworten', 'avatar', 'back', 'bio', 'blank_start', 'bounds', 'button_follow', 'button_like', 'button_post', 'caption', 'carousel_count', 'carousel_percentage', 'clips_viewer', 'close friend', 'cognitive_stack', 'color', 'comment', 'comment_percentage', 'comment_reply', 'commenter', 'content-desc', 'content-desc="liked"', 'content_desc', 'context_lost', 'crm', 'darwin', 'del', 'desc', 'description', 'displayHeight', 'displayWidth', 'dojo', 'dopamine', 'dry_run_comments', 'editText', 'enge freunde', 'enter', 'fast', 'feed', 'follow_percentage', 'followers', 'following', 'friendly', 'growth_brain', 'has a new story', 'hide replies', 'high', 'ignore_close_friends', 'interact', 'interact_percentage', 'interacted', 'kommentieren', 'konto ist privat', 'learn own profile', 'like', 'likes_count', 'likes_percentage', 'llama3.2:1b', 'low', 'manual_interrupt', 'matches_niche', 'medium', 'misses', 'my_username', 'nature', 'nav_graph', 'no posts yet', 'noch keine beiträge', 'node', 'original_attribs', 'passive_learning', 'persona', 'persona_interests', 'photography', 'post_load_timeout', 'profile', 'profile_header', 'profile_name', 'quality', 'quality_score', 'radome', 'reel_ring', 'reel_viewer', 'reel_viewer_root', 'reply', 'reposted', 'resonance', 'resource_id', 'response', 'row_feed', 'score', 'scrape', 'scrape_profiles', 'search', 'see translation', 'semantic_string', 'sessions', 'skip', 'speed_multiplier', 'stories', 'stories_count', 'stories_percentage', 'story von', 'story_viewer', 'swarm', 'tap comment button', 'tap follow button', 'tap like button', 'tap post username', 'tap share button', 'target', 'target_audience', 'telepathic', 'text', 'timeout_sec', 'title', 'translate', 'travel', 'unknown', 'unknown_user', 'unlike', 'username', 'vibe', 'view replies', 'x', 'y', 'zero_engine', '✅ Recovered to Feed.']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/perception/feed_analysis.py
# hypothesis_version: 6.140.2
[0.35, 0.75, 'caption', 'carousel_viewpager', 'desc', 'description', 'feed_action_row', 'node', 'original_attribs', 'post media content', 'text', 'username']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/active_inference.py
# hypothesis_version: 6.141.1
[-0.1, 0.0, 0.1, 0.3, 0.5, 0.7, 0.75, 1.0, 1.2, 2.0, 5.0, 3600.0, 'CAUTIOUS', 'DORMANT', 'STABLE', 'color', 'consecutive_errors', 'error_rate', 'free_energy', 'policy', 'should_abort', 'total_errors', 'total_predictions']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/situational_awareness.py
# hypothesis_version: 6.140.2
[0.0, 0.3, 0.5, 0.8, 0.88, 1.0, 1.5, 2.0, 2.5, 3.5, 300, 500, 768, 2000, 3000, ' | ', '<\\?xml.*?\\?>', 'Battery NN per cent', 'Battery \\d+ per cent', 'CLICKABLE', 'EMPTY_SCREEN', 'EscapeAction', 'HH:MM', 'LLM-planned escape', 'NORMAL', 'OBSTACLE_MODAL', 'OBSTACLE_SYSTEM', '\\d{2}:\\d{2}', 'action', 'action blocked', 'action_type', 'ai_fallback_model', 'ai_fallback_url', 'ai_telepathic_model', 'ai_telepathic_url', 'alert', 'android', 'app_id', 'app_start', 'back', 'bottom_sheet', 'bounds', 'click', 'clickable', 'com.android.systemui', 'confidence', "confirm it's you", 'content-desc', 'creation_flow', 'dialog', 'eingeschränkt', 'false', 'handlung blockiert', 'home', 'home_then_app', 'info', 'kill_foreign_apps', 'llama3.2:1b', 'node', 'normal', 'obstacle_foreign_app', 'obstacle_modal', 'obstacle_system', 'package', 'package="([^"]+)"', 'quick_capture', 'qwen3.5:latest', 'reason', 'recall_count', 'reel_camera', 'resource-id', 'resource_id', 'response', 'sae_episodes_v1', 'screenOn', 'situation', 'success', 'text', 'text="([^"]{1,80})"', 'timestamp', 'true', 'try again later', 'unlock', 'x', 'y', '✅ SUCCESS', '❌ FAILURE']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/sendevent_injector.py
# hypothesis_version: 6.140.2
[0.01, 255, 300, 330, 1000, 1080, 2400, ' && ', 'ABS_MT_POSITION_X', 'ABS_MT_POSITION_Y', 'ABS_MT_PRESSURE', 'ABS_MT_TOUCH_MAJOR', 'add device', 'displayHeight', 'displayWidth', 'getevent -pl', 'max\\s+(\\d+)']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/goap.py
# hypothesis_version: 6.140.2
[0.0, 0.3, 0.5, 0.75, 0.8, 0.85, 0.92, 1.0, 1.5, 1.6, 2.0, 2.8, 3.5, 540, 768, 800, 1600, '/', '<\\?xml.*?\\?>', 'ExploreFeed', 'FollowingList', 'Foreign app', 'HomeFeed', 'MessageInbox', 'Modal', 'OwnProfile', 'ReelsFeed', 'SearchFeed', 'StoriesFeed', '\\bfollow\\b', '_', 'abonniert', 'action', 'ai_embedding_model', 'ai_embedding_url', 'app_id', 'args', 'available_actions', 'back', 'blocked_by_modal', 'bookmark', 'bounds', 'click', 'clickable', 'clips_tab', 'comment', 'comments', 'confidence', 'content-desc', 'context', 'creation_flow', 'desc', 'direct_tab', 'dm_inbox', 'dm_thread', 'empty', 'explore', 'explore_grid', 'false', 'feed', 'feed_tab', 'follow', 'follow_list', 'followers list', 'following', 'following list', 'foreign_app', 'go back', 'go to', 'goal', 'goto', 'grid item', 'home', 'home_feed', 'id', 'is_liked', 'learn own profile', 'like', 'liked', 'llama3', 'message', 'message_input', 'messages', 'modal', 'nachricht', 'navigate', 'navigation_knowledge', 'node', 'open', 'open explore', 'open explore feed', 'open following list', 'open home', 'open home feed', 'open messages', 'open profile', 'open reels', 'other_profile', 'own_profile', 'package', 'packages', 'post', 'post_detail', 'press', 'press back', 'profile', 'profile_tab', 'quick_capture', 'reel_camera', 'reels', 'reels_feed', 'required_screen', 'resource-id', 'response', 'result_screen', 's', 'save', 'screen_type', 'scroll down', 'search_results', 'search_tab', 'selected', 'selected_tab', 'share', 'signature', 'skip', 'softlock', 'start_screen', 'step_count', 'steps', 'story_view', 'success', 'tab', 'tab_id', 'tap', 'tap back button', 'tap comment button', 'tap explore tab', 'tap first grid item', 'tap follow button', 'tap following list', 'tap home tab', 'tap like button', 'tap message button', 'tap messages tab', 'tap profile tab', 'tap reels tab', 'tap save button', 'tap share button', 'text', 'timestamp', 'trap_action', 'trap_reason', 'trap_screen', 'true', 'unknown', 'username', 'view', 'view profile', 'x', 'y', '|', '✅', '❌']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/timing.py
# hypothesis_version: 6.141.1
[0.3, 0.4, 0.5, 0.7, 1.0, 1.5, 100, 250, 1080, 2400, 'back', 'bounds', 'clips_viewer', 'displayHeight', 'displayWidth', 'post_load_timeout', 'profile_header', 'reel_viewer_root', 'story_viewer', 'timeout_sec', '✅ Recovered to Feed.']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/sendevent_injector.py
# hypothesis_version: 6.140.2
[0.01, 255, 300, 330, 1000, 1080, 2400, ' && ', 'ABS_MT_POSITION_X', 'ABS_MT_POSITION_Y', 'ABS_MT_PRESSURE', 'ABS_MT_TOUCH_MAJOR', 'add device', 'displayHeight', 'displayWidth', 'getevent -pl', 'max\\s+(\\d+)']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/behaviors/grid_like.py
# hypothesis_version: 6.141.1
[0.2, 0.3, 0.7, 0.8, 1.0, 1.5, 2.0, 3.0, 100.0, 1080, 2400, '-', '1-2', 'back', 'clips_viewer', 'content-desc="liked"', 'displayHeight', 'displayWidth', 'grid_like', 'grid_nav_failed', 'growth_brain', 'likes_count', 'likes_percentage', 'post_load_failed', 'posts_liked', 'posts_viewed', 'reason', 'reel_viewer', 'tap like button', 'unlike']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/humanized_input.py
# hypothesis_version: 6.140.2
[0.008, 0.05, 0.08, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.6, 0.7, 0.75, 0.85, 0.95, 1.0, 1.3, 2.0, 3.0, 100, 150, 180, 200, 250, 300, 350, 500, 600, 1080, 2400, 'Correction ↕', 'Double Tap', 'Tap', 'displayHeight', 'displayWidth', 'duration_ms', 'horizontal_swipe', 'label', 'overshoot_correction', 'points', 'pre_touch_dwell', 'reading_pause', 'scroll', 'tap', 'type', '←', '→']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/humanized_input.py
# hypothesis_version: 6.141.1
[-0.3, -0.1, 0.05, 0.08, 0.1, 0.12, 0.15, 0.18, 0.2, 0.25, 0.3, 0.4, 0.45, 0.5, 0.6, 0.7, 0.75, 0.8, 0.85, 0.95, 1.0, 1.3, 3.0, 1000, 1080, 2400, 'displayHeight', 'displayWidth']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/bot_flow.py
# hypothesis_version: 6.141.1
[0.0, 0.01, 0.05, 0.1, 0.2, 0.3, 0.35, 0.4, 0.45, 0.5, 0.7, 0.8, 0.85, 0.9, 1.0, 1.2, 1.5, 1.8, 2.0, 2.2, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0, 6.0, 7.0, 60.0, 100.0, 100, 120, 250, 999, 1080, 2400, ' --------', ' | ', '"', '%H:%M:%S - %Y/%m/%d', "'", ',', '-', '999', 'BOREDOM_CHANGE_FEED', 'CHECK_CURIOSITY', 'CONTEXT_LOST', 'DiscoverNewContent', 'ExploreFeed', 'FEED_EXHAUSTED', 'FollowingList', 'HomeFeed', 'LIKE', 'MessageInbox', 'No bio', 'Notifications', 'NurtureCommunity', 'ReelsFeed', 'SHIFT_CONTEXT', 'SKIP', 'STAY', 'SearchFeed', 'ShiftContext', 'SocialReciprocity', 'StoriesFeed', 'UNKNOWN', 'Unknown', '\\n- ', 'action', 'active_inference', 'agent_persona', 'agent_strategy', 'aggressive_growth', 'ai_condenser_model', 'ai_condenser_url', 'ai_learn_own_profile', 'ai_target_audience', 'ai_vibe', 'antworten', 'avatar', 'back', 'bio', 'blank_start', 'button_follow', 'button_like', 'button_post', 'caption', 'clips_viewer', 'close friend', 'color', 'comment', 'comment_percentage', 'comment_reply', 'commenter', 'content-desc="liked"', 'content_desc', 'context_lost', 'crm', 'darwin', 'del', 'desc', 'description', 'displayHeight', 'displayWidth', 'dojo', 'dopamine', 'dry_run_comments', 'editText', 'enge freunde', 'enter', 'fast', 'feed', 'follow_percentage', 'followers', 'following', 'friendly', 'growth_brain', 'hide replies', 'high', 'ignore_close_friends', 'interact', 'interact_percentage', 'interacted', 'kommentieren', 'konto ist privat', 'learn own profile', 'like', 'likes_percentage', 'llama3.2:1b', 'low', 'manual_interrupt', 'matches_niche', 'medium', 'misses', 'my_username', 'nature', 'nav_graph', 'no posts yet', 'noch keine beiträge', 'original_attribs', 'passive_learning', 'persona', 'persona_interests', 'photography', 'plugin_registry', 'profile', 'profile_name', 'quality', 'quality_score', 'radome', 'reel_viewer', 'reply', 'reposted', 'resonance', 'resource_id', 'response', 'row_feed', 'score', 'scrape', 'scrape_profiles', 'search', 'see translation', 'semantic_string', 'sessions', 'skip', 'speed_multiplier', 'stories', 'swarm', 'tap comment button', 'tap like button', 'tap post username', 'tap share button', 'target', 'target_audience', 'telepathic', 'text', 'title', 'translate', 'travel', 'unknown', 'unknown_user', 'unlike', 'username', 'vibe', 'view replies', 'x', 'y', 'zero_engine']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/__init__.py
# hypothesis_version: 6.141.1
[]

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/perception/__init__.py
# hypothesis_version: 6.141.1
['CAROUSEL_INDICATORS', 'FEED_MARKERS', 'extract_post_content', 'has_carousel_in_view', 'has_feed_markers']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/device_facade.py
# hypothesis_version: 6.140.2
[0.01, 0.05, 0.1, 0.15, 0.3, 0.45, 0.5, 0.55, 1.0, 1.5, 2.0, 2.54, 3.0, 160, 200, 400, 1000, 1030, 1080, 2100, '%Y-%m-%d_%H-%M-%S', 'JPEG', '_trace_counter', 'android', 'com.android.systemui', 'crash_dialog', 'debug', 'displaySizeDpX', 'displayWidth', 'duration', 'home', 'package', 'post_delay', 'right', 'screenOn', 'session_traces', 'system_dialog', 'utf-8', 'w', 'wait_timeout', 'x', 'y']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/config.py
# hypothesis_version: 6.140.2
['%Y-%m-%d %H:%M:%S', '-', '--ai-condenser-model', '--ai-condenser-url', '--ai-embedding-model', '--ai-embedding-url', '--ai-fallback-model', '--ai-fallback-url', '--ai-learn-comments', '--ai-learn-only', '--ai-model', '--ai-model-url', '--ai-quality-filter', '--ai-target-audience', '--ai-telepathic-url', '--ai-text-model', '--ai-text-url', '--ai-vibe', '--ai-vision-context', '--app-id', '--blank-start', '--comment-percentage', '--config', '--debug', '--device', '--dry-run-comments', '--explore', '--feed', '--follow-percentage', '--handedness', '--likes-count', '--likes-percentage', '--persona-interests', '--reels', '--repeat', '--restart-atx-agent', '--scrape-profiles', '--search', '--shadow-mode', '--smart-unfollow', '--speed-multiplier', '--stories', '--stories-count', '--stories-percentage', '--target-audience', '--time-delta-session', '--total-likes-limit', '--total-pm-limit', '--total-sessions', '--username', '--working-hours', '-1', '.yaml', '.yml', '0', '1.0', '10', '100', '1000', '2-3', '200', '300', '5', '50', '80', 'Arguments used:', 'Likes count', 'Likes percentage', 'Restart atx agent', 'SPECIALIZED', 'Speed multiplier', 'Stories count', 'Stories percentage', 'Total comments limit', 'Total crashes limit', 'Total follows limit', 'Total likes limit', 'Total pm limit', 'Total scraped limit', 'Total watches limit', 'Working hours', '_', 'app id', 'app_id', 'color', 'config file path', 'debug', 'debug mode', 'device id', 'explore', 'feed', 'nomic-embed-text', 'passwords', 'pytest', 'qwen3.5:latest', 'r+', 'right', 'store_true', 'username', 'utf-8']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/account_switcher.py
# hypothesis_version: 6.141.1
[0.3, 1.5, 2.0, 3.0, 6.0, '<\\?xml.*?\\?>', 'OwnProfile', 'UNKNOWN', '\\d+', 'action_bar_title', 'back', 'bounds', 'content-desc', 'identity_guard', 'node', 'reason', 'resource-id', 'tap profile tab', 'target', 'text', 'x', 'y']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/biomechanics.py
# hypothesis_version: 6.140.2
[-0.05, -0.04, -0.03, -0.003, 0.0, 0.002, 0.003, 0.01, 0.015, 0.02, 0.025, 0.03, 0.04, 0.05, 0.06, 0.08, 0.1, 0.12, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.6, 0.65, 0.7, 0.75, 0.8, 0.82, 0.85, 0.9, 0.92, 1.0, 1.2, 1.5, 3.0, 8.0, 1000.0, 200, 1080, 2400, 'displayHeight', 'displayWidth', 'right']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/__init__.py
# hypothesis_version: 6.140.2
['BezierGesture', 'PhysicsBody', 'SendEventInjector', 'align_active_post', 'humanized_click', 'humanized_scroll', 'wait_for_post_loaded']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/growth_brain.py
# hypothesis_version: 6.141.1
[0.05, 0.06, 0.1, 0.15, 0.2, 0.25, 0.3, 0.4, 0.45, 0.5, 0.7, 0.85, 1.0, 80.0, 85.0, 'CHECK_CURIOSITY', 'DiscoverNewContent', 'NurtureCommunity', 'SHIFT_CONTEXT', 'STAY', 'ShiftContext', 'SocialReciprocity', '_last_pacing_state', 'aggressive_growth', 'color', 'community_builder', 'deep_sleep', 'evening_winddown', 'feed', 'home', 'homefeed', 'morning_warmup', 'passive_learning', 'peak_hours', 'resonance', 'session_learning', 'stealth_lurker', 'waking_up']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/humanized_input.py
# hypothesis_version: 6.140.2
[0.008, 0.05, 0.08, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.6, 0.7, 0.75, 0.85, 0.95, 1.0, 1.3, 2.0, 3.0, 100, 150, 180, 200, 250, 300, 350, 500, 600, 1080, 2400, 'displayHeight', 'displayWidth', 'overshoot_correction', 'pre_touch_dwell', 'reading_pause', '←', '→']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/bot_flow.py
# hypothesis_version: 6.140.2
[0.0, 0.01, 0.05, 0.1, 0.2, 0.3, 0.35, 0.4, 0.45, 0.5, 0.7, 0.8, 0.85, 0.9, 1.0, 1.2, 1.5, 1.8, 2.0, 2.2, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0, 6.0, 7.0, 10.0, 60.0, 100.0, 100, 120, 250, 999, 1080, 2400, ' --------', ' | ', '"', '%H:%M:%S - %Y/%m/%d', "'", ',', '-', '999', 'BOREDOM_CHANGE_FEED', 'CHECK_CURIOSITY', 'CONTEXT_LOST', 'DiscoverNewContent', 'ExploreFeed', 'FEED_EXHAUSTED', 'FollowingList', 'HomeFeed', 'LIKE', 'MessageInbox', 'No bio', 'Notifications', 'NurtureCommunity', 'ReelsFeed', 'SHIFT_CONTEXT', 'SKIP', 'STAY', 'SearchFeed', 'ShiftContext', 'SocialReciprocity', 'StoriesFeed', 'UNKNOWN', 'Unknown', '\\n- ', 'action', 'action_bar_title', 'active_inference', 'agent_persona', 'agent_strategy', 'aggressive_growth', 'ai_condenser_model', 'ai_condenser_url', 'ai_learn_own_profile', 'ai_target_audience', 'ai_vibe', 'antworten', 'avatar', 'back', 'bio', 'blank_start', 'button_follow', 'button_like', 'button_post', 'caption', 'clips_viewer', 'close friend', 'color', 'comment', 'comment_percentage', 'comment_reply', 'commenter', 'content-desc="liked"', 'content_desc', 'context_lost', 'crm', 'darwin', 'del', 'desc', 'description', 'displayHeight', 'displayWidth', 'dojo', 'dopamine', 'dry_run_comments', 'editText', 'enge freunde', 'enter', 'fast', 'feed', 'follow_percentage', 'followers', 'following', 'friendly', 'growth_brain', 'handedness', 'hide replies', 'high', 'ignore_close_friends', 'interact', 'interact_percentage', 'interacted', 'kommentieren', 'konto ist privat', 'learn own profile', 'like', 'likes_percentage', 'llama3.2:1b', 'low', 'matches_niche', 'medium', 'misses', 'my_username', 'nature', 'nav_graph', 'no posts yet', 'noch keine beiträge', 'original_attribs', 'passive_learning', 'persona', 'persona_interests', 'photography', 'plugin_registry', 'profile', 'profile_name', 'quality', 'quality_score', 'radome', 'reel_viewer', 'reply', 'reposted', 'resonance', 'resource_id', 'response', 'right', 'row_feed', 'score', 'scrape', 'scrape_profiles', 'search', 'see translation', 'semantic_string', 'sessions', 'skip', 'speed_multiplier', 'stories', 'swarm', 'tap comment button', 'tap like button', 'tap post username', 'tap share button', 'target', 'target_audience', 'telepathic', 'text', 'title', 'translate', 'travel', 'unknown', 'unknown_user', 'unlike', 'username', 'vibe', 'view replies', 'x', 'y', 'zero_engine', '•']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/config.py
# hypothesis_version: 6.140.2
['%Y-%m-%d %H:%M:%S', '-', '--ai-condenser-model', '--ai-condenser-url', '--ai-embedding-model', '--ai-embedding-url', '--ai-fallback-model', '--ai-fallback-url', '--ai-learn-comments', '--ai-learn-only', '--ai-model', '--ai-model-url', '--ai-quality-filter', '--ai-target-audience', '--ai-telepathic-url', '--ai-text-model', '--ai-text-url', '--ai-vibe', '--ai-vision-context', '--app-id', '--blank-start', '--comment-percentage', '--config', '--debug', '--device', '--dry-run-comments', '--explore', '--feed', '--follow-percentage', '--handedness', '--likes-count', '--likes-percentage', '--persona-interests', '--reels', '--repeat', '--restart-atx-agent', '--scrape-profiles', '--search', '--shadow-mode', '--smart-unfollow', '--speed-multiplier', '--stories', '--stories-count', '--stories-percentage', '--target-audience', '--time-delta-session', '--total-likes-limit', '--total-pm-limit', '--total-sessions', '--username', '--working-hours', '-1', '.yaml', '.yml', '0', '1.0', '10', '100', '1000', '2-3', '200', '300', '5', '50', '80', 'Arguments used:', 'Likes count', 'Likes percentage', 'Restart atx agent', 'SPECIALIZED', 'Speed multiplier', 'Stories count', 'Stories percentage', 'Total comments limit', 'Total crashes limit', 'Total follows limit', 'Total likes limit', 'Total pm limit', 'Total scraped limit', 'Total watches limit', 'Working hours', '_', 'app id', 'app_id', 'color', 'config file path', 'debug', 'debug mode', 'device id', 'explore', 'feed', 'nomic-embed-text', 'passwords', 'pytest', 'qwen3.5:latest', 'r+', 'right', 'store_true', 'username', 'utf-8']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/biomechanics.py
# hypothesis_version: 6.140.2
[-0.05, -0.04, -0.03, -0.003, 0.0, 0.002, 0.003, 0.01, 0.015, 0.02, 0.025, 0.03, 0.04, 0.05, 0.06, 0.08, 0.1, 0.12, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.6, 0.65, 0.7, 0.75, 0.8, 0.82, 0.85, 0.9, 0.92, 1.0, 1.2, 1.5, 3.0, 8.0, 1000.0, 200, 1080, 2400, 'displayHeight', 'displayWidth', 'right']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/dojo_engine.py
# hypothesis_version: 6.141.1
[2.0, 5.0, 'color', 'intent', 'name', 'timestamp', 'xml']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/bot_flow.py
# hypothesis_version: 6.141.1
[0.0, 0.01, 0.05, 0.1, 0.2, 0.3, 0.35, 0.4, 0.45, 0.5, 0.7, 0.8, 0.85, 0.9, 1.0, 1.2, 1.5, 1.8, 2.0, 2.2, 2.5, 3.0, 3.2, 3.5, 4.0, 4.5, 5.0, 6.0, 7.0, 60.0, 100.0, 100, 120, 250, 999, 1080, 2400, ' --------', ' | ', '"', '%H:%M:%S - %Y/%m/%d', "'", "'s unseen story", ',', '-', '1-2', '999', 'BOREDOM_CHANGE_FEED', 'CHECK_CURIOSITY', 'CONTEXT_LOST', 'DiscoverNewContent', 'ExploreFeed', 'FEED_EXHAUSTED', 'FollowingList', 'HomeFeed', 'LIKE', 'MessageInbox', 'No bio', 'Notifications', 'NurtureCommunity', 'ReelsFeed', 'SHIFT_CONTEXT', 'SKIP', 'STAY', 'SearchFeed', 'ShiftContext', 'SocialReciprocity', 'StoriesFeed', 'UNKNOWN', 'Unknown', '\\n- ', 'action', 'active_inference', 'agent_persona', 'agent_strategy', 'aggressive_growth', 'ai_condenser_model', 'ai_condenser_url', 'ai_learn_own_profile', 'ai_target_audience', 'ai_vibe', 'antworten', 'avatar', 'back', 'bio', 'blank_start', 'button_follow', 'button_like', 'button_post', 'caption', 'carousel_count', 'carousel_percentage', 'clips_viewer', 'close friend', 'cognitive_stack', 'color', 'comment', 'comment_percentage', 'comment_reply', 'commenter', 'content-desc="liked"', 'content_desc', 'context_lost', 'crm', 'darwin', 'del', 'desc', 'description', 'displayHeight', 'displayWidth', 'dojo', 'dopamine', 'dry_run_comments', 'editText', 'enge freunde', 'enter', 'fast', 'feed', 'follow_percentage', 'followers', 'following', 'friendly', 'growth_brain', 'has a new story', 'hide replies', 'high', 'ignore_close_friends', 'interact', 'interact_percentage', 'interacted', 'kommentieren', 'konto ist privat', 'learn own profile', 'like', 'likes_count', 'likes_percentage', 'llama3.2:1b', 'low', 'manual_interrupt', 'matches_niche', 'medium', 'misses', 'my_username', 'nature', 'nav_graph', 'no posts yet', 'noch keine beiträge', 'original_attribs', 'passive_learning', 'persona', 'persona_interests', 'photography', 'profile', 'profile_name', 'quality', 'quality_score', 'radome', 'reel_ring', 'reel_viewer', 'reply', 'reposted', 'resonance', 'resource_id', 'response', 'row_feed', 'score', 'scrape', 'scrape_profiles', 'search', 'see translation', 'semantic_string', 'sessions', 'skip', 'speed_multiplier', 'stories', 'stories_count', 'stories_percentage', 'story von', 'swarm', 'tap comment button', 'tap follow button', 'tap like button', 'tap post username', 'tap share button', 'target', 'target_audience', 'telepathic', 'text', 'title', 'translate', 'travel', 'unknown', 'unknown_user', 'unlike', 'username', 'vibe', 'view replies', 'x', 'y', 'zero_engine']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/resonance_engine.py
# hypothesis_version: 6.141.1
[0.0, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.5, 0.6, 0.7, 0.75, 0.8, 0.85, 1.0, 500, 600, 'COMMENT', 'LIKE', 'SKIP', 'Unknown', '```', '```json', 'accident', 'ai_blacklist_topics', 'ai_condenser_model', 'ai_condenser_url', 'ai_learn_comments', 'ai_vibe', 'beerdigung', 'breaking news', 'cancer', 'caption', 'classification', 'color', 'comment', 'content-desc', 'description', 'died', 'disease', 'evaluations', 'funeral', 'go to', 'has_blacklist_words', 'hide replies', 'high', 'interests', 'keep', 'killed', 'krankheit', 'krebs', 'like', 'llama3.2:1b', 'low', 'medium', 'memorial', 'node', 'package', 'reply', 'resource-id', 'response', 'rest in peace', 'rip', 'ruhe in frieden', 'sad news', 'see translation', 'shooting', 'stage', 'tap to', 'text', 'textview', 'tot', 'tragedy', 'tragödie', 'trauer', 'unfall', 'unknown', 'username', 'verstorben', 'view replies']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/telepathic_engine.py
# hypothesis_version: 6.141.1
[0.0, 0.05, 0.1, 0.3, 0.4, 0.45, 0.5, 0.75, 0.82, 0.85, 0.9, 0.92, 0.95, 0.98, 0.99, 1.0, 999, 2000, 2400, 100000, 150000, 500000, 999999, '(?:$|[\\s,._\\-:!?])', '(?:^|[\\s,._\\-:])', '(?<!\\w)description:', '(?<!\\w)text:', ', ', '/', '/>', '<\\?xml.*?\\?>', 'Already fulfilled', 'Escape Hatch', 'FAIL', 'HIGH', 'JPEG', 'LOW/UNSAFE', 'MEDIUM', 'NAF', 'No reason provided', 'PASS', '[0,0][0,0]', '[^\\w\\s]', '\\W+', '\\d+', '_', '_cached_app_id', '_cached_username', '_poll_', 'a', 'abbrechen', 'abmelden', 'abonniert', 'accept', 'account', 'action', 'action_bar', 'action_sheet', 'add to story', 'agentic_fallback', 'ai_telepathic_model', 'ai_telepathic_url', 'ai_vision_navigation', 'allow', 'already_followed', 'already_liked', 'an', 'and', 'angefragt', 'app_id', 'area', 'args', 'ausloggen', 'beitrag erstellen', 'best_index', 'bezahlen', 'block', 'blocked_by_dm_thread', 'blocked_by_modal', 'blockieren', 'bottom_sheet', 'bounds', 'box', 'button', 'button_edit_profile', 'button_share_profile', 'buy now', 'camera', 'camera_button', 'cancel', 'checkout', 'class', 'class_name', 'classification', 'clear text', 'clickable', 'clips', 'clips_comment_button', 'clips_like_button', 'clips_viewer', 'close', 'close friend', 'close_friend', 'close_friends', 'color', 'comment', 'comments_disabled', 'content-desc', 'content_desc', 'create post', 'create reel', 'create story', 'creation_tab', 'delete account', 'deny', 'desc', 'description', 'dialog', 'direct_tab', 'direct_thread_header', 'dismiss', 'displayHeight', 'done', 'edit profile', 'eingeschränkt', 'einschränken', 'enge freunde', 'escape', 'explore', 'explore grid', 'explore tab', 'false', 'first', 'first image', 'follow', 'follow back', 'follow button', 'follower', 'followers', 'following', 'for', 'gefolgt', 'generic semantic', 'get_info', 'go live', 'go_live', 'grid', 'grid first post', 'grid item', 'grid_fastpath', 'heart', 'height', 'home', 'home feed index', 'home tab', 'home_tab', 'icon', 'image', 'in', 'index', 'input', 'intent', 'is_unsuitable', 'item', 'jetzt kaufen', 'kamera', 'keyword', 'keyword_fast_path', 'konto löschen', 'konto wechseln', 'like', 'liked', 'list', 'live gehen', 'live_button', 'llama3.2-vision', 'llama3.2:1b', 'log out', 'long-clickable', 'main', 'matches_niche', 'media', 'media_header_user', 'melden', 'memory', 'menu', 'menu_item', 'message tab', 'message_list', 'modal', 'models', 'more', 'my profile', 'naf', 'navigation', 'neue story', 'neuer beitrag', 'node', 'node_size', 'not now', 'obstacle', 'of', 'ok', 'on', 'option', 'or', 'original_attribs', 'own profile', 'own story', 'passed_all', 'photo', 'poll', 'popup', 'post', 'post_count', 'profil bearbeiten', 'profile', 'profile grid', 'profile tab', 'purchase', 'qdrant_nav', 'quality_score', 'quick_capture', 'r', 'raw_bounds', 'reason', 'reel', 'reel erstellen', 'reel_camera', 'reel_empty_badge', 'reel_viewer', 'reels', 'reels tab', 'reels_tab', 'rejected_node', 'reply', 'report', 'requested', 'resource-id', 'resource_id', 'response', 'restrict', 'row', 'row_feed_button_like', 'row_feed_view_group', 'row_profile_header', 'safe', 'save', 'schließen', 'score', 'scrollable', 'search', 'secondary_label', 'selected', 'semantic', 'semantic_string', 'send', 'share', 'share_sheet', 'skip', 'skip_positions', 'source', 'story erstellen', 'story ring', 'story_camera', 'story_create', 'structural intent', 'survey', 'survey_', 'switch account', 'tab', 'tab_bar', 'tap', 'tap comment button', 'tap explore tab', 'tap home tab', 'tap like button', 'tap newsfeed_tab', 'tap profile tab', 'tap reels tab', 'tap share button', 'telepathic_score', 'text', 'the', 'timestamp', 'to', 'true', 'ui_memory', 'user', 'username', 'utf-8', 'vector', 'video', 'visible', 'vlm_grid', 'vlm_hallucination', 'vlm_index', 'w', 'width', 'x', 'y', 'your story', 'zur kasse', 'zurückfolgen']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/behaviors/profile_guard.py
# hypothesis_version: 6.140.2
[100.0, 100, '\x1b[32m', '\x1b[36m', 'ProfileView', 'close friend', 'close_friend', 'color', 'empty', 'enge freunde', 'ignore_close_friends', 'konto ist privat', 'matches_niche', 'my_username', 'nav_graph', 'no posts yet', 'noch keine beiträge', 'persona_interests', 'private', 'profile_guard', 'quality_score', 'reason', 'score', 'self_profile', 'telepathic', 'vibe_check_failed']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/diagnostic_dump.py
# hypothesis_version: 6.141.1
['%Y-%m-%d_%H-%M-%S', '.log', '.meta.json', '.xml', '/', '_', 'context', 'debug', 'log_file', 'reason', 'timestamp', 'utf-8', 'w', 'xml_dumps', 'xml_file']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/dm_engine.py
# hypothesis_version: 6.141.1
[0.6, 0.7, 0.8, 1.0, 2.0, 5.0, 15.0, 50.0, 100, 120, 'BOREDOM_CHANGE_FEED', 'CONTEXT_LOST', 'FEED_EXHAUSTED', 'No previous context', 'SESSION_OVER', 'ai_condenser_model', 'ai_condenser_url', 'back', 'color', 'crm', 'disable_ai_messaging', 'dopamine', 'fast', 'llama3.2:1b', 'response', 'skip', 'telepathic', 'text', 'totalMessages', 'unknown_target', 'x', 'y']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/humanized_input.py
# hypothesis_version: 6.140.2
[0.008, 0.05, 0.08, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.6, 0.7, 0.75, 0.85, 0.95, 1.0, 1.3, 2.0, 3.0, 100, 150, 180, 200, 250, 300, 350, 500, 600, 1080, 2400, 'Correction ↕', 'Double Tap', 'Tap', 'displayHeight', 'displayWidth', 'duration_ms', 'horizontal_swipe', 'label', 'overshoot_correction', 'points', 'pre_touch_dwell', 'reading_pause', 'scroll', 'tap', 'type', '←', '→']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/physics/gesture_bus.py
# hypothesis_version: 6.140.2
[1.0, 19876, '127.0.0.1', 'timestamp', 'utf-8']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/bot_flow.py
# hypothesis_version: 6.141.1
[0.0, 0.01, 0.05, 0.1, 0.2, 0.3, 0.35, 0.4, 0.45, 0.5, 0.7, 0.8, 0.85, 0.9, 1.0, 1.2, 1.5, 1.8, 2.0, 2.2, 2.5, 3.0, 3.2, 3.5, 4.0, 4.5, 5.0, 6.0, 7.0, 60.0, 100.0, 100, 120, 250, 999, 1080, 2400, ' --------', ' | ', '"', '%H:%M:%S - %Y/%m/%d', "'", "'s unseen story", ',', '-', '1-2', '999', 'BOREDOM_CHANGE_FEED', 'CHECK_CURIOSITY', 'CONTEXT_LOST', 'DiscoverNewContent', 'ExploreFeed', 'FEED_EXHAUSTED', 'FollowingList', 'HomeFeed', 'LIKE', 'MessageInbox', 'No bio', 'Notifications', 'NurtureCommunity', 'ReelsFeed', 'SHIFT_CONTEXT', 'SKIP', 'STAY', 'SearchFeed', 'ShiftContext', 'SocialReciprocity', 'StoriesFeed', 'UNKNOWN', 'Unknown', '\\n- ', 'action', 'active_inference', 'agent_persona', 'agent_strategy', 'aggressive_growth', 'ai_condenser_model', 'ai_condenser_url', 'ai_learn_own_profile', 'ai_target_audience', 'ai_vibe', 'antworten', 'avatar', 'back', 'bio', 'blank_start', 'bounds', 'button_follow', 'button_like', 'button_post', 'caption', 'carousel_count', 'carousel_percentage', 'clips_viewer', 'close friend', 'cognitive_stack', 'color', 'comment', 'comment_percentage', 'comment_reply', 'commenter', 'content-desc="liked"', 'content_desc', 'context_lost', 'crm', 'darwin', 'del', 'desc', 'description', 'displayHeight', 'displayWidth', 'dojo', 'dopamine', 'dry_run_comments', 'editText', 'enge freunde', 'enter', 'fast', 'feed', 'follow_percentage', 'followers', 'following', 'friendly', 'growth_brain', 'has a new story', 'hide replies', 'high', 'ignore_close_friends', 'interact', 'interact_percentage', 'interacted', 'kommentieren', 'konto ist privat', 'learn own profile', 'like', 'likes_count', 'likes_percentage', 'llama3.2:1b', 'low', 'manual_interrupt', 'matches_niche', 'medium', 'misses', 'my_username', 'nature', 'nav_graph', 'no posts yet', 'noch keine beiträge', 'original_attribs', 'passive_learning', 'persona', 'persona_interests', 'photography', 'post_load_timeout', 'profile', 'profile_header', 'profile_name', 'quality', 'quality_score', 'radome', 'reel_ring', 'reel_viewer', 'reel_viewer_root', 'reply', 'reposted', 'resonance', 'resource_id', 'response', 'row_feed', 'score', 'scrape', 'scrape_profiles', 'search', 'see translation', 'semantic_string', 'sessions', 'skip', 'speed_multiplier', 'stories', 'stories_count', 'stories_percentage', 'story von', 'story_viewer', 'swarm', 'tap comment button', 'tap follow button', 'tap like button', 'tap post username', 'tap share button', 'target', 'target_audience', 'telepathic', 'text', 'timeout_sec', 'title', 'translate', 'travel', 'unknown', 'unknown_user', 'unlike', 'username', 'vibe', 'view replies', 'x', 'y', 'zero_engine', '✅ Recovered to Feed.']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/telepathic_engine.py
# hypothesis_version: 6.140.2
[0.0, 0.05, 0.1, 0.2, 0.3, 0.4, 0.45, 0.5, 0.75, 0.82, 0.85, 0.9, 0.92, 0.95, 0.98, 0.99, 1.0, 200, 999, 2000, 2400, 150000, 500000, 999999, '\x1b[36m', '(?:$|[\\s,._\\-:!?])', '(?:^|[\\s,._\\-:])', '(?<!\\w)description:', '(?<!\\w)text:', ', ', ',\\s*id context:', '/', '<\\?xml.*?\\?>', 'Already fulfilled', 'Escape Hatch', 'FAIL', 'HIGH', 'JPEG', 'LOW/UNSAFE', 'MEDIUM', 'NAF', 'No reason provided', 'PASS', '[0,0][0,0]', '[^\\w\\s]', '\\W+', '\\d+', '_', '_cached_app_id', '_cached_username', '_poll_', '```', '```json', 'a', 'abbrechen', 'abmelden', 'abonniert', 'accept', 'account', 'action', 'action_bar', 'action_sheet', 'add to story', 'agentic_fallback', 'ai_telepathic_model', 'ai_telepathic_url', 'ai_vision_navigation', 'allow', 'already_followed', 'already_liked', 'an', 'and', 'angefragt', 'app_id', 'area', 'args', 'ausloggen', 'author', 'beitrag erstellen', 'best_index', 'bezahlen', 'block', 'blocked_by_dm_thread', 'blocked_by_modal', 'blockieren', 'bottom_sheet', 'bounds', 'box', 'button', 'button_edit_profile', 'button_share_profile', 'buy now', 'camera', 'camera_button', 'cancel', 'caption', 'carousel', 'checkout', 'class', 'class_name', 'classification', 'clear text', 'clickable', 'clips', 'clips_comment_button', 'clips_like_button', 'clips_viewer', 'close', 'close friend', 'close_friend', 'close_friends', 'color', 'comment', 'comments_disabled', 'content', 'content-desc', 'content_desc', 'create post', 'create reel', 'create story', 'creation_tab', 'delete account', 'deny', 'desc', 'description', 'dialog', 'direct_tab', 'direct_thread_header', 'dismiss', 'displayHeight', 'done', 'edit profile', 'eingeschränkt', 'einschränken', 'enge freunde', 'escape', 'explore', 'explore grid', 'explore tab', 'false', 'feed', 'first', 'first image', 'follow', 'follow back', 'follow button', 'follower', 'followers', 'following', 'for', 'gefolgt', 'generic semantic', 'get_info', 'go live', 'go_live', 'goal', 'grid', 'grid first post', 'grid item', 'grid_fastpath', 'group', 'header', 'heart', 'height', 'home', 'home feed index', 'home tab', 'home_tab', 'icon', 'id context:', 'image', 'imageview', 'in', 'index', 'input', 'intent', 'is_unsuitable', 'item', 'jetzt kaufen', 'kamera', 'keyword', 'keyword_fast_path', 'konto löschen', 'konto wechseln', 'like', 'liked', 'list', 'live gehen', 'live_button', 'llama3.2-vision', 'llama3.2:1b', 'log out', 'long-clickable', 'main', 'matches_niche', 'media', 'media_group', 'media_header_user', 'melden', 'memory', 'menu', 'menu_item', 'message tab', 'message_list', 'modal', 'models', 'more', 'my profile', 'naf', 'name', 'navigation', 'navigation_bar', 'neue story', 'neuer beitrag', 'node', 'node_size', 'not now', 'obstacle', 'of', 'ok', 'on', 'option', 'or', 'original_attribs', 'own profile', 'own story', 'owner', 'passed_all', 'photo', 'poll', 'popup', 'post', 'post media content', 'post_count', 'profil bearbeiten', 'profile', 'profile grid', 'profile tab', 'profile_name', 'purchase', 'qdrant_nav', 'quality_score', 'quick_capture', 'r', 'raw_bounds', 'reason', 'reel', 'reel erstellen', 'reel_camera', 'reel_empty_badge', 'reel_viewer', 'reels', 'reels tab', 'reels_tab', 'rejected_node', 'reply', 'report', 'requested', 'resource-id', 'resource_id', 'response', 'restrict', 'row', 'row_feed_button_like', 'row_feed_view_group', 'row_profile_header', 'safe', 'save', 'schließen', 'score', 'scrollable', 'search', 'secondary_label', 'selected', 'semantic', 'semantic_string', 'send', 'share', 'share_sheet', 'skip', 'skip_positions', 'source', 'story erstellen', 'story ring', 'story_camera', 'story_create', 'structural intent', 'survey', 'survey_', 'switch account', 'tab', 'tab_bar', 'tab_layout', 'tap', 'tap comment button', 'tap explore tab', 'tap feed item', 'tap home tab', 'tap like button', 'tap newsfeed_tab', 'tap post author', 'tap post username', 'tap profile tab', 'tap reels tab', 'tap share button', 'tap user profile', 'telepathic_score', 'text', 'the', 'timestamp', 'to', 'true', 'ui_memory', 'user', 'username', 'utf-8', 'vector', 'video', 'vlm_grid', 'vlm_hallucination', 'vlm_index', 'w', 'width', 'x', 'y', 'your story', 'zur kasse', 'zurückfolgen']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/evolution_engine.py
# hypothesis_version: 6.141.1
[-0.2, 0.0, 0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.5, 0.7, 0.8, 0.9, 0.95, 1.0, 2.5, 10.0, 20.0, 45.0, 50.0, 60.0, 120, 128, 'EvolutionEngine', 'Genome', 'boredom_decay_rate', 'default', 'evolution_genomes_v1', 'genome', 'resonance_threshold', 'username']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/perception/feed_analysis.py
# hypothesis_version: 6.141.1
[0.35, 'caption', 'content-desc', 'description', 'node', 'text', 'username']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/unfollow_engine.py
# hypothesis_version: 6.141.1
[-0.5, -0.3, 0.08, 0.12, 0.2, 0.3, 0.4, 0.5, 0.7, 0.8, 1.0, 1.5, 2.0, 2.5, 3.0, 1080, 2400, 'BOREDOM_CHANGE_FEED', 'CONTEXT_LOST', 'FEED_EXHAUSTED', 'bounds', 'close friend', 'color', 'description', 'displayHeight', 'displayWidth', 'dopamine', 'enge freunde', 'resonance', 'skip', 'telepathic', 'totalUnfollowed', 'x', 'y']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/active_inference.py
# hypothesis_version: 6.141.1
[-0.1, 0.0, 0.3, 0.7, 0.75, 1.0, 1.2, 2.0, 5.0, 3600.0, 'CAUTIOUS', 'DORMANT', 'STABLE', 'color']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/exceptions.py
# hypothesis_version: 6.141.1
[]

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/behaviors/carousel_browsing.py
# hypothesis_version: 6.141.1
[0.2, 0.5, 0.8, 1.0, 1.5, 2.0, 3.0, 3.5, 7.0, 100.0, 250, 1080, 2400, '-', '1-2', 'carousel_browsing', 'carousel_count', 'carousel_percentage', 'color', 'curiosity_slide', 'displayHeight', 'displayWidth', 'slides_viewed']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/bot_flow.py
# hypothesis_version: 6.140.2
[0.0, 0.01, 0.05, 0.1, 0.2, 0.3, 0.35, 0.4, 0.45, 0.5, 0.7, 0.8, 0.85, 0.9, 1.0, 1.2, 1.5, 1.8, 2.0, 2.2, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0, 6.0, 7.0, 10.0, 60.0, 100.0, 100, 120, 250, 999, 1080, 2400, ' --------', ' | ', '"', '%H:%M:%S - %Y/%m/%d', "'", ',', '-', '999', 'BOREDOM_CHANGE_FEED', 'CHECK_CURIOSITY', 'CONTEXT_LOST', 'DiscoverNewContent', 'ExploreFeed', 'FEED_EXHAUSTED', 'FollowingList', 'HomeFeed', 'LIKE', 'MessageInbox', 'No bio', 'Notifications', 'NurtureCommunity', 'ReelsFeed', 'SHIFT_CONTEXT', 'SKIP', 'STAY', 'SearchFeed', 'ShiftContext', 'SocialReciprocity', 'StoriesFeed', 'UNKNOWN', 'Unknown', '\\n- ', 'action', 'action_bar_title', 'active_inference', 'agent_persona', 'agent_strategy', 'aggressive_growth', 'ai_condenser_model', 'ai_condenser_url', 'ai_learn_own_profile', 'ai_target_audience', 'ai_vibe', 'antworten', 'avatar', 'back', 'bio', 'blank_start', 'button_follow', 'button_like', 'button_post', 'caption', 'clips_viewer', 'close friend', 'color', 'comment', 'comment_percentage', 'comment_reply', 'commenter', 'content-desc="liked"', 'content_desc', 'context_lost', 'crm', 'darwin', 'del', 'desc', 'description', 'displayHeight', 'displayWidth', 'dojo', 'dopamine', 'dry_run_comments', 'editText', 'enge freunde', 'enter', 'fast', 'feed', 'follow_percentage', 'followers', 'following', 'friendly', 'growth_brain', 'handedness', 'hide replies', 'high', 'ignore_close_friends', 'interact', 'interact_percentage', 'interacted', 'kommentieren', 'konto ist privat', 'learn own profile', 'like', 'likes_percentage', 'llama3.2:1b', 'low', 'matches_niche', 'medium', 'misses', 'my_username', 'nature', 'nav_graph', 'no posts yet', 'noch keine beiträge', 'original_attribs', 'passive_learning', 'persona', 'persona_interests', 'photography', 'plugin_registry', 'profile', 'profile_name', 'quality', 'quality_score', 'radome', 'reel_viewer', 'reply', 'reposted', 'resonance', 'resource_id', 'response', 'right', 'row_feed', 'score', 'scrape', 'scrape_profiles', 'search', 'see translation', 'semantic_string', 'sessions', 'skip', 'speed_multiplier', 'stories', 'swarm', 'tap comment button', 'tap like button', 'tap post username', 'tap share button', 'target', 'target_audience', 'telepathic', 'text', 'title', 'translate', 'travel', 'unknown', 'unknown_user', 'unlike', 'username', 'vibe', 'view replies', 'x', 'y', 'zero_engine', '•']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/swarm_protocol.py
# hypothesis_version: 6.141.1
[0.0, 1.0, 100, 'banned', 'color', 'count', 'outcome', 'path_hash', 'swarm_synced', 'timestamp', 'username']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/session_state.py
# hypothesis_version: 6.141.1
[100, 200, 300, 1000, '%H.%M %Y-%m-%d', '%Y-%m-%d', '-', '.', ':', 'Whole day mode.', 'args', 'finish_time', 'followers', 'following', 'id', 'posts', 'profile', 'start_time', 'total_comments', 'total_comments_limit', 'total_crashes_limit', 'total_followed', 'total_follows_limit', 'total_interactions', 'total_likes', 'total_likes_limit', 'total_pm', 'total_pm_limit', 'total_scraped', 'total_scraped_limit', 'total_unfollowed', 'total_watched', 'total_watches_limit']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/stealth_typing.py
# hypothesis_version: 6.141.1
[0.05, 0.1, 0.15, 0.18, 0.2, 0.25, 0.45, 0.5, '!', '%s', "'", ',', '.', '?', "\\'", 'input', 'input keyevent 67', 'text']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/telepathic_engine.py
# hypothesis_version: 6.140.2
[0.0, 0.05, 0.1, 0.2, 0.3, 0.4, 0.45, 0.5, 0.75, 0.82, 0.85, 0.9, 0.92, 0.95, 0.98, 0.99, 1.0, 200, 999, 2000, 2400, 100000, 150000, 500000, 999999, '\x1b[36m', '(?:$|[\\s,._\\-:!?])', '(?:^|[\\s,._\\-:])', '(?<!\\w)description:', '(?<!\\w)text:', ', ', ',\\s*id context:', '/', '/>', '<\\?xml.*?\\?>', 'Already fulfilled', 'Escape Hatch', 'FAIL', 'HIGH', 'JPEG', 'LOW/UNSAFE', 'MEDIUM', 'NAF', 'No reason provided', 'PASS', '[0,0][0,0]', '[^\\w\\s]', '\\W+', '\\d+', '_', '_cached_app_id', '_cached_username', '_poll_', '```', '```json', 'a', 'abbrechen', 'abmelden', 'abonniert', 'accept', 'account', 'action', 'action_bar', 'action_sheet', 'add to story', 'agentic_fallback', 'ai_telepathic_model', 'ai_telepathic_url', 'ai_vision_navigation', 'allow', 'already_followed', 'already_liked', 'an', 'and', 'angefragt', 'app_id', 'area', 'args', 'ausloggen', 'author', 'beitrag erstellen', 'best_index', 'bezahlen', 'block', 'blocked_by_dm_thread', 'blocked_by_modal', 'blockieren', 'bottom_sheet', 'bounds', 'box', 'button', 'button_edit_profile', 'button_share_profile', 'buy now', 'camera', 'camera_button', 'cancel', 'caption', 'carousel', 'checkout', 'class', 'class_name', 'classification', 'clear text', 'clickable', 'clips', 'clips_comment_button', 'clips_like_button', 'clips_viewer', 'close', 'close friend', 'close_friend', 'close_friends', 'color', 'comment', 'comments_disabled', 'content', 'content-desc', 'content_desc', 'create post', 'create reel', 'create story', 'creation_tab', 'delete account', 'deny', 'desc', 'description', 'dialog', 'direct_tab', 'direct_thread_header', 'dismiss', 'displayHeight', 'done', 'edit profile', 'eingeschränkt', 'einschränken', 'enge freunde', 'escape', 'explore', 'explore grid', 'explore tab', 'false', 'feed', 'first', 'first image', 'follow', 'follow back', 'follow button', 'follower', 'followers', 'following', 'for', 'gefolgt', 'generic semantic', 'get_info', 'go live', 'go_live', 'goal', 'grid', 'grid first post', 'grid item', 'grid_fastpath', 'group', 'header', 'heart', 'height', 'home', 'home feed index', 'home tab', 'home_tab', 'icon', 'id context:', 'image', 'imageview', 'in', 'index', 'input', 'intent', 'is_unsuitable', 'item', 'jetzt kaufen', 'kamera', 'keyword', 'keyword_fast_path', 'konto löschen', 'konto wechseln', 'like', 'liked', 'list', 'live gehen', 'live_button', 'llama3.2-vision', 'llama3.2:1b', 'log out', 'long-clickable', 'main', 'matches_niche', 'media', 'media_group', 'media_header_user', 'melden', 'memory', 'menu', 'menu_item', 'message tab', 'message_list', 'modal', 'models', 'more', 'my profile', 'naf', 'name', 'navigation', 'navigation_bar', 'neue story', 'neuer beitrag', 'node', 'node_size', 'not now', 'obstacle', 'of', 'ok', 'on', 'option', 'or', 'original_attribs', 'own profile', 'own story', 'owner', 'passed_all', 'photo', 'poll', 'popup', 'post', 'post media content', 'post_count', 'profil bearbeiten', 'profile', 'profile grid', 'profile tab', 'profile_name', 'purchase', 'qdrant_nav', 'quality_score', 'quick_capture', 'r', 'raw_bounds', 'reason', 'reel', 'reel erstellen', 'reel_camera', 'reel_empty_badge', 'reel_viewer', 'reels', 'reels tab', 'reels_tab', 'rejected_node', 'reply', 'report', 'requested', 'resource-id', 'resource_id', 'response', 'restrict', 'row', 'row_feed_button_like', 'row_feed_view_group', 'row_profile_header', 'safe', 'save', 'schließen', 'score', 'scrollable', 'search', 'secondary_label', 'selected', 'semantic', 'semantic_string', 'send', 'share', 'share_sheet', 'skip', 'skip_positions', 'source', 'story erstellen', 'story ring', 'story_camera', 'story_create', 'structural intent', 'survey', 'survey_', 'switch account', 'tab', 'tab_bar', 'tab_layout', 'tap', 'tap comment button', 'tap explore tab', 'tap feed item', 'tap home tab', 'tap like button', 'tap newsfeed_tab', 'tap post author', 'tap post username', 'tap profile tab', 'tap reels tab', 'tap share button', 'tap user profile', 'telepathic_score', 'text', 'the', 'timestamp', 'to', 'true', 'ui_memory', 'user', 'username', 'utf-8', 'vector', 'video', 'visible', 'vlm_grid', 'vlm_hallucination', 'vlm_index', 'w', 'width', 'x', 'y', 'your story', 'zur kasse', 'zurückfolgen']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/llm_provider.py
# hypothesis_version: 6.141.1
[0.0, 120, 150, 180, 200, '\x1b[38;5;208m\x1b[1m', '"', '(\\{.*\\}|\\[.*\\])', '.', '/', '/v1/chat/completions', '127.0.0.1', '<think>', '<think>.*?</think>', 'Authorization', 'Content-Type', 'Hi', 'OPENROUTER_API_KEY', '\\"', '^```\\s*', '^```json\\s*', '_is_fallback', 'ai_condenser_model', 'ai_condenser_url', 'ai_fallback_model', 'ai_fallback_url', 'ai_model', 'ai_model_url', 'ai_telepathic_model', 'ai_telepathic_url', 'application/json', 'choices', 'color', 'completion', 'completion_tokens', 'content', 'data', 'format', 'id', 'image_url', 'images', 'json', 'json_object', 'keep_alive', 'limit', 'llama3.2:1b', 'localhost', 'max_tokens', 'message', 'messages', 'model', 'num_predict', 'openai.com', 'openrouter', 'openrouter.ai', 'options', 'pricing', 'prompt', 'prompt_tokens', 'response', 'response_format', 'role', 'stream', 'system', 'temperature', 'text', 'thinking', 'total_cost', 'total_tokens', 'type', 'url', 'usage', 'usage_daily', 'user', '{}']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/dopamine_engine.py
# hypothesis_version: 6.141.1
[0.0, 0.05, 0.1, 0.2, 0.4, 0.5, 1.0, 1.5, 2.0, 4.0, 5.0, 7.0, 30.0, 60.0, 70.0, 75.0, 80.0, 100.0, 'color', 'high', 'medium', 'quality', 'score']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/telepathic_engine.py
# hypothesis_version: 6.140.2
[0.0, 0.05, 0.1, 0.2, 0.3, 0.4, 0.45, 0.5, 0.75, 0.82, 0.85, 0.9, 0.92, 0.95, 0.98, 0.99, 1.0, 200, 999, 2000, 2400, 100000, 150000, 500000, 999999, '\x1b[36m', '(?:$|[\\s,._\\-:!?])', '(?:^|[\\s,._\\-:])', '(?<!\\w)description:', '(?<!\\w)text:', ', ', '/', '/>', '<\\?xml.*?\\?>', 'Already fulfilled', 'Escape Hatch', 'FAIL', 'HIGH', 'JPEG', 'LOW/UNSAFE', 'MEDIUM', 'NAF', 'No reason provided', 'PASS', '[0,0][0,0]', '[^\\w\\s]', '\\W+', '\\d+', '_', '_cached_app_id', '_cached_username', '_poll_', '```', '```json', 'a', 'abbrechen', 'abmelden', 'abonniert', 'accept', 'account', 'action', 'action_bar', 'action_sheet', 'add to story', 'agentic_fallback', 'ai_telepathic_model', 'ai_telepathic_url', 'ai_vision_navigation', 'allow', 'already_followed', 'already_liked', 'an', 'and', 'angefragt', 'app_id', 'area', 'args', 'ausloggen', 'author', 'beitrag erstellen', 'best_index', 'bezahlen', 'block', 'blocked_by_dm_thread', 'blocked_by_modal', 'blockieren', 'bottom_sheet', 'bounds', 'box', 'button', 'button_edit_profile', 'button_share_profile', 'buy now', 'camera', 'camera_button', 'cancel', 'caption', 'carousel', 'checkout', 'class', 'class_name', 'classification', 'clear text', 'clickable', 'clips', 'clips_comment_button', 'clips_like_button', 'clips_viewer', 'close', 'close friend', 'close_friend', 'close_friends', 'color', 'comment', 'comments_disabled', 'content', 'content-desc', 'content_desc', 'create post', 'create reel', 'create story', 'creation_tab', 'delete account', 'deny', 'desc', 'description', 'dialog', 'direct_tab', 'direct_thread_header', 'dismiss', 'displayHeight', 'done', 'edit profile', 'eingeschränkt', 'einschränken', 'enge freunde', 'escape', 'explore', 'explore grid', 'explore tab', 'false', 'feed', 'first', 'first image', 'follow', 'follow back', 'follow button', 'follower', 'followers', 'following', 'for', 'gefolgt', 'generic semantic', 'get_info', 'go live', 'go_live', 'grid', 'grid first post', 'grid item', 'grid_fastpath', 'group', 'header', 'heart', 'height', 'home', 'home feed index', 'home tab', 'home_tab', 'icon', 'image', 'imageview', 'in', 'index', 'input', 'intent', 'is_unsuitable', 'item', 'jetzt kaufen', 'kamera', 'keyword', 'keyword_fast_path', 'konto löschen', 'konto wechseln', 'like', 'liked', 'list', 'live gehen', 'live_button', 'llama3.2-vision', 'llama3.2:1b', 'log out', 'long-clickable', 'main', 'matches_niche', 'media', 'media_group', 'media_header_user', 'melden', 'memory', 'menu', 'menu_item', 'message tab', 'message_list', 'modal', 'models', 'more', 'my profile', 'naf', 'name', 'navigation', 'navigation_bar', 'neue story', 'neuer beitrag', 'node', 'node_size', 'not now', 'obstacle', 'of', 'ok', 'on', 'option', 'or', 'original_attribs', 'own profile', 'own story', 'owner', 'passed_all', 'photo', 'poll', 'popup', 'post', 'post_count', 'profil bearbeiten', 'profile', 'profile grid', 'profile tab', 'profile_name', 'purchase', 'qdrant_nav', 'quality_score', 'quick_capture', 'r', 'raw_bounds', 'reason', 'reel', 'reel erstellen', 'reel_camera', 'reel_empty_badge', 'reel_viewer', 'reels', 'reels tab', 'reels_tab', 'rejected_node', 'reply', 'report', 'requested', 'resource-id', 'resource_id', 'response', 'restrict', 'row', 'row_feed_button_like', 'row_feed_view_group', 'row_profile_header', 'safe', 'save', 'schließen', 'score', 'scrollable', 'search', 'secondary_label', 'selected', 'semantic', 'semantic_string', 'send', 'share', 'share_sheet', 'skip', 'skip_positions', 'source', 'story erstellen', 'story ring', 'story_camera', 'story_create', 'structural intent', 'survey', 'survey_', 'switch account', 'tab', 'tab_bar', 'tab_layout', 'tap', 'tap comment button', 'tap explore tab', 'tap home tab', 'tap like button', 'tap newsfeed_tab', 'tap profile tab', 'tap reels tab', 'tap share button', 'telepathic_score', 'text', 'the', 'timestamp', 'to', 'true', 'ui_memory', 'user', 'username', 'utf-8', 'vector', 'video', 'visible', 'vlm_grid', 'vlm_hallucination', 'vlm_index', 'w', 'width', 'x', 'y', 'your story', 'zur kasse', 'zurückfolgen']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/behaviors/follow.py
# hypothesis_version: 6.141.1
[1.8, 3.2, 100.0, 'follow', 'follow_percentage', 'followed', 'nav_failed', 'reason', 'tap follow button']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/bot_flow.py
# hypothesis_version: 6.140.2
[0.0, 0.01, 0.05, 0.1, 0.2, 0.3, 0.35, 0.4, 0.45, 0.5, 0.7, 0.8, 0.85, 0.9, 1.0, 1.2, 1.5, 1.8, 2.0, 2.2, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0, 6.0, 7.0, 10.0, 60.0, 100.0, 100, 120, 250, 999, 1080, 2400, ' --------', ' | ', '"', '%H:%M:%S - %Y/%m/%d', "'", ',', '-', '..', '999', 'BOREDOM_CHANGE_FEED', 'CHECK_CURIOSITY', 'CONTEXT_LOST', 'DiscoverNewContent', 'ExploreFeed', 'FEED_EXHAUSTED', 'FollowingList', 'HomeFeed', 'LIKE', 'MessageInbox', 'No bio', 'Notifications', 'NurtureCommunity', 'ReelsFeed', 'SHIFT_CONTEXT', 'SKIP', 'STAY', 'SearchFeed', 'ShiftContext', 'SocialReciprocity', 'StoriesFeed', 'UNKNOWN', 'Unknown', '\\n- ', 'action', 'active_inference', 'agent_persona', 'agent_strategy', 'aggressive_growth', 'ai_condenser_model', 'ai_condenser_url', 'ai_learn_own_profile', 'ai_target_audience', 'ai_vibe', 'antworten', 'avatar', 'back', 'bio', 'blank_start', 'button_follow', 'button_like', 'button_post', 'caption', 'clips_viewer', 'close friend', 'color', 'comment', 'comment_percentage', 'comment_reply', 'commenter', 'content-desc="liked"', 'content_desc', 'context_lost', 'crm', 'darwin', 'debug_thumb_overlay', 'del', 'desc', 'description', 'displayHeight', 'displayWidth', 'dojo', 'dopamine', 'dry_run_comments', 'editText', 'enge freunde', 'enter', 'fast', 'feed', 'follow_percentage', 'followers', 'following', 'friendly', 'growth_brain', 'handedness', 'hide replies', 'high', 'ignore_close_friends', 'interact', 'interact_percentage', 'interacted', 'kommentieren', 'konto ist privat', 'learn own profile', 'like', 'likes_percentage', 'llama3.2:1b', 'low', 'manual_interrupt', 'matches_niche', 'medium', 'misses', 'my_username', 'nature', 'nav_graph', 'no posts yet', 'noch keine beiträge', 'original_attribs', 'overlay_process', 'passive_learning', 'persona', 'persona_interests', 'photography', 'plugin_registry', 'profile', 'profile_name', 'quality', 'quality_score', 'radome', 'reel_viewer', 'reply', 'reposted', 'resonance', 'resource_id', 'response', 'right', 'row_feed', 'score', 'scrape', 'scrape_profiles', 'scripts', 'search', 'see translation', 'semantic_string', 'sessions', 'skip', 'speed_multiplier', 'stories', 'swarm', 'tap comment button', 'tap like button', 'tap post username', 'tap share button', 'target', 'target_audience', 'telepathic', 'text', 'thumb_overlay.py', 'title', 'translate', 'travel', 'unknown', 'unknown_user', 'unlike', 'username', 'vibe', 'view replies', 'x', 'y', 'zero_engine']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/situational_awareness.py
# hypothesis_version: 6.140.2
[0.0, 0.3, 0.5, 0.8, 0.88, 1.0, 1.5, 2.0, 2.5, 3.5, 300, 500, 768, 2000, 3000, ' | ', '<\\?xml.*?\\?>', 'Battery NN per cent', 'Battery \\d+ per cent', 'CLICKABLE', 'EMPTY_SCREEN', 'EscapeAction', 'HH:MM', 'LLM-planned escape', 'NORMAL', 'OBSTACLE_MODAL', 'OBSTACLE_SYSTEM', '\\d{2}:\\d{2}', 'action', 'action blocked', 'action_type', 'ai_fallback_model', 'ai_fallback_url', 'ai_telepathic_model', 'ai_telepathic_url', 'alert', 'android', 'app_id', 'app_start', 'back', 'bottom_sheet', 'bounds', 'click', 'clickable', 'com.android.systemui', 'confidence', "confirm it's you", 'content-desc', 'creation_flow', 'dialog', 'eingeschränkt', 'false', 'handlung blockiert', 'home', 'home_then_app', 'info', 'kill_foreign_apps', 'llama3.2:1b', 'node', 'normal', 'obstacle_foreign_app', 'obstacle_modal', 'obstacle_system', 'package', 'package="([^"]+)"', 'quick_capture', 'qwen3.5:latest', 'reason', 'recall_count', 'reel_camera', 'resource-id', 'resource_id', 'response', 'sae_episodes_v1', 'screenOn', 'situation', 'success', 'text', 'text="([^"]{1,80})"', 'timestamp', 'true', 'try again later', 'unlock', 'x', 'y', '✅ SUCCESS', '❌ FAILURE']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/version.py
# hypothesis_version: 6.141.1
['300.0.0.29.110', '7.0.0']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/zero_latency_engine.py
# hypothesis_version: 6.141.1
['(?i)', 'content-desc', 'node', 'pattern', 'regex', 'resource-id', 'rule_type', 'target_attribute', 'text', 'xpath']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/goap.py
# hypothesis_version: 6.141.1
[0.0, 0.3, 0.5, 0.75, 0.8, 0.85, 0.92, 1.0, 1.5, 1.6, 2.0, 2.8, 3.5, 540, 768, 800, 1600, '/', '<\\?xml.*?\\?>', 'ExploreFeed', 'FollowingList', 'Foreign app', 'HomeFeed', 'MessageInbox', 'Modal', 'OwnProfile', 'ReelsFeed', 'SearchFeed', 'StoriesFeed', '\\bfollow\\b', '_', 'abonniert', 'action', 'ai_embedding_model', 'ai_embedding_url', 'app_id', 'args', 'available_actions', 'back', 'blocked_by_modal', 'bookmark', 'bounds', 'clickable', 'clips_tab', 'comment', 'comments', 'confidence', 'content-desc', 'context', 'creation_flow', 'desc', 'direct_tab', 'dm_inbox', 'dm_thread', 'empty', 'explore', 'explore_grid', 'false', 'feed_tab', 'follow', 'follow_list', 'followers list', 'following', 'following list', 'foreign_app', 'go back', 'go to', 'goal', 'grid item', 'home', 'home_feed', 'id', 'is_liked', 'learn own profile', 'like', 'liked', 'llama3', 'message', 'message_input', 'messages', 'modal', 'nachricht', 'navigate', 'navigation_knowledge', 'node', 'open', 'open explore', 'open explore feed', 'open following list', 'open home', 'open home feed', 'open messages', 'open profile', 'open reels', 'other_profile', 'own_profile', 'package', 'packages', 'post', 'post_detail', 'press back', 'profile', 'profile_tab', 'quick_capture', 'reel_camera', 'reels', 'reels_feed', 'required_screen', 'resource-id', 'response', 'result_screen', 's', 'save', 'screen_type', 'scroll down', 'search_results', 'search_tab', 'selected', 'selected_tab', 'share', 'signature', 'skip', 'start_screen', 'step_count', 'steps', 'story_view', 'success', 'tab', 'tab_id', 'tap back button', 'tap comment button', 'tap explore tab', 'tap first grid item', 'tap follow button', 'tap following list', 'tap home tab', 'tap like button', 'tap message button', 'tap messages tab', 'tap profile tab', 'tap reels tab', 'tap save button', 'tap share button', 'text', 'timestamp', 'true', 'unknown', 'username', 'view', 'view profile', 'x', 'y', '|', '✅', '❌']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/__init__.py
# hypothesis_version: 6.141.1
[]

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/persistent_list.py
# hypothesis_version: 6.141.1
['PYTEST_CURRENT_TEST', 'accounts', 'r', 'w']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/telepathic_engine.py
# hypothesis_version: 6.141.1
[0.0, 0.05, 0.1, 0.3, 0.4, 0.45, 0.5, 0.75, 0.82, 0.85, 0.9, 0.92, 0.95, 0.98, 0.99, 1.0, 999, 2000, 2400, 100000, 150000, 500000, 999999, '(?:$|[\\s,._\\-:!?])', '(?:^|[\\s,._\\-:])', '(?<!\\w)description:', '(?<!\\w)text:', ', ', '/', '/>', '<\\?xml.*?\\?>', 'Already fulfilled', 'Escape Hatch', 'FAIL', 'HIGH', 'JPEG', 'LOW/UNSAFE', 'MEDIUM', 'NAF', 'No reason provided', 'PASS', '[0,0][0,0]', '[^\\w\\s]', '\\W+', '\\d+', '_', '_cached_app_id', '_cached_username', '_poll_', 'a', 'abbrechen', 'abmelden', 'abonniert', 'accept', 'account', 'action', 'action_bar', 'action_sheet', 'add to story', 'agentic_fallback', 'ai_telepathic_model', 'ai_telepathic_url', 'ai_vision_navigation', 'allow', 'already_followed', 'already_liked', 'an', 'and', 'angefragt', 'app_id', 'area', 'args', 'ausloggen', 'beitrag erstellen', 'best_index', 'bezahlen', 'block', 'blocked_by_dm_thread', 'blocked_by_modal', 'blockieren', 'bottom_sheet', 'bounds', 'box', 'button', 'button_edit_profile', 'button_share_profile', 'buy now', 'camera', 'camera_button', 'cancel', 'checkout', 'class', 'class_name', 'classification', 'clear text', 'clickable', 'clips', 'clips_comment_button', 'clips_like_button', 'clips_viewer', 'close', 'close friend', 'close_friend', 'close_friends', 'color', 'comment', 'comments_disabled', 'content-desc', 'content_desc', 'create post', 'create reel', 'create story', 'creation_tab', 'delete account', 'deny', 'desc', 'description', 'dialog', 'direct_tab', 'direct_thread_header', 'dismiss', 'displayHeight', 'done', 'edit profile', 'eingeschränkt', 'einschränken', 'enge freunde', 'escape', 'explore', 'explore grid', 'explore tab', 'false', 'first', 'first image', 'follow', 'follow back', 'follow button', 'follower', 'followers', 'following', 'for', 'gefolgt', 'generic semantic', 'get_info', 'go live', 'go_live', 'grid', 'grid first post', 'grid item', 'grid_fastpath', 'heart', 'height', 'home', 'home feed index', 'home tab', 'home_tab', 'icon', 'image', 'in', 'index', 'input', 'intent', 'is_unsuitable', 'item', 'jetzt kaufen', 'kamera', 'keyword', 'keyword_fast_path', 'konto löschen', 'konto wechseln', 'like', 'liked', 'list', 'live gehen', 'live_button', 'llama3.2-vision', 'llama3.2:1b', 'log out', 'long-clickable', 'main', 'matches_niche', 'media', 'media_header_user', 'melden', 'memory', 'menu', 'menu_item', 'message tab', 'message_list', 'modal', 'models', 'more', 'my profile', 'naf', 'navigation', 'neue story', 'neuer beitrag', 'node', 'node_size', 'not now', 'obstacle', 'of', 'ok', 'on', 'option', 'or', 'original_attribs', 'own profile', 'own story', 'passed_all', 'photo', 'poll', 'popup', 'post', 'post_count', 'profil bearbeiten', 'profile', 'profile grid', 'profile tab', 'purchase', 'qdrant_nav', 'quality_score', 'quick_capture', 'r', 'raw_bounds', 'reason', 'reel', 'reel erstellen', 'reel_camera', 'reel_empty_badge', 'reel_viewer', 'reels', 'reels tab', 'reels_tab', 'rejected_node', 'reply', 'report', 'requested', 'resource-id', 'resource_id', 'response', 'restrict', 'row', 'row_feed_button_like', 'row_feed_view_group', 'row_profile_header', 'safe', 'save', 'schließen', 'score', 'scrollable', 'search', 'secondary_label', 'selected', 'semantic', 'semantic_string', 'send', 'share', 'share_sheet', 'skip', 'skip_positions', 'source', 'story erstellen', 'story ring', 'story_camera', 'story_create', 'structural intent', 'survey', 'survey_', 'switch account', 'tab', 'tab_bar', 'tap', 'tap comment button', 'tap explore tab', 'tap home tab', 'tap like button', 'tap newsfeed_tab', 'tap profile tab', 'tap reels tab', 'tap share button', 'telepathic_score', 'text', 'the', 'timestamp', 'to', 'true', 'ui_memory', 'user', 'username', 'utf-8', 'vector', 'video', 'visible', 'vlm_grid', 'vlm_hallucination', 'vlm_index', 'w', 'width', 'x', 'y', 'your story', 'zur kasse', 'zurückfolgen']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/behaviors/grid_like.py
# hypothesis_version: 6.140.2
[0.2, 0.3, 0.7, 0.8, 1.0, 1.5, 2.0, 3.0, 100.0, 1080, 2400, '-', '1-2', 'back', 'clips_viewer', 'content-desc="liked"', 'displayHeight', 'displayWidth', 'followers', 'grid_like', 'grid_nav_failed', 'growth_brain', 'likes_count', 'likes_percentage', 'post_load_failed', 'posts_liked', 'posts_viewed', 'profile_header', 'reason', 'reel_viewer', 'tap like button', 'unlike']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/log.py
# hypothesis_version: 6.141.1
[1000000, 'CRITICAL', 'DEBUG', 'ERROR', 'GramAddict', 'INFO', 'WARNING', '[%m/%d %H:%M:%S]', 'a', 'color', 'logs', 'r', 'utf-8']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/darwin_engine.py
# hypothesis_version: 6.140.2
[-0.5, -0.3, -0.2, 0.0, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1.0, 1.2, 1.5, 2.0, 4.0, 10.0, 15.0, 20.0, 25.0, 150, 200, 300, 500, 1000, 1080, 2400, '1 kommentar ansehen', 'Cognitive Jitter', 'JPEG', 'Micro-Wobble', '\\b0\\s*kommentare?\\b', 'ai_learn_comments', 'ai_vision_context', 'alle ', 'back', 'back_swipe_prob', 'comment number is', 'comment_read_dwell', 'config.yml', 'displayHeight', 'displayWidth', 'duration_ms', 'initial_dwell_sec', 'kommentare ansehen', 'label', 'params', 'points', 'profile_visit_prob', 'reward', 'right', 'scroll_velocity', 'tap comment button', 'timestamp', 'type', 'unknown', 'username', 'utf-8', 'view 1 comment', 'view all', 'wobble']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/device_facade.py
# hypothesis_version: 6.140.2
[0.01, 0.05, 0.1, 0.15, 0.3, 0.45, 0.5, 0.55, 1.0, 1.5, 2.0, 2.54, 3.0, 160, 200, 400, 1000, 1030, 1080, 2100, '%Y-%m-%d_%H-%M-%S', 'JPEG', 'Swipe', 'Tap', '_trace_counter', 'android', 'com.android.systemui', 'crash_dialog', 'debug', 'displaySizeDpX', 'displayWidth', 'duration', 'duration_ms', 'home', 'label', 'package', 'points', 'post_delay', 'right', 'screenOn', 'session_traces', 'swipe', 'system_dialog', 'tap', 'type', 'utf-8', 'w', 'wait_timeout', 'x', 'y']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/telepathic_engine.py
# hypothesis_version: 6.140.2
[0.0, 0.05, 0.1, 0.3, 0.4, 0.45, 0.5, 0.75, 0.82, 0.85, 0.9, 0.92, 0.95, 0.98, 0.99, 1.0, 999, 2000, 2400, 100000, 150000, 500000, 999999, '(?:$|[\\s,._\\-:!?])', '(?:^|[\\s,._\\-:])', '(?<!\\w)description:', '(?<!\\w)text:', ', ', '/', '/>', '<\\?xml.*?\\?>', 'Already fulfilled', 'Escape Hatch', 'FAIL', 'HIGH', 'JPEG', 'LOW/UNSAFE', 'MEDIUM', 'NAF', 'No reason provided', 'PASS', '[0,0][0,0]', '[^\\w\\s]', '\\W+', '\\d+', '_', '_cached_app_id', '_cached_username', '_poll_', 'a', 'abbrechen', 'abmelden', 'abonniert', 'accept', 'account', 'action', 'action_bar', 'action_sheet', 'add to story', 'agentic_fallback', 'ai_telepathic_model', 'ai_telepathic_url', 'ai_vision_navigation', 'allow', 'already_followed', 'already_liked', 'an', 'and', 'angefragt', 'app_id', 'area', 'args', 'ausloggen', 'author', 'beitrag erstellen', 'best_index', 'bezahlen', 'block', 'blocked_by_dm_thread', 'blocked_by_modal', 'blockieren', 'bottom_sheet', 'bounds', 'box', 'button', 'button_edit_profile', 'button_share_profile', 'buy now', 'camera', 'camera_button', 'cancel', 'caption', 'carousel', 'checkout', 'class', 'class_name', 'classification', 'clear text', 'clickable', 'clips', 'clips_comment_button', 'clips_like_button', 'clips_viewer', 'close', 'close friend', 'close_friend', 'close_friends', 'color', 'comment', 'comments_disabled', 'content', 'content-desc', 'content_desc', 'create post', 'create reel', 'create story', 'creation_tab', 'delete account', 'deny', 'desc', 'description', 'dialog', 'direct_tab', 'direct_thread_header', 'dismiss', 'displayHeight', 'done', 'edit profile', 'eingeschränkt', 'einschränken', 'enge freunde', 'escape', 'explore', 'explore grid', 'explore tab', 'false', 'feed', 'first', 'first image', 'follow', 'follow back', 'follow button', 'follower', 'followers', 'following', 'for', 'gefolgt', 'generic semantic', 'get_info', 'go live', 'go_live', 'grid', 'grid first post', 'grid item', 'grid_fastpath', 'group', 'header', 'heart', 'height', 'home', 'home feed index', 'home tab', 'home_tab', 'icon', 'image', 'imageview', 'in', 'index', 'input', 'intent', 'is_unsuitable', 'item', 'jetzt kaufen', 'kamera', 'keyword', 'keyword_fast_path', 'konto löschen', 'konto wechseln', 'like', 'liked', 'list', 'live gehen', 'live_button', 'llama3.2-vision', 'llama3.2:1b', 'log out', 'long-clickable', 'main', 'matches_niche', 'media', 'media_group', 'media_header_user', 'melden', 'memory', 'menu', 'menu_item', 'message tab', 'message_list', 'modal', 'models', 'more', 'my profile', 'naf', 'name', 'navigation', 'neue story', 'neuer beitrag', 'node', 'node_size', 'not now', 'obstacle', 'of', 'ok', 'on', 'option', 'or', 'original_attribs', 'own profile', 'own story', 'owner', 'passed_all', 'photo', 'poll', 'popup', 'post', 'post_count', 'profil bearbeiten', 'profile', 'profile grid', 'profile tab', 'profile_name', 'purchase', 'qdrant_nav', 'quality_score', 'quick_capture', 'r', 'raw_bounds', 'reason', 'reel', 'reel erstellen', 'reel_camera', 'reel_empty_badge', 'reel_viewer', 'reels', 'reels tab', 'reels_tab', 'rejected_node', 'reply', 'report', 'requested', 'resource-id', 'resource_id', 'response', 'restrict', 'row', 'row_feed_button_like', 'row_feed_view_group', 'row_profile_header', 'safe', 'save', 'schließen', 'score', 'scrollable', 'search', 'secondary_label', 'selected', 'semantic', 'semantic_string', 'send', 'share', 'share_sheet', 'skip', 'skip_positions', 'source', 'story erstellen', 'story ring', 'story_camera', 'story_create', 'structural intent', 'survey', 'survey_', 'switch account', 'tab', 'tab_bar', 'tap', 'tap comment button', 'tap explore tab', 'tap home tab', 'tap like button', 'tap newsfeed_tab', 'tap profile tab', 'tap reels tab', 'tap share button', 'telepathic_score', 'text', 'the', 'timestamp', 'to', 'true', 'ui_memory', 'user', 'username', 'utf-8', 'vector', 'video', 'visible', 'vlm_grid', 'vlm_hallucination', 'vlm_index', 'w', 'width', 'x', 'y', 'your story', 'zur kasse', 'zurückfolgen']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/device_facade.py
# hypothesis_version: 6.140.2
[0.01, 0.05, 0.1, 0.15, 0.3, 0.45, 0.5, 0.55, 1.0, 1.5, 2.0, 2.54, 3.0, 160, 200, 400, 1000, 1030, 1080, 2100, '%Y-%m-%d_%H-%M-%S', 'JPEG', 'Tap', '_trace_counter', 'android', 'com.android.systemui', 'crash_dialog', 'debug', 'displaySizeDpX', 'displayWidth', 'duration', 'duration_ms', 'home', 'label', 'package', 'points', 'post_delay', 'right', 'screenOn', 'session_traces', 'system_dialog', 'tap', 'type', 'utf-8', 'w', 'wait_timeout', 'x', 'y']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/situational_awareness.py
# hypothesis_version: 6.140.2
[0.0, 0.3, 0.5, 0.8, 0.88, 1.0, 1.5, 2.0, 2.5, 3.5, 300, 500, 768, 2000, 3000, ' | ', '<\\?xml.*?\\?>', 'Battery NN per cent', 'Battery \\d+ per cent', 'CLICKABLE', 'EMPTY_SCREEN', 'EscapeAction', 'HH:MM', 'LLM-planned escape', 'NORMAL', 'OBSTACLE_MODAL', 'OBSTACLE_SYSTEM', '\\d{2}:\\d{2}', 'action', 'action blocked', 'action_type', 'ai_fallback_model', 'ai_fallback_url', 'ai_telepathic_model', 'ai_telepathic_url', 'alert', 'android', 'app_id', 'app_start', 'back', 'bottom_sheet', 'bottom_sheet_drag', 'bounds', 'click', 'clickable', 'clips_tab', 'com.android.systemui', 'confidence', "confirm it's you", 'content-desc', 'creation_flow', 'dialog', 'dialog_container', 'dialog_root', 'eingeschränkt', 'false', 'feed_tab', 'handlung blockiert', 'home', 'home_then_app', 'info', 'kill_foreign_apps', 'llama3.2:1b', 'node', 'normal', 'obstacle_foreign_app', 'obstacle_modal', 'obstacle_system', 'package', 'package="([^"]+)"', 'profile_tab', 'quick_capture', 'qwen3.5:latest', 'reason', 'recall_count', 'reel_camera', 'resource-id', 'resource_id', 'response', 'sae_episodes_v1', 'screenOn', 'search_tab', 'situation', 'success', 'text', 'text="([^"]{1,80})"', 'timestamp', 'true', 'try again later', 'unlock', 'x', 'y', '✅ SUCCESS', '❌ FAILURE']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/config.py
# hypothesis_version: 6.141.1
['%Y-%m-%d %H:%M:%S', '-', '--ai-condenser-model', '--ai-condenser-url', '--ai-embedding-model', '--ai-embedding-url', '--ai-fallback-model', '--ai-fallback-url', '--ai-learn-comments', '--ai-learn-only', '--ai-model', '--ai-model-url', '--ai-quality-filter', '--ai-target-audience', '--ai-telepathic-url', '--ai-text-model', '--ai-text-url', '--ai-vibe', '--ai-vision-context', '--app-id', '--blank-start', '--comment-percentage', '--config', '--debug', '--device', '--dry-run-comments', '--explore', '--feed', '--follow-percentage', '--likes-count', '--likes-percentage', '--persona-interests', '--reels', '--repeat', '--restart-atx-agent', '--scrape-profiles', '--search', '--shadow-mode', '--smart-unfollow', '--speed-multiplier', '--stories', '--stories-count', '--stories-percentage', '--target-audience', '--time-delta-session', '--total-likes-limit', '--total-pm-limit', '--total-sessions', '--username', '--working-hours', '-1', '.yaml', '.yml', '0', '1.0', '10', '100', '1000', '2-3', '200', '300', '5', '50', '80', 'Arguments used:', 'Likes count', 'Likes percentage', 'Restart atx agent', 'SPECIALIZED', 'Speed multiplier', 'Stories count', 'Stories percentage', 'Total comments limit', 'Total crashes limit', 'Total follows limit', 'Total likes limit', 'Total pm limit', 'Total scraped limit', 'Total watches limit', 'Working hours', '_', 'app id', 'app_id', 'color', 'config file path', 'debug', 'debug mode', 'device id', 'explore', 'feed', 'nomic-embed-text', 'passwords', 'pytest', 'qwen3.5:latest', 'r+', 'store_true', 'username', 'utf-8']

View File

@@ -0,0 +1,4 @@
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/bot_flow.py
# hypothesis_version: 6.140.2
[0.0, 0.01, 0.05, 0.1, 0.2, 0.3, 0.35, 0.4, 0.45, 0.5, 0.7, 0.8, 0.85, 0.9, 1.0, 1.2, 1.5, 1.8, 2.0, 2.2, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0, 6.0, 7.0, 10.0, 60.0, 100.0, 100, 120, 250, 999, 1080, 2400, ' --------', ' | ', '"', '%H:%M:%S - %Y/%m/%d', "'", ',', '-', '999', 'BOREDOM_CHANGE_FEED', 'CHECK_CURIOSITY', 'CONTEXT_LOST', 'DiscoverNewContent', 'ExploreFeed', 'FEED_EXHAUSTED', 'FollowingList', 'HomeFeed', 'LIKE', 'MessageInbox', 'No bio', 'Notifications', 'NurtureCommunity', 'ReelsFeed', 'SHIFT_CONTEXT', 'SKIP', 'STAY', 'SearchFeed', 'ShiftContext', 'SocialReciprocity', 'StoriesFeed', 'UNKNOWN', 'Unknown', '\\n- ', 'action', 'action_bar_title', 'active_inference', 'agent_persona', 'agent_strategy', 'aggressive_growth', 'ai_condenser_model', 'ai_condenser_url', 'ai_learn_own_profile', 'ai_target_audience', 'ai_vibe', 'antworten', 'avatar', 'back', 'bio', 'blank_start', 'button_follow', 'button_like', 'button_post', 'caption', 'clips_viewer', 'close friend', 'color', 'comment', 'comment_percentage', 'comment_reply', 'commenter', 'content-desc="liked"', 'content_desc', 'context_lost', 'crm', 'darwin', 'del', 'desc', 'description', 'displayHeight', 'displayWidth', 'dojo', 'dopamine', 'dry_run_comments', 'editText', 'enge freunde', 'enter', 'fast', 'feed', 'follow_percentage', 'followers', 'following', 'friendly', 'growth_brain', 'handedness', 'hide replies', 'high', 'ignore_close_friends', 'interact', 'interact_percentage', 'interacted', 'kommentieren', 'konto ist privat', 'learn own profile', 'like', 'likes_percentage', 'llama3.2:1b', 'low', 'matches_niche', 'medium', 'misses', 'my_username', 'nature', 'nav_graph', 'no posts yet', 'noch keine beiträge', 'original_attribs', 'passive_learning', 'persona', 'persona_interests', 'photography', 'plugin_registry', 'profile', 'profile_name', 'quality', 'quality_score', 'radome', 'reel_viewer', 'reply', 'reposted', 'resonance', 'resource_id', 'response', 'right', 'row_feed', 'score', 'scrape', 'scrape_profiles', 'search', 'see translation', 'semantic_string', 'sessions', 'skip', 'speed_multiplier', 'stories', 'swarm', 'tap comment button', 'tap like button', 'tap post username', 'tap share button', 'target', 'target_audience', 'telepathic', 'text', 'title', 'translate', 'travel', 'unknown', 'unknown_user', 'unlike', 'username', 'vibe', 'view replies', 'x', 'y', 'zero_engine', '•']

View File

@@ -0,0 +1 @@
o ÕY”*44ñ2M¼yÆDט9î]Sš¨FH&úŸÁ Á§ê¶H¢g¯8¡É†ŠI

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More