Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:

# - name: Build executable
# run: |
# poetry run pyinstaller --onefile --name kb src/knowledgebase_processor/cli_v2/main.py
# poetry run pyinstaller --onefile --name kb src/knowledgebase_processor/cli/main.py

# - name: Upload executable
# uses: actions/upload-artifact@v4
Expand Down
6 changes: 3 additions & 3 deletions ARCHITECTURE_V2.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 🏗️ Service-Oriented Architecture

The CLI v2 introduces a **service-oriented architecture** that separates the user interface from business logic, making the system more testable, maintainable, and extensible.
The CLI introduces a **service-oriented architecture** that separates the user interface from business logic, making the system more testable, maintainable, and extensible.

## 📐 Architecture Overview

Expand Down Expand Up @@ -66,7 +66,7 @@ class OrchestratorService:
```

### 🖥️ CLI Commands
**Location**: `src/knowledgebase_processor/cli_v2/commands/`
**Location**: `src/knowledgebase_processor/cli/commands/`

**Purpose**: Thin wrappers that provide beautiful UI around service operations.

Expand Down Expand Up @@ -147,7 +147,7 @@ class ProjectStats:
- ✅ Error handling for uninitialized projects

### 2. **End-to-End Tests** (Minimal)
**Location**: `tests/cli_v2/test_cli_e2e.py`
**Location**: `tests/cli/test_cli_e2e.py`

**Scope**:
- Test CLI interface with Click test runner
Expand Down
256 changes: 0 additions & 256 deletions CLI_V2_DEMO.md

This file was deleted.

Loading