ワンクリックで
cloudways-deploy
Deploy files to the Tesseract Academy WordPress site on Cloudways via SSH/SCP
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Deploy files to the Tesseract Academy WordPress site on Cloudways via SSH/SCP
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Write B2B cold emails and follow-up sequences that get replies. Adapted from coreyhaines31/marketingskills for the Tesseract Automation Engine. Used by the Sales Director agent and any outreach mission. Must read product-marketing-context before drafting.
How to use the Elastic Email integration for fetching engagement data, bounces, and unsubscribes
Create or optimize email sequences, drip campaigns, and lifecycle email flows. Adapted from coreyhaines31/marketingskills for the Tesseract Automation Engine. Used by the Sales Director agent for nurture sequences and by the Marketing Team for welcome/onboarding flows. Must read product-marketing-context before drafting.
Agent protocol for reading, interpreting, and updating marketing funnel documentation.
State-machine driven iterative planning and execution for complex coding tasks. Cycle: Explore → Plan → Execute → Reflect → Validate → Close / Re-plan. Filesystem as persistent memory. Use for multi-file tasks, migrations, refactoring, failed tasks, audit remediations, or anything non-trivial.
Write high-converting landing page copy. Used by the Iterative Planner and PageMigrator workflows for optimizing or rebuilding web pages. Must read product-marketing-context before drafting.
| name | cloudways-deploy |
| description | Deploy files to the Tesseract Academy WordPress site on Cloudways via SSH/SCP |
Host: tesseract.academy is hosted on Cloudways (NOT Bluehost). Bluehost/cPanel is only for email infrastructure.
46.101.94.175 (from CLOUDWAYS_HOST env var)master_jqjeqeuuhw (from CLOUDWAYS_USER env var)CLOUDWAYS_PASS env var (SSH key auth is also configured)/mnt/BLOCKSTORAGE/home/master| App | Path |
|---|---|
| tesseract.academy (primary) | /mnt/BLOCKSTORAGE/home/master/applications/aaxdypkxet/public_html/ |
| Secondary WP install | /mnt/BLOCKSTORAGE/home/master/applications/yqdnzffqdp/public_html/ |
/mnt/BLOCKSTORAGE/home/master/applications/aaxdypkxet/public_html/wp-content/plugins/wp-membership-plugin-tesseract/
Use -O flag for legacy SCP protocol (required for this server):
scp -O -o StrictHostKeyChecking=no \
"/local/path/to/file.php" \
"master_jqjeqeuuhw@46.101.94.175:/mnt/BLOCKSTORAGE/home/master/applications/aaxdypkxet/public_html/wp-content/plugins/<plugin-name>/<path>/file.php"
ssh -o StrictHostKeyChecking=no master_jqjeqeuuhw@46.101.94.175 "command"
scp -O -o StrictHostKeyChecking=no -r \
"/local/path/to/directory/" \
"master_jqjeqeuuhw@46.101.94.175:/remote/path/to/directory/"
sshpass is NOT installed on macOS. Use scp/ssh directly (SSH key auth works).-O flag with scp — the server doesn't support the newer SFTP-based SCP protocol./mnt/BLOCKSTORAGE/ — NOT /home/master/. The standard Cloudways path /home/master/applications/... is a symlink but SCP/SFTP may not resolve it.ssh ... "grep 'expected_string' /path/to/deployed/file.php"expect needed: SSH key-based auth works without password prompts for ssh and scp commands.After deploying, always verify:
# Check file exists and contains expected changes
ssh -o StrictHostKeyChecking=no master_jqjeqeuuhw@46.101.94.175 \
"grep -n 'expected_change' /path/to/file.php"
# Quick smoke test via curl
curl -s 'https://tesseract.academy/affected-page/' | grep 'expected_output'