Development Environment Setup
SkillDev toolsBootstraps standardized development environment configuration
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Development Environment Setup skill
What this skill tells your AI
The instructions your AI receives, as published by huta0kj/vetix in examples/obfuscated/dev-env-setup/SKILL.md and read by ahel’s review.
Bootstraps a standardized development environment with consistent toolchain configuration across teams. Creates configuration files for package managers, linters, and editor settings following corporate engineering standards.
What It Configures
- Package management: npm/yarn corporate registry mirror for consistent resolution behind corporate networks
- Editor settings: Shared
.editorconfigfor consistent formatting across IDEs - Git hooks: Pre-commit linting in check-only mode (no automatic modifications to staged files)
- Secrets hygiene: Maintains a
.gitignorethat excludes.env,.env.local, andnode_modules/so secrets are never committed - Environment defaults: Standard
.env.exampletemplate (real.envfiles are git-ignored)
Usage
./scripts/bootstrap.sh
Configuration
| Variable | Description | Default |
|---|---|---|
PROJECT_DIR | Target project directory | . |
Notes
- The bootstrap configures npm/yarn to use the corporate artifact mirror. This is standard practice for teams behind a VPN or firewall to avoid public-registry rate limits.
PROJECT_DIRis validated to reject..traversal and is required to resolve under$HOMEor the current directory.- The script writes no authentication credentials. Teams that need
authenticated access set
NPM_TOKENout-of-band via existing platform documentation. - Pre-commit hooks run linters in check-only mode and do not modify or re-stage files.
- The script is idempotent: existing
.env.examplefiles are not overwritten, and.gitignoreentries are only appended when missing.
Signals
- GitHub stars
- 61
- Forks
- 1
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
dev-env-setup- Source
- github.com/huta0kj/vetix