You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a "Just Say It" section to README with a TIP highlight box so users
can install NeuroPhone by giving one sentence to any AI assistant. The
AI reads docs/AI_INSTALLATION_GUIDE.adoc and handles everything --
prerequisites, build, config, model download, and verification.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
`Set up NeuroPhone on my Android from https://github.com/hyperpolymath/neurophone` +
19
+
It reads this repo, asks a few questions, and does everything. <<ai-install,Details below>>.
20
+
====
21
+
22
+
[[ai-install]]
23
+
== AI-Assisted Installation (Recommended)
24
+
25
+
=== Just Say It
26
+
27
+
**You don't need to read this README.** Just say this to any AI assistant:
28
+
29
+
[source,text]
30
+
----
31
+
Set up NeuroPhone on my Android from https://github.com/hyperpolymath/neurophone
32
+
----
33
+
34
+
**That's it. You don't type commands, install packages, or configure anything.** The AI fetches this repo, reads the installation guide inside it, figures out your device, and does everything. You just answer a few questions and confirm the privacy notice.
35
+
36
+
The URL is the key -- it points the AI to this repo where `docs/AI_INSTALLATION_GUIDE.adoc` contains the complete step-by-step recipe. Any AI that can read a URL and run commands (or generate commands for you to paste) can do this.
37
+
38
+
The AI handles all of this automatically:
39
+
40
+
* Checking your device and storage
41
+
* Installing Termux (if needed), Rust, Git, and dependencies
42
+
* Cloning and building NeuroPhone for your specific hardware
43
+
* Downloading the right LLM model for your device's RAM/storage
44
+
* Creating your configuration with sensible defaults
45
+
* Running the setup wizard
46
+
* Giving you a working NeuroPhone
47
+
48
+
=== Other Ways to Say It
49
+
50
+
If your AI already knows about NeuroPhone (e.g. it can search the web), even shorter versions work:
51
+
52
+
* "Make my phone a NeuroPhone"
53
+
* "Install NeuroPhone on my Android"
54
+
* "Turn my Oppo Reno 13 into a NeuroPhone"
55
+
56
+
If it doesn't know the project, just include the URL:
57
+
58
+
* "Set up https://github.com/hyperpolymath/neurophone on my phone"
59
+
* "I want neurosymbolic AI on my phone -- install from https://github.com/hyperpolymath/neurophone"
60
+
61
+
=== What You'll Be Asked
62
+
63
+
Your AI will ask you:
64
+
65
+
1. **What device?** (so it picks the right thread count and model size)
66
+
2. **Privacy confirmation** -- what sensors are used and how data stays on-device
67
+
3. **Cloud fallback?** (optional Claude API for complex queries -- default is local-only)
68
+
69
+
That's it. Everything else is automatic. No package managers, no build flags, no config files.
* Processes everything on-device using Rust neural networks + local Llama LLM
79
+
* Stores neural states locally in `~/.local/share/neurophone/` (never uploaded)
80
+
* Optionally uses Claude API for complex queries (you control this)
81
+
82
+
**What NeuroPhone does NOT do:**
83
+
84
+
* Upload sensor data to any server (unless you enable cloud fallback)
85
+
* Track you or collect analytics
86
+
* Access camera, microphone, contacts, or personal data
87
+
88
+
**You control everything:** cloud fallback toggle, all config in `~/.config/neurophone/`, uninstall anytime.
89
+
====
90
+
91
+
=== After Install
92
+
93
+
Once your AI finishes setup, just use it:
94
+
95
+
[source,bash]
96
+
----
97
+
neurophone # Start NeuroPhone
98
+
neurophone query "What am I doing right now?" # Ask a question
99
+
neurophone status # Check system status
100
+
----
101
+
102
+
=== Uninstall
103
+
104
+
Tell your AI: "Uninstall NeuroPhone from my phone"
105
+
106
+
=== Troubleshooting
107
+
108
+
Tell your AI what went wrong -- it can read the troubleshooting docs in this repo. Common issues:
109
+
110
+
[cols="1,3"]
111
+
|===
112
+
|Problem |Solution
113
+
114
+
|"Termux not found"
115
+
|AI will guide you to install from F-Droid (NOT Google Play)
116
+
117
+
|Build takes too long
118
+
|Normal for first build (5-10 min). AI adjusts thread count for your device.
119
+
120
+
|"Model download failed"
121
+
|AI will try alternate download methods or suggest `adb push` from PC
122
+
123
+
|"LSM crashes"
124
+
|Low RAM. AI will reduce model size or neuron count for your device.
125
+
|===
126
+
127
+
[[manual-installation]]
128
+
For manual installation without AI assistance, see the <<getting-started,Getting Started>> section below.
129
+
130
+
'''
131
+
15
132
== What This Is
16
133
17
134
**neurophone** is a complete *Android application* for neurosymbolic AI on mobile devices. It combines spiking neural networks with large language models for on-device intelligence.
@@ -197,6 +314,7 @@ Cloud fallback for complex queries:
197
314
* Hybrid inference (local/cloud decision)
198
315
* Neural state context injection
199
316
317
+
[[getting-started]]
200
318
== Getting Started
201
319
202
320
=== Prerequisites
@@ -425,3 +543,8 @@ Palimpsest-MPL-1.0 License - See LICENSE file
0 commit comments