Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
3994396
Add workspace bootstrap profile foundation
MikotoZero Jun 16, 2026
5a7de16
Add workspace agent guide generation
MikotoZero Jun 17, 2026
f525acf
Make workspace metadata editable in settings
MikotoZero Jun 17, 2026
283a46f
Complete workspace settings repository management
MikotoZero Jun 17, 2026
6d8c1eb
Add workspace creation bootstrap controls
MikotoZero Jun 17, 2026
06b98e8
Clarify workspace bootstrap creation controls
MikotoZero Jun 17, 2026
8bd052c
Align workspace settings bootstrap controls
MikotoZero Jun 18, 2026
10896f1
Manage workspace bootstrap profiles
MikotoZero Jun 18, 2026
5104760
Support command-based bootstrap profiles
MikotoZero Jun 23, 2026
e6decb6
Improve bootstrap profile management UI
MikotoZero Jun 23, 2026
293b3cb
Add bootstrap profile CLI commands
MikotoZero Jun 23, 2026
e5f5b87
Refine workspace creation repository cards
MikotoZero Jun 23, 2026
4826761
Disable bootstrap picker for linked workspace children
MikotoZero Jun 23, 2026
fff53e1
Use explicit bootstrap script environment variable
MikotoZero Jun 23, 2026
afcb5ad
Redesign workspace settings management
MikotoZero Jun 23, 2026
7ebc37d
Clarify workspace display name setting
MikotoZero Jun 23, 2026
d4239dd
Use workspace title as sole workspace display name
MikotoZero Jun 23, 2026
c01acd0
Use custom title for workspace display name
MikotoZero Jun 23, 2026
d31debb
Move workspace repository add flow into sheet
MikotoZero Jun 24, 2026
e66ca9d
Refine workspace repository add sheet
MikotoZero Jun 24, 2026
3debc3e
Save added workspace repositories immediately
MikotoZero Jun 24, 2026
0a9cf02
Improve workspace repository removal flow
MikotoZero Jun 26, 2026
2580d68
Unify bootstrap profiles as script profiles
MikotoZero Jun 26, 2026
81c5669
Support script profiles in repo scripts
MikotoZero Jun 26, 2026
cfba01d
Add script profile source pickers
MikotoZero Jun 26, 2026
ae60468
Seed workspace bootstrap from setup scripts
MikotoZero Jun 26, 2026
d66b5b7
Improve script profile empty states and run feedback
MikotoZero Jun 29, 2026
47885b0
fix: Harden workspace script failure handling
MikotoZero Jul 17, 2026
afc3e29
docs: Plan workspace bootstrap runtime controls
MikotoZero Jul 20, 2026
4f61625
docs: Plan bootstrap runtime control implementation
MikotoZero Jul 20, 2026
42689be
feat: Load workspace bootstrap runtime state
MikotoZero Jul 20, 2026
c109c1d
feat: Add workspace bootstrap runtime controls
MikotoZero Jul 20, 2026
12300ed
docs: Sync workspace bootstrap behavior
MikotoZero Jul 20, 2026
5ca53a2
docs: Record bootstrap runtime implementation
MikotoZero Jul 20, 2026
5d16029
fix: Restore branch quality checks
MikotoZero Jul 20, 2026
ce4e91b
fix: Harden workspace bootstrap boundaries
MikotoZero Jul 20, 2026
ceaf1f6
fix: Keep in-place script profiles in shell
MikotoZero Jul 29, 2026
9504873
feat: Open Script Profiles from repo editors
MikotoZero Jul 29, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,8 @@ format: # Format all Swift code with swift-format (full-tree cleanup)

format-changed: # Format Swift files changed from FORMAT_BASE_REF (default: origin/main)
@base="$$(git merge-base HEAD "$(FORMAT_BASE_REF)" 2>/dev/null || git rev-parse HEAD)"; \
mapfile -t files < <( \
files=(); \
while IFS= read -r file; do files+=("$$file"); done < <( \
{ \
git diff --name-only --diff-filter=ACMR "$$base" -- supacode supacodeTests; \
git ls-files --others --exclude-standard -- supacode supacodeTests; \
Expand Down
1 change: 1 addition & 0 deletions ProwlCLI/Commands/ProwlCommand.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ struct ProwlCommand: ParsableCommand {
ReadCommand.self,
TabCommand.self,
PaneCommand.self,
ScriptsCommand.self,
],
defaultSubcommand: OpenCommand.self
)
Expand Down
Loading