65 Commits

Author SHA1 Message Date
5ada31c77e feat(navigation): harden obstacle guard and intent resolver against keyboard hallucinations 2026-05-05 10:52:38 +02:00
39185593dd test(e2e): Fix E2E context generator and harden StoryView plugin
- Updated e2e_workflow_ctx in conftest to structurally parse screen_type
- Fixed StoryViewPlugin to gracefully handle pre-existing story screens
- Resolved 'LIE DETECTED' failure in story test suite
- Validated structural path transitions for story ring and story exit
2026-05-05 01:50:40 +02:00
c0cfa24384 feat(core): P0 radical evolution — kill blank_start, complete ContextGate matrix, fix HD Map back transitions
P0-2: Kill blank_start: true in config — the nuclear option that wipes ALL learned
knowledge on every run. Replaced with memory_hygiene() selective amnesia that
prunes low-confidence entries while preserving high-confidence learned patterns.

P0-3: Purge all root-level garbage scripts (scratch.py, test_run.py, profile_dump.xml,
resp_dump.json, pytest_output.log, test_output.log, coverage.xml, coverage_e2e.json).
Updated .gitignore to prevent reaccumulation.

P2-2: Replace piecemeal BANNED_SCREENS/REQUIRED_MARKERS with complete Action
Compatibility Matrix (VALID_SCREENS whitelist). Every interaction intent now has
an explicit set of valid screens. Covers like, comment, follow, unfollow, save,
repost across all 14 screen types.

P2-3: Remove non-deterministic 'press back' transitions from HD Map topology for
OTHER_PROFILE, POST_DETAIL, and SEARCH_RESULTS. Add tab transitions to POST_DETAIL.

P2-4: Replace ScreenMemoryDB nuclear 200-entry wipe with LRU eviction.
store_screen() now accepts confidence parameter.

TDD: 22 new tests (all GREEN), 240 unit/tdd/integration passed, 0 regressions.
E2E: 288 passed (+2 fixed), 6 pre-existing LIE DETECTED failures.
2026-05-04 18:19:00 +02:00
3800254fe3 feat: structural hardening, grid fast-paths, and state-aware adaptive snap recovery 2026-05-04 17:43:25 +02:00
22216cbd2d feat(core): finalize P2 & P3 hardening - Topology HD Map, Empathy Filter, and Git Hygiene 2026-05-04 15:03:42 +02:00
79e5784b93 feat(core): complete P1 hardening phase - ContextGate, Localization Purge, SoM Safety Clamp 2026-05-04 14:51:54 +02:00
5c9ea0e5e2 fix(resonance): remediate 0.85 score flatlining (P1-4)
- Raised ContentMemoryDB cache threshold from 0.95 to 0.98 to prevent cross-post poisoning.
- Implemented continuous resonance scoring by storing and retrieving 'resonance_score'
  in ContentMemoryDB.
- ResonanceEngine now prioritizes high-fidelity raw scores from cache over
  discrete 'high/medium/low' mapping.

TDD: 3 tests verifying threshold and scoring logic integrity.
2026-05-04 14:42:59 +02:00
91fa426b70 chore(git): purge tracked bytecode and optimize .gitignore
- Fixed .gitignore to correctly handle __pycache__ even when inside whitelisted directories (like tests/).
- Moved pycache ignore patterns to the end of the file to ensure they take absolute precedence over any directory-level whitelists.
- Purged all previously tracked .pyc and __pycache__ files from the git index.
- Cleaned up .hypothesis and .pytest_cache artifacts.

This enforces 'Militärische Git-Disziplin' (Rule 7) and keeps the repo clean of environment-specific junk.
2026-05-04 14:42:22 +02:00
a265dee3d0 fix(memory): ScreenMemory threshold hardening + stale layout purge (P0-3)
- Raised similarity_threshold from 0.90 to 0.95 in get_screen_type() to eliminate
  POST_DETAIL false-positives caused by embedding saturation.
- Implemented purge_stale_screens() with 24h TTL to remove layout drift.
- Added collection size cap (200 points) to store_screen() with automatic wipe
  when saturated to clear overfitting bias.
- Triggered purge_stale_screens() on ScreenIdentity initialization.

