
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
claude-code-forge
Advanced tools
CLI tool to initialize Claude Code workspace with templates.
npm install -g claude-code-forge
Or use directly with npx:
npx claude-code-forge
# Basic usage - interactive mode
npx claude-code-forge
# Specify target directory
npx claude-code-forge ./my-project
# With explicit repo
npx claude-code-forge --repo github.com/myorg/template
# Force SSH auth
npx claude-code-forge --ssh
# Use token auth
npx claude-code-forge --token ghp_xxxx
# Preview changes without making them
npx claude-code-forge --dry-run
# Overwrite without prompts
npx claude-code-forge --force
# Skip specific folders
npx claude-code-forge --skip-docs --skip-plans
CLAUDE_FORGE_REPO=github.com/myorg/template
CLAUDE_FORGE_TOKEN=ghp_xxxx
| Option | Description |
|---|---|
[target-dir] | Target directory (default: .) |
--repo <url> | Template repository URL |
--ssh | Use SSH authentication |
--token <pat> | Use GitHub Personal Access Token |
--force | Overwrite existing files without prompts |
--dry-run | Preview changes only |
--skip-docs | Skip docs/ folder |
--skip-plans | Skip plans/ folder |
-h, --help | Display help |
-V, --version | Display version |
The tool saves configuration to ~/.claudeforgerc:
{
"repo": "github.com/myorg/template",
"auth": "ssh"
}
Repository URL:
--repo flagCLAUDE_FORGE_REPO env~/.claudeforgercAuthentication:
--ssh flag--token flagCLAUDE_FORGE_TOKEN env~/.claudeforgerc.claude/ - Workflows, skills, commands, agentsdocs/ - Project documentationplans/ - Implementation plansCLAUDE.md - Claude Code instructionsWhen existing files are detected:
Use --force to overwrite without prompts.
# Check if SSH key exists
ls ~/.ssh/id_*
# Test GitHub SSH access
ssh -T git@github.com
Ensure your PAT has repo scope for private repositories.
Check your internet connection and try again.
# Clone
git clone https://github.com/nicholashopee/claude-code-forge
cd claude-code-forge
# Install dependencies
npm install
# Link for local testing
npm link
# Test
claude-code-forge --help
MIT
FAQs
CLI tool to initialize Claude Code workspace with templates
We found that claude-code-forge demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.