Skip to content

Commit 8d0dfe5

Browse files
authored
Merge pull request #822 from ethersphere/feat/add-ai-skills-ref
feat: reference Swarm Quickstart Skills repo in docs
2 parents fd34761 + a52dec8 commit 8d0dfe5

7 files changed

Lines changed: 14354 additions & 19579 deletions

File tree

docs/develop/introduction.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,15 @@ This is the go-to starting point for web3 developers who want to build with Swar
3535
<span class="hub-card__cta">Connect dApp</span>
3636
</a>
3737
</li>
38+
<li class="hub-card">
39+
<a class="hub-card__link" href="/docs/develop/tools-and-features/ai-agent-skills">
40+
<h3 class="hub-card__title">Onboard with AI Skills</h3>
41+
<p class="hub-card__desc">
42+
Use the Swarm Quickstart Skills in Claude Code — type <code>/swarm</code> for guided, prerequisite-checking steps to set up a node and start building.
43+
</p>
44+
<span class="hub-card__cta">Start with AI</span>
45+
</a>
46+
</li>
3847
</ul>
3948
</div>
4049

docs/develop/resources-md.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ description: A curated list of Swarm developer resources — docs, SDKs, example
8888
- [swarm-cli](/docs/bee/working-with-bee/swarm-cli/) — Command-line interface for uploads, feeds, and more
8989
- [swarm-mcp ↗](https://github.com/ethersphere/swarm-mcp) — MCP server for AI agents to read and write Swarm
9090
- [Swarm Actions ↗](https://github.com/ethersphere/swarm-actions) — Deploy to Swarm from GitHub CI/CD workflows
91-
- [Swarm Skills ↗](https://github.com/GasperX93/swarm-skills) — Claude Code integration for Swarm
91+
- [Swarm Quickstart Skills ↗](https://github.com/ethersphere/swarm-quickstart-skills)Interactive Claude Code skills for guided Swarm onboarding
9292

9393
### Libraries & Primitives
9494

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
title: AI Agent Skills
3+
id: ai-agent-skills
4+
description: Interactive Claude Code skills that guide you through setting up Bee and building on Swarm.
5+
---
6+
7+
[Swarm Quickstart Skills](https://github.com/ethersphere/swarm-quickstart-skills)
8+
is a set of interactive guides ("skills") that run inside
9+
[Claude Code](https://claude.com/claude-code). Instead of copying commands from
10+
the docs by hand, the skills check your prerequisites first, run real commands
11+
against your Bee node, and explain what is happening at each step. Type `/swarm`
12+
and you are routed to the right next step for your current setup — installing a
13+
node, buying a postage stamp, uploading files, or scaffolding a dApp.
14+
15+
## Requirements
16+
17+
- [Claude Code](https://claude.com/claude-code)
18+
- Node.js 18+
19+
- A running Bee light node at `http://localhost:1633` (for most skills)
20+
- The
21+
easiest way to install is to run `/swarm` in Claude Code, which installs and starts a
22+
light node for you.
23+
- Alternatively, check out the
24+
[quick start](./../../bee/installation/quick-start.md)
25+
26+
## Install
27+
28+
Clone the repo and copy the `.claude/` folder into your project:
29+
30+
```bash
31+
git clone https://github.com/ethersphere/swarm-quickstart-skills.git
32+
cp -r swarm-quickstart-skills/.claude/ /path/to/your-project/
33+
```
34+
35+
Then open Claude Code in your project and start with the entry point:
36+
37+
```bash
38+
cd your-project && claude
39+
```
40+
41+
Type `/swarm` to begin. See the
42+
[swarm-quickstart-skills repository](https://github.com/ethersphere/swarm-quickstart-skills)
43+
for the full list of available skills.
44+
45+
For a programmatic alternative aimed at agents, see the
46+
[swarm-mcp](https://github.com/ethersphere/swarm-mcp) MCP server.

docs/develop/tools-and-features/introduction.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ won't break the bank and can live forever!
1616

1717
Swarm is designed with decentralised applications in mind, and much time has been devoted to designing tools and features to support their prototyping and development.
1818

19+
### AI Agent Skills
20+
21+
In a hurry? The [Swarm Quickstart Skills](./ai-agent-skills.md) run inside Claude Code and walk you through setting up a Bee node and building on Swarm — just type `/swarm` and follow the guided steps.
22+
1923
### Bee JS
2024

2125
Our maverick JavaScript team, the Bee-Gees (🕺), have been working hard in the last few months to build some impressive tools for all you budding dapp developer Bees to get stuck into! Find out how to use the [bee-js](./bee-js.md) JavaScript library to start creating your own that live and work on Swarm!

0 commit comments

Comments
 (0)