TDD: 3 new tests for threshold defaults and purge method integrity.
2026-05-04 14:39:55 +02:00
d81a5d4e81 fix(perception): structural Resource-ID bypass gate + dead code purge in ActionMemory
P0-1: Toggle intents (follow/like/save) resolved via Resource-ID fast-path
now skip VLM verification entirely. Eliminates the #1 session failure:
VLM hallucinating Follow→Like, causing zero follows per session.

P0-2: Purge 52 lines of unreachable dead code after unconditional return
at line 290. Non-toggle structural delta verification now properly reachable.
Remove 4 DEBUG-prefixed logger.info pollution statements.

TDD: 7 new tests covering bypass gate, negative guard, non-toggle delta,
and debug log pollution detection.
2026-05-04 14:35:19 +02:00
f384fbb749 feat: purge ALL remaining German/localized strings from action_memory, telepathic_engine, darwin_engine, resonance_engine — enforce zero-maintenance structural determinism with TDD compliance tests 2026-05-03 23:33:28 +02:00
565bdaa568 chore: purge garbage scripts from repo and harden .gitignore 2026-05-03 23:29:14 +02:00
c641204a6b feat: enforce zero-maintenance autonomous navigation by purging hardcoded string searches and localized translations; harden VLM perception via robust JSON fallback; fix OTHER_PROFILE topological routing 2026-05-03 23:28:00 +02:00
4b645c6fb2 Hardening: Centralized zero-trust CognitiveStack validation and removed synthetic e2e test mocks 2026-05-03 20:30:30 +02:00
c7c7ce29f8 fix(qdrant): increase embedding API timeout to 30s to allow Ollama VRAM cold-starts 2026-05-03 18:38:27 +02:00
b36dde77d8 fix(navigation): harden autonomous perimeter guards against Play Store trap 2026-05-03 18:29:25 +02:00
93b2140844 docs: update ARCHITECTURE.md with SAE 3-layer modal cascade
Ensuring 100% code-documentation parity per strict architectural rules.
2026-05-03 17:15:16 +02:00
67c3d464e0 fix(navigation): harden ScreenIdentity priority cascade and GOAP structural action detection
1. ScreenIdentity: Restructured priority cascade to prevent Qdrant semantic
   cache from overriding deterministic structural heuristics. Cached types
   now resolve AFTER structural checks (Priority 3) instead of before.
   Story/Reels hallucinations from both cache and VLM are rejected if
   structural markers are absent.

2. bot_flow: Added error handling for story ring avatar tap and curiosity
   HomeFeed navigation failures — prevents silent continuation into
   undefined states.

3. GOAP: Extended is_navigation detection to include ScreenTopology
   structural actions, ensuring HD Map routes are correctly classified.

4. action_memory: Tightened _parse_yes_no to prevent JSON fall-through
   into ambiguous text matching. Structured responses with 'success'
   boolean are now handled directly.
2026-05-03 17:00:27 +02:00
d298f03891 fix(sae): structural fast-path for Instagram survey/interstitial modal detection
The SAE perceive() had no structural fast-path for Instagram-internal
modal overlays (surveys, rating prompts, interstitials). These modals
live inside com.instagram.android and were invisible to the foreign-app
detector. The LLM fallback frequently misclassified them as NORMAL,
causing the bot to get trapped in survey dialogs.

Added two O(1) structural detection layers:
1. Resource-ID markers: survey_overlay_container, interstitial_container,
   mystery_interstitial, nux_overlay, rating_prompt, feedback_dialog
2. Dismiss-button heuristic: cross-validates dismiss text with overlay
   container structure to prevent caption false positives

Also removed dead code: xml_dump.lower() no-op.

