chore(dev): add just command interface #224
No reviewers
Labels
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
Slipstream/auto_review!224
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "chore/216-just-command-interface"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Justfilewithfmt,clippy,test,deny,build, and aggregatecirecipes.justto the Nix dev shell while keeping recipes as direct tool invocations.justcommand surface.Closes #216.
Verification
nix develop --command just --listnix develop --command just fmtnix develop --command just clippynix develop --command just testnix develop --command just denynix develop --command just buildnix develop --command just ciNote: host shell does not currently have
juston PATH, so local verification used the Nix dev shell to provenix developprovidesjustand the recipes work there.This PR introduces a
Justfileto streamline development commands and updates documentation to reflect this change. The integration appears well-executed, with updates to various documentation files and the Nix shell configuration. The changes seem safe to merge.Walkthrough
Justfilewith recipes for common tasks likefmt,clippy,test,deny,build, andci. This simplifies command execution for developers..forgejo/pull_request_template.md,.opencode/commands/verify.md,.opencode/rules/toolchain.md,.opencode/rules/verification.md,.opencode/skills/rust-workspace-engineering/SKILL.md,AGENTS.md, andCONTRIBUTING.mdto reflect the newjustcommand usage.flake.nixto includejustin the development environment, ensuring that theJustfileis part of the build process.lefthook.ymlto usejust cifor pre-push checks, aligning with the new command interface.