refactorai-cli 0.2.2__tar.gz → 0.2.3__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.
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/PKG-INFO +5 -1
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/README.md +4 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/pyproject.toml +1 -1
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/__init__.py +1 -1
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/settings.py +1 -1
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli.egg-info/PKG-INFO +5 -1
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/auth.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/client.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/commands/__init__.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/commands/auth_cmds.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/commands/engine_cmds.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/commands/model_cmds.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/commands/rules_cmds.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/commands/run_cmds.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/commands/runtime_cmds.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/commands/setup_cmds.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/control_plane.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/credentials.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/local_constitution.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/local_engine_runtime.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/local_paths.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/main.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/model_policy.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/runtime_manager.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli/setup_flow.py +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli.egg-info/SOURCES.txt +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli.egg-info/dependency_links.txt +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli.egg-info/entry_points.txt +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli.egg-info/requires.txt +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/refactorai_cli.egg-info/top_level.txt +0 -0
- {refactorai_cli-0.2.2 → refactorai_cli-0.2.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: refactorai-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: Local-first CLI for the refactor platform
|
|
5
5
|
Requires-Python: >=3.11
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
@@ -17,6 +17,10 @@ Public CLI package for Refactor.
|
|
|
17
17
|
- Installed command: `refactor`
|
|
18
18
|
- Python module package: `refactorai_cli`
|
|
19
19
|
|
|
20
|
+
By default, the CLI targets `https://api.refactorai.codes`.
|
|
21
|
+
Use `REFACTOR_PLATFORM_URL` only when you need to override the control-plane URL
|
|
22
|
+
(for self-hosted or local development environments).
|
|
23
|
+
|
|
20
24
|
## Local development install
|
|
21
25
|
|
|
22
26
|
From repository root:
|
|
@@ -6,6 +6,10 @@ Public CLI package for Refactor.
|
|
|
6
6
|
- Installed command: `refactor`
|
|
7
7
|
- Python module package: `refactorai_cli`
|
|
8
8
|
|
|
9
|
+
By default, the CLI targets `https://api.refactorai.codes`.
|
|
10
|
+
Use `REFACTOR_PLATFORM_URL` only when you need to override the control-plane URL
|
|
11
|
+
(for self-hosted or local development environments).
|
|
12
|
+
|
|
9
13
|
## Local development install
|
|
10
14
|
|
|
11
15
|
From repository root:
|
|
@@ -4,7 +4,7 @@ from __future__ import annotations
|
|
|
4
4
|
|
|
5
5
|
import os
|
|
6
6
|
|
|
7
|
-
DEFAULT_PLATFORM_URL = "
|
|
7
|
+
DEFAULT_PLATFORM_URL = "https://api.refactorai.codes"
|
|
8
8
|
ENV_API_KEY = "REFACTOR_API_KEY"
|
|
9
9
|
ENV_PLATFORM_URL = "REFACTOR_PLATFORM_URL"
|
|
10
10
|
ENV_POLICY_SIGNING_KEY = "REFACTOR_POLICY_SIGNING_KEY"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: refactorai-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: Local-first CLI for the refactor platform
|
|
5
5
|
Requires-Python: >=3.11
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
@@ -17,6 +17,10 @@ Public CLI package for Refactor.
|
|
|
17
17
|
- Installed command: `refactor`
|
|
18
18
|
- Python module package: `refactorai_cli`
|
|
19
19
|
|
|
20
|
+
By default, the CLI targets `https://api.refactorai.codes`.
|
|
21
|
+
Use `REFACTOR_PLATFORM_URL` only when you need to override the control-plane URL
|
|
22
|
+
(for self-hosted or local development environments).
|
|
23
|
+
|
|
20
24
|
## Local development install
|
|
21
25
|
|
|
22
26
|
From repository root:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|