Fixes: test_perceive_instagram_survey_modal
Zero regressions: 464 passed, 6 pre-existing failures
2026-05-03 16:59:52 +02:00
604f2d7341 fix(perception): avoid skipping first highlight story by differentiating from home feed tray 2026-05-03 16:38:02 +02:00
cd8f35056c fix(perception): structural fast-path skips own profile story ring on home feed to prevent modal traps 2026-05-03 16:35:59 +02:00
800fb1da98 fix(perception): replace string matching with structural feed marker check for perfect snapping 2026-05-03 16:31:32 +02:00
6cd068f951 test(curiosity): force CHECK_CURIOSITY triggering and harden HD Map routing 2026-05-03 16:20:18 +02:00
f46b0b7bcb chore: harden verify_success fallbacks to Fail-Fast and apply aggressive GOAP penalty 2026-05-03 15:42:09 +02:00
5fbbe3d273 feat(e2e): ACHIEVED ABSOLUTE REALISM - 100% Production Parity Purge. Removed all synthetic guards and mocks from core. Enabled honest Qdrant and Disk I/O in tests. Empty KNOWN_DIVERGENCES. 2026-05-03 14:44:01 +02:00
f85d0a8a76 test(e2e): eliminate create_emulator_facade monkeypatching and replace with make_real_device_with_xml where applicable 2026-05-03 13:44:58 +02:00
f0a54d4e20 test(e2e): enforce 100% production-parity in dm_engine and follow verification tests 2026-05-03 11:24:25 +02:00
0a73c35809 purge: eliminate last MagicMock and all lambda dump_hierarchy overrides
- device_emulator.py: Replace MagicMock(watcher) with explicit WatcherStub
  that implements exact u2 watcher chain (when/click/start). Any API drift
  now causes AttributeError instead of silent acceptance.
- test_system_sae.py: Inject XML into emulator state instead of bypassing
  dump_hierarchy with lambda
- test_behavior_ad_guard.py: Pass XML to fixture, remove lambda override
- test_behavior_scrape_profile.py: Pass XML to fixture, remove lambda override

Result: ZERO unittest.mock imports, ZERO MagicMock instances,
ZERO dump_hierarchy lambdas across entire E2E suite (50 files).
2026-05-03 10:21:23 +02:00
e535c10b65 fix(perception): structural fast-path and VLM bounds extraction for Reels 2026-05-02 23:17:12 +02:00
91effbc843 test: add E2E coverage for GOAP trap recovery and restart state reset 2026-05-02 23:11:31 +02:00
3da3849ca1 fix: purge GOAP tracking state when Instagram is forced to restart 2026-05-02 22:50:57 +02:00
51ee7a6793 refactor: remove mock_semantic_engine from q_nav_graph production code 2026-05-02 22:44:53 +02:00
936da47f61 test: SAE execution loop coverage 2026-05-02 22:40:52 +02:00
d1e0995148 test: e2e regression suite for SAE structural fast-paths 2026-05-02 22:40:20 +02:00
2f8eebb7e9 fix: stochastic failure in test_autonomous_goals.py 2026-05-02 22:37:34 +02:00
9c6f80de9d test: add 63-test GOAP navigation engine suite
Production bug 2026-05-02 22:30: Bot got trapped in a restart loop:
  1. 'tap reels tab' → VLM clicked wrong element → EXPLORE_GRID
  2. After 2 failures → action masked
  3. HD Map: 'REELS_FEED unreachable due to masked edges'
  4. GOAP: 'completely trapped' → force Instagram restart
  5. Repeat forever

ALL TESTS WERE GREEN because NONE of this logic was tested.

NEW: test_system_goap_navigation.py — 63 tests across 8 contracts:

CONTRACT 1: Screen Identification from XML (16 tests)
  - Home, Explore, Reels, Profile, DM, Story, Modal, Foreign App
  - Post detail vs Home feed (action_bar discriminator)
  - Reels full-screen (no tab bar, structural markers only)

CONTRACT 2: Available Actions Extraction (4 tests)
  - All 5 tab actions present on home feed
  - Screen-specific actions (first post on Explore)

CONTRACT 3: HD Map BFS Routing (7 tests)
  - Direct routes, multi-step routes, already-there
  - Masked edges, all-edges-masked → None

CONTRACT 4: Goal → Target Screen Mapping (14 tests)
  - All navigation goals + non-navigation goals return None

CONTRACT 5: Action Failure Masking (4 tests)
  - Mask after MAX_RETRIES, no mask under threshold
  - Full production chain reproduction

CONTRACT 6: Goal Achievement Detection (9 tests)
  - Screen-based, context-based, non-nav goals

CONTRACT 7: Structural Action Protection (4 tests)
  - HD Map actions are structural, random actions are not

CONTRACT 8: Step-Aware Navigation Validation (5 tests)
  - Expected screen for action, mismatch detection
2026-05-02 22:34:45 +02:00
cff7e976e0 fix: Tab Height Guard false-positive on author intent with 'tab' substring
Production bug 2026-05-02 22:19:
Intent 'post author username text (exclude bottom tabs)' contained the
word 'tab' in its parenthetical qualifier. The old check:
    is_tab_intent = 'tab' in intent_lower
