Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
H
hermes-node-gateway
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lisa
hermes-node-gateway
Commits
fcbd6a61
Commit
fcbd6a61
authored
Apr 30, 2026
by
Lisa (Hermes AI)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add build.sh script to generate distribution packages
parent
c3992206
Pipeline
#314
canceled with stages
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
0 deletions
+33
-0
build.sh
build.sh
+33
-0
No files found.
build.sh
0 → 100755
View file @
fcbd6a61
#!/bin/bash
set
-e
echo
"=== Building Hermes Node Gateway Plugin ==="
# Verify Python syntax
echo
"Checking Python syntax..."
python3
-m
py_compile __init__.py
# Validate plugin.yaml
if
!
command
-v
python3 &> /dev/null
;
then
echo
"ERROR: python3 not found"
exit
1
fi
python3
-c
"
import yaml
with open('plugin.yaml') as f:
config = yaml.safe_load(f)
assert config['name'] == 'hermes-node-gateway', 'Plugin name mismatch'
assert config['version'], 'Version required'
print('Plugin manifest valid')
"
echo
""
echo
"✅ Build complete! Plugin is ready."
echo
""
echo
"To install:"
echo
" 1. Copy this directory to ~/.hermes/plugins/"
echo
" 2. Add 'hermes-node-gateway' to plugins.enabled in ~/.hermes/config.yaml"
echo
" 3. Restart Hermes Agent"
echo
""
echo
"Or use the make_hermes_plugin.py script to package as wheel."
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment