{"id":43984022,"url":"https://github.com/sansmoraxz/wf-info-2","last_synced_at":"2026-02-07T09:33:11.850Z","repository":{"id":332587117,"uuid":"1134087657","full_name":"sansmoraxz/wf-info-2","owner":"sansmoraxz","description":"Alternative warframe companion app","archived":false,"fork":false,"pushed_at":"2026-01-25T18:37:42.000Z","size":615,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-26T10:40:50.666Z","etag":null,"topics":["inventory","linux","warframe"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sansmoraxz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-14T08:25:31.000Z","updated_at":"2026-01-25T18:37:49.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sansmoraxz/wf-info-2","commit_stats":null,"previous_names":["sansmoraxz/wf-info-2"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sansmoraxz/wf-info-2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sansmoraxz%2Fwf-info-2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sansmoraxz%2Fwf-info-2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sansmoraxz%2Fwf-info-2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sansmoraxz%2Fwf-info-2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sansmoraxz","download_url":"https://codeload.github.com/sansmoraxz/wf-info-2/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sansmoraxz%2Fwf-info-2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29191407,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T07:37:03.739Z","status":"ssl_error","status_checked_at":"2026-02-07T07:37:03.029Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["inventory","linux","warframe"],"created_at":"2026-02-07T09:33:10.841Z","updated_at":"2026-02-07T09:33:11.845Z","avatar_url":"https://github.com/sansmoraxz.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WF Info\n\nAlternative Warframe companion app with Linux support.\n\n## Building\n\n```bash\ncargo build --release\n```\n\nThis produces two binaries:\n- `wf-info-daemon` - The main daemon that monitors Warframe\n- `wf-info-cli` - CLI client to interact with the daemon\n\n## Usage\n\n### Option 1: Wrapper Mode (No sudo required with default kernel settings)\n\nRun as a parent process that launches Warframe as a child. This allows memory access without sudo on most systems:\n\n```bash\n./target/release/wf-info-daemon -- /path/to/Warframe.x64.exe [warframe args]\n```\n\n**For Steam:** Set as launch options:\n```\n/path/to/wf-info-daemon -- %command%\n```\n\nThe daemon will automatically exit when Warframe closes.\n\n### Option 2: Standalone Mode (Requires elevated permissions)\n\nRun independently and monitor an already-running Warframe instance:\n\n```bash\n# With capabilities (recommended):\nsudo setcap cap_sys_ptrace=eip ./target/release/wf-info-daemon\n./target/release/wf-info-daemon\n\n# Or with sudo:\nsudo ./target/release/wf-info-daemon\n\n# Or relax ptrace restrictions (security risk):\nsudo sysctl kernel.yama.ptrace_scope=0\n./target/release/wf-info-daemon\n```\n\n## Control API\n\nThe daemon exposes a line-delimited JSON protocol over TCP, Unix sockets, or Windows named pipes.\n\n### Configuration\n\nSet endpoint via CLI flags or environment variables:\n\n| Flag | Environment Variable | Example |\n|------|---------------------|---------|\n| `--tcp` | `WF_INFO_API_TCP` | `127.0.0.1:47410` |\n| `--unix` | `WF_INFO_API_UNIX` | `/tmp/wf-info-2.sock` |\n| `--npipe` | `WF_INFO_API_NPIPE` | `wf-info-2-control` |\n\n**Defaults (when no options are set):**\n- Linux/macOS: Unix socket at `${XDG_RUNTIME_DIR}/wf-info-2/control.sock`\n- Windows: Named pipe `\\\\.\\pipe\\wf-info-2-control`\n- Other platforms: TCP `127.0.0.1:47410`\n\n### Supported Operations\n\n| Operation | Description |\n|-----------|-------------|\n| `ping` | Health check |\n| `subscribe` | Subscribe to daemon events (streaming) |\n| `inventory.load` | Load inventory from file or JSON |\n| `inventory.filter` | Filter and search inventory items |\n| `inventory.meta.get` | Get inventory metadata |\n| `inventory.stale.update` | Mark inventory as stale |\n| `inventory.refresh` | Refresh inventory from game API |\n| `screenshot.trigger` | Capture and return a screenshot |\n\n### Examples\n\n**TCP:**\n```bash\necho '{\"id\":1,\"op\":\"ping\"}' | nc 127.0.0.1 47410\necho '{\"id\":2,\"op\":\"inventory.filter\",\"params\":{\"category\":\"suits\",\"contains\":\"prime\",\"include_details\":true}}' | nc 127.0.0.1 47410\n```\n\n**Unix socket:**\n```bash\necho '{\"id\":1,\"op\":\"ping\"}' | socat - UNIX-CONNECT:/tmp/wf-info-2.sock\n```\n\n**Windows named pipe:**\n```powershell\necho {\"id\":1,\"op\":\"ping\"} | ncat --exec \"cmd /c type con\" --no-shutdown \\\\.\\pipe\\wf-info-2-control\n```\n\n## CLI Client\n\nThe `wf-info-cli` binary provides a convenient interface to the daemon.\n\n### Commands\n\n| Command | Description |\n|---------|-------------|\n| `ping` | Ping the daemon |\n| `watch` | Subscribe to events (streaming) |\n| `inventory-load` | Load inventory data |\n| `inventory-filter` | Filter inventory items |\n| `inventory-meta` | Get inventory metadata |\n| `inventory-stale` | Mark inventory as stale |\n| `inventory-refresh` | Refresh inventory from game |\n| `screenshot` | Trigger screenshot capture |\n| `call` | Call any operation by name |\n\n### Examples\n\n```bash\n# Ping the daemon\n./target/release/wf-info-cli --tcp 127.0.0.1:47410 ping --pretty\n\n# Load inventory from file\n./target/release/wf-info-cli inventory-load --path testdata/pretty.json\n\n# Filter inventory\n./target/release/wf-info-cli inventory-filter --category suits --contains prime --include-details --limit 10\n\n# Mark inventory as stale\n./target/release/wf-info-cli inventory-stale --timestamp 1737840000 --reason \"manual reset\"\n\n# Watch for events\n./target/release/wf-info-cli watch --events account_login,inventory_fetched\n\n# Trigger screenshot\n./target/release/wf-info-cli screenshot\n```\n\n_**Note:** The screenshot will only do fullscreen capture, to avoid unintended consequences, ensure that the game window is active when capturing._\n\n## Events\n\nThe daemon emits events that clients can subscribe to via the `subscribe` operation or `watch` command:\n\n- `account_login` - Player account login detected\n- `account_logout` - Player account logout detected\n- `inventory_fetched` - Inventory loaded successfully\n- `inventory_stale` - Inventory marked as stale\n- `profile_updated` - Profile data updated\n- `screenshot_triggered` - Screenshot captured\n\n## Environment Variables\n\n| Variable | Description |\n|----------|-------------|\n| `WF_INFO_API_TCP` | TCP endpoint for control API |\n| `WF_INFO_API_UNIX` | Unix socket endpoint (Unix only) |\n| `WF_INFO_API_NPIPE` | Named pipe endpoint (Windows only) |\n| `WF_ITEMDATA_DIR` | Path to warframe-items-data JSON directory |\n| `WARFRAME_APP_CONFIG` | Custom path to Warframe config directory |\n| `RUST_LOG` | Logging level (e.g., `debug`, `info`) |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsansmoraxz%2Fwf-info-2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsansmoraxz%2Fwf-info-2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsansmoraxz%2Fwf-info-2/lists"}