chore: move to excloud-dev

This commit is contained in:
lolwierd
2026-04-27 12:38:39 +05:30
parent 638fc4dd0f
commit 9700b8b127
2 changed files with 10 additions and 10 deletions

View File

@@ -101,4 +101,4 @@ If all three feel right, the skill is doing its job.
## Release / publish ## 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.

View File

@@ -1,42 +1,42 @@
# Excloud Agent Skills # 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. 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 ## Install
This repo lives on Excloud's self-hosted Gitea at <https://git.excloud.in/excloud-in/excloud-skills>. 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 <https://git.excloud.dev/excloud-dev/excloud-skills>. 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 ```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: Install a single skill:
```bash ```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: Install all skills into every supported agent without prompts:
```bash ```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): Target specific agents with repeated `-a` flags (defaults to global, user-level install):
```bash ```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: Dry-run — list what the repo offers without installing:
```bash ```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. 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/<skill-name>/` with a single `SKILL.md`. Scripts (`s
## Contributing a new skill ## 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/<skill-name>/` directory; agent-side install is `npx skills add excloud-in/excloud-skills --skill <name>` 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/<skill-name>/` directory; agent-side install is `npx skills add excloud-dev/excloud-skills --skill <name>` once merged.
## License ## License