Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions docs/building-with-ai.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ We provide multiple tools to help AI coding assistants write correct Trigger.dev
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 +31 to +34

Copy link
Copy Markdown
Contributor

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 skills is RC-only, but the install snippet above still uses npx trigger.dev@latest skills. Anyone copying it will land on the wrong release channel until stable. Switch the example to @rc for now.

🔧 Suggested fix
- npx trigger.dev@latest skills
+ npx trigger.dev@rc skills


[Learn more →](/skills)
</Step>

Expand Down
5 changes: 5 additions & 0 deletions docs/mcp-agent-rules.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Copy link
Copy Markdown
Contributor

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 skills is RC-only, but the snippet above still shows npx trigger.dev@latest skills. Readers copying this will hit the wrong release channel until stable. Switch the example to @rc for now.

🔧 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.
Expand Down
5 changes: 5 additions & 0 deletions docs/skills.mdx

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The 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 <Warning> blocks are placed immediately after the primary code examples, but several other mentions of npx trigger.dev@latest skills in these same files were not annotated with a similar caveat. For example, the non-interactive install example at docs/skills.mdx:43 (npx trigger.dev@latest skills --target claude-code --target cursor -y), the "Keeping skills updated" section at docs/skills.mdx:73, and the comparison table at docs/building-with-ai.mdx:49 all still reference @latest without any RC note. Users who jump to those sections may miss the warning and try a command that doesn't work yet. This is a minor consistency gap rather than a bug — the primary install sections are correctly annotated.

(Refers to line 43)

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

Original file line number Diff line number Diff line change
Expand Up @@ -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

Copy link
Copy Markdown
Contributor

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 skills is RC-only, but the example above still uses npx trigger.dev@latest skills. Readers copying the snippet will hit the wrong channel until stable. Switch the example to @rc for now.

🔧 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.
Expand Down