Skip to content
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
10ad4f9
docs: setup new guide structure
notunderctrl Jun 14, 2025
2a9789a
refactor: remove unnecessary script
twlite Jun 14, 2025
4bb30cd
fix: llms plugin url
twlite Jun 14, 2025
a93e247
docs: update versioning
notunderctrl Jun 14, 2025
8518f35
docs: add getting started and advanced setup guides
notunderctrl Jun 14, 2025
aaa1a2c
docs: update styling + add chat input commands docs
notunderctrl Jun 14, 2025
131f781
docs: fix wording
notunderctrl Jun 14, 2025
ba67067
Update apps/website/docs/guide.old/01-getting-started/02-setup-comman…
twlite Jun 15, 2025
f43d487
Update apps/website/docs/guide.old/01-getting-started/02-setup-comman…
twlite Jun 15, 2025
3d05352
update prettier config
notunderctrl Aug 14, 2025
45b1977
Merge branch 'main' into rewrite-docs
notunderctrl Aug 14, 2025
08e293f
prettier format
notunderctrl Aug 14, 2025
4258569
update gh actions node version to 24
notunderctrl Aug 14, 2025
b99d5de
fix tsdown entry
notunderctrl Aug 14, 2025
9376e1e
update workflow + lint script to check-types
notunderctrl Aug 14, 2025
fa300e1
fix tooltips
notunderctrl Aug 14, 2025
4884fbe
add options autocomplete docs
notunderctrl Aug 14, 2025
d338b45
fix autocomplete choices wording
notunderctrl Aug 14, 2025
90d9768
add context menu command docs
notunderctrl Aug 14, 2025
9770553
add message commands docs
notunderctrl Aug 14, 2025
2c4928c
fix message command function name
notunderctrl Aug 15, 2025
7fa4a77
document prefix resolver for message commands
notunderctrl Aug 15, 2025
8bb6057
fix prettier formatting
notunderctrl Aug 15, 2025
91f16e8
update prefix resolver example
notunderctrl Aug 15, 2025
28f8fac
document `after` function
notunderctrl Aug 15, 2025
252c289
document commands category dir
notunderctrl Aug 15, 2025
78aac43
fix: entry build pattern for tsdown
notunderctrl Aug 15, 2025
3fa55d9
fix turbo build output for docs
notunderctrl Aug 15, 2025
879ed6b
fix command-scoped middleware + document middlewares
notunderctrl Aug 15, 2025
a8f7488
document discord.js events
notunderctrl Aug 16, 2025
884cc0f
add class links
notunderctrl Aug 16, 2025
eff1535
document custom events
notunderctrl Aug 16, 2025
b612e03
fix typo
notunderctrl Aug 16, 2025
fe64394
document v0 -> v1 migration
notunderctrl Aug 16, 2025
f2a91e1
document sharding
notunderctrl Aug 16, 2025
bc27565
setup community plugins page structure
notunderctrl Aug 16, 2025
816bbae
document file naming conventions
notunderctrl Aug 16, 2025
f0838d6
custom events doc tweaks
notunderctrl Aug 16, 2025
35f712d
update utilities tone
notunderctrl Aug 16, 2025
d1f7008
document plugins + utilities
notunderctrl Aug 16, 2025
83ed02a
update utilities naming
notunderctrl Aug 16, 2025
acdaab8
document `@commandkit/cache`
notunderctrl Aug 16, 2025
75b5ae2
document `@commandkit/ai`
notunderctrl Aug 16, 2025
15f7a4d
document `stopEvents()` function
notunderctrl Aug 16, 2025
f34b146
document `@commandkit/analytics`
notunderctrl Aug 16, 2025
3c35878
document feature flags
notunderctrl Aug 16, 2025
1713bbd
document `@commandkit/devtools`
notunderctrl Aug 16, 2025
2025fbc
document `@commandkit/i18n`
notunderctrl Aug 16, 2025
dbcf3d7
document `@commandkit/legacy` and `@commandkit/redis`
notunderctrl Aug 16, 2025
0c3972a
document creating a plugin
notunderctrl Aug 16, 2025
5a093db
document jsx components
notunderctrl Aug 17, 2025
c89d7bd
docs: add ai plugin architecture diagram
twlite Aug 17, 2025
af979e9
Update apps/website/docs/guide/05-official-plugins/01-commandkit-ai.mdx
twlite Aug 17, 2025
c91f62c
Merge pull request #467 from underctrl-io/twlite-patch-1
twlite Aug 17, 2025
85b5d4d
Merge branch 'main' of https://github.com/underctrl-io/commandkit int…
twlite Aug 18, 2025
e10de86
update contributing.md
notunderctrl Aug 18, 2025
1220a05
prettier format
notunderctrl Aug 18, 2025
c90197e
docs: remove oudated callout
notunderctrl Aug 18, 2025
7fc7c54
feat: add EventHandler type
notunderctrl Aug 18, 2025
4474a31
fix broken link + codeblock titles
notunderctrl Aug 18, 2025
8e750ed
docgen + add publish-rc gh action
notunderctrl Aug 18, 2025
a3049bb
update versioning
notunderctrl Aug 18, 2025
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
52 changes: 52 additions & 0 deletions .github/workflows/code-quality.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Code Quality

