vibe-engineering 0.1.9__tar.gz → 0.1.10__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 (22) hide show
  1. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/PKG-INFO +23 -10
  2. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/README.md +22 -9
  3. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/pyproject.toml +1 -1
  4. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/setup.py +1 -1
  5. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/vibe_engineering.egg-info/PKG-INFO +23 -10
  6. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/setup.cfg +0 -0
  7. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/src/__init__.py +0 -0
  8. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/src/cli/__init__.py +0 -0
  9. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/src/cli/commands.py +0 -0
  10. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/src/db/__init__.py +0 -0
  11. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/src/db/client.py +0 -0
  12. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/src/db/operations.py +0 -0
  13. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/src/llm/__init__.py +0 -0
  14. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/src/llm/client.py +0 -0
  15. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/src/llm/embeddings.py +0 -0
  16. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/src/llm/segmentation.py +0 -0
  17. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/src/schemas/__init__.py +0 -0
  18. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/src/schemas/models.py +0 -0
  19. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/vibe_engineering.egg-info/SOURCES.txt +0 -0
  20. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/vibe_engineering.egg-info/dependency_links.txt +0 -0
  21. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/vibe_engineering.egg-info/requires.txt +0 -0
  22. {vibe_engineering-0.1.9 → vibe_engineering-0.1.10}/vibe_engineering.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vibe-engineering
3
- Version: 0.1.9
3
+ Version: 0.1.10
4
4
  Summary: Add your description here
5
5
  Home-page: https://github.com/vibeengineering/vibe-engineering
6
6
  Author: Vibe Engineering Team
@@ -41,14 +41,26 @@ Vibe Engineering is a powerful command-line tool that helps development teams ma
41
41
 
42
42
  ## 🚀 Quick Install
43
43
 
44
- ### PowerShell (Windows)
45
- ```powershell
46
- PowerShell -ExecutionPolicy Bypass -Command "iwr -useb https://raw.githubusercontent.com/vibeengineering/vibe-engineering/main/install.ps1 | iex"
44
+ ### From Source (Recommended)
45
+ ```bash
46
+ # Clone the repository
47
+ git clone https://github.com/vibeengineering/vibe-engineering.git
48
+ cd vibe-engineering
49
+
50
+ # Run the install script
51
+ ./install-local.sh
52
+
53
+ # Add to PATH (if not already)
54
+ export PATH="$HOME/.local/bin:$PATH"
55
+ echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
47
56
  ```
48
57
 
49
- ### Bash (Linux/macOS)
58
+ ### From PyPI (Note: May have outdated version)
50
59
  ```bash
51
- curl -sSL https://raw.githubusercontent.com/vibeengineering/vibe-engineering/main/install.sh | bash
60
+ pip install vibe-engineering
61
+
62
+ # If vibe command not found, add to PATH:
63
+ export PATH="$HOME/.local/bin:$PATH"
52
64
  ```
53
65
 
54
66
  ### Manual Installation
@@ -57,11 +69,12 @@ curl -sSL https://raw.githubusercontent.com/vibeengineering/vibe-engineering/mai
57
69
  git clone https://github.com/vibeengineering/vibe-engineering.git
58
70
  cd vibe-engineering
59
71
 
60
- # Install dependencies
61
- pip install -r requirements.txt
72
+ # Install build tools
73
+ pip install build
62
74
 
63
- # Install the CLI
64
- pip install -e .
75
+ # Build and install
76
+ python3 -m build --no-isolation
77
+ pip install dist/vibe_engineering-*.whl
65
78
 
66
79
  # Setup configuration
67
80
  cp .env.dist .env
@@ -19,14 +19,26 @@ Vibe Engineering is a powerful command-line tool that helps development teams ma
19
19
 
20
20
  ## 🚀 Quick Install
21
21
 
22
- ### PowerShell (Windows)
23
- ```powershell
24
- PowerShell -ExecutionPolicy Bypass -Command "iwr -useb https://raw.githubusercontent.com/vibeengineering/vibe-engineering/main/install.ps1 | iex"
22
+ ### From Source (Recommended)
23
+ ```bash
24
+ # Clone the repository
25
+ git clone https://github.com/vibeengineering/vibe-engineering.git
26
+ cd vibe-engineering
27
+
28
+ # Run the install script
29
+ ./install-local.sh
30
+
31
+ # Add to PATH (if not already)
32
+ export PATH="$HOME/.local/bin:$PATH"
33
+ echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
25
34
  ```
