ToolypetMCP
intermediate5 minutescross hub

Developer Onboarding Security Kit

New developer setup: generate SSH key, create JWT for API access, set up TOTP 2FA, and generate a secure password.

onboardingdevelopersshjwttotpsecurity

何时使用此配方

Streamline new developer onboarding with all security credentials generated in one workflow. Ensure every team member starts with proper security from day one.

步骤

1

SSH Key Generator

试用此工具

Create SSH keys for Git

提示词:Generate Ed25519 SSH key pair with comment 'newdev@company' for Git and server access
2

Secret Generator

试用此工具

Create API access token

提示词:Generate a personal API token for internal service access
3

JWT Generator

试用此工具

Create dev environment JWT

提示词:Generate a developer JWT with claims {sub: 'newdev', role: 'developer', team: 'backend'} expiring in 30 days
4

TOTP Generator

试用此工具

Enable 2FA

提示词:Set up TOTP 2FA for the developer's company account with issuer 'CompanyName'
5

Password Generator

试用此工具

Create initial password

提示词:Generate an initial 20-character password for the developer's company account

常见问题

What's the first thing a new developer should set up?

SSH keys for Git access, then 2FA on all accounts. After that: VPN access, development environment, and API credentials. Security first, convenience second.

Should we use individual or shared API keys?

Always individual. Shared keys make it impossible to audit who did what, can't be revoked without affecting everyone, and violate the principle of least privilege.

相关配方