polymath-nodeos 1.0.2__tar.gz → 1.0.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/PKG-INFO +1 -1
  2. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/cli.py +4 -0
  3. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos.egg-info/PKG-INFO +1 -1
  4. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/pyproject.toml +1 -1
  5. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/README.md +0 -0
  6. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/__init__.py +0 -0
  7. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/daemon.py +0 -0
  8. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/graph_manager.py +0 -0
  9. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/jage_engine.py +0 -0
  10. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/nodes_engine.py +0 -0
  11. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/scripts/__init__.py +0 -0
  12. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/scripts/agy_invoke.py +0 -0
  13. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/scripts/blast_radius_engine.py +0 -0
  14. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/scripts/dead_code_engine.py +0 -0
  15. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/scripts/domino_engine.py +0 -0
  16. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/scripts/ghost_writer_engine.py +0 -0
  17. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/scripts/intent_injector.py +0 -0
  18. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/scripts/intent_stopper.py +0 -0
  19. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/scripts/ipc_hook.py +0 -0
  20. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/scripts/legacy_math.py +0 -0
  21. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos/scripts/telemetry.py +0 -0
  22. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos.egg-info/SOURCES.txt +0 -0
  23. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos.egg-info/dependency_links.txt +0 -0
  24. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos.egg-info/entry_points.txt +0 -0
  25. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/polymath_nodeos.egg-info/top_level.txt +0 -0
  26. {polymath_nodeos-1.0.2 → polymath_nodeos-1.0.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: polymath-nodeos
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: A zero-dependency Autonomous Agentic Swarm Operating System.
5
5
  Author: Polymath Void
6
6
  License: MIT
@@ -91,6 +91,10 @@ def main():
91
91
  help='Execute an internal command (e.g., ping).')
92
92
 
93
93
  # parse_known_args permits forwarding remaining arbitrary flags directly to the underlying scripts
94
+ if len(sys.argv) == 1:
95
+ parser.print_help()
96
+ sys.exit(1)
97
+
94
98
  args, unknown = parser.parse_known_args()
95
99
 
96
100
  if args.daemon:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: polymath-nodeos
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: A zero-dependency Autonomous Agentic Swarm Operating System.
5
5
  Author: Polymath Void
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "polymath-nodeos"
7
- version = "1.0.2"
7
+ version = "1.0.3"
8
8
  description = "A zero-dependency Autonomous Agentic Swarm Operating System."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"