Skip to content

Commit 1c2cc8a

Browse files
zjy365claude
andcommitted
fix: update install URLs to use site distribution
Replace raw.githubusercontent.com URLs with seakills.gzg.sealos.run across README, site components, and skill docs for faster and more reliable downloads. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ba98bdc commit 1c2cc8a

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Works with **Claude Code**, **Gemini CLI**, **Codex** — any AI coding assistan
77
## Install
88

99
```bash
10-
curl -fsSL https://raw.githubusercontent.com/zjy365/seakills/main/install.sh | bash
10+
curl -fsSL https://seakills.gzg.sealos.run/install.sh | bash
1111
```
1212

1313
The installer auto-detects your AI tools and sets up skills for each one.

site/components/cta-section.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Check, Copy } from "lucide-react"
55
import { motion } from "motion/react"
66

77
const installCmd =
8-
"curl -fsSL https://raw.githubusercontent.com/zjy365/seakills/main/install.sh | bash"
8+
"curl -fsSL https://seakills.gzg.sealos.run/install.sh | bash"
99

1010
export function CtaSection() {
1111
const [copied, setCopied] = useState(false)

site/components/navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useState, useCallback, useEffect } from "react"
44
import { Check, Copy } from "lucide-react"
55

66
const installCmd =
7-
"curl -fsSL https://raw.githubusercontent.com/zjy365/seakills/main/install.sh | bash"
7+
"curl -fsSL https://seakills.gzg.sealos.run/install.sh | bash"
88

99
export function Navbar() {
1010
const [copied, setCopied] = useState(false)

site/components/terminal-hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useEffect, useState, useCallback } from "react"
44
import { Check, Copy } from "lucide-react"
55
import { motion } from "motion/react"
66

7-
const installCmd = "curl -fsSL https://raw.githubusercontent.com/zjy365/seakills/main/install.sh | bash"
7+
const installCmd = "curl -fsSL https://seakills.gzg.sealos.run/install.sh | bash"
88

99
export function TerminalHero() {
1010
const [copied, setCopied] = useState(false)

skills/cloud-native-readiness/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ A Claude Code skill that assesses whether a project is ready for cloud-native de
2323

2424
```bash
2525
# Clone to skills directory
26-
curl -fsSL https://raw.githubusercontent.com/zjy365/seakills/main/install.sh | bash
26+
curl -fsSL https://seakills.gzg.sealos.run/install.sh | bash
2727
```
2828

2929
## Usage

skills/dockerfile-skill/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A Claude Code skill that generates production-ready Dockerfiles with automatic b
55
## Install
66

77
```bash
8-
curl -fsSL "https://raw.githubusercontent.com/zjy365/seakills/main/install.sh" | bash
8+
curl -fsSL https://seakills.gzg.sealos.run/install.sh | bash
99
```
1010

1111
## Usage

0 commit comments

Comments
 (0)