
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
A CLI tool for managing Git worktrees with seamless Claude integration. Create isolated development environments and launch Claude directly in your worktree.
npm install -g claudework
After installation, use the claudework command:
claudework <command> [options]
claudework create <branch-name>Create a new worktree and optionally launch Claude.
Options:
-d, --directory <dir> - Custom directory name for worktree-b, --base <branch> - Base branch to create from (default: main)--no-claude - Skip launching Claude after creationExample:
claudework create feature/new-ui -b develop
claudework remove <branch-name>Remove a worktree and its associated branch.
Options:
-f, --force - Force removal even if there are uncommitted changesExample:
claudework remove feature/old-feature --force
claudework merge <branch-name>Merge worktree changes to main and clean up.
Options:
-t, --target <branch> - Target branch to merge into (default: main)--no-delete - Keep worktree and branch after mergeExample:
claudework merge feature/completed -t develop
claudework listList all active worktrees.
Options:
-v, --verbose - Show detailed informationExample:
claudework list --verbose
claudework status [branch-name]Show status of a worktree (current if not specified).
Example:
claudework status feature/in-progress
claudework switch <branch-name>Switch to a different worktree directory.
Options:
-c, --create - Create the worktree if it doesn't existExample:
claudework switch feature/other-work --create
For the switch command to change your current directory, add this function to your shell profile:
claudework-switch() {
local path=$(claudework switch "$@" | grep "^cd " | cut -d' ' -f2-)
if [ -n "$path" ]; then
cd "$path"
fi
}
Then use claudework-switch instead of claudework switch.
MIT
FAQs
CLI tool for managing git worktrees with Claude integration
We found that claudework demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.