@blaxel-ai/deploy-dev
ADeploy the app to the dev environment. Use after a PR is marked as reviewable (ready for review) so reviewers can check out the changes running in dev.
Install
agr install @blaxel-ai/deploy-dev --target claudeWrites 1 file into .claude/skills/, pinned to git-d354f406.
- .claude/skills/deploy-dev/SKILL.md
Document
name: deploy-dev description: Deploy the app to the dev environment. Use after a PR is marked as reviewable (ready for review) so reviewers can check out the changes running in dev.
Deployment Phase
After the self-review passes and the PR is confirmed ready for human review, proceed to merge into develop and trigger the dev deployment.
Step 1: Merge into develop
Using git commands directly:
- Ensure the working tree is clean (
git status --porcelainmust be empty) - Save the current branch name:
git branch --show-current - Fetch latest from origin:
git fetch origin - Checkout develop:
git checkout develop - Pull latest develop:
git pull origin develop - Merge the feature branch into develop:
git merge <feature-branch> --no-edit - Push develop:
git push origin develop - Switch back to the feature branch:
git checkout <feature-branch>
If the merge fails with conflicts, do NOT abort. Instead, resolve conflicts interactively: for each conflicting file, show the user both sides of the conflict and ask which version to keep (or how to combine them). Once the user has provided input for every conflict, stage the resolved files, complete the merge commit, and continue with the deployment. Only abort if the user explicitly asks to cancel.
Step 2: Confirm deployment
Send a brief message confirming that the merge into develop succeeded and both the controlplane and infrastructure runs completed successfully, including the run URLs.
Trustgrade A
- passBody integrity
Whether the stored document is plausibly the kind of file the artifact declares, rather than something fetched by mistake.
- passType matchnot applicable to this artifact type
Whether the artifact is really the kind of thing its metadata claims it is.
- passFreshness
How long since the source repository was last pushed to.
- passPrompt injection
Scans the artifact's own text for instructions aimed at your agent rather than at you.
- passLicense
Whether the source repository declares an SPDX license permissive enough to redistribute.
How the grade is calculated
Each check contributes 0 points when it passes, 1 when it warns, and 2 when it fails. The total maps to a letter:
- Aevery check passed
- Bone warning
- Ctwo warnings
- Dprompt injection or body integrity failed, or three warnings
- Fone of those failed, and something else is wrong
These are automated hygiene checks, not a security audit, and not a dependency or vulnerability scan. A grade of A means nothing was flagged — not that the artifact is safe.
Versions
git-d354f4067d102026-07-31