opencommand 0.1.0__tar.gz → 0.1.1__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.
- {opencommand-0.1.0 → opencommand-0.1.1}/PKG-INFO +2 -1
- {opencommand-0.1.0 → opencommand-0.1.1}/pyproject.toml +2 -1
- {opencommand-0.1.0 → opencommand-0.1.1}/README.md +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/__init__.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/cli.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/core/agent.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/core/config.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/core/errors.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/core/logging.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/core/supervisor.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/core/tools.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/engine/__init__.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/engine/runner.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/knowledge.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/memory/MEMORY.md +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/skills/bash.md +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/skills/powershell.md +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/skills/python.md +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/skills/system.md +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/system/automatic.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/system/cron.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/system/notify.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/system/platform.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/templates.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/tools/desktop.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/tools/files.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/tools/instructions.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/tools/memory.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/tools/playwright.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/tools/research.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/tools/system.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/modules/tools/terminal.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/providers/provider.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/swarm/agents/commander.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/swarm/agents/worker.py +0 -0
- {opencommand-0.1.0 → opencommand-0.1.1}/src/opencommand/tui/dashboard.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: opencommand
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Local-first swarm agent framework: a Commander plans and dispatches a swarm of Workers that research, code, test, and interactively drive the computer to complete long-horizon codebase goals.
|
|
5
5
|
Author: DSiENT
|
|
6
6
|
Author-email: DSiENT <w.caskey7@gmail.com>
|
|
@@ -13,6 +13,7 @@ Requires-Dist: requests>=2.34.2
|
|
|
13
13
|
Requires-Dist: mss>=9.0.0
|
|
14
14
|
Requires-Dist: pillow>=11.0.0
|
|
15
15
|
Requires-Dist: llama-cpp-python>=0.3.33
|
|
16
|
+
Requires-Dist: huggingface-hub>=0.30.0
|
|
16
17
|
Requires-Dist: watchdog>=6.0.0
|
|
17
18
|
Requires-Dist: ntfy>=2.7.1
|
|
18
19
|
Requires-Python: >=3.14
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "opencommand"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
description = "Local-first swarm agent framework: a Commander plans and dispatches a swarm of Workers that research, code, test, and interactively drive the computer to complete long-horizon codebase goals."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -17,6 +17,7 @@ dependencies = [
|
|
|
17
17
|
"mss>=9.0.0",
|
|
18
18
|
"pillow>=11.0.0",
|
|
19
19
|
"llama-cpp-python>=0.3.33",
|
|
20
|
+
"huggingface_hub>=0.30.0",
|
|
20
21
|
"watchdog>=6.0.0",
|
|
21
22
|
"ntfy>=2.7.1",
|
|
22
23
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|