polymath-nodeos 1.0.4__tar.gz → 1.0.5__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 (28) hide show
  1. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/PKG-INFO +7 -1
  2. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/README.md +6 -0
  3. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/cli.py +5 -0
  4. polymath_nodeos-1.0.5/polymath_nodeos/dummy_test.py +2 -0
  5. polymath_nodeos-1.0.5/polymath_nodeos/installer.py +133 -0
  6. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos.egg-info/PKG-INFO +7 -1
  7. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos.egg-info/SOURCES.txt +2 -0
  8. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/pyproject.toml +1 -1
  9. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/__init__.py +0 -0
  10. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/daemon.py +0 -0
  11. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/graph_manager.py +0 -0
  12. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/jage_engine.py +0 -0
  13. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/nodes_engine.py +0 -0
  14. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/scripts/__init__.py +0 -0
  15. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/scripts/agy_invoke.py +0 -0
  16. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/scripts/blast_radius_engine.py +0 -0
  17. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/scripts/dead_code_engine.py +0 -0
  18. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/scripts/domino_engine.py +0 -0
  19. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/scripts/ghost_writer_engine.py +0 -0
  20. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/scripts/intent_injector.py +0 -0
  21. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/scripts/intent_stopper.py +0 -0
  22. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/scripts/ipc_hook.py +0 -0
  23. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/scripts/legacy_math.py +0 -0
  24. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos/scripts/telemetry.py +0 -0
  25. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos.egg-info/dependency_links.txt +0 -0
  26. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos.egg-info/entry_points.txt +0 -0
  27. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/polymath_nodeos.egg-info/top_level.txt +0 -0
  28. {polymath_nodeos-1.0.4 → polymath_nodeos-1.0.5}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: polymath-nodeos
3
- Version: 1.0.4
3
+ Version: 1.0.5
4
4
  Summary: A zero-dependency Autonomous Agentic Swarm Operating System.
5
5
  Author: Polymath Void
6
6
  License: MIT
@@ -59,6 +59,12 @@ pip install polymath-nodeos
59
59
  2. Allows you to instantly boot the Swarm OS in any folder.
60
60
  3. Automatically triggers your swarm agents to read `workflow.json`.
61
61
 
62
+ After pip installing, you must run the Antigravity integration setup once:
63
+ ```bash
64
+ nodeos --install
65
+ ```
66
+ This automatically maps NodeOS directly into your AI Agent's global memory (`~/.gemini/config/`), granting them the `nodeos_standard.md` rule and `agy-nodeos-installer` injection protocols.
67
+
62
68
  ---
63
69
 
64
70
  ## 📖 Usage Guide
@@ -47,6 +47,12 @@ pip install polymath-nodeos
47
47
  2. Allows you to instantly boot the Swarm OS in any folder.
48
48
  3. Automatically triggers your swarm agents to read `workflow.json`.
49
49
 
50
+ After pip installing, you must run the Antigravity integration setup once:
51
+ ```bash
52
+ nodeos --install
53
+ ```
54
+ This automatically maps NodeOS directly into your AI Agent's global memory (`~/.gemini/config/`), granting them the `nodeos_standard.md` rule and `agy-nodeos-installer` injection protocols.
55
+
50
56
  ---
51
57
 
52
58
  ## 📖 Usage Guide
@@ -89,6 +89,8 @@ def main():
89
89
  help='Run a specific script or engine (e.g., intent_injector, intent_stopper).')
90
90
  group.add_argument('-c', '--command', type=str, metavar='CMD',
91
91
  help='Execute an internal command (e.g., ping).')
92
+ group.add_argument('-i', '--install', action='store_true',
93
+ help='Install global Antigravity rules and skills for NodeOS.')
92
94
 
93
95
  # parse_known_args permits forwarding remaining arbitrary flags directly to the underlying scripts
94
96
  if len(sys.argv) == 1:
@@ -105,6 +107,9 @@ def main():
105
107
  run_script(args.script, unknown)
106
108
  elif args.command:
107
109
  execute_command(args.command, unknown)
110
+ elif args.install:
111
+ from polymath_nodeos.installer import install_nodeos
112
+ install_nodeos()
108
113
 
109
114
  if __name__ == "__main__":
110
115
  main()