on:
push:
branches:
- '**'
- '!renovate/*'

jobs:
check-types:
name: Check Types
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: pnpm/action-setup@v4
with:
version: '10.14.0'

- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 24
registry-url: https://registry.npmjs.org

- name: Install Dependencies
run: pnpm install --frozen-lockfile

- name: Check TypeScript Types
run: pnpm dlx turbo check-types

prettier:
name: Prettier Check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: pnpm/action-setup@v4
with:
version: '10.14.0'

- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 24
registry-url: https://registry.npmjs.org

- name: Install Dependencies
run: pnpm install --frozen-lockfile

- name: Check Prettier Formatting
run: pnpm prettier:check
30 changes: 0 additions & 30 deletions .github/workflows/lint.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/publish-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 22
node-version: 24
registry-url: https://registry.npmjs.org

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 22
node-version: 24
registry-url: https://registry.npmjs.org

- name: Install dependencies
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
node_modules

**/website/docs/api-reference
**/website/docs/guide.old
**/website/versioned_docs
**/website/versioned_sidebars
.docusaurus
Expand Down
11 changes: 10 additions & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,14 @@
"semi": true,
"endOfLine": "lf",
"useTabs": false,
"jsxSingleQuote": false
"jsxSingleQuote": false,
"overrides": [
{
"files": ["*.md", "*.mdx"],
"options": {
"proseWrap": "always",
"printWidth": 70
}
}
]
}
156 changes: 82 additions & 74 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,131 +2,139 @@

## Our Pledge

We as members, contributors, and leaders pledge to make participation in our
community a harassment-free experience for everyone, regardless of age, body
size, visible or invisible disability, ethnicity, sex characteristics, gender
identity and expression, level of experience, education, socio-economic status,
nationality, personal appearance, race, caste, color, religion, or sexual
identity and orientation.
We as members, contributors, and leaders pledge to make participation
in our community a harassment-free experience for everyone, regardless
of age, body size, visible or invisible disability, ethnicity, sex
characteristics, gender identity and expression, level of experience,
education, socio-economic status, nationality, personal appearance,
race, caste, color, religion, or sexual identity and orientation.

We pledge to act and interact in ways that contribute to an open, welcoming,
diverse, inclusive, and healthy community.
We pledge to act and interact in ways that contribute to an open,
welcoming, diverse, inclusive, and healthy community.

## Our Standards

Examples of behavior that contributes to a positive environment for our
community include:
Examples of behavior that contributes to a positive environment for
our community include:

- Demonstrating empathy and kindness toward other people
- Being respectful of differing opinions, viewpoints, and experiences
- Giving and gracefully accepting constructive feedback
- Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
- Focusing on what is best not just for us as individuals, but for the overall
community
- Accepting responsibility and apologizing to those affected by our
mistakes, and learning from the experience
- Focusing on what is best not just for us as individuals, but for the
overall community

Examples of unacceptable behavior include:

- The use of sexualized language or imagery, and sexual attention or advances of
any kind
- Trolling, insulting or derogatory comments, and personal or political attacks
- The use of sexualized language or imagery, and sexual attention or
advances of any kind
- Trolling, insulting or derogatory comments, and personal or
political attacks
- Public or private harassment
- Publishing others' private information, such as a physical or email address,
without their explicit permission
- Other conduct which could reasonably be considered inappropriate in a
professional setting
- Publishing others' private information, such as a physical or email
address, without their explicit permission
- Other conduct which could reasonably be considered inappropriate in
a professional setting

## Enforcement Responsibilities

Community leaders are responsible for clarifying and enforcing our standards of
acceptable behavior and will take appropriate and fair corrective action in
response to any behavior that they deem inappropriate, threatening, offensive,
or harmful.
Community leaders are responsible for clarifying and enforcing our
standards of acceptable behavior and will take appropriate and fair
corrective action in response to any behavior that they deem
inappropriate, threatening, offensive, or harmful.

