deploy — for Claude Code deploy, community, for Claude Code, ide skills, bash git status --short, test_auth_flow.py:156, status: passed, bash git push origin dev, ### Step 2: Merge to main, ### Step 3: Deploy to production

v1.0.0

Über diesen Skill

Geeigneter Einsatz: Ideal for AI agents that need safe, repeatable deployment pipeline for frood. handles the full workflow:. Lokalisierte Zusammenfassung: Autonomous agent platform with web IDE, MCP tools for Claude Code, custom AI agents, associative memory, and multi-node management.

Funktionen

Safe, repeatable deployment pipeline for Frood. Handles the full workflow:
dev push → main merge → production deploy → health verification.
Pre-flight Checks (MANDATORY)
Before ANY git operations, run these checks and STOP if any fail:
Clean Working Tree

# Core Topics

SalesTeamToolbox SalesTeamToolbox
[2]
[1]
Updated: 4/11/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
61
Canonical Locale
en
Detected Body Locale
en

Geeigneter Einsatz: Ideal for AI agents that need safe, repeatable deployment pipeline for frood. handles the full workflow:. Lokalisierte Zusammenfassung: Autonomous agent platform with web IDE, MCP tools for Claude Code, custom AI agents, associative memory, and multi-node management.

Warum diese Fähigkeit verwenden

Empfehlung: deploy helps agents safe, repeatable deployment pipeline for frood. handles the full workflow:. Autonomous agent platform with web IDE, MCP tools for Claude Code, custom AI agents, associative memory, and

Am besten geeignet für

Geeigneter Einsatz: Ideal for AI agents that need safe, repeatable deployment pipeline for frood. handles the full workflow:.

Handlungsfähige Anwendungsfälle for deploy

Anwendungsfall: Applying Safe, repeatable deployment pipeline for Frood. Handles the full workflow:
Anwendungsfall: Applying dev push → main merge → production deploy → health verification
Anwendungsfall: Applying Pre-flight Checks (MANDATORY)

! Sicherheit & Einschränkungen

  • Einschraenkung: Do NOT silently stash or proceed with dirty working tree. The user must explicitly choose.
  • Einschraenkung: Only proceed after all pre-flight checks pass (or user explicitly approves warnings).
  • Einschraenkung: Do NOT proceed with dirty working tree without user consent

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is deploy?

Geeigneter Einsatz: Ideal for AI agents that need safe, repeatable deployment pipeline for frood. handles the full workflow:. Lokalisierte Zusammenfassung: Autonomous agent platform with web IDE, MCP tools for Claude Code, custom AI agents, associative memory, and multi-node management.

How do I install deploy?

Run the command: npx killer-skills add SalesTeamToolbox/frood/deploy. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for deploy?

Key use cases include: Anwendungsfall: Applying Safe, repeatable deployment pipeline for Frood. Handles the full workflow:, Anwendungsfall: Applying dev push → main merge → production deploy → health verification, Anwendungsfall: Applying Pre-flight Checks (MANDATORY).

Which IDEs are compatible with deploy?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for deploy?

Einschraenkung: Do NOT silently stash or proceed with dirty working tree. The user must explicitly choose.. Einschraenkung: Only proceed after all pre-flight checks pass (or user explicitly approves warnings).. Einschraenkung: Do NOT proceed with dirty working tree without user consent.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add SalesTeamToolbox/frood/deploy. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use deploy immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

deploy

Autonomous agent platform with web IDE, MCP tools for Claude Code, custom AI agents, associative memory, and multi-node management. Safe, repeatable

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

/deploy

Safe, repeatable deployment pipeline for Frood. Handles the full workflow: dev push → main merge → production deploy → health verification.

Pre-flight Checks (MANDATORY)

Before ANY git operations, run these checks and STOP if any fail:

1. Clean Working Tree

bash
1git status --short

If unstaged/staged changes exist: Ask the user:

"You have uncommitted changes in [list files]. Would you like to commit them first, or stash them for the deploy?"

Do NOT silently stash or proceed with dirty working tree. The user must explicitly choose.

2. Commits Ahead of Remote

bash
1git rev-list --count origin/dev..HEAD

If 0 commits ahead: Nothing to deploy. Tell the user and stop.

3. Test Suite

bash
1python -m pytest tests/ -x -q

If failures: Report them. Ask: "Tests have failures — deploy anyway?" Only known pre-existing failures (like test_auth_flow.py:156) can be safely ignored. New failures should block deployment.

4. Multi-Workstream Audit (if 20+ commits ahead)

When there are many accumulated commits, group them by workstream and verify each is in a complete state:

bash
1git log --oneline origin/dev..HEAD

For each workstream prefix in commit messages (e.g., [custom-claude-code-ui], [per-project-task-memories]):

  • Check that the latest phase has a SUMMARY.md (plan complete)
  • Check that the phase has a VERIFICATION.md with status: passed
  • Flag any workstream with incomplete plans

Present a summary table:

WorkstreamCommitsLatest PhaseStatus
workstream-nameNPhase XComplete/Incomplete

If any workstream is incomplete: Warn the user and ask whether to proceed.

Deployment Steps

Only proceed after all pre-flight checks pass (or user explicitly approves warnings).

Step 1: Push dev

bash
1git push origin dev

Step 2: Merge to main

bash
1git checkout main 2git merge dev 3git push origin main 4git checkout dev

Step 3: Deploy to production

bash
1ssh frood-prod "cd ~/frood && git pull origin main && sudo systemctl restart frood"

Step 4: Verify (wait 5 seconds for service startup)

bash
1ssh frood-prod "sleep 5 && sudo systemctl is-active frood && curl -s -o /dev/null -w '%{http_code}' http://localhost:8000/api/health"

Expected: active + 200

Output

After deployment, show:

## Deployment Complete

| Step | Status |
|------|--------|
| Push dev | OK (N commits) |
| Merge to main | OK |
| Push main | OK |
| SSH deploy | OK |
| Service health | OK/FAIL |

**Commit range:** abc1234..def5678
**Files changed:** N files (+X/-Y lines)

If the health check fails, immediately run /prod-check for detailed diagnostics.

What NOT to Do

  • Do NOT proceed with dirty working tree without user consent
  • Do NOT silently stash changes — ask the user
  • Do NOT skip the test suite check
  • Do NOT force-push anything
  • Do NOT attempt to fix production issues automatically — report and recommend

Verwandte Fähigkeiten

Looking for an alternative to deploy or another community skill for your workflow? Explore these related open-source skills.

Alle anzeigen

openclaw-release-maintainer

Logo of openclaw
openclaw

Lokalisierte Zusammenfassung: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
Künstliche Intelligenz

widget-generator

Logo of f
f

Lokalisierte Zusammenfassung: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code

149.6k
0
Künstliche Intelligenz

flags

Logo of vercel
vercel

Lokalisierte Zusammenfassung: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Lokalisierte Zusammenfassung: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Entwickler