feat(scripts): add environment checker utility#143
Closed
Bartok9 wants to merge 1 commit into
Closed
Conversation
Adds a diagnostic script to validate Hermes Agent installation:
python scripts/check_env.py
Checks:
- Python version (3.10+ required)
- Core dependencies (openai, prompt-toolkit, rich, etc.)
- Optional dependencies (edge-tts, playwright, etc.)
- Command-line tools (ffmpeg, git, docker)
- Environment variables (API keys)
- HERMES_HOME configuration
Output is color-coded:
- ✅ Available/configured
- ⚠️ Optional but missing
- ❌ Required but missing
Useful for debugging installation issues and helping users
self-diagnose their setup.
Contributor
|
the command: |
4 tasks
Update: P2 "Comm-compute overlap unmodeled" — RESOLVEDThe original issue description flagged
The P2 overlap gap should be marked resolved. The remaining gaps in this issue are P0/P1 comm-time-calculation precision issues (NCCL auto-topo, A2A hierarchy, bandwidth directionality, NVLS/SHARP), not overlap coverage. |
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.
Adds a diagnostic script to validate Hermes Agent installation.
Usage
What It Checks
Python Runtime
Core Dependencies
Optional Dependencies
Command-Line Tools
Environment Variables
Configuration
Output
Why
Helps users self-diagnose installation issues instead of filing support issues.