From 9700b8b12716ae559e4ef0238c25e53bd39358a4 Mon Sep 17 00:00:00 2001 From: lolwierd Date: Mon, 27 Apr 2026 12:38:39 +0530 Subject: [PATCH] chore: move to excloud-dev --- AGENTS.md | 2 +- README.md | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 8563a68..3cd1173 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -101,4 +101,4 @@ If all three feel right, the skill is doing its job. ## Release / publish -There is no package to publish. `npx skills add` clones this repo directly from `git.excloud.in` and reads `SKILL.md` files straight from the default branch, so merging to `main` is the release — no tags, no npm publish step. +There is no package to publish. `npx skills add` clones this repo directly from `git.excloud.dev` and reads `SKILL.md` files straight from the default branch, so merging to `main` is the release — no tags, no npm publish step. diff --git a/README.md b/README.md index fcd93f8..2209736 100644 --- a/README.md +++ b/README.md @@ -1,42 +1,42 @@ # Excloud Agent Skills -A collection of [agent skills](https://agentskills.io/) for working with [Excloud](https://excloud.in) from AI coding agents (Claude Code, Cursor, Codex, opencode, etc.). +A collection of [agent skills](https://agentskills.io/) for working with [Excloud](https://excloud.dev) from AI coding agents (Claude Code, Cursor, Codex, opencode, etc.). Skills are `SKILL.md` playbooks the agent can load on demand — authenticated paths, safety guardrails, command syntax, and error recovery for a specific surface. Install them with the [`skills`](https://www.npmjs.com/package/skills) CLI. ## Install -This repo lives on Excloud's self-hosted Gitea at . Point `npx skills add` at the full clone URL (note the `.git` suffix — without it, the CLI looks for a `.well-known/agent-skills/index.json` manifest rather than cloning): +This repo lives on Excloud's self-hosted Gitea at . Point `npx skills add` at the full clone URL (note the `.git` suffix — without it, the CLI looks for a `.well-known/agent-skills/index.json` manifest rather than cloning): ```bash -npx skills add https://git.excloud.in/excloud-in/excloud-skills.git +npx skills add https://git.excloud.dev/excloud-dev/excloud-skills.git ``` Install a single skill: ```bash -npx skills add https://git.excloud.in/excloud-in/excloud-skills.git --skill excloud-cli +npx skills add https://git.excloud.dev/excloud-dev/excloud-skills.git --skill excloud-cli ``` Install all skills into every supported agent without prompts: ```bash -npx skills add https://git.excloud.in/excloud-in/excloud-skills.git --all +npx skills add https://git.excloud.dev/excloud-dev/excloud-skills.git --all ``` Target specific agents with repeated `-a` flags (defaults to global, user-level install): ```bash -npx skills add https://git.excloud.in/excloud-in/excloud-skills.git -a claude-code -a opencode --all +npx skills add https://git.excloud.dev/excloud-dev/excloud-skills.git -a claude-code -a opencode --all ``` Dry-run — list what the repo offers without installing: ```bash -npx skills add https://git.excloud.in/excloud-in/excloud-skills.git --list +npx skills add https://git.excloud.dev/excloud-dev/excloud-skills.git --list ``` -Private-repo users: set up git auth for `git.excloud.in` first (an HTTPS credential helper / `~/.netrc`, or use the SSH form `git@git.excloud.in:excloud-in/excloud-skills.git`). `npx skills add` shells out to plain `git clone`, so anything `git clone` can read, it can install from. +Private-repo users: set up git auth for `git.excloud.dev` first (an HTTPS credential helper / `~/.netrc`, or use the SSH form `git@git.excloud.dev:excloud-dev/excloud-skills.git`). `npx skills add` shells out to plain `git clone`, so anything `git clone` can read, it can install from. By default skills land under the agent's standard directory (`~/.claude/skills/`, `.agents/skills/`, `.augment/skills/`, ...). Run `npx skills --help` for the full option list, and `npx skills list` to see what is currently installed. @@ -75,7 +75,7 @@ Each skill lives in `skills//` with a single `SKILL.md`. Scripts (`s ## Contributing a new skill -See [`AGENTS.md`](./AGENTS.md) for conventions (directory name, `SKILL.md` frontmatter, when to add scripts vs. references, how to keep skills discovery-friendly). Open a PR with the new `skills//` directory; agent-side install is `npx skills add excloud-in/excloud-skills --skill ` once merged. +See [`AGENTS.md`](./AGENTS.md) for conventions (directory name, `SKILL.md` frontmatter, when to add scripts vs. references, how to keep skills discovery-friendly). Open a PR with the new `skills//` directory; agent-side install is `npx skills add excloud-dev/excloud-skills --skill ` once merged. ## License