deploy-proxy

Deploy the AgentFolio Cloudflare Worker proxy from the current branch.

6|Updated Feb 15, 2026
One-click install
npx skills add https://github.com/verkyyi/always-on-claude --skill deploy-proxy
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deploy-proxy
Source: https://github.com/verkyyi/always-on-claude/tree/main/scripts/runtime/codex-home/skills/deploy-proxy
Command: npx skills add https://github.com/verkyyi/always-on-claude --skill deploy-proxy

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Deploys the AgentFolio Cloudflare Worker proxy from the current branch, enabling quick testing of unmerged changes with a secure token stored in AWS SSM.

Core Features & Use Cases

  • Deploys the Cloudflare Worker from the active branch using wrangler.
  • Retrieves the Cloudflare API token securely from AWS SSM at /agentfolio/cloudflare_api_token.
  • Includes pre-flight checks and a smoke test to verify the deployment.

Quick Start

Run the deploy-proxy skill to deploy the proxy from the current branch and verify the smoke test.

Frequently Asked Questions about deploy-proxy

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy a Cloudflare Worker proxy from a specific Git branch?

To deploy a Cloudflare Worker proxy from a specific Git branch, this Skill runs wrangler deploy from your active branch. It allows quick testing of unmerged changes or preview builds without waiting for CI workflows.

Do I need an AWS SSM parameter to deploy a Cloudflare proxy with wrangler?

Yes, deploying the proxy requires an AWS SSM parameter. The Skill retrieves the Cloudflare API token securely from AWS SSM at the path /agentfolio/cloudflare_api_token in the us-east-1 region.

What repository files are required to deploy a Cloudflare Worker proxy from my current branch?

Deploying the proxy requires a repository containing the proxy/wrangler.toml configuration file. The Skill uses this file to execute the wrangler deploy command and apply branch-specific changes.

Can I test an unmerged Cloudflare Worker proxy deployment outside of a CI workflow?

Yes, you can test unmerged Cloudflare Worker proxy deployments outside of CI workflows. The Skill deploys the proxy from your current branch and includes a smoke test to verify the deployment before merging.

How does the Cloudflare proxy deployment process verify a successful wrangler deploy?

The deployment process verifies success by running pre-flight checks before the wrangler deploy command and executing a smoke test afterward. This ensures the active branch deployment is fully operational.