matched this intent as a TAB navigation intent, activating the Tab
Height Guard which excluded ALL nodes with center_y < 85% of screen.

This nuked the actual clips_author_username node at y=2012, leaving
only 4 irrelevant items for the VLM → bot stuck in a loop unable to
find the author username.

Fix: Replace substring match with precise regex patterns that only
match real tab navigation intents:
  - 'tap profile tab', 'tap home tab' (tap + word + tab)
  - 'profile tab', 'explore tab' (word + tab)
  - 'tab ...' at start of intent

TDD: Red test added first, reproducing exact production state.
81 perception tests + 172 total tests pass.
2026-05-02 22:28:03 +02:00
f6f15ebd9a test: expand LLM perception suite to 80 tests — 3 new contracts
CONTRACT 6: extract_json() — LLM Response Sanitizer (9 tests)
Previously COMPLETELY untested. Every single LLM response in the entire
system passes through this function. Tests:
- Clean JSON, markdown fences (json+plain), thinking block purge
- Text prefix before JSON, truncated JSON fuzzy recovery
- Garbage/empty/None resilience

CONTRACT 7: _visual_discovery Pre-Filters (8 tests)
The guards INSIDE _visual_discovery() that run BEFORE the VLM ever
sees the candidates. If they fail, the VLM gets garbage and hallucinates.
Tests:
- Area filter: tiny nodes (<200px²) and huge containers (>400000px²)
- SystemUI filter: Android system elements, notifications, battery
- Strict Button Guard: long text captions excluded for button intents
- Grid Item Guard: non-grid elements excluded, fallthrough on no match
- Author/Username Guard: nav tabs excluded for author intents

CONTRACT 8: verify_success Structural Delta (8 tests)
The post-click verification logic that decides if a click actually worked.
Tests:
- Toggle massive XML shift = navigation error (False)
- Toggle small diff = success (True)
- Toggle zero diff = inconclusive (None)
- Follow success with 'Requested' marker (private accounts)
- Follow success with German locale ('Abonniert')
- View post with clips_viewer marker (Reels)
- View post still on grid = inconclusive (None)
- Semantic gate blocks wrong toggle element (caption != like button)
2026-05-02 22:10:57 +02:00
1cc367697e test: add 55-test LLM perception pipeline integrity suite
Validates the deterministic processing logic around the VLM without
needing a real LLM. Five contracts covering the full perception stack:

1. VLM Response Parsing (20 parametrized formats):
   Tests _parse_yes_no against every response format observed in production:
   clean YES/NO, JSON variants, explanations, edge cases (now/not/nothing),
   empty strings, free-form JSON. Documents the startswith('yes') early-exit
   behavior for ambiguous responses.

2. Box Index Extraction (7 formats):
   Validates JSON parsing of VLM box selections across all observed key
   variants: 'box', 'selected_index', 'box_index', 'index', null, and
   out-of-range values.

3. Structural Guards (11 tests):
   Tests every hallucination prevention guard in IntentResolver:
   - Tab intent excludes Back button (bug 2026-04-30)
   - Back intent preserves Back button
   - Tab height guard (y > 85% screen)
   - Author intent excludes nav tabs (bug 2026-05-01)
   - Structural fast-paths (message input, send, author, comment)
   - Abstract goals return None
   - Semantic quoted-target guard

4. Semantic Match Validation (10 tests):
   Prevents memory poisoning via _intent_matches_node:
   - Correct matches (follow/like/save + German locale)
   - Poisoning attempts: Reel thumbnails, photo content, comments
   - Non-toggle intents always pass through

5. ActionMemory Lifecycle (7 tests):
   Full track → confirm/reject cycle with FakeUIMemoryDB:
   - Correct follow stores in memory
   - Poisoned follow is BLOCKED (production bug reproduction)
   - Rejected click triggers confidence decay
   - No-track confirm is noop
   - Mismatched intent is ignored
   - Follow/view-post structural verification
2026-05-02 22:07:12 +02:00
738a59ac8d test: add E2E coverage gate and full lifecycle integration test
Two critical test additions:

