chore: FSD stabilization, strict TDD enforcement, and unlearn mechanism
- implemented self-healing unlearn for Qdrant false positives - centralized testing logic in conftest - documented core rules, ai standards, and goap philosophy - purged old dev scratchpads
This commit is contained in:
28
.agents/rules/ai_integration.md
Normal file
28
.agents/rules/ai_integration.md
Normal file
@@ -0,0 +1,28 @@
|
||||
# AI & LLM Integration Standards
|
||||
|
||||
This document defines how LLM calls and AI features must be implemented within GramPilot.
|
||||
|
||||
## 1. Centralized Provider
|
||||
- **Never** make raw `requests.post` calls to Ollama or OpenRouter directly in business logic.
|
||||
- **Always** use the centralized `GramAddict.core.llm_provider.query_llm` or `query_telepathic_llm` wrappers. This ensures consistent timeout handling, logging, and fallback logic.
|
||||
|
||||
## 2. Determinism over Creativity
|
||||
- GramPilot uses LLMs for *structural classification*, not creative writing.
|
||||
- **Always** force structured JSON outputs (`format_json=True`).
|
||||
- **Always** set `temperature=0.0` to ensure deterministic, repeatable classifications of the UI.
|
||||
|
||||
## 3. Resource Hygiene (VRAM)
|
||||
- Local LLMs (via Ollama) consume massive VRAM.
|
||||
- Always implement the `keep_alive: 0` pattern (via `unload_ollama_models`) during bot shutdown or catastrophic crashes in the `finally` block to prevent GPU memory fragmentation.
|
||||
|
||||
## 4. The Resolution Cascade
|
||||
- The LLM is the **last resort** (Level 3).
|
||||
- Always try CPU Fast-Paths (Level 1) and Qdrant Vector Similarity (Level 2) before waking up an LLM.
|
||||
- If an LLM is used, its result must be cached in Qdrant to ensure it is never called twice for the same UI state.
|
||||
|
||||
## 5. Benchmark Guard (Safety Pre-Checks)
|
||||
- **Model Validation:** The `check_model_benchmarks` function in `benchmark_guard.py` enforces a strict quality gate before the bot even starts.
|
||||
- **Scoring System:** It checks the configured models against `benchmarks/data/llm_benchmarks.json`.
|
||||
- **< 50 Score:** Critical Failure. The agent will hallucinate and compromise account safety. The bot warns the user not to run unattended.
|
||||
- **< 80 Score:** Sub-Standard. The model might occasionally fail at precise XML structural parsing (`TelepathicScore`) or persona-matching (`ResonanceScore`).
|
||||
- **Purpose:** Because FSD (Full Self-Driving) relies heavily on structural AI fallback, running untested small parameter models (like an un-tuned 1B model) can lead to infinite loops or incorrect clicks. The Benchmark Guard ensures only capable models (like `qwen3.5:latest` or `llama3.2-vision`) are trusted for autonomous navigation.
|
||||
23
.agents/rules/android_automation.md
Normal file
23
.agents/rules/android_automation.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# Android Automation & Interaction Standards
|
||||
|
||||
This document defines how the bot interacts with the Android OS and the Instagram UI.
|
||||
|
||||
## 1. No Fixed Coordinates
|
||||
- **Never** hardcode `(x, y)` coordinates for clicks, swipes, or interactions.
|
||||
- UI layouts change across devices (dpi, aspect ratios). All coordinates must be derived dynamically from the XML bounds of the target node.
|
||||
|
||||
## 2. Stealth & Interaction Physics (Bypass Bot Detection)
|
||||
- **ABSOLUTE RULE:** You must **never** use raw, robotic input methods like `device.click()` or `device.swipe()`. Instagram will detect these mathematically perfect straight lines and constant speeds immediately and shadowban the account.
|
||||
- **Mandatory Functions:**
|
||||
- For clicking: Use `device.human_click(x, y)` which injects biological jitter and realistic touch down/up timings via sendevent.
|
||||
- For swiping: Use `device.human_swipe(start_x, start_y, end_x, end_y)` or `humanized_scroll()`. These utilize Bezier curves and variable acceleration (Dopamine Pacing Engine) to simulate human thumbs.
|
||||
- **Micro-Delays:** Always inject `random_sleep()` between interactions to simulate human perception and reaction time. Never execute zero-delay sequential clicks.
|
||||
|
||||
## 3. UIAutomator2 / DeviceFacade
|
||||
- All hardware interactions must go through the `DeviceFacade`.
|
||||
- Do not instantiate raw `uiautomator2` connections deep in the business logic.
|
||||
- If the app crashes or the connection drops, rely on the global error handling and recovery loops in `run.py` to restart the ADB server or the app.
|
||||
|
||||
## 4. Node Validation
|
||||
- **Do not trust text matching alone.** Text can be user-generated (e.g., a bio saying "Follow me").
|
||||
- Always validate the structural identity of a node using its `resource-id` or its hierarchical position within the XML tree to prevent malicious user-generated content from triggering bot actions.
|
||||
21
.agents/rules/diagnostics_and_tracing.md
Normal file
21
.agents/rules/diagnostics_and_tracing.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# Diagnostics, Tracing & Logging Standards
|
||||
|
||||
This document defines how GramPilot records its autonomous sessions for debugging and replay purposes.
|
||||
|
||||
## 1. Frame-by-Frame Session Tracing (The "Black Box")
|
||||
- **Trace Directory:** During a live run, the bot continuously dumps every seen XML layout into `debug/session_traces/<timestamp>/`.
|
||||
- **Sequential Reconstruction:** Every `dump_hierarchy()` call is saved as a sequential file (e.g., `00001.xml`, `00002.xml`).
|
||||
- **Purpose:** Since the bot is 100% autonomous and makes its own decisions via LLM/Qdrant, we cannot rely on stacktraces alone if navigation fails. The session traces act as a "Black Box" flight recorder. If the bot gets stuck, developers can step through the `session_traces` XML files to see exactly what the bot "saw" and why the `SituationalAwarenessEngine` or `GoalPlanner` made a specific decision.
|
||||
|
||||
## 2. Standardized Logging
|
||||
- **Visual Log Prefixes:** Always use clear, emoji-prefixed tags in the logger to instantly identify which subsystem is acting:
|
||||
- `🧠 [SAE]`: Situational Awareness Engine (Perception & Escape Planning)
|
||||
- `🗺️ [GOAP]`: Goal-Oriented Action Planning (Intent routing)
|
||||
- `👁️ [Telepathic]`: The fast-path / structural LLM reasoning
|
||||
- `👆 [Physics]`: Swipes, clicks, and physical interactions
|
||||
- `❄️ [VRAM Cleanup]`: Resource management
|
||||
- **Log Files:** Standard execution logs are saved in the `logs/` directory for long-term auditing.
|
||||
|
||||
## 3. Fixture Harvesting
|
||||
- **Trace to Test Pipeline:** If a session trace reveals a novel UI state that the bot failed to navigate, that specific `<sequence>.xml` file from `debug/session_traces/` must be copied to `tests/fixtures/` and integrated via `scripts/sync_fixtures.py`.
|
||||
- **Never Synthesize:** You must use the raw, failed session trace to build the failing TDD test. This guarantees that the fix addresses the actual real-world DOM structure Instagram served, not a developer's assumption.
|
||||
21
.agents/rules/goap_navigation.md
Normal file
21
.agents/rules/goap_navigation.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# GOAP & Dynamic Navigation Standards
|
||||
|
||||
This document defines how GramPilot handles high-level pathfinding and navigation across the Instagram app.
|
||||
|
||||
## 1. Goal-Oriented Action Planning (GOAP)
|
||||
- **No Hardcoded Paths:** The bot must never follow rigid, procedural step-by-step instructions (e.g., "click home, then click search, then type").
|
||||
- **State-Driven Execution:** Navigation is handled by the `GoalPlanner` and `GoalExecutor`. The agent evaluates its *current state* (via the `TelepathicEngine`) and defines a *target state* (the Goal).
|
||||
- **Dynamic Routing:** The `GoalPlanner` queries the `QNavGraph` (backed by Qdrant memory) to find the shortest/optimal sequence of actions to bridge the gap between the current state and the target state.
|
||||
|
||||
## 2. Intent Over Execution
|
||||
- **Navigation Intent:** When the bot wants to move, it sets an `Intent` (e.g., "NAVIGATE_TO_USER_PROFILE"). It does *not* care about how to get there. The GOAP engine calculates the intermediate hops required based on its learned memory of the UI graph.
|
||||
- **Fall-Through Healing:** If an intermediate hop fails (e.g., the bot expected to see the Explore tab but saw a Modal), the `SituationalAwarenessEngine` clears the modal, the `TelepathicEngine` re-evaluates the state, and the GOAP loop *re-plans* dynamically.
|
||||
|
||||
## 3. The QNavGraph (Qdrant Navigation Memory)
|
||||
- **Graph Nodes:** Every unique UI screen perceived is a node in the graph, hashed by its structural XML signature.
|
||||
- **Graph Edges:** Every successful interaction (`EscapeAction` or `Intent` execution) that transitions the bot from Node A to Node B is recorded as a directed edge.
|
||||
- **Continuous Discovery:** If GOAP cannot find a path to the goal in `QNavGraph`, the bot switches to "Discovery Mode", randomly exploring safe UI elements (guided by `available_actions` and LLM hints) until it maps a path to the target.
|
||||
|
||||
## 4. Infinite Recursion Guards
|
||||
- **Synthetic Intent Tracking:** The `GoalPlanner` must track failed or cycling intents to prevent infinite loops (the "feed refresh trap").
|
||||
- If the agent detects it is bouncing between the same states without making progress toward the Goal, it must escalate to a higher-level reset (e.g., `app_start`) or fail gracefully rather than doomscrolling indefinitely.
|
||||
29
.agents/rules/grampilot_core.md
Normal file
29
.agents/rules/grampilot_core.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# GramPilot Core Development Rules
|
||||
|
||||
This document codifies the core architectural and development principles for the GramPilot (Instagram Bot) project.
|
||||
|
||||
## 1. 100% AUTONOMOUS "TESLA" FSD PHILOSOPHY (ABSOLUTE DIRECTIVE)
|
||||
- **Zero Static Navigation Code:** GramPilot is a "Full Self-Driving" (FSD) agent. You are FORBIDDEN from using brittle heuristics, static UI locators (XPaths), fixed string searches, or hardcoded navigation sequences.
|
||||
- **Structural Perception Only:** The bot must rely entirely on its `SituationalAwarenessEngine` to structurally "read" the XML dump, understand context, and resolve the correct layout using Qdrant vector memory.
|
||||
- **Dynamic Fallbacks:** If the UI updates, the bot must not crash. It must fall back to LLM reasoning, dynamically find the right button, and learn the new layout asynchronously.
|
||||
- **Self-Healing Memory:** If the Qdrant DB learns a false positive (e.g., misclassifying a normal screen as an `OBSTACLE_MODAL`), the LLM must detect this, emit `false_positive`, and the engine will autonomously overwrite the corrupted vector back to `NORMAL`.
|
||||
|
||||
## 2. Strict Test-Driven Development (TDD)
|
||||
- **Red, Green, Refactor:** Never write a single line of production code without a failing test proving its necessity.
|
||||
- **Real-World Fixtures Only:** Tests must use high-fidelity, real-world XML UI dumps (`tests/fixtures/`). Mocks must never fake or obscure structural UI realities.
|
||||
- **Hermetic Test Isolation:** Tests must be deterministic. Use centralized stubs (e.g., `mock_sae_perceive` in `conftest.py`) to bypass local LLM/Qdrant latency for pure logic tests, while keeping full E2E perception tests in `test_e2e_sae.py`.
|
||||
- **Zero Flakiness:** The E2E test suite is the ultimate gatekeeper. State leakage between tests is unacceptable.
|
||||
|
||||
## 3. Qdrant as the Neural Brain
|
||||
- **Persistent Perception:** Qdrant is the persistent memory of the bot (`ScreenMemoryDB`, `NavigationMemoryDB`). It is the absolute source of truth for UI layouts.
|
||||
- **Vector-Based Sub-Second Recalls:** Instead of running an LLM on every screen, the bot hashes and compresses the XML layout, converts it to an embedding, and queries Qdrant. If the similarity threshold (>0.90) is met, the bot knows instantly what to do based on past experience.
|
||||
- **Learning Loop:** Only when Qdrant fails (a novel screen) does the LLM step in. The LLM's solution is then verified, and if successful, embedded into Qdrant. Thus, the bot gets faster and smarter with every run, transitioning from expensive AI reasoning to instant vector recalls.
|
||||
|
||||
## 4. Tooling and Infrastructure
|
||||
- **Memory Purging:** Use `blank_start: true` in `test_config.yml` to trigger a system-wide Qdrant wipe when the persistent navigation graph becomes irreparably poisoned.
|
||||
- **Fixture Synchronization:** Use `scripts/sync_fixtures.py` to capture and integrate real-world XML dumps into the test suite.
|
||||
- **LLM Fallback:** The LLM is a *fallback* for novel UI states, not the primary navigation driver. It is used to suggest escape plans (`EscapeAction`) which are then executed, verified, and learned by Qdrant.
|
||||
|
||||
## 5. Code Quality
|
||||
- **Modular Plugin Architecture:** Interaction loops (e.g., Reels, Story viewing, Profiling) must remain decoupled via the `PluginRegistry`.
|
||||
- **Max 500 LoC:** No module should exceed 500 lines of code. Divide and conquer responsibilities immediately if approaching this limit.
|
||||
18
.agents/rules/testing_standards.md
Normal file
18
.agents/rules/testing_standards.md
Normal file
@@ -0,0 +1,18 @@
|
||||
# Testing Standards & Fixtures
|
||||
|
||||
This document dictates the specific testing implementation standards for GramPilot.
|
||||
|
||||
## 1. Hermetic Testing & Mocks
|
||||
- **No Sleep:** Never use `time.sleep()` in unit tests. Time-based flakiness is unacceptable. Mock the clock or the `random_sleep` function.
|
||||
- **Centralized Stubs:** If a test does not explicitly test the `SituationalAwarenessEngine` (SAE), the SAE must be stubbed via `conftest.py` (`mock_sae_perceive`) to return `SituationType.NORMAL`. This prevents E2E logic tests (like swiping logic) from failing due to missing local Ollama/Qdrant instances.
|
||||
|
||||
## 2. UI Dumps as Truth
|
||||
- **No Synthetic XML:** You must never write synthetic or "guessed" XML strings for tests.
|
||||
- **Real Fixtures:** All tests involving perception must use real-world XML dumps extracted from physical devices. Store them in `tests/fixtures/` and sync them using `scripts/sync_fixtures.py`.
|
||||
|
||||
## 3. Coverage
|
||||
- **100% Pass Rate:** The build is considered broken if a single test fails.
|
||||
- **Test Categories:**
|
||||
- `tests/e2e/`: Full end-to-end navigational sequences.
|
||||
- `tests/anomalies/`: Edge cases (e.g., action blocks, network drops).
|
||||
- `tests/property/`: Property-based invariants (e.g., ensuring swipe physics never go out of bounds).
|
||||
13
.gitignore
vendored
13
.gitignore
vendored
@@ -24,3 +24,16 @@ Pipfile.lock
|
||||
*.log*
|
||||
*.ini
|
||||
*.db
|
||||
|
||||
# Debug artifacts
|
||||
scratch*.py
|
||||
test_compress.py
|
||||
test_fixtures.py
|
||||
output.txt
|
||||
e2e_*.log
|
||||
traceback.log
|
||||
|
||||
# Coverage
|
||||
htmlcov/
|
||||
.coverage
|
||||
coverage.xml
|
||||
|
||||
4
.hypothesis/constants/017cade5f64edd59
Normal file
4
.hypothesis/constants/017cade5f64edd59
Normal 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']
|
||||
4
.hypothesis/constants/038d7cd85af1cf22
Normal file
4
.hypothesis/constants/038d7cd85af1cf22
Normal 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']
|
||||
4
.hypothesis/constants/06d8f19b4ad88a27
Normal file
4
.hypothesis/constants/06d8f19b4ad88a27
Normal 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']
|
||||
4
.hypothesis/constants/086ad06ac36ee8b8
Normal file
4
.hypothesis/constants/086ad06ac36ee8b8
Normal 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']
|
||||
4
.hypothesis/constants/0c4d727aa8726954
Normal file
4
.hypothesis/constants/0c4d727aa8726954
Normal 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']
|
||||
4
.hypothesis/constants/0e91d2a2629cfe68
Normal file
4
.hypothesis/constants/0e91d2a2629cfe68
Normal 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.']
|
||||
4
.hypothesis/constants/0e965f19d448448d
Normal file
4
.hypothesis/constants/0e965f19d448448d
Normal 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']
|
||||
4
.hypothesis/constants/11f4665edae3fcef
Normal file
4
.hypothesis/constants/11f4665edae3fcef
Normal 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']
|
||||
4
.hypothesis/constants/14205ad47ece7ab2
Normal file
4
.hypothesis/constants/14205ad47ece7ab2
Normal 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', '|', '✅', '❌']
|
||||
4
.hypothesis/constants/14cc354fdf478803
Normal file
4
.hypothesis/constants/14cc354fdf478803
Normal 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']
|
||||
4
.hypothesis/constants/164ee00e5bdb8bfa
Normal file
4
.hypothesis/constants/164ee00e5bdb8bfa
Normal 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']
|
||||
4
.hypothesis/constants/18cdc255524e5440
Normal file
4
.hypothesis/constants/18cdc255524e5440
Normal 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']
|
||||
4
.hypothesis/constants/19b6269821363de7
Normal file
4
.hypothesis/constants/19b6269821363de7
Normal 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']
|
||||
4
.hypothesis/constants/1f0bcc5916e951fb
Normal file
4
.hypothesis/constants/1f0bcc5916e951fb
Normal 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']
|
||||
4
.hypothesis/constants/1f0f2a9f52aef28a
Normal file
4
.hypothesis/constants/1f0f2a9f52aef28a
Normal 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']
|
||||
4
.hypothesis/constants/20f6002a178034ab
Normal file
4
.hypothesis/constants/20f6002a178034ab
Normal 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']
|
||||
4
.hypothesis/constants/214a7c5163652ce1
Normal file
4
.hypothesis/constants/214a7c5163652ce1
Normal 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']
|
||||
4
.hypothesis/constants/23a7a15f91f51a7d
Normal file
4
.hypothesis/constants/23a7a15f91f51a7d
Normal 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', '|', '✅', '❌']
|
||||
4
.hypothesis/constants/26329670a38465b2
Normal file
4
.hypothesis/constants/26329670a38465b2
Normal 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+)']
|
||||
4
.hypothesis/constants/2648c9fbc4a0bc89
Normal file
4
.hypothesis/constants/2648c9fbc4a0bc89
Normal 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']
|
||||
4
.hypothesis/constants/29ef238be12f7347
Normal file
4
.hypothesis/constants/29ef238be12f7347
Normal 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.']
|
||||
4
.hypothesis/constants/2b35705d5586888f
Normal file
4
.hypothesis/constants/2b35705d5586888f
Normal 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+)']
|
||||
4
.hypothesis/constants/2c5518c64bb45995
Normal file
4
.hypothesis/constants/2c5518c64bb45995
Normal 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', ' ', ' ', 'bounds', 'clickable', 'color', 'content-desc', 'false', 'resource-id', 'text', 'true', 'unicode', 'visible-to-user']
|
||||
4
.hypothesis/constants/2eb4168938b68647
Normal file
4
.hypothesis/constants/2eb4168938b68647
Normal file
@@ -0,0 +1,4 @@
|
||||
# file: /Users/marcmintel/Library/Python/3.9/bin/pytest
|
||||
# hypothesis_version: 6.141.1
|
||||
|
||||
['__main__']
|
||||
4
.hypothesis/constants/2f93d462b70b4487
Normal file
4
.hypothesis/constants/2f93d462b70b4487
Normal 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']
|
||||
4
.hypothesis/constants/32b71b9f40c35274
Normal file
4
.hypothesis/constants/32b71b9f40c35274
Normal 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']
|
||||
4
.hypothesis/constants/33260ca7a342c58c
Normal file
4
.hypothesis/constants/33260ca7a342c58c
Normal 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']
|
||||
4
.hypothesis/constants/34b27dac98ecc564
Normal file
4
.hypothesis/constants/34b27dac98ecc564
Normal 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']
|
||||
4
.hypothesis/constants/34e921831e255b06
Normal file
4
.hypothesis/constants/34e921831e255b06
Normal 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.']
|
||||
4
.hypothesis/constants/3e2c0955f0696cb0
Normal file
4
.hypothesis/constants/3e2c0955f0696cb0
Normal 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']
|
||||
4
.hypothesis/constants/433fd4a02f181403
Normal file
4
.hypothesis/constants/433fd4a02f181403
Normal 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']
|
||||
4
.hypothesis/constants/43787a02380c5e75
Normal file
4
.hypothesis/constants/43787a02380c5e75
Normal 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']
|
||||
4
.hypothesis/constants/4529cc6f6c799edd
Normal file
4
.hypothesis/constants/4529cc6f6c799edd
Normal 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+)']
|
||||
4
.hypothesis/constants/48ebd8f5e649d4dc
Normal file
4
.hypothesis/constants/48ebd8f5e649d4dc
Normal 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', '|', '✅', '❌']
|
||||
4
.hypothesis/constants/5022134ebcef8014
Normal file
4
.hypothesis/constants/5022134ebcef8014
Normal 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.']
|
||||
4
.hypothesis/constants/504a0b2805bca762
Normal file
4
.hypothesis/constants/504a0b2805bca762
Normal 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+)']
|
||||
4
.hypothesis/constants/540e12c952c97a33
Normal file
4
.hypothesis/constants/540e12c952c97a33
Normal 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']
|
||||
4
.hypothesis/constants/58b85bf7864de6ef
Normal file
4
.hypothesis/constants/58b85bf7864de6ef
Normal 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', '←', '→']
|
||||
4
.hypothesis/constants/5e245ce0123831c1
Normal file
4
.hypothesis/constants/5e245ce0123831c1
Normal 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']
|
||||
4
.hypothesis/constants/5f75dc12ad1df69d
Normal file
4
.hypothesis/constants/5f75dc12ad1df69d
Normal 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']
|
||||
4
.hypothesis/constants/5fc20a687878c1cc
Normal file
4
.hypothesis/constants/5fc20a687878c1cc
Normal file
@@ -0,0 +1,4 @@
|
||||
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/__init__.py
|
||||
# hypothesis_version: 6.141.1
|
||||
|
||||
[]
|
||||
4
.hypothesis/constants/5fecdb7e9476ff0e
Normal file
4
.hypothesis/constants/5fecdb7e9476ff0e
Normal 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']
|
||||
4
.hypothesis/constants/693d6598a2abc97d
Normal file
4
.hypothesis/constants/693d6598a2abc97d
Normal 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']
|
||||
4
.hypothesis/constants/695aaebb2a45f5f6
Normal file
4
.hypothesis/constants/695aaebb2a45f5f6
Normal 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']
|
||||
4
.hypothesis/constants/6c43c6220a90591a
Normal file
4
.hypothesis/constants/6c43c6220a90591a
Normal 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']
|
||||
4
.hypothesis/constants/71ffc3089552b095
Normal file
4
.hypothesis/constants/71ffc3089552b095
Normal 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']
|
||||
4
.hypothesis/constants/733667f90692b1f5
Normal file
4
.hypothesis/constants/733667f90692b1f5
Normal 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']
|
||||
4
.hypothesis/constants/76c9e80780b4f0e1
Normal file
4
.hypothesis/constants/76c9e80780b4f0e1
Normal 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']
|
||||
4
.hypothesis/constants/77c9f7658880a4ac
Normal file
4
.hypothesis/constants/77c9f7658880a4ac
Normal 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', '←', '→']
|
||||
4
.hypothesis/constants/7aa7244fed581b8d
Normal file
4
.hypothesis/constants/7aa7244fed581b8d
Normal 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', '•']
|
||||
4
.hypothesis/constants/7d01105bace7b547
Normal file
4
.hypothesis/constants/7d01105bace7b547
Normal 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']
|
||||
4
.hypothesis/constants/7f5a8f38380c8bce
Normal file
4
.hypothesis/constants/7f5a8f38380c8bce
Normal 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']
|
||||
4
.hypothesis/constants/7fc62370805a6b51
Normal file
4
.hypothesis/constants/7fc62370805a6b51
Normal 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']
|
||||
4
.hypothesis/constants/820264b3a626d1ac
Normal file
4
.hypothesis/constants/820264b3a626d1ac
Normal 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']
|
||||
4
.hypothesis/constants/826110620ba466a9
Normal file
4
.hypothesis/constants/826110620ba466a9
Normal 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']
|
||||
4
.hypothesis/constants/8d27736b5b6aa1c0
Normal file
4
.hypothesis/constants/8d27736b5b6aa1c0
Normal 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']
|
||||
4
.hypothesis/constants/8d8ffa51796255e5
Normal file
4
.hypothesis/constants/8d8ffa51796255e5
Normal 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']
|
||||
4
.hypothesis/constants/8ffe75c26c729aef
Normal file
4
.hypothesis/constants/8ffe75c26c729aef
Normal 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']
|
||||
4
.hypothesis/constants/91e9c02a697257b0
Normal file
4
.hypothesis/constants/91e9c02a697257b0
Normal 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']
|
||||
4
.hypothesis/constants/9426348480fe5d79
Normal file
4
.hypothesis/constants/9426348480fe5d79
Normal 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', '←', '→']
|
||||
4
.hypothesis/constants/96c50797fc7f9058
Normal file
4
.hypothesis/constants/96c50797fc7f9058
Normal 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']
|
||||
4
.hypothesis/constants/9971a636d69dcd79
Normal file
4
.hypothesis/constants/9971a636d69dcd79
Normal 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.']
|
||||
4
.hypothesis/constants/9b0a27e5b1ea4361
Normal file
4
.hypothesis/constants/9b0a27e5b1ea4361
Normal 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']
|
||||
4
.hypothesis/constants/9e12ebc89b2c4f5c
Normal file
4
.hypothesis/constants/9e12ebc89b2c4f5c
Normal 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']
|
||||
4
.hypothesis/constants/a7d18f775d2828c9
Normal file
4
.hypothesis/constants/a7d18f775d2828c9
Normal 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']
|
||||
4
.hypothesis/constants/a82309d9d32142c2
Normal file
4
.hypothesis/constants/a82309d9d32142c2
Normal 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']
|
||||
4
.hypothesis/constants/af63c60faf9025da
Normal file
4
.hypothesis/constants/af63c60faf9025da
Normal 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']
|
||||
4
.hypothesis/constants/b1f2eb7546fc0b2e
Normal file
4
.hypothesis/constants/b1f2eb7546fc0b2e
Normal file
@@ -0,0 +1,4 @@
|
||||
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/exceptions.py
|
||||
# hypothesis_version: 6.141.1
|
||||
|
||||
[]
|
||||
4
.hypothesis/constants/b67533cf914ba219
Normal file
4
.hypothesis/constants/b67533cf914ba219
Normal 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']
|
||||
4
.hypothesis/constants/bb7b4cb293846aa1
Normal file
4
.hypothesis/constants/bb7b4cb293846aa1
Normal 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', '•']
|
||||
4
.hypothesis/constants/bbdee6dcf410dd6a
Normal file
4
.hypothesis/constants/bbdee6dcf410dd6a
Normal 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']
|
||||
4
.hypothesis/constants/bc50d25a8e231bcf
Normal file
4
.hypothesis/constants/bc50d25a8e231bcf
Normal 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']
|
||||
4
.hypothesis/constants/bcc14bc6fc3d82be
Normal file
4
.hypothesis/constants/bcc14bc6fc3d82be
Normal 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']
|
||||
4
.hypothesis/constants/c01b9fa040e9d736
Normal file
4
.hypothesis/constants/c01b9fa040e9d736
Normal 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']
|
||||
4
.hypothesis/constants/c30f8c44f27366b6
Normal file
4
.hypothesis/constants/c30f8c44f27366b6
Normal 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', '{}']
|
||||
4
.hypothesis/constants/c4b5ff32bd8481fe
Normal file
4
.hypothesis/constants/c4b5ff32bd8481fe
Normal 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']
|
||||
4
.hypothesis/constants/c7fc5a8afb1f979a
Normal file
4
.hypothesis/constants/c7fc5a8afb1f979a
Normal 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']
|
||||
4
.hypothesis/constants/cf51388873ae4072
Normal file
4
.hypothesis/constants/cf51388873ae4072
Normal 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']
|
||||
4
.hypothesis/constants/d0abf1698668a6ed
Normal file
4
.hypothesis/constants/d0abf1698668a6ed
Normal 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']
|
||||
4
.hypothesis/constants/d3b6a6026a4ca762
Normal file
4
.hypothesis/constants/d3b6a6026a4ca762
Normal 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']
|
||||
4
.hypothesis/constants/d3ccfdd4124dc16a
Normal file
4
.hypothesis/constants/d3ccfdd4124dc16a
Normal 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']
|
||||
4
.hypothesis/constants/d6aae31deb0719c7
Normal file
4
.hypothesis/constants/d6aae31deb0719c7
Normal 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']
|
||||
4
.hypothesis/constants/d871dc39c5494efd
Normal file
4
.hypothesis/constants/d871dc39c5494efd
Normal 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', '|', '✅', '❌']
|
||||
4
.hypothesis/constants/da39a3ee5e6b4b0d
Normal file
4
.hypothesis/constants/da39a3ee5e6b4b0d
Normal file
@@ -0,0 +1,4 @@
|
||||
# file: /Volumes/Alpha SSD/Coding/bot/GramAddict/core/__init__.py
|
||||
# hypothesis_version: 6.141.1
|
||||
|
||||
[]
|
||||
4
.hypothesis/constants/dc85680a0f48297f
Normal file
4
.hypothesis/constants/dc85680a0f48297f
Normal 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']
|
||||
4
.hypothesis/constants/e07e7a508f86230a
Normal file
4
.hypothesis/constants/e07e7a508f86230a
Normal 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']
|
||||
4
.hypothesis/constants/e1800bb9cd19ff3b
Normal file
4
.hypothesis/constants/e1800bb9cd19ff3b
Normal 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']
|
||||
4
.hypothesis/constants/e283b2bf06e21ab8
Normal file
4
.hypothesis/constants/e283b2bf06e21ab8
Normal 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']
|
||||
4
.hypothesis/constants/e67933ec0b4d4525
Normal file
4
.hypothesis/constants/e67933ec0b4d4525
Normal 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']
|
||||
4
.hypothesis/constants/e754789ee7a68481
Normal file
4
.hypothesis/constants/e754789ee7a68481
Normal 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']
|
||||
4
.hypothesis/constants/ee0b766a3cf1919b
Normal file
4
.hypothesis/constants/ee0b766a3cf1919b
Normal 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']
|
||||
4
.hypothesis/constants/ee80387a43f9533a
Normal file
4
.hypothesis/constants/ee80387a43f9533a
Normal 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']
|
||||
4
.hypothesis/constants/f038e57bfaef64bf
Normal file
4
.hypothesis/constants/f038e57bfaef64bf
Normal 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']
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user