Community leaders have the right and responsibility to remove, edit, or reject
comments, commits, code, wiki edits, issues, and other contributions that are
not aligned to this Code of Conduct, and will communicate reasons for moderation
decisions when appropriate.
Community leaders have the right and responsibility to remove, edit,
or reject comments, commits, code, wiki edits, issues, and other
contributions that are not aligned to this Code of Conduct, and will
communicate reasons for moderation decisions when appropriate.

## Scope

This Code of Conduct applies within all community spaces, and also applies when
an individual is officially representing the community in public spaces.
Examples of representing our community include using an official email address,
posting via an official social media account, or acting as an appointed
representative at an online or offline event.
This Code of Conduct applies within all community spaces, and also
applies when an individual is officially representing the community in
public spaces. Examples of representing our community include using an
official email address, posting via an official social media account,
or acting as an appointed representative at an online or offline
event.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
[email protected].
All complaints will be reviewed and investigated promptly and fairly.
Instances of abusive, harassing, or otherwise unacceptable behavior
may be reported to the community leaders responsible for enforcement
at [email protected]. All complaints will be reviewed and
investigated promptly and fairly.

All community leaders are obligated to respect the privacy and security of the
reporter of any incident.
All community leaders are obligated to respect the privacy and
security of the reporter of any incident.

## Enforcement Guidelines

Community leaders will follow these Community Impact Guidelines in determining
the consequences for any action they deem in violation of this Code of Conduct:
Community leaders will follow these Community Impact Guidelines in
determining the consequences for any action they deem in violation of
this Code of Conduct:

### 1. Correction

**Community Impact**: Use of inappropriate language or other behavior deemed
unprofessional or unwelcome in the community.
**Community Impact**: Use of inappropriate language or other behavior
deemed unprofessional or unwelcome in the community.

**Consequence**: A private, written warning from community leaders, providing
clarity around the nature of the violation and an explanation of why the
behavior was inappropriate. A public apology may be requested.
**Consequence**: A private, written warning from community leaders,
providing clarity around the nature of the violation and an
explanation of why the behavior was inappropriate. A public apology
may be requested.

### 2. Warning

**Community Impact**: A violation through a single incident or series of
actions.
**Community Impact**: A violation through a single incident or series
of actions.

**Consequence**: A warning with consequences for continued behavior. No
interaction with the people involved, including unsolicited interaction with
those enforcing the Code of Conduct, for a specified period of time. This
includes avoiding interactions in community spaces as well as external channels
like social media. Violating these terms may lead to a temporary or permanent
ban.
**Consequence**: A warning with consequences for continued behavior.
No interaction with the people involved, including unsolicited
interaction with those enforcing the Code of Conduct, for a specified
period of time. This includes avoiding interactions in community
spaces as well as external channels like social media. Violating these
terms may lead to a temporary or permanent ban.

### 3. Temporary Ban

**Community Impact**: A serious violation of community standards, including
sustained inappropriate behavior.
**Community Impact**: A serious violation of community standards,
including sustained inappropriate behavior.

**Consequence**: A temporary ban from any sort of interaction or public
communication with the community for a specified period of time. No public or
private interaction with the people involved, including unsolicited interaction
with those enforcing the Code of Conduct, is allowed during this period.
Violating these terms may lead to a permanent ban.
**Consequence**: A temporary ban from any sort of interaction or
public communication with the community for a specified period of
time. No public or private interaction with the people involved,
including unsolicited interaction with those enforcing the Code of
Conduct, is allowed during this period. Violating these terms may lead
to a permanent ban.

### 4. Permanent Ban

**Community Impact**: Demonstrating a pattern of violation of community
standards, including sustained inappropriate behavior, harassment of an
individual, or aggression toward or disparagement of classes of individuals.
**Community Impact**: Demonstrating a pattern of violation of
community standards, including sustained inappropriate behavior,
harassment of an individual, or aggression toward or disparagement of
classes of individuals.

**Consequence**: A permanent ban from any sort of public interaction within the
community.
**Consequence**: A permanent ban from any sort of public interaction
within the community.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage],
version 2.1, available at
This Code of Conduct is adapted from the [Contributor
Covenant][homepage], version 2.1, available at
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].

Community Impact Guidelines were inspired by
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
Community Impact Guidelines were inspired by [Mozilla's code of
conduct enforcement ladder][Mozilla CoC].

For answers to common questions about this code of conduct, see the FAQ at
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
For answers to common questions about this code of conduct, see the
FAQ at [https://www.contributor-covenant.org/faq][FAQ]. Translations
are available at
[https://www.contributor-covenant.org/translations][translations].

[homepage]: https://www.contributor-covenant.org
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
[v2.1]:
https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
[Mozilla CoC]: https://github.com/mozilla/diversity
[FAQ]: https://www.contributor-covenant.org/faq
[translations]: https://www.contributor-covenant.org/translations
Loading