trinity-agent 0.2.0__tar.gz → 0.2.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.
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/PKG-INFO +1 -1
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/pyproject.toml +1 -1
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/__init__.py +1 -1
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/config.py +2 -1
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/.gitignore +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/LICENSE +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/README.md +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/docs/checkpoint.md +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/docs/phase-6-plan.md +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/docs/reference-architecture.md +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/docs/test-results/phase-1-T.md +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/docs/test-results/phase-2-T.md +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/docs/test-results/phase-3-T.md +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/docs/test-results/phase-4-T.md +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/docs/test-results/phase-5-T.md +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/docs/test-results/phase-6-T.md +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/__main__.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/agents/__init__.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/agents/base.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/agents/claude_agent.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/agents/codex_agent.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/agents/factory.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/agents/gemini_agent.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/cli.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/completion/__init__.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/completion/base.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/completion/hook.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/completion/idle.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/completion/prompt.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/context/__init__.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/context/monitor.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/context/rotator.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/context/shared.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/deliberation/__init__.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/deliberation/consensus.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/deliberation/distributor.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/deliberation/protocol.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/error_handler.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/health/__init__.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/health/checker.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/logging.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/models.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/orchestrator.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/retry.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/setup/__init__.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/setup/detector.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/setup/wizard.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/tmux/__init__.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/tmux/layout.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/tmux/pane.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/tmux/session.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/tui/__init__.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/tui/app.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/tui/session.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/workspace/__init__.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/workspace/isolation.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/src/trinity/workspace/managed_home.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/templates/trinity.config.example +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/conftest.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_agent_factory.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_claude_agent.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_cli.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_cli_detector.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_cli_v2.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_codex_agent.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_completion.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_config.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_consensus_v2.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_context_monitor.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_deliberation.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_e2e.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_error_handling.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_gemini_agent.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_health_checker.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_interactive_claude.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_logging.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_managed_home.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_models.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_multi_provider.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_orchestrator.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_protocol.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_protocol_v2.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_retry.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_session_handoff.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_session_rotator.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_setup_wizard.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_shared_context.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_tmux.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_tmux_integration.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_tmux_layout.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_tui.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_tui_session.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/tests/test_workspace.py +0 -0
- {trinity_agent-0.2.0 → trinity_agent-0.2.1}/uv.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trinity-agent
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Three minds, one context — Multi-agent AI orchestrator for Claude Code, Codex, and Gemini CLI.
|
|
5
5
|
Project-URL: Homepage, https://github.com/hongdangmoo49/Trinity
|
|
6
6
|
Project-URL: Repository, https://github.com/hongdangmoo49/Trinity
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "trinity-agent"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.1"
|
|
8
8
|
description = "Three minds, one context — Multi-agent AI orchestrator for Claude Code, Codex, and Gemini CLI."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -77,7 +77,8 @@ class TrinityConfig:
|
|
|
77
77
|
|
|
78
78
|
text = path.read_text(encoding="utf-8")
|
|
79
79
|
data = tomllib.loads(text)
|
|
80
|
-
|
|
80
|
+
# path = <project>/.trinity/trinity.config → project_dir = <project>/
|
|
81
|
+
return cls._from_dict(data, path.parent.parent)
|
|
81
82
|
|
|
82
83
|
@classmethod
|
|
83
84
|
def _from_dict(cls, data: dict, project_dir: Path) -> "TrinityConfig":
|
|
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
|