aidp 0.46.0 → 0.47.0
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/lib/aidp/cli.rb +17 -0
- data/lib/aidp/version.rb +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: b9210a42e68b982542c8ea7660abeff350c298fe7f8db09a275e44288a742cf3
|
|
4
|
+
data.tar.gz: 7d6595aa12516b4f790f4eed0e2f971d042ef8fe570ff04067349cb5c983d34a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 83f88408e6ad5824124fdab26042f29093d981e414a0ae8d7484acc6ee9927555860932aa56eb1b7bb0ba02aea588faf4401c4e33deab19bc7a2db83aeae2297
|
|
7
|
+
data.tar.gz: ea1cf98a6437a48e44b8e4de9f9b0315e4aebb72a13260fa9608a8c52b65138c906ffa7b8b242c47863755ca9c1c8155e9947efba67270aa09a4e55695427c90
|
data/lib/aidp/cli.rb
CHANGED
|
@@ -79,6 +79,8 @@ module Aidp
|
|
|
79
79
|
# Priority: ENV variable > aidp.yml > default (info)
|
|
80
80
|
setup_logging(Dir.pwd)
|
|
81
81
|
|
|
82
|
+
display_splash_screen
|
|
83
|
+
|
|
82
84
|
# Start the interactive TUI
|
|
83
85
|
display_message("AIDP initializing...", type: :info)
|
|
84
86
|
display_message(" Press Ctrl+C to stop\n", type: :highlight)
|
|
@@ -166,6 +168,21 @@ module Aidp
|
|
|
166
168
|
Aidp.logger.warn("cli", "Failed to load logging config, using defaults", error: e.message)
|
|
167
169
|
end
|
|
168
170
|
|
|
171
|
+
def display_splash_screen
|
|
172
|
+
display_message(
|
|
173
|
+
<<~'ASCII',
|
|
174
|
+
___ ___ ____ ____
|
|
175
|
+
/ _ \ / _ \/ ___|| _ \
|
|
176
|
+
| | | || | | \___ \| |_) |
|
|
177
|
+
| |_| || |_| |___) | __/
|
|
178
|
+
\___/ \___/|____/|_|
|
|
179
|
+
|
|
180
|
+
AI Development Pipeline
|
|
181
|
+
ASCII
|
|
182
|
+
type: :highlight
|
|
183
|
+
)
|
|
184
|
+
end
|
|
185
|
+
|
|
169
186
|
# Quick exit launch test for CI/CD validation
|
|
170
187
|
# Initializes app components and exits cleanly without running full workflows
|
|
171
188
|
def run_launch_test(mode)
|
data/lib/aidp/version.rb
CHANGED