T001: Pre-trust workspace to skip trust dialog#15
Merged
Conversation
Add ensure_workspace_trusted() that pre-creates ~/.claude/projects/<slug>/ before launching the interactive session. This prevents the "Is this a project you trust?" dialog from appearing on first launch in new directories. Also fixes get_project_logs_dir slug encoding to match Claude Code's actual encoding: regex [^a-zA-Z0-9-] -> '-' instead of only replacing \/:. The old encoding missed underscores and other special characters.
6 new tests covering: - Underscore replacement in slug encoding - Dot replacement in slug encoding - Hyphen preservation in slugs - Pre-trust creates directory for new paths - Pre-trust is idempotent (no error on existing) - Directory doesn't exist before trust call 68 total tests passing.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ensure_workspace_trusted()that pre-creates~/.claude/projects/<slug>/before launching the interactive Claude session, preventing the "Is this a project you trust?" dialog on first launch in new directoriesget_project_logs_dirslug encoding to match Claude Code's actual encoding (re.sub(r'[^a-zA-Z0-9-]', '-', path)instead of only replacing\/:.") — the old encoding missed underscores and other special charactersTest plan
ensure_workspace_trustedcreates directory for new paths, no-ops for existing