What problem does it solve? Setting up workmux for a project requires manually writing a .workmux.yaml file with the correct install commands, environment file copies, and symlink entries. This Skill automates that setup by inspecting the project's lockfiles and config files to produce an appropriate configuration. ## Core Features & Use Cases - Project Detection: Identifies the language and package manager from files like pnpm-lock.yaml, Cargo.toml, go.mod, pyproject.toml, Gemfile, and composer.json, then selects the matching install command. - Environment File Handling: Detects .env.example, .env.sample, .env.template, and .env.local.example files and configures them as copy targets. - Symlink Suggestions: Proposes node_modules and .pnpm-store as symlink candidates for Node.js projects. - Git Exclusion: Adds .workmux.yaml to .git/info/exclude so the personal config stays out of version control. - Use Case: After cloning a pnpm-based Node.js repository, run the Skill to generate a .workmux.yaml with pnpm install as post_create and .env.example copied to .env. ## Quick Start Ask the assistant to run /workmux-init in your project root to detect the stack and generate a .workmux.yaml configuration file.