-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
docs(skills): note the skills CLI command is only in the release candidate #4047
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,6 +19,11 @@ The install command is the same, and now installs skills: | |
| npx trigger.dev@latest skills | ||
| ``` | ||
|
|
||
| <Warning> | ||
| The `skills` command is currently only available in the release candidate. Until it ships to the | ||
| stable release, run it with the `@rc` tag: `npx trigger.dev@rc skills`. | ||
| </Warning> | ||
|
Comment on lines
+22
to
+25
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win Make the example match the warning. The warning says 🔧 Suggested fix- npx trigger.dev@latest skills
+ npx trigger.dev@rc skills |
||
|
|
||
| `npx trigger.dev@latest install-rules` still works as an alias, and `trigger dev` offers to install the skills on first run. | ||
|
|
||
| The old task and realtime guidance now lives in the `trigger-authoring-tasks` and `trigger-realtime-and-frontend` skills, alongside two new skills for building `chat.agent` AI agents. See [Skills](/skills) for the full list and supported assistants. | ||
|
|
||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🚩 Other @latest references in the same files lack the RC warning The new (Refers to line 43) Was this helpful? React with 👍 or 👎 to provide feedback. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,6 +24,11 @@ Run the installer with the CLI: | |
| npx trigger.dev@latest skills | ||
| ``` | ||
|
|
||
| <Warning> | ||
| The `skills` command is currently only available in the release candidate. Until it ships to the | ||
| stable release, run it with the `@rc` tag: `npx trigger.dev@rc skills`. | ||
| </Warning> | ||
|
Comment on lines
+27
to
+30
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win Make the example match the warning. The warning says 🔧 Suggested fix- npx trigger.dev@latest skills
+ npx trigger.dev@rc skills |
||
|
|
||
| The CLI detects your installed AI tools, lets you pick which skills to install, and writes each one into that tool's native skills directory (`.claude/skills/`, `.cursor/skills/`, `.github/skills/`, `.agents/skills/`). It also adds a one-line pointer to your primary instructions file (`CLAUDE.md`, `.cursor/rules`, etc.) so your assistant always knows the skills are there and loads the right one on demand. | ||
|
|
||
| When you run `trigger dev` for the first time, the CLI offers to install the skills for you. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
Make the example match the warning.
The warning says
skillsis RC-only, but the install snippet above still usesnpx trigger.dev@latest skills. Anyone copying it will land on the wrong release channel until stable. Switch the example to@rcfor now.🔧 Suggested fix