filipstrand / mflux-dev-env
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/mflux-dev-env && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/2703" && unzip -o skill.zip -d .claude/skills/mflux-dev-env && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/mflux-dev-env/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Set up and work in the mflux dev environment (arm64 expectation, uv, Makefile targets, lint/format/test).
0 views
0 installs
Skill Content
--- name: mflux-dev-env description: Set up and work in the mflux dev environment (arm64 expectation, uv, Makefile targets, lint/format/test). --- # mflux dev environment This repo expects macOS arm64 and prefers `uv` + Makefile targets. ## When to Use - You’re setting up the repo locally or diagnosing environment/setup issues. - You need the canonical way to run lint/format/check/build/test. ## Instructions - Prefer Makefile targets: - Install: `make install` - Lint: `make lint` - Format: `make format` - Pre-commit suite: `make check` - Build: `make build` - Prefer `uv run ...` for running Python commands to ensure the correct environment. - When running tests, keep `MFLUX_PRESERVE_TEST_OUTPUT=1` enabled (the Makefile test targets already do this).