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.
- {devobin-1.0.0 → devobin-1.1.0}/PKG-INFO +6 -3
- {devobin-1.0.0 → devobin-1.1.0}/README.md +3 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/__init__.py +1 -1
- {devobin-1.0.0 → devobin-1.1.0}/pyproject.toml +3 -3
- {devobin-1.0.0 → devobin-1.1.0}/LICENSE +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/app.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/cli/__init__.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/cli/chat.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/cli/commands.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/cli/slash_menu.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/cli/terminal.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/cli/ui.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/config/__init__.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/config/settings.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/core/__init__.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/core/analyzer.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/core/executor.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/core/memory.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/core/optimizer.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/core/prompt_builder.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/core/researcher.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/core/rtl.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/core/scanner.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/core/tools.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/core/validator.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/main.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/output/__init__.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/providers/__init__.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/providers/anthropic_provider.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/providers/google_provider.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/providers/ollama_provider.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/providers/openai_provider.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/storage/__init__.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/storage/database.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/__init__.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/ask_modal.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/chat_screen.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/command_palette.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/connect_modal.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/export_modal.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/history_modal.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/memory_modal.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/model_modal.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/permission_modal.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/project_modal.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin/ui/settings_modal.py +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/devobin_prompt.md +0 -0
- {devobin-1.0.0 → devobin-1.1.0}/report.html +0 -0
- {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.
|
|
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://
|
|
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@
|
|
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>
|
|
@@ -4,13 +4,13 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "devobin"
|
|
7
|
-
version = "1.
|
|
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@
|
|
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://
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|