26
35
 
27
- ### Bash (Linux/macOS)
36
+ ### From PyPI (Note: May have outdated version)
28
37
  ```bash
29
- curl -sSL https://raw.githubusercontent.com/vibeengineering/vibe-engineering/main/install.sh | bash
38
+ pip install vibe-engineering
39
+
40
+ # If vibe command not found, add to PATH:
41
+ export PATH="$HOME/.local/bin:$PATH"
30
42
  ```
31
43
 
32
44
  ### Manual Installation
@@ -35,11 +47,12 @@ curl -sSL https://raw.githubusercontent.com/vibeengineering/vibe-engineering/mai
35
47
  git clone https://github.com/vibeengineering/vibe-engineering.git
36
48
  cd vibe-engineering
37
49
 
38
- # Install dependencies
39
- pip install -r requirements.txt
50
+ # Install build tools
51
+ pip install build
40
52
 
41
- # Install the CLI
42
- pip install -e .
53
+ # Build and install
54
+ python3 -m build --no-isolation
55
+ pip install dist/vibe_engineering-*.whl
43
56
 
44
57
  # Setup configuration
45
58
  cp .env.dist .env
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "vibe-engineering"
3
- version = "0.1.9"
3
+ version = "0.1.10"
4
4
  description = "Add your description here"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.13"
@@ -19,7 +19,7 @@ def read_requirements():
19
19
 
20
20
  setup(
21
21
  name="vibe-engineering",
22
- version="0.1.9",
22
+ version="0.1.10",
23
23
  description="A CLI tool for managing specifications with VoyageAI embeddings and MongoDB vector search",
24
24
  long_description=read_readme(),
25
25
  long_description_content_type="text/markdown",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vibe-engineering
3
- Version: 0.1.9
3
+ Version: 0.1.10
4
4
  Summary: Add your description here
5
5
  Home-page: https://github.com/vibeengineering/vibe-engineering
6
6
  Author: Vibe Engineering Team
@@ -41,14 +41,26 @@ Vibe Engineering is a powerful command-line tool that helps development teams ma
41
41
 
42
42
  ## 🚀 Quick Install
43
43
 
44
- ### PowerShell (Windows)
45
- ```powershell
46
- PowerShell -ExecutionPolicy Bypass -Command "iwr -useb https://raw.githubusercontent.com/vibeengineering/vibe-engineering/main/install.ps1 | iex"
44
+ ### From Source (Recommended)
45
+ ```bash
46
+ # Clone the repository
47
+ git clone https://github.com/vibeengineering/vibe-engineering.git
48
+ cd vibe-engineering
49
+
50
+ # Run the install script
51
+ ./install-local.sh
52
+
53
+ # Add to PATH (if not already)
54
+ export PATH="$HOME/.local/bin:$PATH"
55
+ echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
47
56
  ```
48
57
 
49
- ### Bash (Linux/macOS)
58
+ ### From PyPI (Note: May have outdated version)
50
59
  ```bash
51
- curl -sSL https://raw.githubusercontent.com/vibeengineering/vibe-engineering/main/install.sh | bash
60
+ pip install vibe-engineering
61
+
62
+ # If vibe command not found, add to PATH:
63
+ export PATH="$HOME/.local/bin:$PATH"
52
64
  ```
53
65
 
54
66
  ### Manual Installation
@@ -57,11 +69,12 @@ curl -sSL https://raw.githubusercontent.com/vibeengineering/vibe-engineering/mai
57
69
  git clone https://github.com/vibeengineering/vibe-engineering.git
58
70
  cd vibe-engineering
59
71
 
60
- # Install dependencies
61
- pip install -r requirements.txt
72
+ # Install build tools
73
+ pip install build
62
74
 
63
- # Install the CLI
64
- pip install -e .
75
+ # Build and install
76
+ python3 -m build --no-isolation
77
+ pip install dist/vibe_engineering-*.whl
65
78
 
66
79
  # Setup configuration
67
80
  cp .env.dist .env