1. test_system_full_lifecycle.py — Full A-to-Z integration test:
   Exercises the ENTIRE bot pipeline across 4 screen types (HomeFeed →
   Explore → Post Detail → Profile) with a real InstagramEmulator state
   machine. Validates plugin execution, session state accumulation,
   cognitive stack survival, dopamine session timeout, and post-session
   serialization. This is the single most important test in the suite.

2. test_system_coverage_gate.py — Critical Path Coverage Enforcement:
   Reads coverage_e2e.json and enforces minimum coverage thresholds on
   production-critical modules. Each threshold is tied to a real production
   incident. If persistent_list.py drops below 20% coverage, the build
   fails — because that's exactly how the sessions.json corruption
   bug went undetected.

   Usage: pytest tests/e2e --cov=GramAddict.core \
     --cov-report=json:coverage_e2e.json

   Critical paths enforced:
   - session_state.py (>=50%): serialization crash prevention
   - persistent_list.py (>=20%): persist() path must be tested
   - dopamine_engine.py (>=40%): session timeout logic
   - screen_identity.py (>=60%): screen identification
   - spatial_parser.py (>=70%): UI element parsing
   - intent_resolver.py (>=50%): click decision logic
   - q_nav_graph.py (>=25%): navigation integrity
   - device_facade.py (>=40%): device interface
2026-05-02 21:56:19 +02:00
cd6cecbe27 test: add proactive system integrity contracts
Replaces reactive bug-specific tests with 4 structural CONTRACTS
that make entire categories of bugs impossible:

1. Serialization Contract (13 parametrized hostile payloads):
   Proves SessionStateEncoder NEVER crashes regardless of what
   gets injected onto args (datetime, lambda, bytes, inf, nan, etc.)

2. Persistence Contract:
   Forces the REAL persist() path by removing PYTEST_CURRENT_TEST guard.
   Validates write → read round-trip with poisoned sessions.

3. Production Parity Contract:
   Scans ALL GramAddict source for pytest/test-mode divergence guards.
   Any unaudited divergence point fails the build. New guards require
   explicit justification in KNOWN_DIVERGENCES registry.

4. Import Integrity Contract:
   Imports every single GramAddict module to catch syntax errors,
   circular imports, and missing dependencies at test time.

This addresses the root systemic failure: tests were running in a
parallel universe where serialization was silently skipped, allowing
a datetime injection to corrupt sessions.json and kill production.
2026-05-02 20:15:35 +02:00
4af4ddb060 fix: prevent SessionStateEncoder crash from non-serializable datetime on args
Root cause: bot_flow.py injected configs.args.global_start_time = datetime.now()
which polluted the args namespace. SessionStateEncoder blindly serialized
args.__dict__ via json.dump, which crashed mid-write on the datetime object,
leaving sessions.json truncated/corrupt. Every subsequent restart failed.

Fixes:
- Remove global_start_time from configs.args (only lives on engine class vars)
- Harden SessionStateEncoder with _sanitize_value() to convert any
  non-JSON-serializable type (datetime, timedelta, arbitrary objects) to strings
- Add test_system_session_persistence.py with 4 tests covering the exact
  production crash scenario (datetime injection → json.dumps → round-trip)
- Fix test_engine_timeout.py broken GoalExecutor module reference
2026-05-02 19:57:33 +02:00
f32ee46d8c test: finalize E2E timeout verification and purge global state leaks 2026-05-02 18:59:35 +02:00
d2de5f91de test(e2e): Fix DM Engine E2E test XML sequences to eliminate Alien Context drift 2026-05-02 00:26:31 +02:00
9a13216064 test: enforce real VLM execution in explore tab guard and disable fallback hallucination 2026-05-01 23:41:51 +02:00
aa5184786e test(e2e): Fix LLM mock hallucinations to use structurally merged search string for 100% truthful navigation tests 2026-05-01 22:27:38 +02:00
2e1edec56a fix(perception): 3 production bug regressions from 2026-05-01 run
Bug 1 — VLM Profile Tab Hallucination:
  - VLM confused 'Profile' nav tab with post author username
  - Added Author Tab Guard to filter_navigation_conflicts()
  - Fixed mock LLM to use structural row_feed_photo_profile matching
    instead of hardcoded username (was the test lie)

Bug 2 — Like Button 1-Byte Delta Kill:
  - Toggle actions (like/save) produce 1-byte XML deltas
  - GOAP's MIN_UI_CHANGE_BYTES=50 threshold killed them as 'no change'
  - Split interaction gate: interactions use ANY xml diff, navigations
    keep the 50-byte threshold

