Package Manifest
neurabeach-manifest.json turns listings into installable intent apps with filterable compatibility.
Important disclaimer
Not affiliated with Neuralink. This platform is for educational, research, simulation, and computer-side tools only. Do not use any software here with actual medical implants without proper regulatory approval.
See Content Guidelines and Terms.
Why it exists
Future Neuralink-type users will install software that consumes decoded intent streams, not implant firmware. The manifest is the contract for inputs, outputs, permissions, safety class, and hardware targets—so the catalog can filter like an app store.
Safety classes
Simulation
Synthetic data, offline simulators, no live device control
Computer-side
OS control, macros, AAC — consumes decoded intent only
Research only
Lab utilities, benchmarks, not for consumer install
Educational
Tutorials, courses, demos
Common inputs
Hardware targets
Example JSON
{
"manifest_version": "1.0.0",
"name": "intent-to-os",
"display_name": "Intent → OS Adapter",
"version": "1.0.0",
"description": "Reference computer-side bridge: consumes 2D velocity + click streams (WebSocket/CSV/synthetic) and drives OS mouse/keyboard. Vendor-agnostic. Not implant software.",
"safety_class": "computer_side",
"runtime": "intent-v1",
"inputs": [
"velocity_2d",
"click_prob",
"synthetic"
],
"outputs": [
"os_mouse",
"os_keys"
],
"hardware": [
"generic_intent",
"websocket_intent",
"synthetic",
"lsl"
],
"permissions": [
"pointer",
"keyboard",
"network_local"
],
"dof": "low_dof",
"latency_class": "realtime",
"platforms": [
"macos",
"windows",
"linux"
],
"calibration": "optional",
"entrypoint": "python -m intent_to_os --source synthetic --dry-run",
"repository": "https://github.com/pileofflapjacks1/neurabeach/tree/main/packages/intent-to-os",
"min_python": "3.10",
"banned_claims": true
}Reference: Intent → OS
Flagship adapter that maps velocity_2d + click_prob to OS mouse/keyboard. Source lives in this repo under packages/intent-to-os/.
Full field reference: docs/NEURABEACH_MANIFEST.md