conduct-cli 0.4.33__tar.gz → 0.4.34__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: conduct-cli
3
- Version: 0.4.33
3
+ Version: 0.4.34
4
4
  Summary: CLI for Conduct AI — install agents, manage projects, run tests
5
5
  Author-email: Conduct AI <hello@conductai.ai>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "conduct-cli"
7
- version = "0.4.33"
7
+ version = "0.4.34"
8
8
  description = "CLI for Conduct AI — install agents, manage projects, run tests"
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -1487,7 +1487,8 @@ def main():
1487
1487
  elif args.command == "projects":
1488
1488
  cmd_projects(args)
1489
1489
  elif args.command == "create":
1490
- if getattr(args, "create_type", None) == "project":
1490
+ create_args = getattr(args, "create_args", None)
1491
+ if create_args:
1491
1492
  cmd_create(args)
1492
1493
  else:
1493
1494
  create_p.print_help()
@@ -1496,7 +1497,8 @@ def main():
1496
1497
  elif args.command == "install":
1497
1498
  cmd_install(args)
1498
1499
  elif args.command == "delete":
1499
- if getattr(args, "delete_type", None) == "project":
1500
+ delete_args = getattr(args, "delete_args", None)
1501
+ if delete_args:
1500
1502
  cmd_delete(args)
1501
1503
  else:
1502
1504
  delete_p.print_help()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: conduct-cli
3
- Version: 0.4.33
3
+ Version: 0.4.34
4
4
  Summary: CLI for Conduct AI — install agents, manage projects, run tests
5
5
  Author-email: Conduct AI <hello@conductai.ai>
6
6
  License: MIT
File without changes
File without changes
File without changes