Skip to content

Commit c08cd32

Browse files
Some fixes in reorganization
1 parent fd0f68b commit c08cd32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

osa_tool/config/prompts/repo_organization.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ You are an expert software architect analyzing repository structures. Generate a
3737
- **Minimal changes**: Only reorganize if clear benefit exists
3838
- **Follow conventions**: Use standard patterns for the project type
3939
- **Preserve build/config**: Don't break build scripts or configuration paths
40-
- **Group similar files**: When many files of the same type need to be moved, use a single `move_files` action with a glob pattern instead of listing each file individually.
40+
- **Group similar files**: When many files of the same type need to be moved, use a single `move_files` action with a glob pattern instead of listing each file individually. - Never use commas inside the pattern – it will be interpreted as part of the filename.
4141
- **Move directories**: To move an entire directory, use `move_directory` action.
4242
4343
## 5. Repository Name Suggestions

osa_tool/organization/core/snapshot_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def transfer_changes(self) -> bool:
9696
)
9797

9898
logger.info(
99-
"Changes staged in %s. Use 'git status' to review and 'git commit' to finalize.", self.original_branch
99+
"Changes staged in %s.", self.original_branch
100100
)
101101
return True
102102

0 commit comments

Comments
 (0)