Skip to content
This repository was archived by the owner on Aug 23, 2025. It is now read-only.

Commit 3e80540

Browse files
committed
feat: enhance repository connection feedback and clarify welcome view instructions
1 parent fe83dfb commit 3e80540

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed
78 Bytes
Binary file not shown.

vscode/ai-driven-dev-rules/src/views/explorer/explorerView.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,8 @@ export class ExplorerView {
186186
vscode.window.showInformationMessage(
187187
`Connected to GitHub repository: ${repository.owner}/${repository.name}`,
188188
);
189+
// Ensure the view is visible after successfully setting the repository
190+
vscode.commands.executeCommand(`${ExplorerView.VIEW_ID}.focus`);
189191
} catch (error) {
190192
this.logger.error(
191193
`Error connecting to repository: ${repository.owner}/${repository.name}`,

vscode/ai-driven-dev-rules/src/views/welcome/getStarted.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export function getWelcomeViewContent(): string {
148148
<h2>🚀 Getting Started</h2>
149149
<div class="info-item">
150150
<div class="number">1</div>
151-
<div class="content"><strong>Add a repository</strong>: That will be fetched.</div>
151+
<div class="content"><strong>Add a repository</strong>: That will be fetched (default is "ai-driven-dev/rules").</div>
152152
</div>
153153
<div class="info-item">
154154
<div class="number">2</div>

0 commit comments

Comments
 (0)