From 3897f1a6b41da7beeed1d7d03e449733f468736b Mon Sep 17 00:00:00 2001 From: Fine_Computer_4451 <119702188+FineComputer14451@users.noreply.github.com> Date: Fri, 4 Sep 2026 09:43:28 -0700 Subject: [PATCH 1/2] docs: document Tookie-OSINT in README --- README.md | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4b5f134..c77bc51 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@

Release - Smoke + Smoke Pages Kali Linux Kali NetHunter @@ -121,12 +121,30 @@ grokhunter session|host|mcp "…" # tmux/resume, Termux vs Kali, MCP (mcp ≠ grokhunter plugin|flow|storage "…" # plugins (≠ grok plugin), workflows, disk grokhunter editor|hook|shell "…" # nvim/micro, Grok hooks, profile/completions grokhunter github|secrets|toolchain|tls|net "…" # git-identity agent, secrets.env, apt, CA, HTTPS (github ≠ git-identity CLI) +tookie -p "…" # Scoped OSINT agent (authorized public usernames) grokhunter models # Install or status V9 model pickers grokhunter ai-smoke # SpaceXAI API smoke (needs XAI_API_KEY) grokhunter plan "…" # Plan agent (Grok Build 1.0.5) grokhunter -p "…" # Headless one-shot ``` +### Tookie-OSINT (scoped, not a product default) + +Authorized **public username** lookup only. Hits are leads, not identity. Confirm authorization first. + +```bash +grokhunter skills install +cp bin/tookie ~/.local/bin/tookie && chmod +x ~/.local/bin/tookie +bash scripts/install_tookie.sh # optional CLI venv + +tookie # interactive agent +tookie -p "authorized username check HANDLE" +tookie --cli -u HANDLE -sC -o json -t 2 +grok --agent tookie +``` + +Upstream: [Alfredredbird/tookie-osint](https://github.com/Alfredredbird/tookie-osint) (MIT). GrokHunter does not vendor `brib.py`. Playbook: [skills/tookie-osint](skills/tookie-osint/SKILL.md). + ### Grok Build 1.0.5 + Grok 4.6 ```bash @@ -171,19 +189,21 @@ bin/ grokhunter-doctor Health report grok-nethunter Full-screen launcher nh-x11 / aider-grok Desktop + Aider helpers + tookie Tookie-OSINT agent launcher (scoped) scripts/ install_v9_grok_models.sh Atomic V9 [model.*] picker install spacexai_smoke.sh SpaceXAI Responses API smoke ci-unit.sh Local unit checks (bash scripts/ci-unit.sh) + install_tookie.sh Rootless Tookie-OSINT venv (optional, no sudo) config/ Completions, profile, model examples -skills/ grokhunter · pair-programming · aider-grok · x11-desktop · nethunter-recon +skills/ grokhunter · pair-programming · aider-grok · x11-desktop · nethunter-recon · tookie-osint toolchain · github-lab · grok-models · ci-lab · secrets-lab session-lab · host-lab · mcp-lab · plugin-lab · flow-lab · storage-lab editor-lab · hooks-lab · shell-lab · specialist-lab · tls-lab · net-lab (optional) agents/ benjamin · lucas · harper · coding-team · scout · review · fix · desktop overlay · ship · docs · models · ci · aider · session · host · mcp plugin · flow · storage · editor · hook · shell · github · secrets - toolchain · tls · net + toolchain · tls · net · tookie docs/ INSTALL, FAQ, X11, PROOT, EDITORS, GROK-46 ``` @@ -239,6 +259,6 @@ GrokHunter Rootless enhancements © 2026 FineComputer14451 and contributors. **Thank you** to jorexdeveloper, the Termux project, Kali/OffSec, and xAI. Please support their work directly. -Also: [Aider](https://aider.chat) (optional pair tool). +Also: [Aider](https://aider.chat) (optional pair tool) · [Tookie-OSINT](https://github.com/Alfredredbird/tookie-osint) (optional scoped username lookup). > **Not affiliated** with xAI, Offensive Security, Termux, or jorexdeveloper. We credit and depend on their work. From eed3cf7e0fb54f3d0dfeef184a8d72c07ca9a076 Mon Sep 17 00:00:00 2001 From: Fine_Computer_4451 <119702188+FineComputer14451@users.noreply.github.com> Date: Fri, 4 Sep 2026 09:44:30 -0700 Subject: [PATCH 2/2] docs: list Tookie on the agents roster --- agents/README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/agents/README.md b/agents/README.md index 277b043..6d12093 100644 --- a/agents/README.md +++ b/agents/README.md @@ -52,6 +52,7 @@ These are **Grok Build agent definitions**. Grok loads the matching file as the | `toolchain.md` | `toolchain` | full | apt / compilers | | `tls.md` | `tls` | full | Kali CA / `SSL_CERT_FILE` | | `net.md` | `net` | full | HTTPS probe / guest DNS | +| `tookie.md` | `tookie` | full | Authorized public username OSINT (`tookie` / `grok --agent tookie`) | ## Install (user discovery) @@ -66,7 +67,7 @@ Verify: ```bash grok inspect -# Agents: … editor, hook, shell, github, secrets, toolchain, tls, net (+ builtins) +# Agents: … editor, hook, shell, github, secrets, toolchain, tls, net, tookie (+ builtins) ``` ## Use @@ -115,6 +116,8 @@ grok --agent tls -p "SSL_CERT_FILE missing" grokhunter tls -p "doctor TLS warning" grok --agent net -p "doctor says offline" grokhunter net -p "http_code 000" +grok --agent tookie -p "authorized username check HANDLE" +tookie -p "scan HANDLE" # scoped; confirm authorization first grokhunter plan "…" # built-in plan agent (not benjamin) ```