Bug 3 — Empty Username Silently Accepted:
  - PostDataExtraction returned 'Post by @' with no warning
  - Added 'username_missing' reliability flag to result dict
  - Downstream consumers can now detect degraded data quality

Cleanup:
  - Removed all debug print() statements from production code
  - Replaced with structured logger.debug() calls
2026-05-01 21:57:56 +02:00
df18a48a84 build(deps): bump requests version to fix urllib3 warning 2026-05-01 16:57:03 +02:00
f1a8573be8 test(e2e): eliminate lying tests via behavioral truth assertions 2026-05-01 16:55:53 +02:00
da7201117c fix(tests): purge MagicMock, fix ad fixtures, improve pre-commit E2E fallback
- test_device_connection.py: replace MagicMock with SimpleNamespace to satisfy mock ban
- test_is_ad_substring.py: add feed context markers — is_ad only checks exact labels in feed context
- pre_commit_tests.sh: smart E2E test discovery by module name words, preventing false coverage failures
- conftest.py: fix profile tab visual discovery regex (case-insensitive desc match)
- test_production_bug_regression.py: fix TelepathicEngine singleton poisoning via monkeypatch
2026-05-01 12:09:18 +02:00
fddf14fd67 test(e2e): purge FakeSAENormal and instantiate real Cognitive Stack
PRODUCTION FIX 2026-04-30 12:45:
The entire E2E suite was systematically lying by testing a shell of the bot:
1. FakeSAENormal was masking the actual SituationalAwarenessEngine, meaning structural perception failures (like the 'stuck on Other Profile' bug) were completely invisible to tests.
2. The e2e_cognitive_stack was hardcoded to return None for 80% of engines (NavGraph, ZeroEngine, Telepathic, Darwin, ActiveInference), causing plugins to silently bypass their core logic during tests.
3. get_screenshot_b64 and screenshot() returned None, preventing the VLM stack from even running structural fallback code.

Fix:
- Systematically stripped FakeSAENormal from all 29 E2E workflow tests.
- Built e2e_cognitive_stack_factory to instantiate the REAL Cognitive Stack (GrowthBrain, QNavGraph, ZeroLatencyEngine, etc.) just like in bot_flow.py.
- Patched ONLY the external LLM network requests in conftest.py via mock_llm_network_calls so that structural execution stays 100% real but avoids non-deterministic LLM timeouts.
- Injected a valid 1x1 black image for screenshots.

All 29 E2E tests now execute the true production logic path and pass in 49 seconds.
2026-04-30 12:46:01 +02:00
392abff313 fix(intent_resolver): add Nav Conflict Guard — Back button never valid for tab intents
PRODUCTION BUG 2026-04-30 11:50:
VLM returned action_bar_button_back (desc='Back') for 'tap profile tab'
intent on OTHER_PROFILE screen. This caused account_switcher to navigate
AWAY from the profile instead of opening the account selector bottom
sheet, halting the session.

Root cause: _visual_discovery pre-filter did not exclude navigation
buttons (Back, Close) when the intent was for a tab element.

Fix:
- Added filter_navigation_conflicts() method to IntentResolver
- Guards tab intents by excluding nodes with 'back' in resource_id
  or content_desc == 'Back'
- Does NOT apply for 'tap back button' or 'press back' intents

TDD:
- RED: test_intent_resolver_back_guard.py — 2 tests that call
  filter_navigation_conflicts on real OTHER_PROFILE XML
- GREEN: filter_navigation_conflicts method + wired into _visual_discovery
- E2E: test_workflow_account_switch.py, test_workflow_vlm_tab_confusion.py

31/31 tests passing.
2026-04-30 12:10:44 +02:00
556bd181fa test(e2e): complete workflow coverage — all feeds, obstacles, and production regressions
NEW WORKFLOW TESTS (all using shared conftest fixtures):

Feed workflows:
- test_workflow_reels_feed.py — Reels feed processing
- test_workflow_explore_feed.py — Explore grid processing
- test_workflow_stories_feed.py — Stories feed + story view
- test_workflow_search_feed.py — Search feed processing
- test_workflow_dm_inbox.py — DM inbox + thread
- test_workflow_post_detail.py — Post detail + carousel
- test_workflow_profiles.py — User profile, scraping, followers, unfollow

