
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
gate-evm-hardhat-foundry
Advanced tools
# 1. 登录 npm(首次)
npm login
# 2. 检查配置
npm whoami # 确认登录的账户
npm config list
# 3. 构建项目
npm run build
# 更新版本号(自动更新 package.json)
npm version patch # 1.0.0 -> 1.0.1 (bug 修复)
npm version minor # 1.0.0 -> 1.1.0 (新功能)
npm version major # 1.0.0 -> 2.0.0 (破坏性更改)
# 或手动编辑 package.json 中的 version
# 发布到 npm
npm publish
npm install
npm link 或者 npm i -g ./
# 使用 npx (推荐)
npx gate-evm-hardhat-foundry test-hardhat-foundry-app
# 使用 npm
npm gate-evm-hardhat-foundry test-hardhat-foundry-app
# 使用 yarn
yarn gate-evm-hardhat-foundry test-hardhat-foundry-app
node evm-hardhat-cli/bin/cli.js test-hardhat-foundry-app --package-manager npm
当模板有新功能更新时,可以使用 upgrade 命令将现有项目升级到最新版本:
# 在项目目录下运行
cd your-project
npx gate-evm-hardhat-foundry upgrade
# 或使用本地开发版本
node /path/to/evm-hardhat-cli/bin/cli.js upgrade
| 选项 | 简写 | 说明 |
|---|---|---|
--force | -f | 跳过确认直接升级 |
--skip-install | 跳过依赖安装 | |
--package-manager <pm> | -p | 指定包管理器 (npm/yarn/pnpm) |
upgrade 命令会自动更新以下内容:
patches/ - 补丁文件(包含 CREATE2、Multicall 等新功能)README.md - 项目文档# 交互式升级(推荐)
npx gate-evm-hardhat-foundry upgrade
# 跳过确认直接升级
npx gate-evm-hardhat-foundry upgrade --force
# 升级但不重新安装依赖
npx gate-evm-hardhat-foundry upgrade --skip-install
FAQs
快速创建 Hardhat集成foundry 项目的 CLI 脚手架工具
The npm package gate-evm-hardhat-foundry receives a total of 22 weekly downloads. As such, gate-evm-hardhat-foundry popularity was classified as not popular.
We found that gate-evm-hardhat-foundry 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
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.