acra-cli 0.1.1__tar.gz → 0.1.2__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.
- {acra_cli-0.1.1/acra_cli.egg-info → acra_cli-0.1.2}/PKG-INFO +31 -25
- {acra_cli-0.1.1 → acra_cli-0.1.2}/README.md +30 -24
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/__init__.py +1 -1
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/ui/banner.py +1 -1
- {acra_cli-0.1.1 → acra_cli-0.1.2/acra_cli.egg-info}/PKG-INFO +31 -25
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra_cli.egg-info/SOURCES.txt +1 -0
- acra_cli-0.1.2/acra_cli.egg-info/entry_points.txt +2 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/pyproject.toml +4 -1
- {acra_cli-0.1.1 → acra_cli-0.1.2}/LICENSE +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/MANIFEST.in +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/__main__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/__pycache__/__init__.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/__pycache__/llm.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/__pycache__/llm_utils.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/coder/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/coder/__pycache__/__init__.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/coder/__pycache__/coder_agent.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/coder/__pycache__/coder_chain.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/coder/coder_agent.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/coder/coder_chain.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/critic/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/critic/__pycache__/__init__.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/critic/__pycache__/critic_agent.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/critic/__pycache__/critic_chain.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/critic/critic_agent.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/critic/critic_chain.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/executor/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/executor/__pycache__/__init__.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/executor/__pycache__/docker_runner.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/executor/__pycache__/executor_agent.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/executor/__pycache__/sandbox_runner.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/executor/docker_runner.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/executor/executor_agent.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/executor/sandbox_runner.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/human/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/human/__pycache__/__init__.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/human/__pycache__/human_node.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/human/human_node.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/llm.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/llm_utils.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/memory/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/memory/__pycache__/__init__.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/memory/__pycache__/memory_agent.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/memory/__pycache__/memory_manager.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/memory/__pycache__/retrieval.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/memory/memory_agent.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/memory/memory_manager.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/memory/retrieval.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/planner/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/planner/__pycache__/__init__.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/planner/__pycache__/planner_agent.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/planner/__pycache__/planner_chain.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/planner/planner_agent.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/planner/planner_chain.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/researcher/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/researcher/__pycache__/__init__.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/researcher/__pycache__/researcher_agent.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/researcher/__pycache__/researcher_chain.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/researcher/researcher_agent.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/researcher/researcher_chain.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/brain/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/brain/model_registry.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/brain/provider_manager.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/cli.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/commands/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/commands/ask.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/commands/brain.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/commands/config.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/commands/context.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/commands/graph.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/commands/keys.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/commands/logs.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/commands/memory.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/commands/plugin.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/commands/research.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/commands/serve.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/commands/session.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/commands/utils.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/config/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/config/__pycache__/__init__.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/config/__pycache__/defaults.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/config/__pycache__/profile_manager.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/config/defaults.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/config/profile_manager.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/execution/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/execution/logs/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/execution/logs/error_logs/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/execution/logs/execution_logs/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/execution/sandbox/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/execution/sandbox/docker_executor.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/execution/sandbox/isolated_runner.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/execution/sandbox/sandbox_manager.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/graph/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/graph/checkpoint.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/graph/conditional_edges.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/graph/edges.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/graph/graph_visualizer.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/graph/nodes.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/graph/router.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/graph/state.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/graph/workflow.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/memory/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/memory/checkpoints/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/memory/checkpoints/data/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/memory/checkpoints/postgres_checkpoint.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/memory/checkpoints/sqlite_checkpoint.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/memory/chroma_db/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/memory/conversation_memory/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/memory/conversation_memory/long_term.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/memory/conversation_memory/short_term.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/memory/storage/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/memory/vector_store/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/memory/vector_store/chroma_store.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/memory/vector_store/embeddings.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/observability/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/observability/langsmith_tracing.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/observability/metrics.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/observability/monitoring.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/observability/token_tracking.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/prompts/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/schemas/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/schemas/__pycache__/__init__.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/schemas/__pycache__/coder_schema.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/schemas/__pycache__/critic_schema.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/schemas/__pycache__/execution_schema.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/schemas/__pycache__/planner_schema.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/schemas/__pycache__/researcher_schema.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/schemas/__pycache__/shared_schema.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/schemas/coder_schema.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/schemas/critic_schema.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/schemas/execution_schema.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/schemas/planner_schema.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/schemas/researcher_schema.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/schemas/shared_schema.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/code_tools/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/code_tools/file_reader.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/code_tools/file_writer.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/code_tools/python_repl.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/code_tools/terminal_runner.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/github_tools/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/github_tools/commit_generator.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/github_tools/github_search.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/github_tools/repo_analyzer.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/integration_test_helper.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/validation_tools/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/validation_tools/dependency_checker.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/validation_tools/environment_config_validator.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/validation_tools/http_validator.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/validation_tools/response_validator.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/validation_tools/security_checker.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/validation_tools/syntax_checker.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/validation_tools/web_framework_validator.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/web_tools/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/web_tools/arxiv_search.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/web_tools/serpapi_search.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/web_tools/tavily_search.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/ui/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/ui/__pycache__/__init__.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/ui/__pycache__/banner.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/ui/__pycache__/components.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/ui/__pycache__/shell.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/ui/__pycache__/theme.cpython-312.pyc +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/ui/components.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/ui/shell.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/ui/theme.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/utils/__init__.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/utils/context_manager.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/utils/keyring_manager.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/utils/output_formatter.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra/utils/session_manager.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra_cli.egg-info/dependency_links.txt +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra_cli.egg-info/requires.txt +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/acra_cli.egg-info/top_level.txt +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/requirements.txt +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/setup.cfg +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/setup.py +0 -0
- {acra_cli-0.1.1 → acra_cli-0.1.2}/tests/test_cli.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: acra-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Agentic CLI for LLM task execution, research, and workflow automation.
|
|
5
5
|
Author: Raj Tembe
|
|
6
6
|
License: GNU Affero General Public License v3
|
|
@@ -54,17 +54,21 @@ Requires-Dist: pytest>=8.0.0; extra == "test"
|
|
|
54
54
|
Dynamic: license-file
|
|
55
55
|
Dynamic: requires-python
|
|
56
56
|
|
|
57
|
-
# acra
|
|
57
|
+
# acra-cli
|
|
58
58
|
|
|
59
59
|
Agentic CLI for LLM-powered research, task execution, code generation, workflow automation, memory, and sandboxed validation.
|
|
60
60
|
|
|
61
|
-
`acra` is an installable Python package that provides the `acra` command-line tool and a reusable LangGraph-based agent workflow.
|
|
61
|
+
`acra-cli` is an installable Python package that provides the `acra` command-line tool and a reusable LangGraph-based agent workflow. Install the package as `acra-cli`, run it from the terminal as `acra`, and import the Python package as `acra`.
|
|
62
|
+
|
|
63
|
+
It is built for developers who want a local CLI for asking an LLM-powered agent to research, plan, generate code, validate generated projects, and keep workflow context across runs.
|
|
62
64
|
|
|
63
65
|
> Status: beta. The package is usable, but some CLI command groups are still scaffolds. The most complete surfaces today are installation, provider configuration, profile setup, key management, the interactive shell, research workflows, and Python-level workflow APIs.
|
|
64
66
|
|
|
65
67
|
## Highlights
|
|
66
68
|
|
|
67
|
-
- Installable
|
|
69
|
+
- Installable PyPI package: `acra-cli`
|
|
70
|
+
- Console command: `acra`
|
|
71
|
+
- Python import package: `acra`
|
|
68
72
|
- Interactive CLI shell powered by Typer, Rich, and prompt-toolkit
|
|
69
73
|
- LangGraph workflow with planner, researcher, coder, executor, critic, memory, and human nodes
|
|
70
74
|
- Provider support for Gemini, OpenAI, Groq, Ollama, and HuggingFace
|
|
@@ -86,29 +90,29 @@ Agentic CLI for LLM-powered research, task execution, code generation, workflow
|
|
|
86
90
|
Install the base package:
|
|
87
91
|
|
|
88
92
|
```bash
|
|
89
|
-
pip install acra
|
|
93
|
+
pip install acra-cli
|
|
90
94
|
```
|
|
91
95
|
|
|
92
96
|
Install provider-specific extras as needed:
|
|
93
97
|
|
|
94
98
|
```bash
|
|
95
|
-
pip install "acra[openai]"
|
|
96
|
-
pip install "acra[groq]"
|
|
97
|
-
pip install "acra[ollama]"
|
|
98
|
-
pip install "acra[huggingface]"
|
|
99
|
+
pip install "acra-cli[openai]"
|
|
100
|
+
pip install "acra-cli[groq]"
|
|
101
|
+
pip install "acra-cli[ollama]"
|
|
102
|
+
pip install "acra-cli[huggingface]"
|
|
99
103
|
```
|
|
100
104
|
|
|
101
105
|
Install checkpointing extras:
|
|
102
106
|
|
|
103
107
|
```bash
|
|
104
|
-
pip install "acra[sqlite]"
|
|
105
|
-
pip install "acra[postgres]"
|
|
108
|
+
pip install "acra-cli[sqlite]"
|
|
109
|
+
pip install "acra-cli[postgres]"
|
|
106
110
|
```
|
|
107
111
|
|
|
108
112
|
Install multiple extras together:
|
|
109
113
|
|
|
110
114
|
```bash
|
|
111
|
-
pip install "acra[openai,groq,sqlite]"
|
|
115
|
+
pip install "acra-cli[openai,groq,sqlite]"
|
|
112
116
|
```
|
|
113
117
|
|
|
114
118
|
After installation, run:
|
|
@@ -202,7 +206,7 @@ export GOOGLE_GEMINI_API_KEY="your-key"
|
|
|
202
206
|
### OpenAI
|
|
203
207
|
|
|
204
208
|
```bash
|
|
205
|
-
pip install "acra[openai]"
|
|
209
|
+
pip install "acra-cli[openai]"
|
|
206
210
|
|
|
207
211
|
export LLM_PROVIDER=openai
|
|
208
212
|
export OPENAI_MODEL=gpt-4o-mini
|
|
@@ -212,7 +216,7 @@ export OPENAI_API_KEY="your-key"
|
|
|
212
216
|
### Groq
|
|
213
217
|
|
|
214
218
|
```bash
|
|
215
|
-
pip install "acra[groq]"
|
|
219
|
+
pip install "acra-cli[groq]"
|
|
216
220
|
|
|
217
221
|
export LLM_PROVIDER=groq
|
|
218
222
|
export GROQ_MODEL=llama-3.3-70b-versatile
|
|
@@ -222,7 +226,7 @@ export GROQ_API_KEY="your-key"
|
|
|
222
226
|
### Ollama
|
|
223
227
|
|
|
224
228
|
```bash
|
|
225
|
-
pip install "acra[ollama]"
|
|
229
|
+
pip install "acra-cli[ollama]"
|
|
226
230
|
|
|
227
231
|
export LLM_PROVIDER=ollama
|
|
228
232
|
export OLLAMA_MODEL=mistral
|
|
@@ -238,7 +242,7 @@ ollama serve
|
|
|
238
242
|
### HuggingFace Cloud
|
|
239
243
|
|
|
240
244
|
```bash
|
|
241
|
-
pip install "acra[huggingface]"
|
|
245
|
+
pip install "acra-cli[huggingface]"
|
|
242
246
|
|
|
243
247
|
export LLM_PROVIDER=huggingface_cloud
|
|
244
248
|
export HF_MODEL=mistralai/Mistral-7B-Instruct-v0.1
|
|
@@ -248,7 +252,7 @@ export HF_API_KEY="your-token"
|
|
|
248
252
|
### HuggingFace Local
|
|
249
253
|
|
|
250
254
|
```bash
|
|
251
|
-
pip install "acra[huggingface]"
|
|
255
|
+
pip install "acra-cli[huggingface]"
|
|
252
256
|
|
|
253
257
|
export LLM_PROVIDER=huggingface_local
|
|
254
258
|
export HF_MODEL=mistralai/Mistral-7B-Instruct-v0.1
|
|
@@ -551,7 +555,7 @@ Important subdirectories:
|
|
|
551
555
|
|
|
552
556
|
## Current Beta Notes
|
|
553
557
|
|
|
554
|
-
- The package version is `0.1.
|
|
558
|
+
- The package version is `0.1.2`.
|
|
555
559
|
- The top-level CLI currently attaches `serve`, `config`, `keys`, `research`, `memory`, `session`, `graph`, and `workspace`.
|
|
556
560
|
- The codebase contains additional command modules such as `brain`, `context`, `logs`, and `plugin`, but they are not currently attached to the top-level CLI.
|
|
557
561
|
- Some CLI command groups return placeholder output while the Python modules behind them continue to evolve.
|
|
@@ -563,10 +567,10 @@ Important subdirectories:
|
|
|
563
567
|
Install the matching extra:
|
|
564
568
|
|
|
565
569
|
```bash
|
|
566
|
-
pip install "acra[openai]"
|
|
567
|
-
pip install "acra[groq]"
|
|
568
|
-
pip install "acra[ollama]"
|
|
569
|
-
pip install "acra[huggingface]"
|
|
570
|
+
pip install "acra-cli[openai]"
|
|
571
|
+
pip install "acra-cli[groq]"
|
|
572
|
+
pip install "acra-cli[ollama]"
|
|
573
|
+
pip install "acra-cli[huggingface]"
|
|
570
574
|
```
|
|
571
575
|
|
|
572
576
|
### Missing API key
|
|
@@ -605,12 +609,14 @@ export OLLAMA_BASE_URL=http://localhost:11434
|
|
|
605
609
|
|
|
606
610
|
## License
|
|
607
611
|
|
|
608
|
-
`acra` is licensed under the GNU Affero General Public License v3.
|
|
612
|
+
`acra-cli` is licensed under the GNU Affero General Public License v3.
|
|
609
613
|
|
|
610
614
|
## Package Metadata
|
|
611
615
|
|
|
612
|
-
-
|
|
613
|
-
-
|
|
616
|
+
- PyPI package name: `acra-cli`
|
|
617
|
+
- Console command: `acra`
|
|
618
|
+
- Python import package: `acra`
|
|
619
|
+
- Version: `0.1.2`
|
|
614
620
|
- Python: `>=3.11`
|
|
615
621
|
- Console script: `acra=acra.cli:app_main`
|
|
616
622
|
- Author: Raj Tembe
|
|
@@ -1,14 +1,18 @@
|
|
|
1
|
-
# acra
|
|
1
|
+
# acra-cli
|
|
2
2
|
|
|
3
3
|
Agentic CLI for LLM-powered research, task execution, code generation, workflow automation, memory, and sandboxed validation.
|
|
4
4
|
|
|
5
|
-
`acra` is an installable Python package that provides the `acra` command-line tool and a reusable LangGraph-based agent workflow.
|
|
5
|
+
`acra-cli` is an installable Python package that provides the `acra` command-line tool and a reusable LangGraph-based agent workflow. Install the package as `acra-cli`, run it from the terminal as `acra`, and import the Python package as `acra`.
|
|
6
|
+
|
|
7
|
+
It is built for developers who want a local CLI for asking an LLM-powered agent to research, plan, generate code, validate generated projects, and keep workflow context across runs.
|
|
6
8
|
|
|
7
9
|
> Status: beta. The package is usable, but some CLI command groups are still scaffolds. The most complete surfaces today are installation, provider configuration, profile setup, key management, the interactive shell, research workflows, and Python-level workflow APIs.
|
|
8
10
|
|
|
9
11
|
## Highlights
|
|
10
12
|
|
|
11
|
-
- Installable
|
|
13
|
+
- Installable PyPI package: `acra-cli`
|
|
14
|
+
- Console command: `acra`
|
|
15
|
+
- Python import package: `acra`
|
|
12
16
|
- Interactive CLI shell powered by Typer, Rich, and prompt-toolkit
|
|
13
17
|
- LangGraph workflow with planner, researcher, coder, executor, critic, memory, and human nodes
|
|
14
18
|
- Provider support for Gemini, OpenAI, Groq, Ollama, and HuggingFace
|
|
@@ -30,29 +34,29 @@ Agentic CLI for LLM-powered research, task execution, code generation, workflow
|
|
|
30
34
|
Install the base package:
|
|
31
35
|
|
|
32
36
|
```bash
|
|
33
|
-
pip install acra
|
|
37
|
+
pip install acra-cli
|
|
34
38
|
```
|
|
35
39
|
|
|
36
40
|
Install provider-specific extras as needed:
|
|
37
41
|
|
|
38
42
|
```bash
|
|
39
|
-
pip install "acra[openai]"
|
|
40
|
-
pip install "acra[groq]"
|
|
41
|
-
pip install "acra[ollama]"
|
|
42
|
-
pip install "acra[huggingface]"
|
|
43
|
+
pip install "acra-cli[openai]"
|
|
44
|
+
pip install "acra-cli[groq]"
|
|
45
|
+
pip install "acra-cli[ollama]"
|
|
46
|
+
pip install "acra-cli[huggingface]"
|
|
43
47
|
```
|
|
44
48
|
|
|
45
49
|
Install checkpointing extras:
|
|
46
50
|
|
|
47
51
|
```bash
|
|
48
|
-
pip install "acra[sqlite]"
|
|
49
|
-
pip install "acra[postgres]"
|
|
52
|
+
pip install "acra-cli[sqlite]"
|
|
53
|
+
pip install "acra-cli[postgres]"
|
|
50
54
|
```
|
|
51
55
|
|
|
52
56
|
Install multiple extras together:
|
|
53
57
|
|
|
54
58
|
```bash
|
|
55
|
-
pip install "acra[openai,groq,sqlite]"
|
|
59
|
+
pip install "acra-cli[openai,groq,sqlite]"
|
|
56
60
|
```
|
|
57
61
|
|
|
58
62
|
After installation, run:
|
|
@@ -146,7 +150,7 @@ export GOOGLE_GEMINI_API_KEY="your-key"
|
|
|
146
150
|
### OpenAI
|
|
147
151
|
|
|
148
152
|
```bash
|
|
149
|
-
pip install "acra[openai]"
|
|
153
|
+
pip install "acra-cli[openai]"
|
|
150
154
|
|
|
151
155
|
export LLM_PROVIDER=openai
|
|
152
156
|
export OPENAI_MODEL=gpt-4o-mini
|
|
@@ -156,7 +160,7 @@ export OPENAI_API_KEY="your-key"
|
|
|
156
160
|
### Groq
|
|
157
161
|
|
|
158
162
|
```bash
|
|
159
|
-
pip install "acra[groq]"
|
|
163
|
+
pip install "acra-cli[groq]"
|
|
160
164
|
|
|
161
165
|
export LLM_PROVIDER=groq
|
|
162
166
|
export GROQ_MODEL=llama-3.3-70b-versatile
|
|
@@ -166,7 +170,7 @@ export GROQ_API_KEY="your-key"
|
|
|
166
170
|
### Ollama
|
|
167
171
|
|
|
168
172
|
```bash
|
|
169
|
-
pip install "acra[ollama]"
|
|
173
|
+
pip install "acra-cli[ollama]"
|
|
170
174
|
|
|
171
175
|
export LLM_PROVIDER=ollama
|
|
172
176
|
export OLLAMA_MODEL=mistral
|
|
@@ -182,7 +186,7 @@ ollama serve
|
|
|
182
186
|
### HuggingFace Cloud
|
|
183
187
|
|
|
184
188
|
```bash
|
|
185
|
-
pip install "acra[huggingface]"
|
|
189
|
+
pip install "acra-cli[huggingface]"
|
|
186
190
|
|
|
187
191
|
export LLM_PROVIDER=huggingface_cloud
|
|
188
192
|
export HF_MODEL=mistralai/Mistral-7B-Instruct-v0.1
|
|
@@ -192,7 +196,7 @@ export HF_API_KEY="your-token"
|
|
|
192
196
|
### HuggingFace Local
|
|
193
197
|
|
|
194
198
|
```bash
|
|
195
|
-
pip install "acra[huggingface]"
|
|
199
|
+
pip install "acra-cli[huggingface]"
|
|
196
200
|
|
|
197
201
|
export LLM_PROVIDER=huggingface_local
|
|
198
202
|
export HF_MODEL=mistralai/Mistral-7B-Instruct-v0.1
|
|
@@ -495,7 +499,7 @@ Important subdirectories:
|
|
|
495
499
|
|
|
496
500
|
## Current Beta Notes
|
|
497
501
|
|
|
498
|
-
- The package version is `0.1.
|
|
502
|
+
- The package version is `0.1.2`.
|
|
499
503
|
- The top-level CLI currently attaches `serve`, `config`, `keys`, `research`, `memory`, `session`, `graph`, and `workspace`.
|
|
500
504
|
- The codebase contains additional command modules such as `brain`, `context`, `logs`, and `plugin`, but they are not currently attached to the top-level CLI.
|
|
501
505
|
- Some CLI command groups return placeholder output while the Python modules behind them continue to evolve.
|
|
@@ -507,10 +511,10 @@ Important subdirectories:
|
|
|
507
511
|
Install the matching extra:
|
|
508
512
|
|
|
509
513
|
```bash
|
|
510
|
-
pip install "acra[openai]"
|
|
511
|
-
pip install "acra[groq]"
|
|
512
|
-
pip install "acra[ollama]"
|
|
513
|
-
pip install "acra[huggingface]"
|
|
514
|
+
pip install "acra-cli[openai]"
|
|
515
|
+
pip install "acra-cli[groq]"
|
|
516
|
+
pip install "acra-cli[ollama]"
|
|
517
|
+
pip install "acra-cli[huggingface]"
|
|
514
518
|
```
|
|
515
519
|
|
|
516
520
|
### Missing API key
|
|
@@ -549,12 +553,14 @@ export OLLAMA_BASE_URL=http://localhost:11434
|
|
|
549
553
|
|
|
550
554
|
## License
|
|
551
555
|
|
|
552
|
-
`acra` is licensed under the GNU Affero General Public License v3.
|
|
556
|
+
`acra-cli` is licensed under the GNU Affero General Public License v3.
|
|
553
557
|
|
|
554
558
|
## Package Metadata
|
|
555
559
|
|
|
556
|
-
-
|
|
557
|
-
-
|
|
560
|
+
- PyPI package name: `acra-cli`
|
|
561
|
+
- Console command: `acra`
|
|
562
|
+
- Python import package: `acra`
|
|
563
|
+
- Version: `0.1.2`
|
|
558
564
|
- Python: `>=3.11`
|
|
559
565
|
- Console script: `acra=acra.cli:app_main`
|
|
560
566
|
- Author: Raj Tembe
|
|
@@ -18,7 +18,7 @@ WELCOME_TEXT = "acra: agentic CLI for LLM task workflows"
|
|
|
18
18
|
def render_banner(provider: str, model: str, profile: str, workspace: str, theme: dict) -> Panel:
|
|
19
19
|
console = Console()
|
|
20
20
|
lines = [
|
|
21
|
-
f"[bold {theme['accent']}]acra v0.1.
|
|
21
|
+
f"[bold {theme['accent']}]acra v0.1.2[/bold {theme['accent']}]",
|
|
22
22
|
f"Provider: {provider} · Model: {model}",
|
|
23
23
|
f"Profile: {profile} · Workspace: {workspace}",
|
|
24
24
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: acra-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Agentic CLI for LLM task execution, research, and workflow automation.
|
|
5
5
|
Author: Raj Tembe
|
|
6
6
|
License: GNU Affero General Public License v3
|
|
@@ -54,17 +54,21 @@ Requires-Dist: pytest>=8.0.0; extra == "test"
|
|
|
54
54
|
Dynamic: license-file
|
|
55
55
|
Dynamic: requires-python
|
|
56
56
|
|
|
57
|
-
# acra
|
|
57
|
+
# acra-cli
|
|
58
58
|
|
|
59
59
|
Agentic CLI for LLM-powered research, task execution, code generation, workflow automation, memory, and sandboxed validation.
|
|
60
60
|
|
|
61
|
-
`acra` is an installable Python package that provides the `acra` command-line tool and a reusable LangGraph-based agent workflow.
|
|
61
|
+
`acra-cli` is an installable Python package that provides the `acra` command-line tool and a reusable LangGraph-based agent workflow. Install the package as `acra-cli`, run it from the terminal as `acra`, and import the Python package as `acra`.
|
|
62
|
+
|
|
63
|
+
It is built for developers who want a local CLI for asking an LLM-powered agent to research, plan, generate code, validate generated projects, and keep workflow context across runs.
|
|
62
64
|
|
|
63
65
|
> Status: beta. The package is usable, but some CLI command groups are still scaffolds. The most complete surfaces today are installation, provider configuration, profile setup, key management, the interactive shell, research workflows, and Python-level workflow APIs.
|
|
64
66
|
|
|
65
67
|
## Highlights
|
|
66
68
|
|
|
67
|
-
- Installable
|
|
69
|
+
- Installable PyPI package: `acra-cli`
|
|
70
|
+
- Console command: `acra`
|
|
71
|
+
- Python import package: `acra`
|
|
68
72
|
- Interactive CLI shell powered by Typer, Rich, and prompt-toolkit
|
|
69
73
|
- LangGraph workflow with planner, researcher, coder, executor, critic, memory, and human nodes
|
|
70
74
|
- Provider support for Gemini, OpenAI, Groq, Ollama, and HuggingFace
|
|
@@ -86,29 +90,29 @@ Agentic CLI for LLM-powered research, task execution, code generation, workflow
|
|
|
86
90
|
Install the base package:
|
|
87
91
|
|
|
88
92
|
```bash
|
|
89
|
-
pip install acra
|
|
93
|
+
pip install acra-cli
|
|
90
94
|
```
|
|
91
95
|
|
|
92
96
|
Install provider-specific extras as needed:
|
|
93
97
|
|
|
94
98
|
```bash
|
|
95
|
-
pip install "acra[openai]"
|
|
96
|
-
pip install "acra[groq]"
|
|
97
|
-
pip install "acra[ollama]"
|
|
98
|
-
pip install "acra[huggingface]"
|
|
99
|
+
pip install "acra-cli[openai]"
|
|
100
|
+
pip install "acra-cli[groq]"
|
|
101
|
+
pip install "acra-cli[ollama]"
|
|
102
|
+
pip install "acra-cli[huggingface]"
|
|
99
103
|
```
|
|
100
104
|
|
|
101
105
|
Install checkpointing extras:
|
|
102
106
|
|
|
103
107
|
```bash
|
|
104
|
-
pip install "acra[sqlite]"
|
|
105
|
-
pip install "acra[postgres]"
|
|
108
|
+
pip install "acra-cli[sqlite]"
|
|
109
|
+
pip install "acra-cli[postgres]"
|
|
106
110
|
```
|
|
107
111
|
|
|
108
112
|
Install multiple extras together:
|
|
109
113
|
|
|
110
114
|
```bash
|
|
111
|
-
pip install "acra[openai,groq,sqlite]"
|
|
115
|
+
pip install "acra-cli[openai,groq,sqlite]"
|
|
112
116
|
```
|
|
113
117
|
|
|
114
118
|
After installation, run:
|
|
@@ -202,7 +206,7 @@ export GOOGLE_GEMINI_API_KEY="your-key"
|
|
|
202
206
|
### OpenAI
|
|
203
207
|
|
|
204
208
|
```bash
|
|
205
|
-
pip install "acra[openai]"
|
|
209
|
+
pip install "acra-cli[openai]"
|
|
206
210
|
|
|
207
211
|
export LLM_PROVIDER=openai
|
|
208
212
|
export OPENAI_MODEL=gpt-4o-mini
|
|
@@ -212,7 +216,7 @@ export OPENAI_API_KEY="your-key"
|
|
|
212
216
|
### Groq
|
|
213
217
|
|
|
214
218
|
```bash
|
|
215
|
-
pip install "acra[groq]"
|
|
219
|
+
pip install "acra-cli[groq]"
|
|
216
220
|
|
|
217
221
|
export LLM_PROVIDER=groq
|
|
218
222
|
export GROQ_MODEL=llama-3.3-70b-versatile
|
|
@@ -222,7 +226,7 @@ export GROQ_API_KEY="your-key"
|
|
|
222
226
|
### Ollama
|
|
223
227
|
|
|
224
228
|
```bash
|
|
225
|
-
pip install "acra[ollama]"
|
|
229
|
+
pip install "acra-cli[ollama]"
|
|
226
230
|
|
|
227
231
|
export LLM_PROVIDER=ollama
|
|
228
232
|
export OLLAMA_MODEL=mistral
|
|
@@ -238,7 +242,7 @@ ollama serve
|
|
|
238
242
|
### HuggingFace Cloud
|
|
239
243
|
|
|
240
244
|
```bash
|
|
241
|
-
pip install "acra[huggingface]"
|
|
245
|
+
pip install "acra-cli[huggingface]"
|
|
242
246
|
|
|
243
247
|
export LLM_PROVIDER=huggingface_cloud
|
|
244
248
|
export HF_MODEL=mistralai/Mistral-7B-Instruct-v0.1
|
|
@@ -248,7 +252,7 @@ export HF_API_KEY="your-token"
|
|
|
248
252
|
### HuggingFace Local
|
|
249
253
|
|
|
250
254
|
```bash
|
|
251
|
-
pip install "acra[huggingface]"
|
|
255
|
+
pip install "acra-cli[huggingface]"
|
|
252
256
|
|
|
253
257
|
export LLM_PROVIDER=huggingface_local
|
|
254
258
|
export HF_MODEL=mistralai/Mistral-7B-Instruct-v0.1
|
|
@@ -551,7 +555,7 @@ Important subdirectories:
|
|
|
551
555
|
|
|
552
556
|
## Current Beta Notes
|
|
553
557
|
|
|
554
|
-
- The package version is `0.1.
|
|
558
|
+
- The package version is `0.1.2`.
|
|
555
559
|
- The top-level CLI currently attaches `serve`, `config`, `keys`, `research`, `memory`, `session`, `graph`, and `workspace`.
|
|
556
560
|
- The codebase contains additional command modules such as `brain`, `context`, `logs`, and `plugin`, but they are not currently attached to the top-level CLI.
|
|
557
561
|
- Some CLI command groups return placeholder output while the Python modules behind them continue to evolve.
|
|
@@ -563,10 +567,10 @@ Important subdirectories:
|
|
|
563
567
|
Install the matching extra:
|
|
564
568
|
|
|
565
569
|
```bash
|
|
566
|
-
pip install "acra[openai]"
|
|
567
|
-
pip install "acra[groq]"
|
|
568
|
-
pip install "acra[ollama]"
|
|
569
|
-
pip install "acra[huggingface]"
|
|
570
|
+
pip install "acra-cli[openai]"
|
|
571
|
+
pip install "acra-cli[groq]"
|
|
572
|
+
pip install "acra-cli[ollama]"
|
|
573
|
+
pip install "acra-cli[huggingface]"
|
|
570
574
|
```
|
|
571
575
|
|
|
572
576
|
### Missing API key
|
|
@@ -605,12 +609,14 @@ export OLLAMA_BASE_URL=http://localhost:11434
|
|
|
605
609
|
|
|
606
610
|
## License
|
|
607
611
|
|
|
608
|
-
`acra` is licensed under the GNU Affero General Public License v3.
|
|
612
|
+
`acra-cli` is licensed under the GNU Affero General Public License v3.
|
|
609
613
|
|
|
610
614
|
## Package Metadata
|
|
611
615
|
|
|
612
|
-
-
|
|
613
|
-
-
|
|
616
|
+
- PyPI package name: `acra-cli`
|
|
617
|
+
- Console command: `acra`
|
|
618
|
+
- Python import package: `acra`
|
|
619
|
+
- Version: `0.1.2`
|
|
614
620
|
- Python: `>=3.11`
|
|
615
621
|
- Console script: `acra=acra.cli:app_main`
|
|
616
622
|
- Author: Raj Tembe
|
|
@@ -171,6 +171,7 @@ acra/utils/session_manager.py
|
|
|
171
171
|
acra_cli.egg-info/PKG-INFO
|
|
172
172
|
acra_cli.egg-info/SOURCES.txt
|
|
173
173
|
acra_cli.egg-info/dependency_links.txt
|
|
174
|
+
acra_cli.egg-info/entry_points.txt
|
|
174
175
|
acra_cli.egg-info/requires.txt
|
|
175
176
|
acra_cli.egg-info/top_level.txt
|
|
176
177
|
tests/test_cli.py
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "acra-cli"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "Agentic CLI for LLM task execution, research, and workflow automation."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
@@ -42,6 +42,9 @@ dependencies = [
|
|
|
42
42
|
"keyring>=24.0.0",
|
|
43
43
|
]
|
|
44
44
|
|
|
45
|
+
[project.scripts]
|
|
46
|
+
acra = "acra.cli:app_main"
|
|
47
|
+
|
|
45
48
|
[project.optional-dependencies]
|
|
46
49
|
openai = ["langchain-openai>=0.1.0"]
|
|
47
50
|
groq = ["langchain-groq>=0.1.0"]
|
|
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
|
{acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/critic/__pycache__/critic_agent.cpython-312.pyc
RENAMED
|
File without changes
|
{acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/critic/__pycache__/critic_chain.cpython-312.pyc
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/executor/__pycache__/docker_runner.cpython-312.pyc
RENAMED
|
File without changes
|
{acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/executor/__pycache__/executor_agent.cpython-312.pyc
RENAMED
|
File without changes
|
{acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/executor/__pycache__/sandbox_runner.cpython-312.pyc
RENAMED
|
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
|
{acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/memory/__pycache__/memory_agent.cpython-312.pyc
RENAMED
|
File without changes
|
{acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/memory/__pycache__/memory_manager.cpython-312.pyc
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/planner/__pycache__/planner_agent.cpython-312.pyc
RENAMED
|
File without changes
|
{acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/planner/__pycache__/planner_chain.cpython-312.pyc
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{acra_cli-0.1.1 → acra_cli-0.1.2}/acra/agents/researcher/__pycache__/__init__.cpython-312.pyc
RENAMED
|
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
|
{acra_cli-0.1.1 → acra_cli-0.1.2}/acra/schemas/__pycache__/researcher_schema.cpython-312.pyc
RENAMED
|
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
|
{acra_cli-0.1.1 → acra_cli-0.1.2}/acra/tools/validation_tools/environment_config_validator.py
RENAMED
|
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
|