refactorai-cli 0.2.5__tar.gz → 0.2.6__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.
Files changed (31) hide show
  1. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/PKG-INFO +1 -1
  2. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/pyproject.toml +1 -1
  3. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/__init__.py +1 -1
  4. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/main.py +19 -1
  5. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli.egg-info/PKG-INFO +1 -1
  6. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/README.md +0 -0
  7. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/auth.py +0 -0
  8. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/client.py +0 -0
  9. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/commands/__init__.py +0 -0
  10. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/commands/auth_cmds.py +0 -0
  11. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/commands/engine_cmds.py +0 -0
  12. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/commands/model_cmds.py +0 -0
  13. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/commands/rules_cmds.py +0 -0
  14. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/commands/run_cmds.py +0 -0
  15. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/commands/runtime_cmds.py +0 -0
  16. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/commands/setup_cmds.py +0 -0
  17. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/control_plane.py +0 -0
  18. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/credentials.py +0 -0
  19. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/local_constitution.py +0 -0
  20. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/local_engine_runtime.py +0 -0
  21. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/local_paths.py +0 -0
  22. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/model_policy.py +0 -0
  23. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/runtime_manager.py +0 -0
  24. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/settings.py +0 -0
  25. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli/setup_flow.py +0 -0
  26. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli.egg-info/SOURCES.txt +0 -0
  27. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli.egg-info/dependency_links.txt +0 -0
  28. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli.egg-info/entry_points.txt +0 -0
  29. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli.egg-info/requires.txt +0 -0
  30. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/refactorai_cli.egg-info/top_level.txt +0 -0
  31. {refactorai_cli-0.2.5 → refactorai_cli-0.2.6}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: refactorai-cli
3
- Version: 0.2.5
3
+ Version: 0.2.6
4
4
  Summary: Local-first CLI for the refactor platform
5
5
  Requires-Python: >=3.11
6
6
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "refactorai-cli"
3
- version = "0.2.5"
3
+ version = "0.2.6"
4
4
  description = "Local-first CLI for the refactor platform"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -5,4 +5,4 @@ the shared `refactor_core` pipeline from a project folder while staying
5
5
  authenticated to the hosted platform via a developer key.
6
6
  """
7
7
 
8
- __version__ = "0.2.5"
8
+ __version__ = "0.2.6"
@@ -5,7 +5,7 @@ from __future__ import annotations
5
5
  import typer
6
6
 
7
7
  from refactorai_cli import __version__
8
- from refactorai_cli.commands import auth_cmds, engine_cmds, model_cmds, runtime_cmds, setup_cmds
8
+ from refactorai_cli.commands import auth_cmds, engine_cmds, model_cmds, rules_cmds, run_cmds, runtime_cmds, setup_cmds
9
9
 
10
10
  app = typer.Typer(
11
11
  name="refactor",
@@ -39,9 +39,27 @@ def main(
39
39
  app.command()(auth_cmds.login)
40
40
  app.command()(auth_cmds.whoami)
41
41
 
42
+ # Project / run surface
43
+ app.command()(run_cmds.init)
44
+ app.command()(run_cmds.start)
45
+ app.command()(run_cmds.stop)
46
+ app.command()(run_cmds.shell)
47
+ app.command()(run_cmds.review)
48
+ app.command()(run_cmds.code)
49
+ app.command()(run_cmds.requests)
50
+ app.command()(run_cmds.apply)
51
+ app.command()(run_cmds.revert)
52
+ app.command()(run_cmds.status)
53
+ app.command()(run_cmds.diff)
54
+ app.command()(run_cmds.gc)
55
+ app.command()(run_cmds.check)
56
+ app.command()(run_cmds.doctor)
57
+ app.command()(run_cmds.config)
58
+
42
59
  app.command()(setup_cmds.setup)
43
60
 
44
61
  # Runtime/engine/model operations.
62
+ app.add_typer(rules_cmds.app, name="rules")
45
63
  app.add_typer(runtime_cmds.app, name="runtime")
46
64
  app.add_typer(engine_cmds.app, name="engine")
47
65
  app.add_typer(model_cmds.app, name="model")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: refactorai-cli
3
- Version: 0.2.5
3
+ Version: 0.2.6
4
4
  Summary: Local-first CLI for the refactor platform
5
5
  Requires-Python: >=3.11
6
6
  Description-Content-Type: text/markdown
File without changes
File without changes