Skip to content

Commit bdfa74f

Browse files
authored
Add skills.stellar.org and update Stellar Skills docs on Building with AI page (#2529)
* Add skills.stellar.org and update Stellar Skills docs on Building with AI page * Drop specific community skill examples from Building with AI page * Clarify manual install copies skills/ contents, not the directory itself
1 parent 6f6ea5e commit bdfa74f

1 file changed

Lines changed: 36 additions & 21 deletions

File tree

‎docs/build/building-with-ai.mdx‎

Lines changed: 36 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -9,48 +9,62 @@ sidebar_position: 1
99

1010
Stellar provides resources to help AI assistants and Large Language Models (LLMs) understand our documentation, making it easier for you to get accurate answers about Stellar development.
1111

12-
## Stellar Development Skill
12+
## Stellar Skills
1313

14-
The [Stellar Development Skill](https://github.com/stellar/stellar-dev-skill) is a comprehensive AI skill that gives coding assistants deep knowledge of the Stellar ecosystem.
14+
[**skills.stellar.org**](https://skills.stellar.org/) is the home for Stellar Skills—a collection of AI agent skills that give your coding assistant the right Stellar context before it writes code. They work with any AI agent, and you can browse every skill on the website with no installation required.
1515

16-
The skill provides expertise in:
16+
Skills are open source and maintained in the [stellar/stellar-dev-skill](https://github.com/stellar/stellar-dev-skill) repository.
1717

18-
- Soroban smart contracts (Rust SDK)
19-
- JavaScript, Python, and Go SDKs for client applications
20-
- Stellar RPC and Horizon APIs
21-
- Stellar Assets and Soroban tokens (SAC bridge)
22-
- Wallet integration (Freighter, Stellar Wallets Kit)
23-
- Smart accounts with passkeys
24-
- Testing strategies and security patterns
25-
- Agentic payment concepts such as x402 and Machine Payments Protocol (MPP)
18+
### Official skills
2619

27-
### Supported platforms
20+
The official skills cover the core areas of Stellar development:
2821

29-
The skill can be installed on any AI coding tool that supports the [Agent Skills](https://github.com/anthropics/agent-skills) standard:
22+
| Skill | What it covers |
23+
| --- | --- |
24+
| **Soroban Smart Contracts** | Writing, testing, securing, and shipping Rust smart contracts |
25+
| **Frontend & Wallets** | Building dApps with the JavaScript SDK, wallet integration (Freighter, Stellar Wallets Kit), and smart accounts with passkeys |
26+
| **Stellar Assets & SAC** | Classic assets, trustlines, and the Soroban Asset Contract bridge |
27+
| **RPC & Horizon APIs** | Querying chain data via modern Stellar RPC or the legacy Horizon endpoints |
28+
| **Agent Payments** | Monetizing AI APIs with x402 and the Machine Payments Protocol (MPP) |
29+
| **ZK Proofs** | Verifying zero-knowledge proofs on-chain |
30+
| **SEPs, CAPs & Ecosystem** | Standards and ecosystem integration guidance |
31+
32+
### Community skills
33+
34+
The ecosystem also contributes skills for popular protocols and tools. Browse the full, up-to-date list at [skills.stellar.org](https://skills.stellar.org/). Community skills are maintained by their respective authors, so review each one to confirm it meets your security and maintenance requirements before using it.
35+
36+
### Installation
37+
38+
Skills can be installed on any AI coding tool that supports the [Agent Skills](https://github.com/anthropics/agent-skills) standard. Each tool reads skills from its own directory:
3039

3140
| Platform | Skills directory |
3241
| --- | --- |
3342
| [Claude Code](https://docs.anthropic.com/en/docs/claude-code) | `~/.claude/skills/` |
34-
| [OpenCode](https://opencode.ai) | `~/.config/opencode/skills/` |
43+
| [OpenCode](https://opencode.ai) | `~/.config/opencode/skill/` |
3544
| [OpenAI Codex](https://openai.com/index/openai-codex/) | `~/.codex/skills/` |
3645

37-
### Installation
38-
3946
#### Claude Code
4047

4148
```bash
4249
/plugin marketplace add stellar/stellar-dev-skill
50+
/plugin install stellar-dev@stellar-dev
51+
```
52+
53+
#### OpenAI Codex
54+
55+
```bash
56+
git clone https://github.com/stellar/stellar-dev-skill ~/.codex/skills/stellar-dev-skill
4357
```
4458

45-
**Using npx (works with any compatible tool):**
59+
#### Using npx (works with any compatible tool)
4660

4761
```bash
4862
npx skills add https://github.com/stellar/stellar-dev-skill
4963
```
5064

51-
**Manual installation:**
65+
#### Manual installation
5266

53-
[Clone the repository](https://github.com/stellar/stellar-dev-skill) and copy the `skill/` directory to your agent's skills location (see table above).
67+
[Clone the repository](https://github.com/stellar/stellar-dev-skill) and copy the contents of the `skills/` directory into your agent's skills location (see table above).
5468

5569
Once installed, your AI coding assistant will automatically have access to up-to-date Stellar development knowledge when you work on Stellar projects.
5670

@@ -83,10 +97,11 @@ You can chat with Stella right here by clicking the yellow icon at the bottom of
8397

8498
Any AI assistant with custom context features can benefit from Stellar's resources. You can add `llms.txt` to your tool's context settings, or paste its contents directly into conversations to give the AI knowledge about Stellar development.
8599

86-
Popular tools like ChatGPT, Claude, Gemini, and Cursor all support adding custom context through their settings. We're actively working on dedicated integrations for more AI tools—check back for updates or follow the [Stellar Development Skill repository](https://github.com/stellar/stellar-dev-skill) for the latest supported platforms.
100+
Popular tools like ChatGPT, Claude, Gemini, and Cursor all support adding custom context through their settings. We're actively working on dedicated integrations for more AI tools—check back for updates or follow the [Stellar Skills repository](https://github.com/stellar/stellar-dev-skill) for the latest supported platforms.
87101

88102
## Additional resources
89103

90-
- [Stellar Development Skill](https://github.com/stellar/stellar-dev-skill) - Comprehensive AI skill for coding assistants
104+
- [Stellar Skills](https://skills.stellar.org/) - Browse AI agent skills for Stellar development
105+
- [stellar-dev-skill repository](https://github.com/stellar/stellar-dev-skill) - Source and installation for the official skills
91106
- [Stella AI Bot](../tools/developer-tools/ai-bot.mdx) - Stellar's built-in AI assistant
92107
- [Stellar Developer Discord](https://discord.gg/stellardev) - Ask questions in #stella-help

0 commit comments

Comments
 (0)