Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ alwaysApply: false

# graycode-skills Conventions

Community skill packages for [Graycode](https://github.com/GrayCodeAI/graycode-cli).
Community skill packages for [Rho](https://github.com/GrayCodeAI/rho).

## Development workflow

Expand Down Expand Up @@ -41,11 +41,11 @@ ruff format --check .

## Ecosystem Boundaries

- Extends Graycode through public skill and plugin surfaces only
- Do not reference support engine repos (`graycode-router`, `harrier`, `shrike`, `swift`, `kestrel`, `merlin`)
- Do not reference `graycode-cli/internal/*` or removed legacy paths
- Extends Rho through public skill and plugin surfaces only (`rho skills install` → `~/.rho/skills`, `./.zero/skills`)
- Do not reference support engine internals (`flux/client`, `flux/catalog`, `flux/credentials`, `rho/internal/*`) — consume only `flux/engine`, `flux/llm`, `flux/graph`, `flux/tools`
- Removed legacy paths (`graycode-router`, `harrier`, `shrike`, `swift`, `kestrel`, `merlin`, `graycode-cli/internal/*`) must not be referenced

For full graycode-eco extension guidelines, see [graycode-cli/AGENTS.md](https://github.com/GrayCodeAI/graycode-cli/blob/main/AGENTS.md).
For full graycode-eco extension guidelines, see [rho/AGENTS.md](https://github.com/GrayCodeAI/rho/blob/main/AGENTS.md).

<!-- gitnexus:start -->
## GitNexus — Code Intelligence
Expand Down
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Graycode Community Skills

Community skill packages for [Graycode](https://github.com/GrayCodeAI/graycode-cli) — the AI coding agent. This repository contains 14,015 modular instruction packages that teach Graycode specialized workflows across 27 categories.
Community skill packages for [Rho](https://github.com/GrayCodeAI/rho) — the AI coding agent. This repository contains 14,015 modular instruction packages that teach Rho specialized workflows across 27 categories.

## What are Skills?

Skills are self-contained Markdown instruction packages that Graycode loads into its system prompt when activated. Each skill is a single `SKILL.md` file with YAML frontmatter, containing structured guidance for a specific workflow or technology. Skills are organized by domain under `categories/`.
Skills are self-contained Markdown instruction packages that Rho loads into its system prompt when activated. Each skill is a single `SKILL.md` file with YAML frontmatter, containing structured guidance for a specific workflow or technology. Skills are organized by domain under `categories/`.

## Quick Start

Expand All @@ -13,15 +13,15 @@ Skills are self-contained Markdown instruction packages that Graycode loads into

```bash
# View available skills
graycode skills list
rho skills list

# Search for a skill
graycode skills search api-testing
rho skills search api-testing

# Install a skill
graycode skills install GrayCodeAI/graycode-skills python-pandas # syntax is `install <owner/repo> [name]`
rho skills install GrayCodeAI/graycode-skills python-pandas # syntax is `install <owner/repo> [name]`

# Use a skill in the graycode REPL
# Use a skill in the rho REPL
/skills use python-pandas
```

Expand Down Expand Up @@ -96,8 +96,9 @@ gate.

## Ecosystem Boundaries

- `graycode-skills` extends Graycode through public skill and plugin surfaces.
- Do not reference support engine repos (`graycode-router`, `harrier`, `shrike`, `swift`, `kestrel`, or `merlin`) as direct dependencies.
- `graycode-skills` extends Rho through public skill and plugin surfaces (`rho skills install`, `~/.rho/skills`, `./.zero/skills`).
- Do not reference support engine internals (`flux/client`, `flux/catalog`, `flux/credentials`, `rho/internal/*`) — consume only the published `flux/engine`, `flux/llm`, `flux/graph`, `flux/tools` facade.
- Removed legacy paths (`graycode-router`, `harrier`, `shrike`, `swift`, `kestrel`, `merlin`, `graycode-cli/internal/*`) must not be referenced.
- Do not reference `graycode-cli/internal/*` or the removed legacy path `graycode/shared/types`.
- Skills should assume Graycode is the product boundary.

Expand Down
7 changes: 7 additions & 0 deletions STATUS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# graycode-skills status — 0.1.0

- 14,015 skills across 27 categories, validation zero-warning gate (`tools/validation_warning_budget.json`)
- Install via `rho skills install GrayCodeAI/graycode-skills <name>` → `~/.rho/skills` or `./.zero/skills`
- Registry `registry.json`/`skill-graph.json` generated, not committed — run `python tools/update_registry.py`

Remaining: eco skills (`rho-workflow`, `rover-verify`, `across-checkpoint`), pinned CDN registry, `examples/` authoring samples.
6 changes: 3 additions & 3 deletions docs/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# 🎯 graycode-skills Architecture

**Modular Instruction Packages for Graycode**
**Modular Instruction Packages for Rho**

[![Python](https://img.shields.io/badge/Python-3.10+-3776AB?logo=python)](https://python.org/)
[![Type](https://img.shields.io/badge/Type-Registry-purple)]()
Expand All @@ -13,9 +13,9 @@

## 🎯 Overview

A registry of modular instruction packages (**skills**) that teach Graycode specialized workflows. Each skill is a **Markdown file with YAML frontmatter** that Graycode loads into its system prompt when activated.
A registry of modular instruction packages (**skills**) that teach Rho specialized workflows. Each skill is a **Markdown file with YAML frontmatter** that Rho loads into its system prompt when activated.

> 💡 Install with: `graycode skills install <owner/repo> <name>`
> 💡 Install with: `rho skills install <owner/repo> <name>`

---

Expand Down
Loading