← Browse

@blaxel-ai/deploy-dev

A

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.

skillclaude

Install

agr install @blaxel-ai/deploy-dev --target claude

Writes 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:

  1. Ensure the working tree is clean (git status --porcelain must be empty)
  2. Save the current branch name: git branch --show-current
  3. Fetch latest from origin: git fetch origin
  4. Checkout develop: git checkout develop
  5. Pull latest develop: git pull origin develop
  6. Merge the feature branch into develop: git merge <feature-branch> --no-edit
  7. Push develop: git push origin develop
  8. 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