hanuscode 1.0.0__tar.gz → 1.0.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.
- {hanuscode-1.0.0 → hanuscode-1.0.1}/PKG-INFO +6 -6
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanuscode.egg-info/PKG-INFO +6 -6
- {hanuscode-1.0.0 → hanuscode-1.0.1}/pyproject.toml +7 -7
- {hanuscode-1.0.0 → hanuscode-1.0.1}/setup.py +2 -2
- {hanuscode-1.0.0 → hanuscode-1.0.1}/MANIFEST.in +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/README.md +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/__main__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/action_handlers.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/action_parser.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/agent_runner.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/analysis/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/analysis/debt.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/analysis/dependencies.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/cache/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/cache/response_cache.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/config.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/connectors/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/connectors/base.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/connectors/claude_connector.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/connectors/gemini_connector.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/connectors/glm_connector.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/connectors/ollama_connector.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/connectors/openai_connector.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/connectors/registry.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/context/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/context/manager.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/context/selective.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/error_recovery/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/error_recovery/auto_fix.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/hooks/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/hooks/manager.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/instincts/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/instincts/cli.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/instincts/detector.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/instincts/evolver.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/instincts/manager.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/instincts/types.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/logger.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/memory/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/memory/manager.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/memory/types.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/monitor.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/parallel/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/parallel/executor.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/permissions.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plan/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plan/mode.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plan/models.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plugin_manager.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plugin_registry.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plugins/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plugins/arena.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plugins/code_review.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plugins/cortex.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plugins/deps_check.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plugins/git_ops.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plugins/metasploit.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plugins/notes.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plugins/search_code.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plugins/searchsploit.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plugins/strategist.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/plugins/webui.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/profiles.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/profiles_builtin/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/profiles_builtin/architect/profile.yaml +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/profiles_builtin/architect/system_prompt.txt +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/profiles_builtin/deep/profile.yaml +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/profiles_builtin/deep/system_prompt.txt +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/profiles_builtin/developer/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/profiles_builtin/developer/profile.yaml +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/profiles_builtin/developer/system_prompt.txt +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/profiles_builtin/speed/profile.yaml +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/profiles_builtin/speed/system_prompt.txt +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/project_tools.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/query_engine.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/rules/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/search/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/search/semantic.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/session_manager.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/skill_manager.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/skills/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/subagent/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/subagent/agents/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/subagent/manager.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/subagent/types.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/suggestions/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/suggestions/proactive.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/tasks/__init__.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/tasks/manager.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/tasks/models.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/terminal_prompt.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/tools.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanus/ui.py +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanuscode.egg-info/SOURCES.txt +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanuscode.egg-info/dependency_links.txt +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanuscode.egg-info/entry_points.txt +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanuscode.egg-info/requires.txt +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/hanuscode.egg-info/top_level.txt +0 -0
- {hanuscode-1.0.0 → hanuscode-1.0.1}/setup.cfg +0 -0
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hanuscode
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Agente de programación autónomo para la terminal — agnóstico de modelos IA
|
|
5
5
|
Author: CiTriX
|
|
6
|
-
Author-email: CiTriX <
|
|
6
|
+
Author-email: CiTriX <hanuscode@outlook.es>
|
|
7
7
|
License: MIT
|
|
8
|
-
Project-URL: Homepage, https://github.com/
|
|
9
|
-
Project-URL: Documentation, https://github.com/
|
|
10
|
-
Project-URL: Repository, https://github.com/
|
|
11
|
-
Project-URL: Issues, https://github.com/
|
|
8
|
+
Project-URL: Homepage, https://github.com/hanuscode/hanuscode
|
|
9
|
+
Project-URL: Documentation, https://github.com/hanuscode/hanuscode#readme
|
|
10
|
+
Project-URL: Repository, https://github.com/hanuscode/hanuscode
|
|
11
|
+
Project-URL: Issues, https://github.com/hanuscode/hanuscode/issues
|
|
12
12
|
Keywords: ai,agent,autonomous,coding,programming,llm,claude,openai,gemini,terminal,cli
|
|
13
13
|
Classifier: Development Status :: 4 - Beta
|
|
14
14
|
Classifier: Environment :: Console
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hanuscode
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Agente de programación autónomo para la terminal — agnóstico de modelos IA
|
|
5
5
|
Author: CiTriX
|
|
6
|
-
Author-email: CiTriX <
|
|
6
|
+
Author-email: CiTriX <hanuscode@outlook.es>
|
|
7
7
|
License: MIT
|
|
8
|
-
Project-URL: Homepage, https://github.com/
|
|
9
|
-
Project-URL: Documentation, https://github.com/
|
|
10
|
-
Project-URL: Repository, https://github.com/
|
|
11
|
-
Project-URL: Issues, https://github.com/
|
|
8
|
+
Project-URL: Homepage, https://github.com/hanuscode/hanuscode
|
|
9
|
+
Project-URL: Documentation, https://github.com/hanuscode/hanuscode#readme
|
|
10
|
+
Project-URL: Repository, https://github.com/hanuscode/hanuscode
|
|
11
|
+
Project-URL: Issues, https://github.com/hanuscode/hanuscode/issues
|
|
12
12
|
Keywords: ai,agent,autonomous,coding,programming,llm,claude,openai,gemini,terminal,cli
|
|
13
13
|
Classifier: Development Status :: 4 - Beta
|
|
14
14
|
Classifier: Environment :: Console
|
|
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "hanuscode"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.1"
|
|
8
8
|
description = "Agente de programación autónomo para la terminal — agnóstico de modelos IA"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
11
11
|
requires-python = ">=3.9"
|
|
12
12
|
authors = [
|
|
13
|
-
{name = "CiTriX", email = "
|
|
13
|
+
{name = "CiTriX", email = "hanuscode@outlook.es"}
|
|
14
14
|
]
|
|
15
15
|
keywords = [
|
|
16
16
|
"ai",
|
|
@@ -48,10 +48,10 @@ dependencies = [
|
|
|
48
48
|
]
|
|
49
49
|
|
|
50
50
|
[project.urls]
|
|
51
|
-
Homepage = "https://github.com/
|
|
52
|
-
Documentation = "https://github.com/
|
|
53
|
-
Repository = "https://github.com/
|
|
54
|
-
Issues = "https://github.com/
|
|
51
|
+
Homepage = "https://github.com/hanuscode/hanuscode"
|
|
52
|
+
Documentation = "https://github.com/hanuscode/hanuscode#readme"
|
|
53
|
+
Repository = "https://github.com/hanuscode/hanuscode"
|
|
54
|
+
Issues = "https://github.com/hanuscode/hanuscode/issues"
|
|
55
55
|
|
|
56
56
|
[project.optional-dependencies]
|
|
57
57
|
claude = ["anthropic>=0.25.0"]
|
|
@@ -88,4 +88,4 @@ packages = [
|
|
|
88
88
|
]
|
|
89
89
|
|
|
90
90
|
[tool.setuptools.package-data]
|
|
91
|
-
hanus = ["*.py", "plugins/*.py", "profiles_builtin/**/*.yaml", "profiles_builtin/**/*.txt", "profiles_builtin/**/*.md", "tasks/*.py", "connectors/*.py", "memory/*.py", "context/*.py", "plan/*.py", "subagent/*.py", "skills/*.md"]
|
|
91
|
+
hanus = ["*.py", "plugins/*.py", "profiles_builtin/**/*.yaml", "profiles_builtin/**/*.txt", "profiles_builtin/**/*.md", "tasks/*.py", "connectors/*.py", "memory/*.py", "context/*.py", "plan/*.py", "subagent/*.py", "skills/*.md"]
|
|
@@ -27,7 +27,7 @@ PACKAGES = [
|
|
|
27
27
|
|
|
28
28
|
setup(
|
|
29
29
|
name="hanuscode",
|
|
30
|
-
version="1.0.
|
|
30
|
+
version="1.0.1",
|
|
31
31
|
description="Agente de programación autónomo para la terminal — agnóstico de modelos IA",
|
|
32
32
|
author="CiTriX",
|
|
33
33
|
python_requires=">=3.9",
|
|
@@ -65,4 +65,4 @@ setup(
|
|
|
65
65
|
"hanuscode=hanus.agent_runner:cli_main",
|
|
66
66
|
],
|
|
67
67
|
},
|
|
68
|
-
)
|
|
68
|
+
)
|
|
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
|
|
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
|
|
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
|