fix: rename .generated → generated for easy access

Hidden dot-prefix removed for ergonomic shell navigation.
Still gitignored — build output is user-specific.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
salvacybersec
2026-03-22 10:35:15 +03:00
parent 6601d55e59
commit 4865ec8204
2 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

@@ -1,4 +1,4 @@
.generated/
generated/
__pycache__/
*.pyc
.DS_Store

View File

@@ -238,7 +238,7 @@ def print_summary(config: dict, total_personas: int, total_variants: int):
print(f"BUILD COMPLETE")
print(f" Personas: {total_personas}")
print(f" Variants: {total_variants}")
print(f" Output: .generated/")
print(f" Output: generated/")
if config:
user = config.get("user", {}).get("name", "?")
@@ -264,7 +264,7 @@ def main():
print("No personas/ directory found.")
sys.exit(1)
output_dir = root / ".generated"
output_dir = root / "generated"
# Load config
config = load_config(root)