chore: move to excloud-dev
This commit is contained in:
18
README.md
18
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 <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
|
||||
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/<skill-name>/` 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/<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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user