connectonion 0.5.10__py3-none-any.whl → 0.6.1__py3-none-any.whl
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.
- connectonion/__init__.py +17 -16
- connectonion/cli/browser_agent/browser.py +488 -145
- connectonion/cli/browser_agent/scroll_strategies.py +276 -0
- connectonion/cli/commands/copy_commands.py +24 -1
- connectonion/cli/commands/deploy_commands.py +15 -0
- connectonion/cli/commands/eval_commands.py +286 -0
- connectonion/cli/commands/project_cmd_lib.py +1 -1
- connectonion/cli/main.py +11 -0
- connectonion/console.py +5 -5
- connectonion/core/__init__.py +53 -0
- connectonion/{agent.py → core/agent.py} +18 -15
- connectonion/{llm.py → core/llm.py} +9 -19
- connectonion/{tool_executor.py → core/tool_executor.py} +3 -2
- connectonion/{tool_factory.py → core/tool_factory.py} +3 -1
- connectonion/debug/__init__.py +51 -0
- connectonion/{interactive_debugger.py → debug/auto_debug.py} +7 -7
- connectonion/{auto_debug_exception.py → debug/auto_debug_exception.py} +3 -3
- connectonion/{debugger_ui.py → debug/auto_debug_ui.py} +1 -1
- connectonion/{debug_explainer → debug/debug_explainer}/explain_agent.py +1 -1
- connectonion/{debug_explainer → debug/debug_explainer}/explain_context.py +1 -1
- connectonion/{execution_analyzer → debug/execution_analyzer}/execution_analysis.py +1 -1
- connectonion/debug/runtime_inspector/__init__.py +13 -0
- connectonion/{debug_agent → debug/runtime_inspector}/agent.py +1 -1
- connectonion/{xray.py → debug/xray.py} +1 -1
- connectonion/llm_do.py +1 -1
- connectonion/logger.py +305 -135
- connectonion/network/__init__.py +37 -0
- connectonion/{announce.py → network/announce.py} +1 -1
- connectonion/{asgi.py → network/asgi.py} +122 -2
- connectonion/{connect.py → network/connect.py} +1 -1
- connectonion/network/connection.py +123 -0
- connectonion/{host.py → network/host.py} +31 -11
- connectonion/{trust.py → network/trust.py} +1 -1
- connectonion/tui/__init__.py +22 -0
- connectonion/tui/chat.py +647 -0
- connectonion/useful_events_handlers/reflect.py +2 -2
- connectonion/useful_plugins/__init__.py +4 -3
- connectonion/useful_plugins/calendar_plugin.py +2 -2
- connectonion/useful_plugins/eval.py +2 -2
- connectonion/useful_plugins/gmail_plugin.py +2 -2
- connectonion/useful_plugins/image_result_formatter.py +2 -2
- connectonion/useful_plugins/re_act.py +2 -2
- connectonion/useful_plugins/shell_approval.py +2 -2
- connectonion/useful_plugins/ui_stream.py +164 -0
- {connectonion-0.5.10.dist-info → connectonion-0.6.1.dist-info}/METADATA +4 -3
- connectonion-0.6.1.dist-info/RECORD +123 -0
- connectonion/debug_agent/__init__.py +0 -13
- connectonion-0.5.10.dist-info/RECORD +0 -115
- /connectonion/{events.py → core/events.py} +0 -0
- /connectonion/{tool_registry.py → core/tool_registry.py} +0 -0
- /connectonion/{usage.py → core/usage.py} +0 -0
- /connectonion/{debug_explainer → debug/debug_explainer}/__init__.py +0 -0
- /connectonion/{debug_explainer → debug/debug_explainer}/explainer_prompt.md +0 -0
- /connectonion/{debug_explainer → debug/debug_explainer}/root_cause_analysis_prompt.md +0 -0
- /connectonion/{decorators.py → debug/decorators.py} +0 -0
- /connectonion/{execution_analyzer → debug/execution_analyzer}/__init__.py +0 -0
- /connectonion/{execution_analyzer → debug/execution_analyzer}/execution_analysis_prompt.md +0 -0
- /connectonion/{debug_agent → debug/runtime_inspector}/prompts/debug_assistant.md +0 -0
- /connectonion/{debug_agent → debug/runtime_inspector}/runtime_inspector.py +0 -0
- /connectonion/{relay.py → network/relay.py} +0 -0
- /connectonion/{static → network/static}/docs.html +0 -0
- /connectonion/{trust_agents.py → network/trust_agents.py} +0 -0
- /connectonion/{trust_functions.py → network/trust_functions.py} +0 -0
- {connectonion-0.5.10.dist-info → connectonion-0.6.1.dist-info}/WHEEL +0 -0
- {connectonion-0.5.10.dist-info → connectonion-0.6.1.dist-info}/entry_points.txt +0 -0
|
@@ -27,11 +27,11 @@ Usage:
|
|
|
27
27
|
|
|
28
28
|
from pathlib import Path
|
|
29
29
|
from typing import TYPE_CHECKING, List, Dict
|
|
30
|
-
from ..events import after_user_input, on_complete
|
|
30
|
+
from ..core.events import after_user_input, on_complete
|
|
31
31
|
from ..llm_do import llm_do
|
|
32
32
|
|
|
33
33
|
if TYPE_CHECKING:
|
|
34
|
-
from ..agent import Agent
|
|
34
|
+
from ..core.agent import Agent
|
|
35
35
|
|
|
36
36
|
# Prompts
|
|
37
37
|
EXPECTED_PROMPT = Path(__file__).parent.parent / "prompt_files" / "eval_expected.md"
|
|
@@ -20,14 +20,14 @@ Usage:
|
|
|
20
20
|
|
|
21
21
|
from datetime import datetime
|
|
22
22
|
from typing import TYPE_CHECKING
|
|
23
|
-
from ..events import before_each_tool, after_each_tool
|
|
23
|
+
from ..core.events import before_each_tool, after_each_tool
|
|
24
24
|
from ..tui import pick
|
|
25
25
|
from rich.console import Console
|
|
26
26
|
from rich.panel import Panel
|
|
27
27
|
from rich.text import Text
|
|
28
28
|
|
|
29
29
|
if TYPE_CHECKING:
|
|
30
|
-
from ..agent import Agent
|
|
30
|
+
from ..core.agent import Agent
|
|
31
31
|
|
|
32
32
|
_console = Console()
|
|
33
33
|
|
|
@@ -23,10 +23,10 @@ Usage:
|
|
|
23
23
|
|
|
24
24
|
import re
|
|
25
25
|
from typing import TYPE_CHECKING
|
|
26
|
-
from ..events import after_tools
|
|
26
|
+
from ..core.events import after_tools
|
|
27
27
|
|
|
28
28
|
if TYPE_CHECKING:
|
|
29
|
-
from ..agent import Agent
|
|
29
|
+
from ..core.agent import Agent
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def _is_base64_image(text: str) -> tuple[bool, str, str]:
|
|
@@ -29,12 +29,12 @@ Usage:
|
|
|
29
29
|
|
|
30
30
|
from pathlib import Path
|
|
31
31
|
from typing import TYPE_CHECKING
|
|
32
|
-
from ..events import after_user_input
|
|
32
|
+
from ..core.events import after_user_input
|
|
33
33
|
from ..llm_do import llm_do
|
|
34
34
|
from ..useful_events_handlers.reflect import reflect
|
|
35
35
|
|
|
36
36
|
if TYPE_CHECKING:
|
|
37
|
-
from ..agent import Agent
|
|
37
|
+
from ..core.agent import Agent
|
|
38
38
|
|
|
39
39
|
# Prompts
|
|
40
40
|
PLAN_PROMPT = Path(__file__).parent.parent / "prompt_files" / "react_plan.md"
|
|
@@ -22,12 +22,12 @@ Usage:
|
|
|
22
22
|
|
|
23
23
|
import re
|
|
24
24
|
from typing import TYPE_CHECKING
|
|
25
|
-
from ..events import before_each_tool
|
|
25
|
+
from ..core.events import before_each_tool
|
|
26
26
|
from ..tui import pick
|
|
27
27
|
from rich.console import Console
|
|
28
28
|
|
|
29
29
|
if TYPE_CHECKING:
|
|
30
|
-
from ..agent import Agent
|
|
30
|
+
from ..core.agent import Agent
|
|
31
31
|
|
|
32
32
|
_console = Console()
|
|
33
33
|
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Purpose: Stream agent activity to UI via Connection API
|
|
3
|
+
LLM-Note:
|
|
4
|
+
Dependencies: imports from [typing, core.events] | imported by [useful_plugins/__init__.py] | tested by [tests/unit/test_ui_stream.py]
|
|
5
|
+
Data flow: Event handlers check agent.connection → if present, call connection.log() to stream events
|
|
6
|
+
State/Effects: Streams events to WebSocket client | no file I/O | no blocking
|
|
7
|
+
Integration: exposes ui_stream list of event handlers | used via Agent(plugins=[ui_stream]) | works with host() WebSocket
|
|
8
|
+
Performance: O(1) event dispatch | no blocking | no LLM calls
|
|
9
|
+
Errors: Silently skips if connection is None (local execution)
|
|
10
|
+
|
|
11
|
+
UI Stream Plugin - Stream agent activity to connected UI clients.
|
|
12
|
+
|
|
13
|
+
When agent.connection is set (by host() for WebSocket connections), this plugin
|
|
14
|
+
streams real-time events for:
|
|
15
|
+
- LLM responses (thinking, tool_calls)
|
|
16
|
+
- Tool execution (before/after each tool)
|
|
17
|
+
- Errors and completion
|
|
18
|
+
|
|
19
|
+
Usage:
|
|
20
|
+
from connectonion import Agent
|
|
21
|
+
from connectonion.useful_plugins import ui_stream
|
|
22
|
+
|
|
23
|
+
agent = Agent("assistant", plugins=[ui_stream])
|
|
24
|
+
host(agent) # WebSocket clients receive real-time events
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
from typing import TYPE_CHECKING
|
|
28
|
+
from ..core.events import (
|
|
29
|
+
after_llm,
|
|
30
|
+
before_each_tool,
|
|
31
|
+
after_each_tool,
|
|
32
|
+
on_error,
|
|
33
|
+
on_complete,
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
if TYPE_CHECKING:
|
|
37
|
+
from ..core.agent import Agent
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
@after_llm
|
|
41
|
+
def stream_llm_response(agent: 'Agent') -> None:
|
|
42
|
+
"""Stream LLM response to connected UI."""
|
|
43
|
+
if not agent.connection:
|
|
44
|
+
return
|
|
45
|
+
|
|
46
|
+
trace = agent.current_session.get('trace', [])
|
|
47
|
+
if not trace:
|
|
48
|
+
return
|
|
49
|
+
|
|
50
|
+
last = trace[-1]
|
|
51
|
+
if last.get('type') != 'llm_call':
|
|
52
|
+
return
|
|
53
|
+
|
|
54
|
+
# Stream content if present
|
|
55
|
+
content = last.get('content', '')
|
|
56
|
+
if content:
|
|
57
|
+
agent.connection.log('message', content=content)
|
|
58
|
+
|
|
59
|
+
# Stream tool calls if present
|
|
60
|
+
tool_calls = last.get('tool_calls', [])
|
|
61
|
+
for tc in tool_calls:
|
|
62
|
+
agent.connection.log(
|
|
63
|
+
'tool_pending',
|
|
64
|
+
name=tc.get('function', {}).get('name', ''),
|
|
65
|
+
arguments=tc.get('function', {}).get('arguments', {}),
|
|
66
|
+
id=tc.get('id', ''),
|
|
67
|
+
)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
@before_each_tool
|
|
71
|
+
def stream_tool_start(agent: 'Agent') -> None:
|
|
72
|
+
"""Stream tool execution start to connected UI."""
|
|
73
|
+
if not agent.connection:
|
|
74
|
+
return
|
|
75
|
+
|
|
76
|
+
pending = agent.current_session.get('pending_tool')
|
|
77
|
+
if not pending:
|
|
78
|
+
return
|
|
79
|
+
|
|
80
|
+
agent.connection.log(
|
|
81
|
+
'tool_start',
|
|
82
|
+
name=pending['name'],
|
|
83
|
+
arguments=pending['arguments'],
|
|
84
|
+
id=pending.get('id', ''),
|
|
85
|
+
)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
@after_each_tool
|
|
89
|
+
def stream_tool_result(agent: 'Agent') -> None:
|
|
90
|
+
"""Stream tool execution result to connected UI."""
|
|
91
|
+
if not agent.connection:
|
|
92
|
+
return
|
|
93
|
+
|
|
94
|
+
trace = agent.current_session.get('trace', [])
|
|
95
|
+
if not trace:
|
|
96
|
+
return
|
|
97
|
+
|
|
98
|
+
last = trace[-1]
|
|
99
|
+
if last.get('type') != 'tool_execution':
|
|
100
|
+
return
|
|
101
|
+
|
|
102
|
+
status = last.get('status', 'unknown')
|
|
103
|
+
result = last.get('result', '')
|
|
104
|
+
|
|
105
|
+
# Truncate large results for UI
|
|
106
|
+
if isinstance(result, str) and len(result) > 1000:
|
|
107
|
+
result = result[:1000] + '...'
|
|
108
|
+
|
|
109
|
+
agent.connection.log(
|
|
110
|
+
'tool_result',
|
|
111
|
+
name=last.get('tool_name', ''),
|
|
112
|
+
status=status,
|
|
113
|
+
result=result,
|
|
114
|
+
timing_ms=last.get('timing', 0),
|
|
115
|
+
)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
@on_error
|
|
119
|
+
def stream_error(agent: 'Agent') -> None:
|
|
120
|
+
"""Stream error to connected UI."""
|
|
121
|
+
if not agent.connection:
|
|
122
|
+
return
|
|
123
|
+
|
|
124
|
+
trace = agent.current_session.get('trace', [])
|
|
125
|
+
if not trace:
|
|
126
|
+
return
|
|
127
|
+
|
|
128
|
+
last = trace[-1]
|
|
129
|
+
if last.get('status') != 'error':
|
|
130
|
+
return
|
|
131
|
+
|
|
132
|
+
agent.connection.log(
|
|
133
|
+
'error',
|
|
134
|
+
tool_name=last.get('tool_name', ''),
|
|
135
|
+
error=str(last.get('error', '')),
|
|
136
|
+
)
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
@on_complete
|
|
140
|
+
def stream_complete(agent: 'Agent') -> None:
|
|
141
|
+
"""Stream completion to connected UI."""
|
|
142
|
+
if not agent.connection:
|
|
143
|
+
return
|
|
144
|
+
|
|
145
|
+
trace = agent.current_session.get('trace', [])
|
|
146
|
+
tools_used = [t.get('tool_name', '') for t in trace if t.get('type') == 'tool_execution']
|
|
147
|
+
llm_calls = len([t for t in trace if t.get('type') == 'llm_call'])
|
|
148
|
+
|
|
149
|
+
agent.connection.log(
|
|
150
|
+
'complete',
|
|
151
|
+
tools_used=tools_used,
|
|
152
|
+
llm_calls=llm_calls,
|
|
153
|
+
iterations=agent.current_session.get('iteration', 0),
|
|
154
|
+
)
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
# Bundle as plugin
|
|
158
|
+
ui_stream = [
|
|
159
|
+
stream_llm_response,
|
|
160
|
+
stream_tool_start,
|
|
161
|
+
stream_tool_result,
|
|
162
|
+
stream_error,
|
|
163
|
+
stream_complete,
|
|
164
|
+
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: connectonion
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.1
|
|
4
4
|
Summary: A simple Python framework for creating AI agents with behavior tracking
|
|
5
5
|
Project-URL: Homepage, https://github.com/openonion/connectonion
|
|
6
6
|
Project-URL: Documentation, https://docs.connectonion.com
|
|
@@ -30,6 +30,7 @@ Requires-Dist: httpx>=0.24.0
|
|
|
30
30
|
Requires-Dist: litellm>=1.0.0
|
|
31
31
|
Requires-Dist: mnemonic>=0.20
|
|
32
32
|
Requires-Dist: openai>=1.0.0
|
|
33
|
+
Requires-Dist: playwright>=1.40.0
|
|
33
34
|
Requires-Dist: pydantic>=2.0.0
|
|
34
35
|
Requires-Dist: pyjwt>=2.0.0
|
|
35
36
|
Requires-Dist: pynacl>=1.5.0
|
|
@@ -38,12 +39,12 @@ Requires-Dist: pyyaml>=6.0.0
|
|
|
38
39
|
Requires-Dist: questionary>=2.0.0
|
|
39
40
|
Requires-Dist: requests>=2.25.0
|
|
40
41
|
Requires-Dist: rich>=13.0.0
|
|
42
|
+
Requires-Dist: textual-autocomplete>=3.0.0
|
|
43
|
+
Requires-Dist: textual>=0.86.0
|
|
41
44
|
Requires-Dist: toml>=0.10.2
|
|
42
45
|
Requires-Dist: typer>=0.20.0
|
|
43
46
|
Requires-Dist: uvicorn>=0.20.0
|
|
44
47
|
Requires-Dist: websockets>=11.0.0
|
|
45
|
-
Provides-Extra: browser
|
|
46
|
-
Requires-Dist: playwright>=1.40.0; extra == 'browser'
|
|
47
48
|
Provides-Extra: dev
|
|
48
49
|
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
|
|
49
50
|
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
connectonion/__init__.py,sha256=7geVck4xTtsy0x9UbmCpSuFaCzaTTiT5PgHHXIGUKLU,1958
|
|
2
|
+
connectonion/address.py,sha256=YOzpMOej-HqJUE6o0i0fG8rB7HM-Iods36s9OD--5ig,10852
|
|
3
|
+
connectonion/console.py,sha256=zmnhavw359iqY9HFI1gbZolRSqiDlzJPEkwI1CllWfY,21239
|
|
4
|
+
connectonion/llm_do.py,sha256=rwgSsTreNGAq5xV3m9lbA7U5AE0XOZNdihJwW5FHz0k,12005
|
|
5
|
+
connectonion/logger.py,sha256=AtyMuBUB7zbCuAQcySMZpRJ9qdAwU5q0V61mLVSx7Ec,17660
|
|
6
|
+
connectonion/prompts.py,sha256=hmbx8ACOJzystbRPQ6bMqx8BQKBKJHNJnMogtAZgDGA,5661
|
|
7
|
+
connectonion/transcribe.py,sha256=m2qd7A2qMKFAbmbLLgvcd-yUFz8FHgjUKtvtFffnK00,7730
|
|
8
|
+
connectonion/cli/__init__.py,sha256=Pd1iKp0rUghs2kmdAhyp9hK8j0uWkNxOagBkdCGrG4I,55
|
|
9
|
+
connectonion/cli/docs.md,sha256=Fk_JT8jFXXDpXTvU0ZUigMW1UR6ERmX-HDheYPPRNY8,3231
|
|
10
|
+
connectonion/cli/main.py,sha256=ys0L_zwV4lkrln_86XrJ_U_1ARQ6oxoADtHWj3tSIkg,7315
|
|
11
|
+
connectonion/cli/browser_agent/__init__.py,sha256=xZCoxS3dGVBBMnaasHOE1vxMDdIwUloRP67rGR-4obo,173
|
|
12
|
+
connectonion/cli/browser_agent/browser.py,sha256=P3ceJrHVS63NJvuQltjeOy4rZj1H-8kDy-qOZSWK9AA,21532
|
|
13
|
+
connectonion/cli/browser_agent/prompt.md,sha256=tF0PhGcl3gkmVK1F5SG9GZwnPPXTZYWEaatAZtOYZZg,4479
|
|
14
|
+
connectonion/cli/browser_agent/scroll_strategies.py,sha256=t_noSlzbEptgBiRWgrlIv4L_jv33xHvKgxbg1qUFDL4,10109
|
|
15
|
+
connectonion/cli/commands/__init__.py,sha256=IPZy9NwrE0hs4f7hIqyFM9GjFZpeCS8mC0Jf-5Ooy4c,43
|
|
16
|
+
connectonion/cli/commands/auth_commands.py,sha256=D76_0yd77d23bXRvsTAY6HOcGJswo9-6z2dRi9CR9sE,21635
|
|
17
|
+
connectonion/cli/commands/browser_commands.py,sha256=lB4N6XwP43qdcthwQWlbFU2S3INfxhRDXznAw1PSTsQ,1803
|
|
18
|
+
connectonion/cli/commands/copy_commands.py,sha256=f59STrC4Yy3OtYiUSz99K0zkU3tiWoTn9owP1KY09Qs,4542
|
|
19
|
+
connectonion/cli/commands/create.py,sha256=0TrsPulS6dqwr_gtIWWBQ03Q_BnNro-CV4qOV5VkHAg,22011
|
|
20
|
+
connectonion/cli/commands/deploy_commands.py,sha256=l-o6XDxh5kDB0YUCb_LeVERvdUY4gUogOlNalRv1OdM,8774
|
|
21
|
+
connectonion/cli/commands/doctor_commands.py,sha256=EOk8CMclvVqLq4-Dg2JghWehH9VQnthBejrhIBX66_4,7244
|
|
22
|
+
connectonion/cli/commands/eval_commands.py,sha256=PwWEtnfLZqkgWzFF9Fa1bHkf6TxmIf6D8_M9D6rwuJA,10012
|
|
23
|
+
connectonion/cli/commands/init.py,sha256=8zpY01Ux25BM6UCMvs66DRtiHKHsq7Yo9N_KOhAhOOA,20979
|
|
24
|
+
connectonion/cli/commands/project_cmd_lib.py,sha256=SfqTpbQmYgMiUdi94Rkn1jF6hIlEnfgV0cSWqxUhJiw,32197
|
|
25
|
+
connectonion/cli/commands/reset_commands.py,sha256=FkK6tMn7QOY3X5ulTYQ7VnLfeYpStgbZ5UnnbD3zudY,7016
|
|
26
|
+
connectonion/cli/commands/status_commands.py,sha256=krUZNd1pFuU8D7UdXrUskBTlpmAdjcTWBXs0s4YJOc4,6401
|
|
27
|
+
connectonion/cli/docs/co-vibecoding-principles-docs-contexts-all-in-one.md,sha256=_RUlrj83Nbl278j3wdXeKFE1AvwixfCPdWevO7RSLRM,58816
|
|
28
|
+
connectonion/cli/docs/connectonion.md,sha256=NuAauvpgNQkkv1ddLIQcrY1YMHKT-c_uk6m36OKhmKw,35357
|
|
29
|
+
connectonion/cli/templates/meta-agent/README.md,sha256=qDUxlSfRPQrEzT9_tcbwL0nqWMfu3EOKYdQe00wlUDE,8659
|
|
30
|
+
connectonion/cli/templates/meta-agent/agent.py,sha256=x89xmsLSwUiiqZGRBzaEOZhvxDE2T1oKzke2I0PGUpw,7349
|
|
31
|
+
connectonion/cli/templates/meta-agent/prompts/answer_prompt.md,sha256=q3knwNPjDdtpzGecaDhoTYK5jMrBTOVhniEvZXjMGw4,406
|
|
32
|
+
connectonion/cli/templates/meta-agent/prompts/docs_retrieve_prompt.md,sha256=7Cv3CBDVp5_gxYEIjb-L5v4b_W74nezIZ2340YBFb_s,580
|
|
33
|
+
connectonion/cli/templates/meta-agent/prompts/metagent.md,sha256=sY3v1wYZgjA37U9Aq_1BSmo0LNgmYyyME65EfTU_3LI,3106
|
|
34
|
+
connectonion/cli/templates/meta-agent/prompts/think_prompt.md,sha256=ObGUNwjpwDtZhrk8b3T4kYKtNpECsDdFU4mNQBWISUM,434
|
|
35
|
+
connectonion/cli/templates/minimal/README.md,sha256=r3iUb0zAT8nJFqfKXMXw_FBFrGp34LPNmAT3UQDA42o,1500
|
|
36
|
+
connectonion/cli/templates/minimal/agent.py,sha256=lDdEGDs81TEoW2gBH_5dTAofnZbsY6jPYQm1m5J-eEk,1779
|
|
37
|
+
connectonion/cli/templates/playwright/README.md,sha256=8rUPKx01mAJTtcBHNPhjnUaOVH8CuNk5ncHNUtZUE_Q,3082
|
|
38
|
+
connectonion/cli/templates/playwright/agent.py,sha256=H5qvfUgdn8b_HJ8F5ETXtHUZijKdkTnbEkOdkwaPjY0,12011
|
|
39
|
+
connectonion/cli/templates/playwright/prompt.md,sha256=wsvpWTzxrWYs4t4WLhXgJ7Auko32RFNe9ii4mL8IM_o,3310
|
|
40
|
+
connectonion/cli/templates/playwright/requirements.txt,sha256=oSyGEC1-DyWm3_vE1QkREeWx4odSlS-K2UjlUCTw4tM,38
|
|
41
|
+
connectonion/cli/templates/web-research/agent.py,sha256=PS50oxPg8GX8RIjjZ6iSVhKDrS00riCjTPSrP3RIFV0,3970
|
|
42
|
+
connectonion/core/__init__.py,sha256=NIUXpkxalSzbchqklnaxUsG-X5ZUNO4wdZ3lOwwzb_Q,1363
|
|
43
|
+
connectonion/core/agent.py,sha256=RXd-0DOWZg_u6iJXMPYlg4oH45BlbH5PULLWtB32h38,18944
|
|
44
|
+
connectonion/core/events.py,sha256=jJOMt1PhRl-ef4R8-WpAq8pUbZ8GKIl0wOB2kJUVyWg,9151
|
|
45
|
+
connectonion/core/llm.py,sha256=i-jCvaryIPGqYx7SXR5yuhh64W4DdlnmCqklESYpg78,32425
|
|
46
|
+
connectonion/core/tool_executor.py,sha256=YGvgJpkFPFIxfFEVeASfvkYLreH6kXeTFoVZ_IqVJPU,10690
|
|
47
|
+
connectonion/core/tool_factory.py,sha256=j0DoRuHoVqx8ej07c8nOOyHLPzSzCah1D3mY4P9I8yg,6853
|
|
48
|
+
connectonion/core/tool_registry.py,sha256=rTe8RJnWXpmHXWznP468fhWvmRknk-TlF9Iz8G9_qus,4367
|
|
49
|
+
connectonion/core/usage.py,sha256=mS_J5it9NMDI1CjycNUJEnXGNXAo1lQ1ICEZvqftTpU,6205
|
|
50
|
+
connectonion/debug/__init__.py,sha256=gU2Ku9Nup70LxTygBauhxuhHJWRRtT7h-GKbLTvhlJQ,2111
|
|
51
|
+
connectonion/debug/auto_debug.py,sha256=gjTfUcYmbeJg-HGsOsEovy3dv0l4om4HqtxZEdMMCxE,16286
|
|
52
|
+
connectonion/debug/auto_debug_exception.py,sha256=VSHPn5UmpHsNlllArXuBpc8CjFn5X1FO4r7Eag-7WZg,8155
|
|
53
|
+
connectonion/debug/auto_debug_ui.py,sha256=kw8zMTARo0JIpXSzzpQUH-CIKkjuacJJwq6vXKDuDEM,41742
|
|
54
|
+
connectonion/debug/decorators.py,sha256=YFmZMptcchIgNriKFf_vOyacor5i_j6Cy_igTJhdKm4,7141
|
|
55
|
+
connectonion/debug/xray.py,sha256=fw9HlUw5qqBRtjm2c6xOSSiyUZ8xLMU81LVqNeHyldU,18580
|
|
56
|
+
connectonion/debug/debug_explainer/__init__.py,sha256=A_rNwGD-Km3iA2U_D9QbQBXjlxSgY_qKmBWvjCpflcs,351
|
|
57
|
+
connectonion/debug/debug_explainer/explain_agent.py,sha256=LW78PZzLQkgMh0SN-nbnuMzh1svE_AEOvbu6k-Rqnpk,4982
|
|
58
|
+
connectonion/debug/debug_explainer/explain_context.py,sha256=TgfX4y2ndLr6U9EIruNYDd9Krgqf9NFl-fOkZ4JFQFs,11352
|
|
59
|
+
connectonion/debug/debug_explainer/explainer_prompt.md,sha256=FnWSYlSn0GvuL6qhstS85Qbg8Fti7GuOeWytwwQpZ38,1325
|
|
60
|
+
connectonion/debug/debug_explainer/root_cause_analysis_prompt.md,sha256=5u_kV8vFjpFDcdTq8r_1tWgv_YRkZcXjtriVQYa1x1s,1412
|
|
61
|
+
connectonion/debug/execution_analyzer/__init__.py,sha256=RREt9mwWs4lEbyHfHqoL3BB-39MEgPjNNqlw2VinKxI,310
|
|
62
|
+
connectonion/debug/execution_analyzer/execution_analysis.py,sha256=yzc-Cq7N0SPIYwv77aiQzSP996AoLaKqvQZkyfp6kWw,3713
|
|
63
|
+
connectonion/debug/execution_analyzer/execution_analysis_prompt.md,sha256=zmKAFHJzCiYkNHxpuK2Nak-7cdswZasqAJkRV_in0dU,1459
|
|
64
|
+
connectonion/debug/runtime_inspector/__init__.py,sha256=6Hf88LTZ1iEAnNzfTkjp7iRb7I7YByUssv8Jsy3tRgk,365
|
|
65
|
+
connectonion/debug/runtime_inspector/agent.py,sha256=kGXncq8AOffUQ_fuj9Sw15of6_mtsvrsYNZ5-lU74ao,2510
|
|
66
|
+
connectonion/debug/runtime_inspector/runtime_inspector.py,sha256=rxFOqTxSvyKxqagYL4V2Pf-ii0Ie8l14a5xHzgIb810,15336
|
|
67
|
+
connectonion/debug/runtime_inspector/prompts/debug_assistant.md,sha256=sR17NHwBY-8EgIZwK4AoTKW9D6vEDUf1Aq7i936tqco,2816
|
|
68
|
+
connectonion/network/__init__.py,sha256=S8p7lvq74WpCrVNTI_X3myZgFecjdq93Xdve3XwyWII,1037
|
|
69
|
+
connectonion/network/announce.py,sha256=roS_PIYef7g-HlXhIkUrCEtGNUDBEStqFodCU8qEy5M,3366
|
|
70
|
+
connectonion/network/asgi.py,sha256=F1aF9lzaA78I_2mCWngQ0oTVtEGEukP-viXLBs2hmDM,13909
|
|
71
|
+
connectonion/network/connect.py,sha256=w6moVt1alBZjHoGgHzaWMf9SgHVPlN1drO4lqWeYWyY,9795
|
|
72
|
+
connectonion/network/connection.py,sha256=HqaENrlAh2RCNig8ntte2Nxw4dUT4pz2xNu400bRZeM,4852
|
|
73
|
+
connectonion/network/host.py,sha256=Xl6aaQFx4NLapPoTrCkMODGx6kxLmsmWo1zIbjuljRE,20399
|
|
74
|
+
connectonion/network/relay.py,sha256=a8wj4UZDZpGEhvpyDuRjZJg1S1VzxqiPioQRLq1EAao,7160
|
|
75
|
+
connectonion/network/trust.py,sha256=yGnmFq5QVxCqdXgpQD7PPZPrYj3_nhRx0iorVD8Htjg,6698
|
|
76
|
+
connectonion/network/trust_agents.py,sha256=XDedEhxGRfu9KeYhX-Z1a5tRA-2Zbwz4ztnlA2Lnaf0,2968
|
|
77
|
+
connectonion/network/trust_functions.py,sha256=jRgfPm5z8oy9x8IYJd20UUMCz7cc1Pd7zyqQK5SDdLc,3564
|
|
78
|
+
connectonion/network/static/docs.html,sha256=rSffkCAy2fA512XcMC6z1wyZH9iYeAsSP213G3l1OOk,31085
|
|
79
|
+
connectonion/prompt_files/__init__.py,sha256=5o5xg0VzZt4e0O4JKh7AO7gbflkw78oNM37yC3VqFRU,56
|
|
80
|
+
connectonion/prompt_files/analyze_contact.md,sha256=ZTCUhO8mM1mbYswfz4zjBxlv4r0DICLoYm0YaQBpiXk,2110
|
|
81
|
+
connectonion/prompt_files/eval_expected.md,sha256=ZnVmyF9S9m49UzTKCMajJhfGaxUhUkDxDm75xDYNLPs,435
|
|
82
|
+
connectonion/prompt_files/react_evaluate.md,sha256=1qzq_ShlhWUQnh8PkdMl9IpHSwR67FguNc8vaLxzSkA,404
|
|
83
|
+
connectonion/prompt_files/react_plan.md,sha256=QwEDnHsCs1A9AGTyuA1puLRHT0MkUrNEAbVhF3yWNEc,492
|
|
84
|
+
connectonion/prompt_files/reflect.md,sha256=aMaWNbHCyxX3AtqyUrrJurAG6w45lcSo05RrAv6UiIM,627
|
|
85
|
+
connectonion/tui/__init__.py,sha256=q8N5Z5lfTmRx-g_m6KfEv7IHOMkChz2PquUGP77vwlg,2711
|
|
86
|
+
connectonion/tui/chat.py,sha256=0vIxfPcf7hWw3pi1mO6AuF4sIEwxKi-Mw25HGnotX80,20941
|
|
87
|
+
connectonion/tui/divider.py,sha256=pKOj7Y3lPwB4TxoWs9J7Pi1axyzMELuw5TIARLyud0o,1018
|
|
88
|
+
connectonion/tui/dropdown.py,sha256=fhxfX2N4vjYvwVPbExcwE23lpgk55xTgmeKyFUIaOE8,8127
|
|
89
|
+
connectonion/tui/footer.py,sha256=EwBCRjxmsBK5xik-jFGkN93AUwLQQZM0m00o7PE9H74,694
|
|
90
|
+
connectonion/tui/fuzzy.py,sha256=Q2ezY8lMioBIUYvQaEF-faa43x-hlN9zr3lxlsojRSI,1463
|
|
91
|
+
connectonion/tui/input.py,sha256=b5LzL-mE496mhox7bYWtw4IDOPKysqvv41XFwRt62HY,10054
|
|
92
|
+
connectonion/tui/keys.py,sha256=uxfFyROIALjYjJgzzLtBzWsPe5umoN8SyOde8lgvaFE,901
|
|
93
|
+
connectonion/tui/pick.py,sha256=54oDYvZc0w8V1dYqdAW4RIHJMaCaujHWtOA77KL66JA,5084
|
|
94
|
+
connectonion/tui/providers.py,sha256=czD130jKA9FYUCkLp3eSZ4o7jF7-58uAvCC_9COzApI,5117
|
|
95
|
+
connectonion/tui/status_bar.py,sha256=DVqDdc6fr9yHDIDGgLGIuR_4yaPzKPM-kAUJ_dXcNAk,4774
|
|
96
|
+
connectonion/useful_events_handlers/__init__.py,sha256=EMgvTx-MtvMZXtCpyTJkJpSSKJNcTqRKhLmQ8qDoobk,386
|
|
97
|
+
connectonion/useful_events_handlers/reflect.py,sha256=5ZRkc5t-E9KgU02bp8GsquoTAkYG0x71ygARlxr1-fc,3418
|
|
98
|
+
connectonion/useful_plugins/__init__.py,sha256=nqG7B4OtqkTVGOFAF36-K52c_0FzcofHrqsLc9DyXxM,1355
|
|
99
|
+
connectonion/useful_plugins/calendar_plugin.py,sha256=PoQoOfLcprDDBRrt1Ykzlh2RDiOofIyL7tO-hERkYV8,6004
|
|
100
|
+
connectonion/useful_plugins/eval.py,sha256=E0bdzVHRQOnJFcF1jxbvPr0AtEcXux7h9ao5uawsXHQ,4940
|
|
101
|
+
connectonion/useful_plugins/gmail_plugin.py,sha256=xuPR13lnXxn-12zncHPoMNApYJ_zxuoehuavvdGvjvE,5715
|
|
102
|
+
connectonion/useful_plugins/image_result_formatter.py,sha256=d6ME-bVRiSbXoTvIAnwqMyDkJ-xVExOBqbdG9N4ZASE,5342
|
|
103
|
+
connectonion/useful_plugins/re_act.py,sha256=aWBj3lr2d6It3XYAOQp0LbQneM9CPXLxQHW16MgJNKM,3011
|
|
104
|
+
connectonion/useful_plugins/shell_approval.py,sha256=mNPyLcdz8F5Hek77ABGYCdpiefRziyFwc_L8TFVcyoo,6324
|
|
105
|
+
connectonion/useful_plugins/ui_stream.py,sha256=YeS7a0YowUcnhoiffw6uSPlJS7ne5Vkwr_Bbj_6mM_A,4410
|
|
106
|
+
connectonion/useful_tools/__init__.py,sha256=ZG7DVNNSoY7lvyREXleRzqpp53OjttMSiNMS6uA3F4M,1743
|
|
107
|
+
connectonion/useful_tools/diff_writer.py,sha256=ZhuSmTvJRd7RmavCRN9Xp-8Q07mBAgV9_HufWd-i9Lc,6796
|
|
108
|
+
connectonion/useful_tools/get_emails.py,sha256=cechjvRkPH2K-mjoZEnvo1Z6uD1YsVNYQSu56elERm0,6300
|
|
109
|
+
connectonion/useful_tools/gmail.py,sha256=87o5eZo3JGhcbtb-eSkgRa6RbZi3sy7054qjN5dm7wQ,61465
|
|
110
|
+
connectonion/useful_tools/google_calendar.py,sha256=7zg41JhLO11wHgovXFqngQPBAt9aiPxJq6XMgn0T978,21989
|
|
111
|
+
connectonion/useful_tools/memory.py,sha256=xTHuP3V5FnM7E9LcRKuMttOXMncQbE4ZDkGoTz5B2Uw,13667
|
|
112
|
+
connectonion/useful_tools/microsoft_calendar.py,sha256=ovEbDgfbGqEF0LvPwG7yHYmqTigBPEsyAicbZZRAeZY,23176
|
|
113
|
+
connectonion/useful_tools/outlook.py,sha256=wxJaSJkkTtVSqfCpGa1ug3aFz_YsNGmxtW1W2iRdsaQ,16893
|
|
114
|
+
connectonion/useful_tools/send_email.py,sha256=qmBdrAXWssmM3yaSfMy3OYa5h2vWTqNqEYAIBWI9OXI,6933
|
|
115
|
+
connectonion/useful_tools/shell.py,sha256=LszM7WShKPx5L7pJSY_zHQOKok8A_OxAkMoEHOSskZk,3344
|
|
116
|
+
connectonion/useful_tools/slash_command.py,sha256=VKl7SKLyaxHcHwfE8rgzBCQ2-KQtL008ZZ2aemM5I6E,7086
|
|
117
|
+
connectonion/useful_tools/terminal.py,sha256=PtzGHN6vnWROmssi37YOZ5U-d0Z7Fe79bocoKAngoxg,9330
|
|
118
|
+
connectonion/useful_tools/todo_list.py,sha256=wVEt4kt-MczIcP3xvKelfshGHZ6EATpDFzQx0zov8cw,7483
|
|
119
|
+
connectonion/useful_tools/web_fetch.py,sha256=CysJLOdDIkbMVJ12Dj3WgsytLu1-o2wrwNopqA_S1jk,7253
|
|
120
|
+
connectonion-0.6.1.dist-info/METADATA,sha256=UfECn-oR2IqKWVKkgNwbOXKQlt_SymSu7O7pkMoNIR0,21932
|
|
121
|
+
connectonion-0.6.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
122
|
+
connectonion-0.6.1.dist-info/entry_points.txt,sha256=XDB-kVN7Qgy4DmYTkjQB_O6hZeUND-SqmZbdoQPn6WA,90
|
|
123
|
+
connectonion-0.6.1.dist-info/RECORD,,
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
"""Debug agent for enhanced AI-powered exception analysis with runtime inspection.
|
|
2
|
-
|
|
3
|
-
A specialized agent that uses RuntimeInspector to experiment, test, and
|
|
4
|
-
validate fixes using the actual data that caused the crash.
|
|
5
|
-
"""
|
|
6
|
-
|
|
7
|
-
from .agent import create_debug_agent
|
|
8
|
-
from .runtime_inspector import RuntimeInspector
|
|
9
|
-
|
|
10
|
-
__all__ = [
|
|
11
|
-
"create_debug_agent",
|
|
12
|
-
"RuntimeInspector"
|
|
13
|
-
]
|
|
@@ -1,115 +0,0 @@
|
|
|
1
|
-
connectonion/__init__.py,sha256=VHZugKSYm3j_qeLiLS93Ee7mqJJ0uPvl9BtLRkKJkBE,1941
|
|
2
|
-
connectonion/address.py,sha256=YOzpMOej-HqJUE6o0i0fG8rB7HM-Iods36s9OD--5ig,10852
|
|
3
|
-
connectonion/agent.py,sha256=BHnP4N0odXCSn9xT0QnJpXj3VV-E_vUtNXJ0M6k3RNs,18889
|
|
4
|
-
connectonion/announce.py,sha256=47Lxe8S4yyTbpsmYUmakU_DehrGvljyldmPfKnAOrFQ,3365
|
|
5
|
-
connectonion/asgi.py,sha256=VTMwwEWLq5RYvIufRImMcv-AB5D5pZmM8INaXqwUt4Q,9621
|
|
6
|
-
connectonion/auto_debug_exception.py,sha256=iA-b5GC40AI4YVXen2UCkDkfHLVZehFPgZrinIxykWI,8147
|
|
7
|
-
connectonion/connect.py,sha256=dYuBKxUvcNeyR0IbcKrnspwylp7177JmBYz5DsRhiXQ,9794
|
|
8
|
-
connectonion/console.py,sha256=6_J1ItkLJCHDpdJY-tCuw4jMcS09S-a5juZSDSIr1Nc,21254
|
|
9
|
-
connectonion/debugger_ui.py,sha256=QMyoZkhGbt-pStHHjpnCBXtfzvfqPW94tXiL07KZiAw,41741
|
|
10
|
-
connectonion/decorators.py,sha256=YFmZMptcchIgNriKFf_vOyacor5i_j6Cy_igTJhdKm4,7141
|
|
11
|
-
connectonion/events.py,sha256=jJOMt1PhRl-ef4R8-WpAq8pUbZ8GKIl0wOB2kJUVyWg,9151
|
|
12
|
-
connectonion/host.py,sha256=eVB907_oFcn2MH-8fRnhR-_-o17S7JjchkggPS5kLVA,19437
|
|
13
|
-
connectonion/interactive_debugger.py,sha256=XHSCGJp9YV6VAZM1gk_AuxKAdBODJQUcLVWaLuTMqv0,16277
|
|
14
|
-
connectonion/llm.py,sha256=IzjlOT6Dj5xIplIymjcaHZ_abwE5wDHEE4pa8zjlEGY,32952
|
|
15
|
-
connectonion/llm_do.py,sha256=YI7kGFKpB6KUEG_CKtP3Bl4IWmRac7TCa9GK5FSV624,12000
|
|
16
|
-
connectonion/logger.py,sha256=7xt9fT-Ubdu6zzFZ5JPwScWDo9LJehuYDn6PB3f3icg,12651
|
|
17
|
-
connectonion/prompts.py,sha256=hmbx8ACOJzystbRPQ6bMqx8BQKBKJHNJnMogtAZgDGA,5661
|
|
18
|
-
connectonion/relay.py,sha256=a8wj4UZDZpGEhvpyDuRjZJg1S1VzxqiPioQRLq1EAao,7160
|
|
19
|
-
connectonion/tool_executor.py,sha256=IPCVRS20XOd5JsZrdXRwK-gI6Xb0BtDQ3fCD0qt2dcE,10617
|
|
20
|
-
connectonion/tool_factory.py,sha256=vo4_pyhqKG_OtfpjV15oPG4zlkxn40768PW5pQVtx-g,6704
|
|
21
|
-
connectonion/tool_registry.py,sha256=rTe8RJnWXpmHXWznP468fhWvmRknk-TlF9Iz8G9_qus,4367
|
|
22
|
-
connectonion/transcribe.py,sha256=m2qd7A2qMKFAbmbLLgvcd-yUFz8FHgjUKtvtFffnK00,7730
|
|
23
|
-
connectonion/trust.py,sha256=It4ueuMvCmHOD7FwaV-jSwlonWFsFgNH1gz9fJtmfW4,6692
|
|
24
|
-
connectonion/trust_agents.py,sha256=XDedEhxGRfu9KeYhX-Z1a5tRA-2Zbwz4ztnlA2Lnaf0,2968
|
|
25
|
-
connectonion/trust_functions.py,sha256=jRgfPm5z8oy9x8IYJd20UUMCz7cc1Pd7zyqQK5SDdLc,3564
|
|
26
|
-
connectonion/usage.py,sha256=mS_J5it9NMDI1CjycNUJEnXGNXAo1lQ1ICEZvqftTpU,6205
|
|
27
|
-
connectonion/xray.py,sha256=TA_VychqQRtfSzO3RmTqnDZZNx3LjycbgUWVyMswAIw,18542
|
|
28
|
-
connectonion/cli/__init__.py,sha256=Pd1iKp0rUghs2kmdAhyp9hK8j0uWkNxOagBkdCGrG4I,55
|
|
29
|
-
connectonion/cli/docs.md,sha256=Fk_JT8jFXXDpXTvU0ZUigMW1UR6ERmX-HDheYPPRNY8,3231
|
|
30
|
-
connectonion/cli/main.py,sha256=2FWi-yhnyLQzZl_esOXYY3-u0Q1wbpdE4XG3QYoGm_Q,6893
|
|
31
|
-
connectonion/cli/browser_agent/__init__.py,sha256=xZCoxS3dGVBBMnaasHOE1vxMDdIwUloRP67rGR-4obo,173
|
|
32
|
-
connectonion/cli/browser_agent/browser.py,sha256=EdBAvpcfCHh8q6_-3-LVBw6OHyMYnz1_8m6gryWQdzM,8830
|
|
33
|
-
connectonion/cli/browser_agent/prompt.md,sha256=tF0PhGcl3gkmVK1F5SG9GZwnPPXTZYWEaatAZtOYZZg,4479
|
|
34
|
-
connectonion/cli/commands/__init__.py,sha256=IPZy9NwrE0hs4f7hIqyFM9GjFZpeCS8mC0Jf-5Ooy4c,43
|
|
35
|
-
connectonion/cli/commands/auth_commands.py,sha256=D76_0yd77d23bXRvsTAY6HOcGJswo9-6z2dRi9CR9sE,21635
|
|
36
|
-
connectonion/cli/commands/browser_commands.py,sha256=lB4N6XwP43qdcthwQWlbFU2S3INfxhRDXznAw1PSTsQ,1803
|
|
37
|
-
connectonion/cli/commands/copy_commands.py,sha256=9cRpTFlBKrFXgJw582YJqKLq6o1dmwPB_c9RHEJc76c,3852
|
|
38
|
-
connectonion/cli/commands/create.py,sha256=0TrsPulS6dqwr_gtIWWBQ03Q_BnNro-CV4qOV5VkHAg,22011
|
|
39
|
-
connectonion/cli/commands/deploy_commands.py,sha256=s0bjApUQbNlMGStUSrAB8RqSSewBlHrBL60NWgEIHhc,8248
|
|
40
|
-
connectonion/cli/commands/doctor_commands.py,sha256=EOk8CMclvVqLq4-Dg2JghWehH9VQnthBejrhIBX66_4,7244
|
|
41
|
-
connectonion/cli/commands/init.py,sha256=8zpY01Ux25BM6UCMvs66DRtiHKHsq7Yo9N_KOhAhOOA,20979
|
|
42
|
-
connectonion/cli/commands/project_cmd_lib.py,sha256=ek37IwxlLBI4uPnODP6-CvGOKv7-deAGaS3INxcSsGQ,32192
|
|
43
|
-
connectonion/cli/commands/reset_commands.py,sha256=FkK6tMn7QOY3X5ulTYQ7VnLfeYpStgbZ5UnnbD3zudY,7016
|
|
44
|
-
connectonion/cli/commands/status_commands.py,sha256=krUZNd1pFuU8D7UdXrUskBTlpmAdjcTWBXs0s4YJOc4,6401
|
|
45
|
-
connectonion/cli/docs/co-vibecoding-principles-docs-contexts-all-in-one.md,sha256=_RUlrj83Nbl278j3wdXeKFE1AvwixfCPdWevO7RSLRM,58816
|
|
46
|
-
connectonion/cli/docs/connectonion.md,sha256=NuAauvpgNQkkv1ddLIQcrY1YMHKT-c_uk6m36OKhmKw,35357
|
|
47
|
-
connectonion/cli/templates/meta-agent/README.md,sha256=qDUxlSfRPQrEzT9_tcbwL0nqWMfu3EOKYdQe00wlUDE,8659
|
|
48
|
-
connectonion/cli/templates/meta-agent/agent.py,sha256=x89xmsLSwUiiqZGRBzaEOZhvxDE2T1oKzke2I0PGUpw,7349
|
|
49
|
-
connectonion/cli/templates/meta-agent/prompts/answer_prompt.md,sha256=q3knwNPjDdtpzGecaDhoTYK5jMrBTOVhniEvZXjMGw4,406
|
|
50
|
-
connectonion/cli/templates/meta-agent/prompts/docs_retrieve_prompt.md,sha256=7Cv3CBDVp5_gxYEIjb-L5v4b_W74nezIZ2340YBFb_s,580
|
|
51
|
-
connectonion/cli/templates/meta-agent/prompts/metagent.md,sha256=sY3v1wYZgjA37U9Aq_1BSmo0LNgmYyyME65EfTU_3LI,3106
|
|
52
|
-
connectonion/cli/templates/meta-agent/prompts/think_prompt.md,sha256=ObGUNwjpwDtZhrk8b3T4kYKtNpECsDdFU4mNQBWISUM,434
|
|
53
|
-
connectonion/cli/templates/minimal/README.md,sha256=r3iUb0zAT8nJFqfKXMXw_FBFrGp34LPNmAT3UQDA42o,1500
|
|
54
|
-
connectonion/cli/templates/minimal/agent.py,sha256=lDdEGDs81TEoW2gBH_5dTAofnZbsY6jPYQm1m5J-eEk,1779
|
|
55
|
-
connectonion/cli/templates/playwright/README.md,sha256=8rUPKx01mAJTtcBHNPhjnUaOVH8CuNk5ncHNUtZUE_Q,3082
|
|
56
|
-
connectonion/cli/templates/playwright/agent.py,sha256=H5qvfUgdn8b_HJ8F5ETXtHUZijKdkTnbEkOdkwaPjY0,12011
|
|
57
|
-
connectonion/cli/templates/playwright/prompt.md,sha256=wsvpWTzxrWYs4t4WLhXgJ7Auko32RFNe9ii4mL8IM_o,3310
|
|
58
|
-
connectonion/cli/templates/playwright/requirements.txt,sha256=oSyGEC1-DyWm3_vE1QkREeWx4odSlS-K2UjlUCTw4tM,38
|
|
59
|
-
connectonion/cli/templates/web-research/agent.py,sha256=PS50oxPg8GX8RIjjZ6iSVhKDrS00riCjTPSrP3RIFV0,3970
|
|
60
|
-
connectonion/debug_agent/__init__.py,sha256=16b-30zUDtp6NSbd6seV4rLaOTQuRUEjIC2xJ3Fs-wA,370
|
|
61
|
-
connectonion/debug_agent/agent.py,sha256=cvEFud7he3Q8M6Out0NYEY8MDqiUSeFd9RK68bnpHVQ,2504
|
|
62
|
-
connectonion/debug_agent/runtime_inspector.py,sha256=rxFOqTxSvyKxqagYL4V2Pf-ii0Ie8l14a5xHzgIb810,15336
|
|
63
|
-
connectonion/debug_agent/prompts/debug_assistant.md,sha256=sR17NHwBY-8EgIZwK4AoTKW9D6vEDUf1Aq7i936tqco,2816
|
|
64
|
-
connectonion/debug_explainer/__init__.py,sha256=A_rNwGD-Km3iA2U_D9QbQBXjlxSgY_qKmBWvjCpflcs,351
|
|
65
|
-
connectonion/debug_explainer/explain_agent.py,sha256=aw0D69LOREo2nN6YLkNLNUR7r155-foF3w1lzL1IElg,4976
|
|
66
|
-
connectonion/debug_explainer/explain_context.py,sha256=NvITtpoZ7BYIulonVuww0bwGFh3Febs6CvdeO0RsoxE,11351
|
|
67
|
-
connectonion/debug_explainer/explainer_prompt.md,sha256=FnWSYlSn0GvuL6qhstS85Qbg8Fti7GuOeWytwwQpZ38,1325
|
|
68
|
-
connectonion/debug_explainer/root_cause_analysis_prompt.md,sha256=5u_kV8vFjpFDcdTq8r_1tWgv_YRkZcXjtriVQYa1x1s,1412
|
|
69
|
-
connectonion/execution_analyzer/__init__.py,sha256=RREt9mwWs4lEbyHfHqoL3BB-39MEgPjNNqlw2VinKxI,310
|
|
70
|
-
connectonion/execution_analyzer/execution_analysis.py,sha256=Da5gINNIIMbWRjA9qpDKy6GE1BLL7PtnT72qBjaXu0A,3712
|
|
71
|
-
connectonion/execution_analyzer/execution_analysis_prompt.md,sha256=zmKAFHJzCiYkNHxpuK2Nak-7cdswZasqAJkRV_in0dU,1459
|
|
72
|
-
connectonion/prompt_files/__init__.py,sha256=5o5xg0VzZt4e0O4JKh7AO7gbflkw78oNM37yC3VqFRU,56
|
|
73
|
-
connectonion/prompt_files/analyze_contact.md,sha256=ZTCUhO8mM1mbYswfz4zjBxlv4r0DICLoYm0YaQBpiXk,2110
|
|
74
|
-
connectonion/prompt_files/eval_expected.md,sha256=ZnVmyF9S9m49UzTKCMajJhfGaxUhUkDxDm75xDYNLPs,435
|
|
75
|
-
connectonion/prompt_files/react_evaluate.md,sha256=1qzq_ShlhWUQnh8PkdMl9IpHSwR67FguNc8vaLxzSkA,404
|
|
76
|
-
connectonion/prompt_files/react_plan.md,sha256=QwEDnHsCs1A9AGTyuA1puLRHT0MkUrNEAbVhF3yWNEc,492
|
|
77
|
-
connectonion/prompt_files/reflect.md,sha256=aMaWNbHCyxX3AtqyUrrJurAG6w45lcSo05RrAv6UiIM,627
|
|
78
|
-
connectonion/static/docs.html,sha256=rSffkCAy2fA512XcMC6z1wyZH9iYeAsSP213G3l1OOk,31085
|
|
79
|
-
connectonion/tui/__init__.py,sha256=L_4oqFmghtcqD21QVe3hNMnDlDMkF8sXr59fG53xbG0,2232
|
|
80
|
-
connectonion/tui/divider.py,sha256=pKOj7Y3lPwB4TxoWs9J7Pi1axyzMELuw5TIARLyud0o,1018
|
|
81
|
-
connectonion/tui/dropdown.py,sha256=fhxfX2N4vjYvwVPbExcwE23lpgk55xTgmeKyFUIaOE8,8127
|
|
82
|
-
connectonion/tui/footer.py,sha256=EwBCRjxmsBK5xik-jFGkN93AUwLQQZM0m00o7PE9H74,694
|
|
83
|
-
connectonion/tui/fuzzy.py,sha256=Q2ezY8lMioBIUYvQaEF-faa43x-hlN9zr3lxlsojRSI,1463
|
|
84
|
-
connectonion/tui/input.py,sha256=b5LzL-mE496mhox7bYWtw4IDOPKysqvv41XFwRt62HY,10054
|
|
85
|
-
connectonion/tui/keys.py,sha256=uxfFyROIALjYjJgzzLtBzWsPe5umoN8SyOde8lgvaFE,901
|
|
86
|
-
connectonion/tui/pick.py,sha256=54oDYvZc0w8V1dYqdAW4RIHJMaCaujHWtOA77KL66JA,5084
|
|
87
|
-
connectonion/tui/providers.py,sha256=czD130jKA9FYUCkLp3eSZ4o7jF7-58uAvCC_9COzApI,5117
|
|
88
|
-
connectonion/tui/status_bar.py,sha256=DVqDdc6fr9yHDIDGgLGIuR_4yaPzKPM-kAUJ_dXcNAk,4774
|
|
89
|
-
connectonion/useful_events_handlers/__init__.py,sha256=EMgvTx-MtvMZXtCpyTJkJpSSKJNcTqRKhLmQ8qDoobk,386
|
|
90
|
-
connectonion/useful_events_handlers/reflect.py,sha256=Gjy3P51hiFt0X6h_VbAi2Riyx6CtAoO_qE9GJk6C8c0,3408
|
|
91
|
-
connectonion/useful_plugins/__init__.py,sha256=gWFzMmd5mJjAj_rTGNL4PGZYjEWddZmRD5HlMP81lAQ,1259
|
|
92
|
-
connectonion/useful_plugins/calendar_plugin.py,sha256=tjhPR96cq7-JxsmlqLbTt5cM1tRpL9BIamsfhZ9aXPw,5994
|
|
93
|
-
connectonion/useful_plugins/eval.py,sha256=6-6xr4zaFmqAo2x3XJefJT02eLftLKjOJZoBXYzvA3M,4930
|
|
94
|
-
connectonion/useful_plugins/gmail_plugin.py,sha256=bdcZsAR2rKtLLKCiTbUoe7c_iKzsopCecqHxp6p8mIA,5705
|
|
95
|
-
connectonion/useful_plugins/image_result_formatter.py,sha256=iRgEPCKAw6qRwt7crx4o02HpAVpVnz4uEWevkxhSyIc,5332
|
|
96
|
-
connectonion/useful_plugins/re_act.py,sha256=DqJXTwgf3N7-x-C6HBqSMjzjIkQxtYGIbNcvKWRkgZE,3001
|
|
97
|
-
connectonion/useful_plugins/shell_approval.py,sha256=a9eQXkbKGavdm8UKl3E_cInSgoyqLNgOszukxBV0PBM,6314
|
|
98
|
-
connectonion/useful_tools/__init__.py,sha256=ZG7DVNNSoY7lvyREXleRzqpp53OjttMSiNMS6uA3F4M,1743
|
|
99
|
-
connectonion/useful_tools/diff_writer.py,sha256=ZhuSmTvJRd7RmavCRN9Xp-8Q07mBAgV9_HufWd-i9Lc,6796
|
|
100
|
-
connectonion/useful_tools/get_emails.py,sha256=cechjvRkPH2K-mjoZEnvo1Z6uD1YsVNYQSu56elERm0,6300
|
|
101
|
-
connectonion/useful_tools/gmail.py,sha256=87o5eZo3JGhcbtb-eSkgRa6RbZi3sy7054qjN5dm7wQ,61465
|
|
102
|
-
connectonion/useful_tools/google_calendar.py,sha256=7zg41JhLO11wHgovXFqngQPBAt9aiPxJq6XMgn0T978,21989
|
|
103
|
-
connectonion/useful_tools/memory.py,sha256=xTHuP3V5FnM7E9LcRKuMttOXMncQbE4ZDkGoTz5B2Uw,13667
|
|
104
|
-
connectonion/useful_tools/microsoft_calendar.py,sha256=ovEbDgfbGqEF0LvPwG7yHYmqTigBPEsyAicbZZRAeZY,23176
|
|
105
|
-
connectonion/useful_tools/outlook.py,sha256=wxJaSJkkTtVSqfCpGa1ug3aFz_YsNGmxtW1W2iRdsaQ,16893
|
|
106
|
-
connectonion/useful_tools/send_email.py,sha256=qmBdrAXWssmM3yaSfMy3OYa5h2vWTqNqEYAIBWI9OXI,6933
|
|
107
|
-
connectonion/useful_tools/shell.py,sha256=LszM7WShKPx5L7pJSY_zHQOKok8A_OxAkMoEHOSskZk,3344
|
|
108
|
-
connectonion/useful_tools/slash_command.py,sha256=VKl7SKLyaxHcHwfE8rgzBCQ2-KQtL008ZZ2aemM5I6E,7086
|
|
109
|
-
connectonion/useful_tools/terminal.py,sha256=PtzGHN6vnWROmssi37YOZ5U-d0Z7Fe79bocoKAngoxg,9330
|
|
110
|
-
connectonion/useful_tools/todo_list.py,sha256=wVEt4kt-MczIcP3xvKelfshGHZ6EATpDFzQx0zov8cw,7483
|
|
111
|
-
connectonion/useful_tools/web_fetch.py,sha256=CysJLOdDIkbMVJ12Dj3WgsytLu1-o2wrwNopqA_S1jk,7253
|
|
112
|
-
connectonion-0.5.10.dist-info/METADATA,sha256=1xQJXemh__kTUwluT5sYBIG0FasMf2mfdmLd1QszJxg,21903
|
|
113
|
-
connectonion-0.5.10.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
114
|
-
connectonion-0.5.10.dist-info/entry_points.txt,sha256=XDB-kVN7Qgy4DmYTkjQB_O6hZeUND-SqmZbdoQPn6WA,90
|
|
115
|
-
connectonion-0.5.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|