devin-cli 0.0.7__tar.gz → 0.0.8__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 (27) hide show
  1. {devin_cli-0.0.7 → devin_cli-0.0.8}/PKG-INFO +1 -1
  2. {devin_cli-0.0.7 → devin_cli-0.0.8}/pyproject.toml +1 -1
  3. {devin_cli-0.0.7 → devin_cli-0.0.8}/src/devin_cli/cli.py +12 -0
  4. {devin_cli-0.0.7 → devin_cli-0.0.8}/.github/workflows/pypi-publish.yml +0 -0
  5. {devin_cli-0.0.7 → devin_cli-0.0.8}/.gitignore +0 -0
  6. {devin_cli-0.0.7 → devin_cli-0.0.8}/CHANGELOG.md +0 -0
  7. {devin_cli-0.0.7 → devin_cli-0.0.8}/LICENSE +0 -0
  8. {devin_cli-0.0.7 → devin_cli-0.0.8}/README.md +0 -0
  9. {devin_cli-0.0.7 → devin_cli-0.0.8}/assets/logo.png +0 -0
  10. {devin_cli-0.0.7 → devin_cli-0.0.8}/setup.py +0 -0
  11. {devin_cli-0.0.7 → devin_cli-0.0.8}/src/devin_cli/__init__.py +0 -0
  12. {devin_cli-0.0.7 → devin_cli-0.0.8}/src/devin_cli/api/__init__.py +0 -0
  13. {devin_cli-0.0.7 → devin_cli-0.0.8}/src/devin_cli/api/attachments.py +0 -0
  14. {devin_cli-0.0.7 → devin_cli-0.0.8}/src/devin_cli/api/client.py +0 -0
  15. {devin_cli-0.0.7 → devin_cli-0.0.8}/src/devin_cli/api/knowledge.py +0 -0
  16. {devin_cli-0.0.7 → devin_cli-0.0.8}/src/devin_cli/api/playbooks.py +0 -0
  17. {devin_cli-0.0.7 → devin_cli-0.0.8}/src/devin_cli/api/secrets.py +0 -0
  18. {devin_cli-0.0.7 → devin_cli-0.0.8}/src/devin_cli/api/sessions.py +0 -0
  19. {devin_cli-0.0.7 → devin_cli-0.0.8}/src/devin_cli/config.py +0 -0
  20. {devin_cli-0.0.7 → devin_cli-0.0.8}/tests/__init__.py +0 -0
  21. {devin_cli-0.0.7 → devin_cli-0.0.8}/tests/test_api/test_attachments.py +0 -0
  22. {devin_cli-0.0.7 → devin_cli-0.0.8}/tests/test_api/test_knowledge.py +0 -0
  23. {devin_cli-0.0.7 → devin_cli-0.0.8}/tests/test_api/test_playbooks.py +0 -0
  24. {devin_cli-0.0.7 → devin_cli-0.0.8}/tests/test_api/test_secrets.py +0 -0
  25. {devin_cli-0.0.7 → devin_cli-0.0.8}/tests/test_api/test_sessions.py +0 -0
  26. {devin_cli-0.0.7 → devin_cli-0.0.8}/tests/test_cli.py +0 -0
  27. {devin_cli-0.0.7 → devin_cli-0.0.8}/tests/test_config.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devin-cli
3
- Version: 0.0.7
3
+ Version: 0.0.8
4
4
  Summary: Unofficial CLI for Devin AI - The first AI Software Engineer
5
5
  Project-URL: Homepage, https://github.com/revanthpobala/devin-cli
6
6
  Project-URL: Repository, https://github.com/revanthpobala/devin-cli.git
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "devin-cli"
3
- version = "0.0.7"
3
+ version = "0.0.8"
4
4
  description = "Unofficial CLI for Devin AI - The first AI Software Engineer"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -510,6 +510,18 @@ def chain(
510
510
  ):
511
511
  """
512
512
  (Beta) Run a chain of playbooks.
513
+
514
+ This command allows you to execute a sequence of playbooks either via a CLI argument or a YAML workflow file.
515
+
516
+ Examples:
517
+
518
+ # Method 1: Inline Chain
519
+ # Runs a prompt with a sequence of playbooks
520
+ $ devin chain "Refactor utils.py" --playbooks "lint_check,unit_tests"
521
+
522
+ # Method 2: Workflow File
523
+ # Executes all steps defined in the YAML file
524
+ $ devin chain --file workflow.yml
513
525
  """
514
526
  steps = []
515
527
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes