Skip to content

GareBear99/Robotics-Master-Controller

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

13 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Robotics Master Controller Β· Gary Doman

geometry = data      mass = capacity
movement = cost      control = authority

GitHub Live Site GitHub Sponsors Buy Me a Coffee

Robotics research hub for prosthetics, actuation, fabrication, exoskeleton systems, and simulation-linked automation.

πŸ” Built on ARC-Core β€” the authority / event / receipt kernel. Every actuator command, sensor reading, fabrication job, exoskeleton state change, and simulation tick is structurally an ARC-Core-shaped event with a signed receipt chain. The same signal-intelligence spine that powers the rest of the ecosystem is what a future real-time control stack would bolt onto here.


πŸ” Built on ARC-Core

The current repo is a portfolio hub, but its doctrinal backbone β€” and the spec for any future real-time robotics control stack here β€” is ARC-Core. Robotics inherits ARC-Core's event/authority/receipt discipline because safety-critical systems need exactly what ARC-Core provides: tamper-evident logs, authority gating for sensitive actions, deterministic replay.

Robotics layer ARC-Core pattern Why it matters here
Actuator commands (servo, hydraulic, pneumatic, SMA) Event ingest + fingerprint dedupe Replay-safe command issuance β€” a dropped network packet re-sending the same command doesn't double-actuate
Sensor streams (IMU, force, tactile, encoder) Event sourcing + 7-day sliding count Every sensor reading is an event; state is derived by replay; burst-rate monitoring reuses the same sliding-window logic
Authority for motor enable / emergency stop Role-gated execution (require_role) Only operator / approver role can enable torque above threshold β€” same ladder, applied to physical safety
Blueprint / CAD / build-sheet receipts Structure polygon + calibration profile upsert Build sheets are polygon-addressable identities with revision receipts; Arc-RAR-style bundles for rollback
Fabrication jobs (laser, CNC, 3D print) Proposal β†’ evidence β†’ receipt β†’ approval A job is a proposal; a simulation dry-run is evidence; an operator approves; the cut/print emits a receipt
Exoskeleton state transitions (arm, disarm, recalibrate) Proposal lifecycle + simulation dry-run Every state change proposes, simulates its impact band, then emits an approved-or-rejected receipt
Simulation linkage (physics engine tick) Deterministic replay via event log Identical event log + seed produces identical simulation output, every time β€” same guarantee as Seeded-Universe
Incident / fault detection incident receipts + geofence hits Any safety envelope excursion emits a receipt with structured detail; geofence primitive generalizes to keep-out-zone / swept-volume checks
Evidence export for safety review export_evidence_pack After any anomaly, export a JSON bundle: events + sensor tracks + state transitions + receipts, verifiable against the chain tail
Cross-robot identity resolution Deterministic entity_id minting Same actuator label always resolves to the same canonical identity across the fleet

The honest status line

This repo is currently a public hub, not a runtime β€” no firmware, no real-time control loop is present here yet. But the architectural decisions for any future control stack are already made: use ARC-Core primitives for anything state-producing, authority-gate physical actuation, and emit a receipt per commit. That way the first robotics prototype to land in this repo inherits the same tamper-evident discipline that powers the signal-intelligence console, the governed AI build loop, and the real-estate command center.

Full seven-repo ARC ecosystem + companion consumer applications:

Companion consumer repos on the same spine: RiftAscent Β· Seeded-Universe-Recreation-Engine Β· Proto-Synth_Grid_Engine Β· Neo-VECTR_Solar_Sim_NASA_Standard Β· TizWildinEntertainmentHUB Β· RAG-Command-Center.


Start Here

This repository is the public hub for the Robotics Master Controller project: a browser-first portfolio and routing layer for Gary Doman's robotics-oriented work.

It currently functions as:

  • a landing page for robotics and fabrication projects
  • a research router into related GitHub Pages sites
  • a visual identity node aligned with the broader Neo-VECTR / ARC ecosystem

