aidp 0.14.0 → 0.14.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 75047af72249152053d5dfe5b5e7800c0c8c844c7a513cf227601b8adb006af2
4
- data.tar.gz: 574d521b5065f17afa618cfd6b672ed834badca459631011dddde7888796d7c6
3
+ metadata.gz: 8d97cff94f784545b96549c70d910e913bf19a7c94b908e45dae2a999c57e45b
4
+ data.tar.gz: 170bf8fe45dbb081cad38ef69eb8a0f58b962d495ed300b3d58d3f78ef553462
5
5
  SHA512:
6
- metadata.gz: 323d8e0cfe1f37934d703488c00cbb4d1769bc0dea9d6f2d826a1a995861e6a8c84d697963a5e9880e5555e1d3e3f32f551f5db8c7ca273de8d79514dbad0e70
7
- data.tar.gz: 98c37900f0672cade4a7fa838ae94282355e8645fc0ea9a0e2a2e6b2c3d78d265f91e4f66c0f592cf1b8d3297984fdc6fdc26d8efd584df8a0b0c2b543c1f3b8
6
+ metadata.gz: a371614e261335e71b6e78cbe6d6410f26f03a4910e37e6b4102d3681fc9ef2abf617a8f4199b918f8efcdb43fc978a3eef9c1d04aa485297af90394bd34cbd8
7
+ data.tar.gz: 549e21d089121d0212698307bd8ed520499452ad829ff70e8ca1dea7fd50b6c63db9be2a55d4b56c9c60d822703710e84f57f91354bad8892e7367347e6b7777
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # AI Dev Pipeline (aidp) - Ruby Gem
2
2
 
3
+ ![Coverage](./badges/coverage.svg)
4
+
3
5
  A portable CLI that automates AI development workflows from idea to implementation using your existing IDE assistants. Features autonomous work loops, background execution, and comprehensive progress tracking.
4
6
 
5
7
  ## Quick Start
@@ -133,13 +133,16 @@ module Aidp
133
133
 
134
134
  # TODO: Add default selection back once TTY-Prompt default validation issue is resolved
135
135
  # For now, the user will select manually from the dynamically discovered providers
136
- provider_choice = prompt.select("Select your primary LLM provider:") do |menu|
136
+ provider_choice = prompt.select("Select your primary provider:") do |menu|
137
137
  available_providers.each do |display_name, provider_name|
138
138
  menu.choice display_name, provider_name
139
139
  end
140
140
  menu.choice "Other/Custom", "custom"
141
141
  end
142
142
 
143
+ # Save primary provider
144
+ set([:harness, :default_provider], provider_choice) unless provider_choice == "custom"
145
+
143
146
  # Prompt for fallback providers (excluding the primary)
144
147
  fallback_choices = available_providers.reject { |_, name| name == provider_choice }
145
148
  fallback_selected = prompt.multi_select("Select fallback providers (used if primary fails):") do |menu|
@@ -148,7 +151,9 @@ module Aidp
148
151
  end
149
152
  end
150
153
 
151
- set([:harness, :fallback_providers], fallback_selected)
154
+ # Remove any accidental duplication of primary provider & save
155
+ cleaned_fallbacks = fallback_selected.reject { |name| name == provider_choice }
156
+ set([:harness, :fallback_providers], cleaned_fallbacks)
152
157
 
153
158
  # No LLM settings needed; provider agent handles LLM config
154
159
 
data/lib/aidp/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Aidp
4
- VERSION = "0.14.0"
4
+ VERSION = "0.14.1"
5
5
  end
@@ -21,7 +21,7 @@ When the task is 100% complete:
21
21
  2. Any specified validation commands pass
22
22
  3. You've added this line to PROMPT.md:
23
23
 
24
- ```
24
+ ```text
25
25
  STATUS: COMPLETE
26
26
  ```
27
27
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aidp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.14.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bart Agapinan