@@ -0,0 +1,2 @@
1
+ def dummy_function():
2
+ return True
@@ -0,0 +1,133 @@
1
+ import os
2
+ import sys
3
+
4
+ def install_nodeos():
5
+ print("\033[96m=== [ AGY-NodeOS Global Installer ] ===\033[0m")
6
+
7
+ # Define paths
8
+ home_dir = os.path.expanduser("~")
9
+ gemini_config_dir = os.path.join(home_dir, ".gemini", "config")
10
+
11
+ global_rules_dir = os.path.join(gemini_config_dir, "rules")
12
+ global_skills_dir = os.path.join(gemini_config_dir, "skills")
13
+
14
+ nodeos_skill_dest = os.path.join(global_skills_dir, "agy-nodeos-installer")
15
+
16
+ # 1. Ensure global config directories exist
17
+ os.makedirs(global_rules_dir, exist_ok=True)
18
+ os.makedirs(nodeos_skill_dest, exist_ok=True)
19
+ print("\033[90m[+] Verified Antigravity Global Customization Roots.\033[0m")
20
+
21
+ # 2. Install the Global Rule
22
+ rule_content = """---
23
+ trigger: always_on
24
+ ---
25
+ # Universal NodeOS Enforcement Rule
26
+
27
+ Whenever the USER requests to start a new project, resume a project, or build software within the Android Termux environment, you MUST natively use AGY-NodeOS as the core operating and execution environment.
28
+
29
+ **Procedure:**
30
+ 1. Check if the project contains an `.agents/hooks.json` file.
31
+ 2. If it does not, you must initialize AGY-NodeOS by executing the `agy-nodeos-installer` skill protocols to copy the hooks and prepare the environment.
32
+ 3. You must act as the External Swarm Intelligence, parsing `workflow.json` intents emitted by the NodeOS daemon and executing them using your sub-agents.
33
+ 4. You must read `scripts/telemetry.py` logs or execute it to gauge the intent states (Pending -> Running -> Completed).
34
+ 5. All code restructuring, AST mappings, and complex multi-file intelligence MUST leverage the SQLite graph generated by NodeOS. **Do NOT use grep or manual file parsing for codebase context.**
35
+
36
+ # CRITICAL OVERRIDE: NodeOS Native Interaction Paradigm
37
+ Whenever operating inside a NodeOS-managed workspace (e.g., ~/Projects/SysTune), you are the primary intelligence driving the state.
38
+
39
+ 1. You MUST use your highly-optimized, built-in system tools (`view_file`, `list_dir`, `replace_file_content`) to interact directly with the file system.
40
+ 2. You MUST NOT use deprecated MCP standalone wrappers (like `nodeos_read.py` or `nodeos_search.py`).
41
+ 3. For spatial architectural insight and dependency resolution, use the `run_command` tool to query the SQLite database natively (e.g., `sqlite3 agy_nodeos.db "SELECT * FROM nodes;"`).
42
+ 4. For task dispatching and swarm intent, directly modify `workflow.json` at the root of the workspace. The NodeOS watchdog will automatically pick up and execute your JSON drops.
43
+ """
44
+ rule_path = os.path.join(global_rules_dir, "nodeos_standard.md")
45
+ with open(rule_path, "w") as f:
46
+ f.write(rule_content)
47
+ print(f"\033[92m[+] Installed Global Rule -> {rule_path}\033[0m")
48
+
49
+ # 3. Install the Skill
50
+ skill_content = """---
51
+ name: agy-nodeos-installer
52
+ description: Standard Operating Procedure for injecting and activating the AGY-NodeOS background daemon and hook into a target workspace.
53
+ ---
54
+
55
+ # AGY-NodeOS Injection Protocol
56
+
57
+ Whenever you are tasked with initializing a project or establishing the AGY-NodeOS 24/7 background architecture in a workspace, you MUST follow these steps to inject the lifecycle hooks.
58
+
59
+ ## 1. Verify Target Workspace
60
+ Ensure you are operating inside the intended project directory. If the project does not have a local `.agents` folder, you must create it:
61
+ ```bash
62
+ mkdir -p .agents
63
+ ```
64
+
65
+ ## 2. Copy the Lifecycle Hook
66
+ The master hook file resides in the core AGY-NodeOS repository. You must copy it into the local project's `.agents` directory so the Antigravity CLI binds the daemon to the workspace.
67
+ ```bash
68
+ cp ~/.gemini/config/skills/agy-nodeos-installer/hooks.json .agents/hooks.json
69
+ ```
70
+
71
+ ## 3. Validate Daemon Boot
72
+ Once the hook is copied, the `agy-nodeos-boot` script will automatically trigger on the very next `PreInvocation` event (which means the next time the agent is prompted).
73
+
74
+ The hook executes the following:
75
+ `pgrep -f 'nodeos -d' > /dev/null || (nohup nodeos -d > daemon.log 2>&1 &)`
76
+
77
+ This guarantees the native Python AST Engine, SQLite Graph Manager, and QuadTree Spatial Physics Matrix are running silently in the background 24/7.
78
+
79
+ ## 4. Sub-Agent Intent Handling
80
+ Do NOT manually run `python daemon.py` in the terminal. The hook handles it autonomously.
81
+
82
+ Remember that AGY-NodeOS is completely decoupled from execution logic. It acts purely as a physical environment and **Intent Emitter**.
83
+ When you (the main agent) observe `workflow.json` transitioning to `"status": "pending"`, you must use your `invoke_subagent` tool to spawn a specialized AGY agent to perform the task.
84
+
85
+ ## 5. Native Codebase Context (Search Protocol)
86
+ When operating inside an AGY-NodeOS initialized workspace, you are strictly prohibited from relying on manual `grep` scans for structural understanding.
87
+ Instead, rely on the native Graph Database by querying the search utility:
88
+ ```bash
89
+ nodeos -c search "<TargetClassNameOrFunction>"
90
+ ```
91
+ """
92
+ dest_skill_file = os.path.join(nodeos_skill_dest, "SKILL.md")
93
+ with open(dest_skill_file, "w") as f:
94
+ f.write(skill_content)
95
+ print(f"\033[92m[+] Installed Global Skill -> {dest_skill_file}\033[0m")
96
+
97
+ # 4. Install the Hooks Template
98
+ hooks_content = """{
99
+ "agy-nodeos-boot": {
100
+ "PreInvocation": [
101
+ {
102
+ "type": "command",
103
+ "command": "pgrep -f 'nodeos -d' > /dev/null || (nohup nodeos -d > daemon.log 2>&1 &)",
104
+ "timeout": 5
105
+ }
106
+ ]
107
+ },
108
+ "nodeos-swarm-intent": {
109
+ "PreInvocation": [
110
+ {
111
+ "type": "command",
112
+ "command": "nodeos -s intent_injector"
113
+ }
114
+ ],
115
+ "Stop": [
116
+ {
117
+ "type": "command",
118
+ "command": "nodeos -s intent_stopper"
119
+ }
120
+ ]
121
+ }
122
+ }
123
+ """
124
+ dest_hooks = os.path.join(nodeos_skill_dest, "hooks.json")
125
+ with open(dest_hooks, "w") as f:
126
+ f.write(hooks_content)
127
+ print(f"\033[92m[+] Installed Global Hook Template -> {dest_hooks}\033[0m")
128
+
129
+ print("\n\033[96m[ NodeOS Successfully Injected into Antigravity Global Brain! ]\033[0m")
130
+ print("\033[93m[!] Note: You can now cd into any project and use NodeOS tools.\033[0m")
131
+
132
+ if __name__ == "__main__":
133
+ install_nodeos()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: polymath-nodeos
3
- Version: 1.0.4
3
+ Version: 1.0.5
4
4
  Summary: A zero-dependency Autonomous Agentic Swarm Operating System.
