feat(init): add --project and --local scope flags#431
feat(init): add --project and --local scope flags#431the0807 wants to merge 1 commit intortk-ai:developfrom
--project and --local scope flags#431Conversation
|
Hi! Thanks for the contribution! Since March 6, all PRs should target the Could you update the base branch? Click Edit at the top right of this PR and change it from Thanks! |
|
Thanks for the heads up! |
--project and --local scope flags
Add project-level and local-level installation scopes to rtk init: - --project: installs to ./.claude/ with settings.json (team-shared) - --local: installs to ./.claude/ with settings.local.json (personal) - Scope-aware uninstall support for all three scopes
70dd0b5 to
8c1a185
Compare
|
@pszymkowiak |
|
|
|
Hey We are cleaning up the codebase and improving the project structure for better onboarding. As part of this effort, PR #826 reorganizes No logic changes — only file moves and import path updates. What you need to doRebase your branch on git fetch origin && git rebase origin/developGit detects renames automatically. If you get import conflicts, update the paths: use crate::git; // now: use crate::cmds::git::git;
use crate::tracking; // now: use crate::core::tracking;
use crate::config; // now: use crate::core::config;
use crate::init; // now: use crate::hooks::init;
use crate::gain; // now: use crate::analytics::gain;Need help rebasing? Tag @aeppling |
Summary
--project: installs to ./.claude/ with settings.json (team-shared)--local: installs to ./.claude/ with settings.local.json (personal)