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 +4 -4
- data/README.md +2 -0
- data/lib/aidp/setup/wizard.rb +7 -2
- data/lib/aidp/version.rb +1 -1
- data/templates/implementation/simple_task.md +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8d97cff94f784545b96549c70d910e913bf19a7c94b908e45dae2a999c57e45b
|
4
|
+
data.tar.gz: 170bf8fe45dbb081cad38ef69eb8a0f58b962d495ed300b3d58d3f78ef553462
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
+

|
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
|
data/lib/aidp/setup/wizard.rb
CHANGED
@@ -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
|
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
|
-
|
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