Obstacle workflows:
- test_workflow_instagram_modal.py — Survey/rating modals
- test_workflow_locked_screen.py — Locked screen detection

Production regressions from 2026-04-30 session:
- test_workflow_stuck_other_profile.py — Bot stuck cycling through
  plugins on OTHER_PROFILE, all returning 'Cannot X on other_profile'
  (7x same profile, 35x snapping attempts)
- test_workflow_same_post_loop.py — Infinite snapping loop when
  device returns identical XML after each swipe

Total workflow coverage: 24 tests across 13 files, <100 LoC each.
2026-04-30 11:39:36 +02:00
2c44331f03 refactor(e2e): extract workflow infrastructure into conftest, one test file per workflow
BEFORE: Giant monolith test files with duplicated device stubs, config
factories, and cognitive stack builders. The infrastructure was copy-pasted
into each file.

AFTER: Clean separation:
- conftest.py: E2EDeviceStub, e2e_device, e2e_cognitive_stack,
  e2e_session, e2e_workflow_ctx fixtures
- test_workflow_permission_dialog.py: Permission dialog recovery
- test_workflow_foreign_app.py: Foreign app (Chrome) recovery
- test_workflow_normal_feed.py: Normal post processing
- test_workflow_plugin_integrity.py: Import + interface sanity

Each workflow file is <100 lines. Zero duplication. Every test uses
the shared e2e_workflow_ctx fixture which runs the EXACT code path
from bot_flow.py:942-971.

DELETED: test_full_workflow_hostile_env.py, test_plugin_chain_hostile_env.py
(monolith files replaced by the above)
2026-04-30 11:20:35 +02:00
b83b55e02b test(e2e): add TRUE E2E workflow tests — only device mocked, everything else real
PROBLEM:
All 81 existing E2E tests were disguised unit tests. They tested individual
components (IntentResolver, SpatialParser, SAE perception, single plugins)
in isolation. NONE ran the actual production workflow.

This meant:
- A broken import in resonance_evaluator? No test caught it.
- obstacle_guard ignoring OBSTACLE_SYSTEM? No test caught it.
- The full plugin chain running against a permission dialog? Never tested.

THE FIX — test_full_workflow_hostile_env.py:
These tests mock ONLY the Android device (XML dumps). Everything else is real:
- Real DopamineEngine
- Real SessionState
- Real Config
- Real PluginRegistry with ALL 18+ production plugins
- Real BehaviorContext built exactly like bot_flow.py:942-954

Tests:
1. test_feed_loop_iteration_recovers_from_permission_dialog
   → Runs the EXACT code path from bot_flow.py against a permission dialog
   → Asserts should_skip=True, zero interactions, BACK pressed

2. test_normal_feed_post_is_processable
   → Sanity check that the full pipeline processes normal posts

3. test_all_plugins_importable_and_instantiable
   → Catches broken imports (humanized_scroll bug) at registration time

4. test_plugin_chain_does_not_swallow_import_errors
   → Explicit import of every plugin module — any ImportError = test failure

RULE CODIFIED: E2E = mock ONLY Instagram. Everything else is REAL.
2026-04-29 23:32:01 +02:00
db226ed7c2 test(e2e): add plugin chain integration tests for hostile environments
THE ROOT CAUSE OF LYING TESTS:
81 E2E tests existed but ZERO tested the full plugin chain (execute_all)
against non-Instagram environments. Each plugin was tested in isolation,
but the integration between perception (SAE) and action (obstacle_guard)
was a complete blind spot.

NEW TESTS:
- test_chain_terminates_on_permission_dialog: Proves the full plugin chain
  terminates at obstacle_guard when a system permission dialog is detected.
  No downstream interaction plugins (resonance, like, follow) may fire.
- test_chain_terminates_on_foreign_app: Same for Chrome/browser takeover.
- test_chain_passes_through_on_normal_instagram: Sanity check that the
  chain runs normally on valid Instagram feeds.

These tests would have caught the 23:01 stuck-loop bug BEFORE it shipped.
2026-04-29 23:13:54 +02:00
47f94b699c fix(guard): handle OBSTACLE_SYSTEM + OBSTACLE_FOREIGN_APP in obstacle_guard, fix broken humanized_scroll import
🔴 RED: Tests proved obstacle_guard silently ignored system permission dialogs
   and foreign app overlays, causing the bot to get stuck on Android modals.
