Skip to content

Commit e561108

Browse files
committed
docs: add skills to getting-started
1 parent 107453d commit e561108

1 file changed

Lines changed: 35 additions & 9 deletions

File tree

apps/website/docs/guide/01-getting-started/01-introduction.mdx

Lines changed: 35 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,41 @@ import Logo from './Logo';
4343
</div>
4444
</div>
4545

46-
## The problem
46+
CommandKit is a meta-framework for building Discord bots with
47+
discord.js. It provides a structured, convention-based approach to
48+
command and event handling, JSX components, middleware, and more, so
49+
you can focus on writing bot logic instead of boilerplate setup.
50+
Whether you're a beginner looking for an easy way to get started or an
51+
experienced developer tired of rebuilding the same architecture for
52+
every new bot, CommandKit has you covered.
53+
54+
## Get started
55+
56+
import Tabs from '@theme/Tabs';
57+
import TabItem from '@theme/TabItem';
58+
59+
<!-- prettier-ignore -->
60+
<Tabs>
61+
<TabItem value="humans" label="For humans" default>
62+
63+
```bash npm2yarn
64+
npm create commandkit
65+
```
66+
67+
Then run `commandkit dev` and start building.
68+
69+
</TabItem>
70+
71+
<TabItem value="agents" label="For agents">
72+
73+
```bash npm2yarn
74+
npx skills add neplextech/commandkit
75+
```
76+
77+
</TabItem>
78+
</Tabs>
79+
80+
## Why CommandKit?
4781

4882
Every time you start a new discord.js bot, you end up solving the same
4983
problems from scratch:
@@ -263,14 +297,6 @@ CommandKit has been used in production client projects and has saved
263297
hours of setup time on each one. It's not overhead — it's the setup
264298
work you'd do anyway, already done well.
265299

266-
## Get started
267-
268-
```bash
269-
npm create commandkit
270-
```
271-
272-
Then run `commandkit dev` and start building.
273-
274300
## Support and suggestions
275301

276302
- [GitHub repository](https://github.com/neplextech/commandkit)

0 commit comments

Comments
 (0)