feat: add modular JARVIS voice starter module#1
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds JARVIS as an optional public-safe module inside
hermes-starter, without replacing the starter template or importing old repo history.This PR:
apps/jarvis-voice/as an optional JARVIS voice app source snapshot.modules/jarvis-voice/with module metadata and a private Operations template.scripts/init-workspace.shwith--list-modulesand--with jarvis-voice.docs/jarvis-voice.md.docs/modular-installer.md.NOTICE.mdfor provenance and public-safety notes..gitignoreand hygiene checks for optional app outputs.Why
The long-term goal is for
hermes-starterto become a modular installer/template that anyone can safely clone and use to reproduce a Hermes setup.JARVIS should be included as an optional feature module, not as the root repo and not as a force-pushed replacement for the starter.
Safety / No Secrets
This PR intentionally excludes
.env, auth files, API keys, OAuth tokens, phone/channel IDs, sessions, gateway state, logs, transcripts, recordings,node_modules, local virtualenvs,dist,release, generated runtime files, and private machine paths.Only placeholder/example config is included.
Verification
Completed locally:
./scripts/hygiene-check.sh./scripts/init-workspace.sh --dry-run./scripts/init-workspace.sh --dry-run --with jarvis-voice./scripts/sync-context-files.sh . --checkpython3 scripts/validate-yaml.py .bash -n scripts/*.shnpm ci --ignore-scriptsnpm run buildnpm run package:macNotes
The JARVIS app is currently a preview module.
apps/jarvis-voice/build/icon.pngis intentionally tracked as a packaging source asset.Generated package output remains ignored in
dist/andrelease/.Local machine did not have
shellcheckorgitleaks; CI should run those checks.