一键导入
remote-work
Execute amplihack work on remote Azure VMs with automatic region and resource selection
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Execute amplihack work on remote Azure VMs with automatic region and resource selection
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Orchestrate large-scale changes across a codebase in parallel
Review changed code for reuse, quality, and efficiency, then fix any issues found
Consolidated Claude Code sync and parity tracking for RustyClawd. Fetches latest Claude Code features from official sources, compares against the local feature inventory, identifies gaps, and optionally creates GitHub issues. Also supports deep analysis by deminifying the installed Claude Code cli.js.
Track and report agent invocation metrics including usage counts, success/failure rates, and completion times. Use for understanding which agents are utilized, identifying underused agents, and optimizing agent delegation patterns.
Automated dependency conflict detection and resolution. Detects local vs CI environment mismatches, compares versions, and generates pinning recommendations. Run as pre-push check to catch issues early.
Auto-discovers and configures Language Server Protocol (LSP) servers for your project's languages
| name | remote-work |
| description | Execute amplihack work on remote Azure VMs with automatic region and resource selection |
| version | 1.0.0 |
| author | amplihack |
| activation_keywords | ["remote","remotely","Azure VM","offload","distribute"] |
| min_tokens | 800 |
| max_tokens | 2000 |
Execute amplihack tasks on remote Azure VMs using the /amplihack:remote command.
Use this skill when you want to:
When you say things like:
I will:
/amplihack:remote with proper optionsI automatically detect Azure regions from your request:
Based on your task complexity keywords:
Small (size s): Quick analysis, simple fixes
Medium (size m): Standard development work
Large (size l): Complex refactoring, large codebases
Extra Large (size xl): Intensive compute tasks
When activated:
Parse the user's request to extract:
Determine VM size based on keywords:
Construct the command:
/amplihack:remote --region {region} --vm-size {size} auto "{task}"
If no region mentioned, omit --region (uses azlin default)
Execute the command using the SlashCommand tool
Guide the user on next steps:
.claude/runtime/logs/remote/remote-exec/ namespaceUser: "Run this analysis remotely on an eastus VM"
Your Response:
I'll execute this analysis on a remote Azure VM in eastus.
Detected:
- Task: analysis work
- Region: eastus
- Size: s (small - suitable for analysis)
Executing: /amplihack:remote --region eastus --vm-size s auto "analysis work"
Then use SlashCommand tool to execute it.
User: "I need to offload this comprehensive refactoring to Azure, use westus2"
Your Response:
I'll execute this comprehensive refactoring on a remote Azure VM in westus2.
Detected:
- Task: comprehensive refactoring
- Region: westus2
- Size: l (large - for comprehensive work)
Executing: /amplihack:remote --region westus2 --vm-size l auto "comprehensive refactoring"
User: "Run this remotely"
Your Response:
I'll execute this task on a remote Azure VM using your default region.
Detected:
- Task: [extract from context]
- Region: default (from azlin config)
- Size: m (medium - standard)
Executing: /amplihack:remote --vm-size m auto "[task]"
After execution completes, guide the user:
Remote execution complete!
Results:
- Logs: .claude/runtime/logs/remote/
- Branches: Check `git branch -r | grep remote-exec`
- Integration: Review changes and merge if ready
To view logs:
cat .claude/runtime/logs/remote/remote-exec-*.log
To merge remote changes:
git fetch
git merge remote-exec/main
If the command fails, explain common issues:
Secrets Detected: "Remote execution blocked - secrets found in repository. Please remove hardcoded secrets and use .env files instead."
Azlin Not Configured:
"Azlin is not configured. Please run: azlin configure"
Timeout:
"Task timed out. The VM has been preserved for inspection. Use azlin connect <vm-name> to investigate."
Remind users:
.env for secrets (never hardcode)azlin listazlin kill <vm-name>/amplihack:remote - Direct command interface.claude/tools/amplihack/remote/README.md