devobin 1.0.0__tar.gz → 1.1.0__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 (49) hide show
  1. {devobin-1.0.0 → devobin-1.1.0}/PKG-INFO +6 -3
  2. {devobin-1.0.0 → devobin-1.1.0}/README.md +3 -0
  3. {devobin-1.0.0 → devobin-1.1.0}/devobin/__init__.py +1 -1
  4. {devobin-1.0.0 → devobin-1.1.0}/pyproject.toml +3 -3
  5. {devobin-1.0.0 → devobin-1.1.0}/LICENSE +0 -0
  6. {devobin-1.0.0 → devobin-1.1.0}/devobin/app.py +0 -0
  7. {devobin-1.0.0 → devobin-1.1.0}/devobin/cli/__init__.py +0 -0
  8. {devobin-1.0.0 → devobin-1.1.0}/devobin/cli/chat.py +0 -0
  9. {devobin-1.0.0 → devobin-1.1.0}/devobin/cli/commands.py +0 -0
  10. {devobin-1.0.0 → devobin-1.1.0}/devobin/cli/slash_menu.py +0 -0
  11. {devobin-1.0.0 → devobin-1.1.0}/devobin/cli/terminal.py +0 -0
  12. {devobin-1.0.0 → devobin-1.1.0}/devobin/cli/ui.py +0 -0
  13. {devobin-1.0.0 → devobin-1.1.0}/devobin/config/__init__.py +0 -0
  14. {devobin-1.0.0 → devobin-1.1.0}/devobin/config/settings.py +0 -0
  15. {devobin-1.0.0 → devobin-1.1.0}/devobin/core/__init__.py +0 -0
  16. {devobin-1.0.0 → devobin-1.1.0}/devobin/core/analyzer.py +0 -0
  17. {devobin-1.0.0 → devobin-1.1.0}/devobin/core/executor.py +0 -0
  18. {devobin-1.0.0 → devobin-1.1.0}/devobin/core/memory.py +0 -0
  19. {devobin-1.0.0 → devobin-1.1.0}/devobin/core/optimizer.py +0 -0
  20. {devobin-1.0.0 → devobin-1.1.0}/devobin/core/prompt_builder.py +0 -0
  21. {devobin-1.0.0 → devobin-1.1.0}/devobin/core/researcher.py +0 -0
  22. {devobin-1.0.0 → devobin-1.1.0}/devobin/core/rtl.py +0 -0
  23. {devobin-1.0.0 → devobin-1.1.0}/devobin/core/scanner.py +0 -0
  24. {devobin-1.0.0 → devobin-1.1.0}/devobin/core/tools.py +0 -0
  25. {devobin-1.0.0 → devobin-1.1.0}/devobin/core/validator.py +0 -0
  26. {devobin-1.0.0 → devobin-1.1.0}/devobin/main.py +0 -0
  27. {devobin-1.0.0 → devobin-1.1.0}/devobin/output/__init__.py +0 -0
  28. {devobin-1.0.0 → devobin-1.1.0}/devobin/providers/__init__.py +0 -0
  29. {devobin-1.0.0 → devobin-1.1.0}/devobin/providers/anthropic_provider.py +0 -0
  30. {devobin-1.0.0 → devobin-1.1.0}/devobin/providers/google_provider.py +0 -0
  31. {devobin-1.0.0 → devobin-1.1.0}/devobin/providers/ollama_provider.py +0 -0
  32. {devobin-1.0.0 → devobin-1.1.0}/devobin/providers/openai_provider.py +0 -0
  33. {devobin-1.0.0 → devobin-1.1.0}/devobin/storage/__init__.py +0 -0
  34. {devobin-1.0.0 → devobin-1.1.0}/devobin/storage/database.py +0 -0
  35. {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/__init__.py +0 -0
  36. {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/ask_modal.py +0 -0
  37. {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/chat_screen.py +0 -0
  38. {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/command_palette.py +0 -0
  39. {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/connect_modal.py +0 -0
  40. {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/export_modal.py +0 -0
  41. {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/history_modal.py +0 -0
  42. {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/memory_modal.py +0 -0
  43. {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/model_modal.py +0 -0
  44. {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/permission_modal.py +0 -0
  45. {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/project_modal.py +0 -0
  46. {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/settings_modal.py +0 -0
  47. {devobin-1.0.0 → devobin-1.1.0}/devobin_prompt.md +0 -0
  48. {devobin-1.0.0 → devobin-1.1.0}/report.html +0 -0
  49. {devobin-1.0.0 → devobin-1.1.0}/test.md +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devobin
3
- Version: 1.0.0
3
+ Version: 1.1.0
4
4
  Summary: AI Engineering Context Compiler and Prompt Architect CLI — reads your code, builds the perfect prompt
5
- Project-URL: Homepage, https://github.com/mobinhasanghasemi/devobin
5
+ Project-URL: Homepage, https://devobin.ir
6
6
  Project-URL: Repository, https://github.com/mobinhasanghasemi/devobin
7
7
  Project-URL: Issues, https://github.com/mobinhasanghasemi/devobin/issues
8
- Author-email: Mobin Hasanghasemi <mobin@devobin.ai>
8
+ Author-email: Mobin Hasanghasemi <mobin.hasanghasemi.m@gmail.com>
9
9
  License-Expression: MIT
10
10
  License-File: LICENSE
11
11
  Keywords: ai,claude,cli,codex,coding-agent,context-compilation,cursor,developer-tools,prompt-engineering
@@ -359,6 +359,9 @@ MIT License
359
359
  ## Author
360
360
 
361
361
  **Mobin Hasanghasemi**
362
+ - Website: [devobin.ir](https://devobin.ir)
363
+ - Instagram: [@devobin](https://instagram.com/devobin)
362
364
  - GitHub: [github.com/mobinhasanghasemi](https://github.com/mobinhasanghasemi)
365
+ - Email: mobin.hasanghasemi.m@gmail.com
363
366
 
364
367
  </div>
@@ -317,6 +317,9 @@ MIT License
317
317
  ## Author
318
318
 
319
319
  **Mobin Hasanghasemi**
320
+ - Website: [devobin.ir](https://devobin.ir)
321
+ - Instagram: [@devobin](https://instagram.com/devobin)
320
322
  - GitHub: [github.com/mobinhasanghasemi](https://github.com/mobinhasanghasemi)
323
+ - Email: mobin.hasanghasemi.m@gmail.com
321
324
 
322
325
  </div>
@@ -1,4 +1,4 @@
1
1
  """DevObin AI - Engineering Context Compiler and Prompt Architect CLI."""
2
2
 
3
- __version__ = "1.0.0"
3
+ __version__ = "1.1.0"
4
4
  __app_name__ = "DevObin AI"
@@ -4,13 +4,13 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "devobin"
7
- version = "1.0.0"
7
+ version = "1.1.0"
8
8
  description = "AI Engineering Context Compiler and Prompt Architect CLI — reads your code, builds the perfect prompt"
9
9
  readme = "README.md"
10
10
  license = "MIT"
11
11
  requires-python = ">=3.12"
12
12
  authors = [
13
- { name = "Mobin Hasanghasemi", email = "mobin@devobin.ai" },
13
+ { name = "Mobin Hasanghasemi", email = "mobin.hasanghasemi.m@gmail.com" },
14
14
  ]
15
15
  keywords = ["ai", "cli", "prompt-engineering", "developer-tools", "context-compilation", "coding-agent", "codex", "claude", "cursor"]
16
16
  classifiers = [
@@ -43,7 +43,7 @@ dependencies = [
43
43
  ]
44
44
 
45
45
  [project.urls]
46
- Homepage = "https://github.com/mobinhasanghasemi/devobin"
46
+ Homepage = "https://devobin.ir"
47
47
  Repository = "https://github.com/mobinhasanghasemi/devobin"
48
48
  Issues = "https://github.com/mobinhasanghasemi/devobin/issues"
49
49
 
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