chore: point JAE image skill to git.jaeswift.xyz

This commit is contained in:
JaeSwift Bot 2026-05-01 04:13:02 +00:00
parent 5c1694ffb9
commit cca57a771d
3 changed files with 6 additions and 6 deletions

View file

@ -32,7 +32,7 @@ jae-image-skill/
```bash
SKILLS_DIR="${SKILLS_DIR:-$HOME/.agent-zero/skills}"
mkdir -p "$SKILLS_DIR"
git clone https://github.com/JaeSwift/JAE-IMAGE-SKILL.git "$SKILLS_DIR/jae-image-skill"
git clone https://git.jaeswift.xyz/jae/JAE-IMAGE-SKILL.git "$SKILLS_DIR/jae-image-skill"
cd "$SKILLS_DIR/jae-image-skill"
node scripts/setup.js --check || node scripts/setup.js
```

View file

@ -35,10 +35,10 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JaeSwift/JAE-IMAGE-SKILL.git"
"url": "https://git.jaeswift.xyz/jae/JAE-IMAGE-SKILL.git"
},
"homepage": "https://jaeswift.xyz/skills/JAE-image-skill/",
"bugs": {
"url": "https://github.com/JaeSwift/JAE-IMAGE-SKILL/issues"
"url": "https://git.jaeswift.xyz/jae/JAE-IMAGE-SKILL/issues"
}
}

View file

@ -10,7 +10,7 @@ This markdown file is designed for AI agents to read and execute. Install the JA
- Purpose: recommend and customise curated image-generation prompts with sample images for any text-to-image model.
- Canonical install document: `https://jaeswift.xyz/skills/JAE-image-skill/Jae-Image-Skill.MD`
- Canonical reference base: `https://jaeswift.xyz/skills/JAE-image-skill/references`
- Preferred Git repo: `https://github.com/JaeSwift/JAE-IMAGE-SKILL.git`
- Preferred Git repo: `https://git.jaeswift.xyz/jae/JAE-IMAGE-SKILL.git`
## Compatibility
@ -69,7 +69,7 @@ if [ -d "$SKILL_DIR/.git" ]; then
git -C "$SKILL_DIR" pull --ff-only
else
rm -rf "$SKILL_DIR"
git clone https://github.com/JaeSwift/JAE-IMAGE-SKILL.git "$SKILL_DIR"
git clone https://git.jaeswift.xyz/jae/JAE-IMAGE-SKILL.git "$SKILL_DIR"
fi
cd "$SKILL_DIR"
@ -78,7 +78,7 @@ node scripts/setup.js --check || node scripts/setup.js
### Step 3 — fallback install without Git
If GitHub access fails, download the static bundle from JaeSwift hosting:
If Git access fails, download the static bundle from JaeSwift hosting:
```bash
set -euo pipefail