5
5
  Author: Polymath Void
6
6
  License: MIT
@@ -59,6 +59,12 @@ pip install polymath-nodeos
59
59
  2. Allows you to instantly boot the Swarm OS in any folder.
60
60
  3. Automatically triggers your swarm agents to read `workflow.json`.
61
61
 
62
+ After pip installing, you must run the Antigravity integration setup once:
63
+ ```bash
64
+ nodeos --install
65
+ ```
66
+ This automatically maps NodeOS directly into your AI Agent's global memory (`~/.gemini/config/`), granting them the `nodeos_standard.md` rule and `agy-nodeos-installer` injection protocols.
67
+
62
68
  ---
63
69
 
64
70
  ## 📖 Usage Guide
@@ -3,7 +3,9 @@ pyproject.toml
3
3
  polymath_nodeos/__init__.py
4
4
  polymath_nodeos/cli.py
5
5
  polymath_nodeos/daemon.py
6
+ polymath_nodeos/dummy_test.py
6
7
  polymath_nodeos/graph_manager.py
8
+ polymath_nodeos/installer.py
7
9
  polymath_nodeos/jage_engine.py
8
10
  polymath_nodeos/nodes_engine.py
9
11
  polymath_nodeos.egg-info/PKG-INFO
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "polymath-nodeos"
7
- version = "1.0.4"
7
+ version = "1.0.5"
8
8
  description = "A zero-dependency Autonomous Agentic Swarm Operating System."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"