agent-loop-guard-runtime 0.6.0a2__tar.gz → 0.6.0a3__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.
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/PKG-INFO +8 -9
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/README.md +7 -8
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/agent_loop_guard_runtime.egg-info/PKG-INFO +8 -9
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/pyproject.toml +1 -1
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/LICENSE +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/agent_loop_guard_runtime.egg-info/SOURCES.txt +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/agent_loop_guard_runtime.egg-info/dependency_links.txt +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/agent_loop_guard_runtime.egg-info/entry_points.txt +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/agent_loop_guard_runtime.egg-info/requires.txt +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/agent_loop_guard_runtime.egg-info/top_level.txt +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/__init__.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/api/__init__.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/api/admin_routes.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/api/anthropic_routes.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/api/common.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/api/mcp_routes.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/api/openai_routes.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/api/replay_routes.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/api/ui_routes.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/__init__.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/adapters.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/data/starter-v1.json +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/dataset.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/models.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/runner.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/scorers.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/statistics.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/storage.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/cli.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/core/config.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/core/demo.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/core/loop_detector.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/core/policy_engine.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/core/redaction.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/core/security.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/core/token_meter.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/db/models.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/db/repository.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/db/session.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/main.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/mcp/__init__.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/mcp/gateway.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/mcp/policy.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/mcp/presets/development.yml +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/mcp/presets/filesystem.yml +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/mcp/stdio.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/platform/__init__.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/platform/alembic/__init__.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/platform/alembic/env.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/platform/alembic/script.py.mako +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/platform/alembic/versions/0001_initial_schema.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/platform/alembic/versions/__init__.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/platform/events.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/platform/maintenance.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/platform/migrations.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/platform/setup.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/providers/__init__.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/providers/base.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/providers/mock.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/providers/upstream.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/replay/__init__.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/replay/costs.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/replay/formats.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/replay/sdk.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/sandbox/__init__.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/sandbox/policy.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/sandbox/workspace.py +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/static/styles.css +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/agents.html +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/base.html +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/dashboard.html +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/demo.html +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/mcp.html +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/policies.html +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/replay.html +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/replay_compare.html +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/replay_detail.html +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/session_detail.html +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/sessions.html +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/settings.html +0 -0
- {agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-loop-guard-runtime
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.0a3
|
|
4
4
|
Summary: Local runtime guard for coding agents with loop detection and explainable policy decisions.
|
|
5
5
|
Author: Agent Loop Guard contributors
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -47,6 +47,7 @@ Dynamic: license-file
|
|
|
47
47
|
|
|
48
48
|
[](https://github.com/RIMUMURUDEV/agent-loop-guard/actions/workflows/ci.yml)
|
|
49
49
|
[](https://rimumurudev.github.io/agent-loop-guard/)
|
|
50
|
+
[](https://pypi.org/project/agent-loop-guard-runtime/)
|
|
50
51
|
[](https://www.python.org/)
|
|
51
52
|
[](LICENSE)
|
|
52
53
|
[](https://marketplace.visualstudio.com/items?itemName=RIMUMURUDEV.agent-loop-guard-vscode)
|
|
@@ -59,22 +60,20 @@ The default setup uses a local mock provider, so the demo works without an exter
|
|
|
59
60
|
|
|
60
61
|
## Install
|
|
61
62
|
|
|
62
|
-
Install the current alpha
|
|
63
|
+
Install the current alpha from [PyPI](https://pypi.org/project/agent-loop-guard-runtime/). The installed command is `alg`:
|
|
63
64
|
|
|
64
65
|
```bash
|
|
65
|
-
pipx install
|
|
66
|
+
pipx install agent-loop-guard-runtime
|
|
66
67
|
# or
|
|
67
|
-
uv tool install
|
|
68
|
+
uv tool install agent-loop-guard-runtime
|
|
68
69
|
```
|
|
69
70
|
|
|
70
71
|
Run once without a permanent installation:
|
|
71
72
|
|
|
72
73
|
```bash
|
|
73
|
-
uvx --from
|
|
74
|
+
uvx --from agent-loop-guard-runtime alg doctor
|
|
74
75
|
```
|
|
75
76
|
|
|
76
|
-
PyPI publication under the distribution name `agent-loop-guard-runtime` is planned after trusted publishing is configured. The project does not claim that an unpublished package is available.
|
|
77
|
-
|
|
78
77
|
For development from this checkout:
|
|
79
78
|
|
|
80
79
|
```bash
|
|
@@ -306,7 +305,7 @@ code --install-extension RIMUMURUDEV.agent-loop-guard-vscode
|
|
|
306
305
|
Install the Python runtime first, then use `Agent Loop Guard: Setup Current Workspace`:
|
|
307
306
|
|
|
308
307
|
```bash
|
|
309
|
-
pipx install
|
|
308
|
+
pipx install agent-loop-guard-runtime
|
|
310
309
|
```
|
|
311
310
|
|
|
312
311
|
Run the extension from source:
|
|
@@ -398,7 +397,7 @@ docker compose up --build
|
|
|
398
397
|
|
|
399
398
|
## Project Status
|
|
400
399
|
|
|
401
|
-
This repository is developed as an educational open-source project. Guard, MCP, Replay, and Benchmark are locally testable. Sandbox is a technical preview and its real Docker smoke-test runs only on Linux CI; it could not be executed on the current Windows machine because Docker is not installed. The VS Code extension
|
|
400
|
+
This repository is developed as an educational open-source project. Guard, MCP, Replay, and Benchmark are locally testable. Sandbox is a technical preview and its real Docker smoke-test runs only on Linux CI; it could not be executed on the current Windows machine because Docker is not installed. The Python runtime and VS Code extension are publicly available through PyPI and the VS Code Marketplace.
|
|
402
401
|
|
|
403
402
|
There is no telemetry, paid cloud, subscription, SLA, or closed feature set. Optional donations may be added later, but they do not influence architecture or priorities.
|
|
404
403
|
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/RIMUMURUDEV/agent-loop-guard/actions/workflows/ci.yml)
|
|
4
4
|
[](https://rimumurudev.github.io/agent-loop-guard/)
|
|
5
|
+
[](https://pypi.org/project/agent-loop-guard-runtime/)
|
|
5
6
|
[](https://www.python.org/)
|
|
6
7
|
[](LICENSE)
|
|
7
8
|
[](https://marketplace.visualstudio.com/items?itemName=RIMUMURUDEV.agent-loop-guard-vscode)
|
|
@@ -14,22 +15,20 @@ The default setup uses a local mock provider, so the demo works without an exter
|
|
|
14
15
|
|
|
15
16
|
## Install
|
|
16
17
|
|
|
17
|
-
Install the current alpha
|
|
18
|
+
Install the current alpha from [PyPI](https://pypi.org/project/agent-loop-guard-runtime/). The installed command is `alg`:
|
|
18
19
|
|
|
19
20
|
```bash
|
|
20
|
-
pipx install
|
|
21
|
+
pipx install agent-loop-guard-runtime
|
|
21
22
|
# or
|
|
22
|
-
uv tool install
|
|
23
|
+
uv tool install agent-loop-guard-runtime
|
|
23
24
|
```
|
|
24
25
|
|
|
25
26
|
Run once without a permanent installation:
|
|
26
27
|
|
|
27
28
|
```bash
|
|
28
|
-
uvx --from
|
|
29
|
+
uvx --from agent-loop-guard-runtime alg doctor
|
|
29
30
|
```
|
|
30
31
|
|
|
31
|
-
PyPI publication under the distribution name `agent-loop-guard-runtime` is planned after trusted publishing is configured. The project does not claim that an unpublished package is available.
|
|
32
|
-
|
|
33
32
|
For development from this checkout:
|
|
34
33
|
|
|
35
34
|
```bash
|
|
@@ -261,7 +260,7 @@ code --install-extension RIMUMURUDEV.agent-loop-guard-vscode
|
|
|
261
260
|
Install the Python runtime first, then use `Agent Loop Guard: Setup Current Workspace`:
|
|
262
261
|
|
|
263
262
|
```bash
|
|
264
|
-
pipx install
|
|
263
|
+
pipx install agent-loop-guard-runtime
|
|
265
264
|
```
|
|
266
265
|
|
|
267
266
|
Run the extension from source:
|
|
@@ -353,7 +352,7 @@ docker compose up --build
|
|
|
353
352
|
|
|
354
353
|
## Project Status
|
|
355
354
|
|
|
356
|
-
This repository is developed as an educational open-source project. Guard, MCP, Replay, and Benchmark are locally testable. Sandbox is a technical preview and its real Docker smoke-test runs only on Linux CI; it could not be executed on the current Windows machine because Docker is not installed. The VS Code extension
|
|
355
|
+
This repository is developed as an educational open-source project. Guard, MCP, Replay, and Benchmark are locally testable. Sandbox is a technical preview and its real Docker smoke-test runs only on Linux CI; it could not be executed on the current Windows machine because Docker is not installed. The Python runtime and VS Code extension are publicly available through PyPI and the VS Code Marketplace.
|
|
357
356
|
|
|
358
357
|
There is no telemetry, paid cloud, subscription, SLA, or closed feature set. Optional donations may be added later, but they do not influence architecture or priorities.
|
|
359
358
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-loop-guard-runtime
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.0a3
|
|
4
4
|
Summary: Local runtime guard for coding agents with loop detection and explainable policy decisions.
|
|
5
5
|
Author: Agent Loop Guard contributors
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -47,6 +47,7 @@ Dynamic: license-file
|
|
|
47
47
|
|
|
48
48
|
[](https://github.com/RIMUMURUDEV/agent-loop-guard/actions/workflows/ci.yml)
|
|
49
49
|
[](https://rimumurudev.github.io/agent-loop-guard/)
|
|
50
|
+
[](https://pypi.org/project/agent-loop-guard-runtime/)
|
|
50
51
|
[](https://www.python.org/)
|
|
51
52
|
[](LICENSE)
|
|
52
53
|
[](https://marketplace.visualstudio.com/items?itemName=RIMUMURUDEV.agent-loop-guard-vscode)
|
|
@@ -59,22 +60,20 @@ The default setup uses a local mock provider, so the demo works without an exter
|
|
|
59
60
|
|
|
60
61
|
## Install
|
|
61
62
|
|
|
62
|
-
Install the current alpha
|
|
63
|
+
Install the current alpha from [PyPI](https://pypi.org/project/agent-loop-guard-runtime/). The installed command is `alg`:
|
|
63
64
|
|
|
64
65
|
```bash
|
|
65
|
-
pipx install
|
|
66
|
+
pipx install agent-loop-guard-runtime
|
|
66
67
|
# or
|
|
67
|
-
uv tool install
|
|
68
|
+
uv tool install agent-loop-guard-runtime
|
|
68
69
|
```
|
|
69
70
|
|
|
70
71
|
Run once without a permanent installation:
|
|
71
72
|
|
|
72
73
|
```bash
|
|
73
|
-
uvx --from
|
|
74
|
+
uvx --from agent-loop-guard-runtime alg doctor
|
|
74
75
|
```
|
|
75
76
|
|
|
76
|
-
PyPI publication under the distribution name `agent-loop-guard-runtime` is planned after trusted publishing is configured. The project does not claim that an unpublished package is available.
|
|
77
|
-
|
|
78
77
|
For development from this checkout:
|
|
79
78
|
|
|
80
79
|
```bash
|
|
@@ -306,7 +305,7 @@ code --install-extension RIMUMURUDEV.agent-loop-guard-vscode
|
|
|
306
305
|
Install the Python runtime first, then use `Agent Loop Guard: Setup Current Workspace`:
|
|
307
306
|
|
|
308
307
|
```bash
|
|
309
|
-
pipx install
|
|
308
|
+
pipx install agent-loop-guard-runtime
|
|
310
309
|
```
|
|
311
310
|
|
|
312
311
|
Run the extension from source:
|
|
@@ -398,7 +397,7 @@ docker compose up --build
|
|
|
398
397
|
|
|
399
398
|
## Project Status
|
|
400
399
|
|
|
401
|
-
This repository is developed as an educational open-source project. Guard, MCP, Replay, and Benchmark are locally testable. Sandbox is a technical preview and its real Docker smoke-test runs only on Linux CI; it could not be executed on the current Windows machine because Docker is not installed. The VS Code extension
|
|
400
|
+
This repository is developed as an educational open-source project. Guard, MCP, Replay, and Benchmark are locally testable. Sandbox is a technical preview and its real Docker smoke-test runs only on Linux CI; it could not be executed on the current Windows machine because Docker is not installed. The Python runtime and VS Code extension are publicly available through PyPI and the VS Code Marketplace.
|
|
402
401
|
|
|
403
402
|
There is no telemetry, paid cloud, subscription, SLA, or closed feature set. Optional donations may be added later, but they do not influence architecture or priorities.
|
|
404
403
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agent-loop-guard-runtime"
|
|
7
|
-
version = "0.6.
|
|
7
|
+
version = "0.6.0a3"
|
|
8
8
|
description = "Local runtime guard for coding agents with loop detection and explainable policy decisions."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/api/admin_routes.py
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/api/anthropic_routes.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/api/openai_routes.py
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/api/replay_routes.py
RENAMED
|
File without changes
|
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/__init__.py
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/adapters.py
RENAMED
|
File without changes
|
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/dataset.py
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/models.py
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/runner.py
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/scorers.py
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/statistics.py
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/benchmark/storage.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/core/loop_detector.py
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/core/policy_engine.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/core/token_meter.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
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/mcp/presets/filesystem.yml
RENAMED
|
File without changes
|
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/platform/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/platform/alembic/env.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/platform/events.py
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/platform/maintenance.py
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/platform/migrations.py
RENAMED
|
File without changes
|
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/providers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/providers/upstream.py
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/replay/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/sandbox/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/sandbox/workspace.py
RENAMED
|
File without changes
|
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/agents.html
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/base.html
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/dashboard.html
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/demo.html
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/mcp.html
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/policies.html
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/replay.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/sessions.html
RENAMED
|
File without changes
|
{agent_loop_guard_runtime-0.6.0a2 → agent_loop_guard_runtime-0.6.0a3}/app/templates/settings.html
RENAMED
|
File without changes
|
|
File without changes
|