Skip to content

Commit 3a2e0ee

Browse files
barckcodeclaude
andcommitted
chore: migrate domain from agentcrew.helmcode.com to agentcrew.sh
Update all references to the new domain and regenerate workflow video. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent fa0b357 commit 3a2e0ee

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ All conversations MUST be in Spanish. All code, commits, PRs, and documentation
66

77
## Project
88

9-
Landing page for [AgentCrew](https://github.com/helmcode/agent_crew) — built with Astro and deployed to Cloudflare Pages at [agentcrew.helmcode.com](https://agentcrew.helmcode.com).
9+
Landing page for [AgentCrew](https://github.com/helmcode/agent_crew) — built with Astro and deployed to Cloudflare Pages at [agentcrew.sh](https://agentcrew.sh).
1010

1111
Source code lives in `web/`. Deployments are automated via GitHub Actions on every push to `main` that modifies files under `web/`.
1212

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Landing page for [AgentCrew](https://github.com/helmcode/agent_crew) — an open-source platform to build, deploy, and monitor collaborative AI agent teams powered by Claude Code.
44

5-
**Live:** [agentcrew.helmcode.com](https://agentcrew.helmcode.com)
5+
**Live:** [agentcrew.sh](https://agentcrew.sh)
66

77
## Structure
88

web/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
AgentCrew is an open-source AI agent orchestrator. Just as N8N automates workflows regardless of the services involved, AgentCrew orchestrates AI agents regardless of their purpose. Create teams for software engineering, marketing, finance, data analysis, content creation, operations, or anything else.
66

7-
**Live site:** [agentcrew.helmcode.com](https://agentcrew.helmcode.com)
7+
**Live site:** [agentcrew.sh](https://agentcrew.sh)
88

99
## Get Started
1010

1111
```bash
12-
curl -fsSL https://agentcrew.helmcode.com/install.sh | bash
12+
curl -fsSL https://agentcrew.sh/install.sh | bash
1313
```
1414

1515
One command. Docker required. Open `http://localhost:8080` and start building your first agent team.
@@ -31,8 +31,8 @@ One command. Docker required. Open `http://localhost:8080` and start building yo
3131

3232
## Links
3333

34-
- [Documentation](https://agentcrew.helmcode.com/docs)
35-
- [Quick Start](https://agentcrew.helmcode.com/docs/quick-start)
34+
- [Documentation](https://agentcrew.sh/docs)
35+
- [Quick Start](https://agentcrew.sh/docs/quick-start)
3636
- [Project Roadmap](https://github.com/orgs/helmcode/projects/2/views/2)
3737
- [GitHub](https://github.com/helmcode/agent_crew_landing)
3838

web/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import tailwindcss from '@tailwindcss/vite';
66
export default defineConfig({
77
integrations: [],
88
output: 'static',
9-
site: 'https://agentcrew.helmcode.com',
9+
site: 'https://agentcrew.sh',
1010

1111
i18n: {
1212
defaultLocale: 'en',

web/public/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -euo pipefail
33

44
# AgentCrew installer
5-
# Usage: curl -fsSL https://agentcrew.helmcode.com/install.sh | bash
5+
# Usage: curl -fsSL https://agentcrew.sh/install.sh | bash
66

77
REPO_BASE="https://raw.githubusercontent.com/helmcode/agent_crew_landing/main"
88
INSTALL_DIR="$HOME/.agentcrew"
@@ -200,7 +200,7 @@ summary() {
200200
echo " docker compose down # Stop"
201201
echo " docker compose up -d # Start"
202202
echo ""
203-
echo -e " ${BOLD}Docs:${NC} https://agentcrew.helmcode.com/docs"
203+
echo -e " ${BOLD}Docs:${NC} https://agentcrew.sh/docs"
204204
echo ""
205205
}
206206

-5.83 KB
Binary file not shown.

web/src/components/CTAFinal.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const base = getBaseUrl(lang);
4040
<!-- Install command -->
4141
<div class="max-w-2xl mx-auto mb-10 rounded-xl border border-slate-700/60 overflow-hidden" style="background-color: #0d1117;">
4242
<div class="px-5 py-4 font-mono text-sm flex items-center justify-between gap-4">
43-
<code class="text-slate-300 overflow-x-auto"><span class="text-green-400">$</span> curl -fsSL https://agentcrew.helmcode.com/install.sh | bash</code>
43+
<code class="text-slate-300 overflow-x-auto"><span class="text-green-400">$</span> curl -fsSL https://agentcrew.sh/install.sh | bash</code>
4444
</div>
4545
</div>
4646

web/src/layouts/BaseLayout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const {
1919
2020
const enPath = lang === 'en' ? Astro.url.pathname : getLocalizedPath(Astro.url.pathname, 'en');
2121
const esPath = lang === 'es' ? Astro.url.pathname : getLocalizedPath(Astro.url.pathname, 'es');
22-
const siteUrl = 'https://agentcrew.helmcode.com';
22+
const siteUrl = 'https://agentcrew.sh';
2323
---
2424

2525
<!doctype html>

web/src/layouts/DocsLayout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const currentPath = Astro.url.pathname;
2525
2626
const enPath = lang === 'en' ? currentPath : getLocalizedPath(currentPath, 'en');
2727
const esPath = lang === 'es' ? currentPath : getLocalizedPath(currentPath, 'es');
28-
const siteUrl = 'https://agentcrew.helmcode.com';
28+
const siteUrl = 'https://agentcrew.sh';
2929
3030
interface NavItem {
3131
href: string;

web/src/pages/docs/quick-start.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import DocsLayout from '../../layouts/DocsLayout.astro';
2525
Run this single command to download, configure, and start AgentCrew:
2626
</p>
2727

28-
<pre><code class="language-bash">curl -fsSL https://agentcrew.helmcode.com/install.sh | bash</code></pre>
28+
<pre><code class="language-bash">curl -fsSL https://agentcrew.sh/install.sh | bash</code></pre>
2929

3030
<p>
3131
The installer will check that Docker is available, generate secure

0 commit comments

Comments
 (0)