rmk 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.
Files changed (33) hide show
  1. {rmk-0.1.0 → rmk-0.1.1}/PKG-INFO +4 -2
  2. {rmk-0.1.0 → rmk-0.1.1}/pyproject.toml +6 -2
  3. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/__init__.py +1 -1
  4. {rmk-0.1.0 → rmk-0.1.1}/.gitignore +0 -0
  5. {rmk-0.1.0 → rmk-0.1.1}/README.md +0 -0
  6. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/action/__init__.py +0 -0
  7. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/action/tool_action.py +0 -0
  8. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/agents/__init__.py +0 -0
  9. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/agents/_base.py +0 -0
  10. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/agents/ask_agent.py +0 -0
  11. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/agents/root_monkey.py +0 -0
  12. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/agents/swe_agent.py +0 -0
  13. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/entrypoints/cli/main.py +0 -0
  14. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/llm/__init__.py +0 -0
  15. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/llm/providers/openai.py +0 -0
  16. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/memory/__init__.py +0 -0
  17. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/memory/memory.py +0 -0
  18. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/plan/__init__.py +0 -0
  19. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/plan/planning.py +0 -0
  20. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/tools/__init__.py +0 -0
  21. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/tools/_base.py +0 -0
  22. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/tools/code_interpreter.py +0 -0
  23. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/tools/human.py +0 -0
  24. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/tools/terminal_bash.py +0 -0
  25. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/tools/text_file_editor.py +0 -0
  26. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/tools/think.py +0 -0
  27. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/tools/tool_set.py +0 -0
  28. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/utils/__init__.py +0 -0
  29. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/utils/os_info.py +0 -0
  30. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/utils/pretty_console.py +0 -0
  31. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/utils/schema.py +0 -0
  32. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/utils/user_rules.py +0 -0
  33. {rmk-0.1.0 → rmk-0.1.1}/src/rmonkey/utils/util.py +0 -0
@@ -1,9 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rmk
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Root Monkey (rmk) is an autonomous AI Agent system.
5
+ Project-URL: Homepage, https://github.com/rootagent
6
+ Project-URL: Repository, https://github.com/rootagent/rmk
5
7
  Author-email: rootmq <mqvvang@gmail.com>
6
- Requires-Python: >=3.12
8
+ Requires-Python: >=3.10
7
9
  Requires-Dist: anthropic>=0.52.0
8
10
  Requires-Dist: dotenv>=0.9.9
9
11
  Requires-Dist: litellm>=1.72.0
@@ -1,12 +1,12 @@
1
1
  [project]
2
2
  name = "rmk"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "Root Monkey (rmk) is an autonomous AI Agent system."
5
5
  readme = "README.md"
6
6
  authors = [
7
7
  { name = "rootmq", email = "mqvvang@gmail.com" }
8
8
  ]
9
- requires-python = ">=3.12"
9
+ requires-python = ">=3.10"
10
10
  dependencies = [
11
11
  "anthropic>=0.52.0",
12
12
  "dotenv>=0.9.9",
@@ -16,6 +16,10 @@ dependencies = [
16
16
  "rich>=14.0.0",
17
17
  ]
18
18
 
19
+ [project.urls]
20
+ Homepage = "https://github.com/rootagent"
21
+ Repository = "https://github.com/rootagent/rmk"
22
+
19
23
  [project.scripts]
20
24
  rmk = "rmonkey.entrypoints.cli.main:main"
21
25
 
@@ -3,7 +3,7 @@ from rmonkey.agents import AskAgent, RootMonkey, SWEAgent
3
3
  from rmonkey.memory import Memory
4
4
  from rmonkey.utils.schema import Message, Role
5
5
 
6
- __version__ = "0.1.0.dev"
6
+ __version__ = "0.1.0"
7
7
 
8
8
  __all__ = [
9
9
  "Role",
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