It does not yet contain embedded control software, firmware, CAD assets, or robotics runtime code in this package. The current repo is a portfolio hub / documentation surface, not a deployed robotics control stack.

Primary Routes


What This Repo Actually Contains

Current tracked surface:

  • index.html β€” single-page robotics hub / landing page
  • README.md β€” GitHub-facing portfolio and project overview
  • .github/FUNDING.yml β€” funding links
  • .gitignore β€” local artifact exclusions

This is a lightweight static site repo designed for GitHub Pages style deployment.


Research Areas

  • Prosthetics and manipulation β€” robotic hands, dexterous control, tactile concepts
  • Actuation and soft robotics β€” artificial muscles, self-healing systems, pneumatic and serviceable actuation concepts
  • Exoskeleton and protective systems β€” load-bearing systems, standards-first protection research, suit architecture
  • Fabrication workflows β€” laser cutting, CAD/CAM, precision build guides, manufacturing support
  • Simulation linkage β€” adjacent simulation and runtime concepts that can later support robotics planning, testing, or control interfaces

Linked Project Surface

Project Current Role
Robotic Hands Cyberverse prosthetics and manipulation research
Cyborg Muscle Self-Healing soft robotics and self-healing actuator concepts
Hacksmith Suit Guide standards-oriented suit / exoskeleton research
Blades of Chaos Dossier fabrication workflow and xTool-oriented build dossier
ThingsHappening simulation and geometry-first visual engine concepts
TRON-Physics-Engine capacity-weighted geometric simulation doctrine

Neo-VECTR / ARC Ecosystem Context

This repo is one node inside a broader ecosystem of deterministic systems, simulation, AI infrastructure, and operator tooling.

Layer Repository Purpose
Portfolio authority GareBear99 public-facing profile and ecosystem routing hub
Intelligence core ARC-Core intelligence fusion, cases, entities, notes, and receipts
Runtime loop arc-lucifer-cleanroom-runtime autonomous runtime loop and blank-slate operator execution
AGI architecture Proto-AGI stack framing and long-range AGI composition
Synth / substrate concepts Proto-Synth_Grid_Engine simulation substrate and bounded executor logic
Photonic compute research AGI_Photon-Quantum-Computing future compute/control substrate research
Universe-scale simulation Seeded-Universe-Recreation-Engine deterministic cosmology-to-life simulation framing
Local AI execution LuciferAI_Local local model-linked intelligence surface
Robotics hub Robotics-Master-Controller robotics research routing, fabrication portfolio, and control-surface groundwork

Why This Repo Matters

For a recruiter, collaborator, or grant reviewer, this repo shows:

  • a coherent robotics research direction rather than isolated one-off pages
  • alignment between fabrication, control concepts, standards research, and simulation thinking
  • lightweight deployment discipline via a static, easy-to-host public hub
  • a clearer bridge between robotics-adjacent work and the larger systems ecosystem

Trust and Scope Notes

To keep the repo honest:

  • this package is not a robotics SDK
  • it is not a firmware repo
  • it is not a real-time control runtime
  • it is currently a portfolio/documentation hub for linked research projects

That makes it useful as a public-facing authority node, while leaving room for a future deeper control-stack repo if and when one exists.


Tech Stack

  • HTML5
  • CSS3
  • zero frontend dependencies
  • GitHub Pages compatible static deployment

Quick Start

Run locally

Open index.html in a browser, or serve it with a lightweight static server.

Example:

python3 -m http.server 8000

Then visit http://localhost:8000.


Repo Roadmap

High-value next steps:

  1. add per-project detail pages instead of only outbound links
  2. add structured metadata and social preview assets
  3. add grant / research dossier routing
  4. add a dedicated robotics stack page tying control, simulation, and fabrication together
  5. split clearly between shipped public hubs and conceptual future control architecture

Support


License

MIT License. See LICENSE.

About

Robotics research hub for prosthetics, actuation, fabrication, exoskeleton systems, and simulation-linked automation.

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Sponsor this project

  •  

Packages

 
 
 

Contributors

Languages