🟢 GREEN: obstacle_guard now dismisses OBSTACLE_SYSTEM and OBSTACLE_FOREIGN_APP
   with immediate back-press, preventing the interaction chain from running
   against non-Instagram UI elements.
🔵 REFACTOR: Fixed broken import in resonance_evaluator (was importing
   humanized_scroll from utils instead of physics.humanized_input).
2026-04-29 23:05:59 +02:00
96fdbd7db7 test(perception): add strict TDD suite for autonomous ad marker learning and verification 2026-04-29 21:29:05 +02:00
ca91ae4b33 feat(perception): autonomous FSD ad marker learning with zero-latency structural persistence 2026-04-29 21:25:03 +02:00
a560225dc9 feat(perception): integrate VLM visual ad detection into resonance vibe check to block obfuscated ads 2026-04-29 21:20:09 +02:00
849fb63426 fix(orchestrator): inject --goal into persona_interests for autonomous resonance evaluation and fix scope shadowing bugs 2026-04-29 19:30:21 +02:00
fc44633ebc fix(physics): prevent infinite alignment loops on Reels and refine intent to avoid follow buttons 2026-04-29 19:05:31 +02:00
0f5b71708d fix(perception): enforce visual Set of Mark by passing device context globally 2026-04-29 18:40:58 +02:00
0ef2840f79 fix(perception): complete bug 5,6,7,8,10 fixes
- Resolved Bug #5: Fixed list vs str parsing in ResonanceEvaluator
- Resolved Bug #6: Use 'should_like' key for vibe score
- Resolved Bug #7: Guard TelepathicEngine against 'Follow' nodes for post media
- Resolved Bug #8: Implemented failed_bounds exclusion loop breaker in PerfectSnapping
- Resolved Bug #10: Corrected available_actions string parsing
- Validated with E2E regression suite (100% green)
2026-04-29 18:26:29 +02:00
068a6a616a fix: purge 4 production bugs — resonance null-guard, POST_DETAIL misclassification, VLM JSON response handling
🔴 RED → 🟢 GREEN for 4 critical bugs found in production run 2026-04-29:

1. ResonanceEvaluator: Add null-guard for evaluate_post_vibe() return.
   When VLM returns truncated JSON, the function returns None. The caller
   now handles this gracefully instead of crashing with AttributeError.

2. ScreenIdentity POST_DETAIL: Replace broken 'and not selected_tab'
   condition with structural differentiator using main_feed_action_bar.
   Posts opened from feed retain feed_tab selected, which was causing
   misclassification as HOME_FEED → LLM fallback → OWN_PROFILE hallucination
   → permanent Qdrant cache poisoning.

3. ActionMemory VLM verification: When VLM returns JSON instead of YES/NO,
   treat as inconclusive (fall through to structural delta) rather than
   hard failure. Only return False when response explicitly contains 'no'.

4 new E2E regression tests, 75/75 pass, zero regressions.
2026-04-29 18:05:32 +02:00
231 changed files with 10924 additions and 2308 deletions

25
.gitignore vendored
View File

@@ -13,9 +13,10 @@
!tests/fixtures/*.xml
!tests/fixtures/*.jpg
!tests/fixtures/*.json
!tests/e2e/fixtures/*.xml
!tests/e2e/fixtures/*.jpg
!tests/e2e/fixtures/*.json
logs/
*.pyc
__pycache__/
.DS_Store
crashes
accounts
@@ -28,8 +29,14 @@ Pipfile.lock
*.ini
*.db
# Debug artifacts
# Debug artifacts & garbage scripts (Rule 5: KRIEG DEM MÜLL)
scratch*.py
rewrite_*.py
test_*.py
!tests/**
update_*.py
profile_dump.*
resp_dump.*
test_compress.py
test_fixtures.py
output.txt
@@ -40,7 +47,19 @@ traceback.log
htmlcov/
.coverage
coverage.xml
coverage_e2e.json
.hypothesis/
# Local diagnostic traces
debug/
# Bytecode & Cache (Enforce at bottom to override whitelists)
**/__pycache__/
**/*.pyc
**/*.pyo
**/*.pyd
.pytest_cache/
.hypothesis/
.coverage
htmlcov/
coverage.xml

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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