-
Notifications
You must be signed in to change notification settings - Fork 843
docs: mark plugin system as beta #1558
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
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -49,7 +49,7 @@ export default withMermaid(defineConfig({ | |||||
| text: '定制化', | ||||||
| items: [ | ||||||
| { text: 'Model Context Protocol', link: '/zh/customization/mcp' }, | ||||||
| { text: '插件', link: '/zh/customization/plugins' }, | ||||||
| { text: '插件 (Beta)', link: '/zh/customization/plugins' }, | ||||||
| { text: 'Agent Skills', link: '/zh/customization/skills' }, | ||||||
| { text: 'Agent 与子 Agent', link: '/zh/customization/agents' }, | ||||||
| { text: 'Print 模式', link: '/zh/customization/print-mode' }, | ||||||
|
|
@@ -131,7 +131,7 @@ export default withMermaid(defineConfig({ | |||||
| text: 'Customization', | ||||||
| items: [ | ||||||
| { text: 'Model Context Protocol', link: '/en/customization/mcp' }, | ||||||
| { text: 'Plugins', link: '/en/customization/plugins' }, | ||||||
| { text: 'Plugins (Beta)', link: '/en/customization/plugins' }, | ||||||
|
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. 🔴 English sidebar label changed, violating docs/AGENTS.md rule The rule at
Suggested change
Was this helpful? React with 👍 or 👎 to provide feedback. 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.
Useful? React with 👍 / 👎. |
||||||
| { text: 'Agent Skills', link: '/en/customization/skills' }, | ||||||
| { text: 'Agents and Subagents', link: '/en/customization/agents' }, | ||||||
| { text: 'Print Mode', link: '/en/customization/print-mode' }, | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,4 +1,8 @@ | ||||||||||
| # Plugins | ||||||||||
| # Plugins (Beta) | ||||||||||
|
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. 🔴 H1 title changed in English plugins page, violating docs/AGENTS.md rule The rule at
Suggested change
Was this helpful? React with 👍 or 👎 to provide feedback. 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.
Useful? React with 👍 / 👎. |
||||||||||
|
|
||||||||||
| ::: warning Beta Feature | ||||||||||
|
||||||||||
| ::: warning Beta Feature | |
| ::: warning |
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.
🔴 English warning callout uses descriptive title "Beta Feature" instead of short category word
The rule at docs/AGENTS.md:103-105 specifies: "Use short category titles for callout blocks... English: use no title or short words like Note for warning." The callout ::: warning Beta Feature should use ::: warning (no title) or ::: warning Note, with "Beta Feature" as part of the block content instead.
| ::: warning Beta Feature | |
| ::: warning Note |
Was this helpful? React with 👍 or 👎 to provide feedback.
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,4 +1,8 @@ | ||||||||||
| # 插件 | ||||||||||
| # 插件 (Beta) | ||||||||||
|
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. 🔴 H1 title changed in Chinese plugins page, violating docs/AGENTS.md rule The rule at
Suggested change
Was this helpful? React with 👍 or 👎 to provide feedback. |
||||||||||
|
|
||||||||||
| ::: warning Beta 功能 | ||||||||||
|
||||||||||
| ::: warning Beta 功能 | |
| ::: warning 注意 |
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.
Use the standard warning callout title in zh docs
The Chinese docs style guide in docs/AGENTS.md requires warning callouts to use the category title 注意, with details moved into the body. Using ::: warning Beta 功能 breaks that documented convention and makes warning blocks inconsistent with the rest of the site.
Useful? React with 👍 / 👎.
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.
🔴 Chinese warning callout uses wrong title "Beta 功能" instead of "注意"
The rule at docs/AGENTS.md:103-104 specifies: "Chinese: use 提示 for tip, 注意 for warning, 说明 for info, 警告 for danger." The callout ::: warning Beta 功能 should use ::: warning 注意 with "Beta 功能" content moved into the block body.
| ::: warning Beta 功能 | |
| ::: warning 注意 |
Was this helpful? React with 👍 or 👎 to provide feedback.
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.
🔴 Chinese sidebar label changed, violating docs/AGENTS.md rule
The rule at
docs/AGENTS.md:38states: "Do not change H1 titles or nav/sidebar labels." This PR changes the Chinese sidebar label from'插件'to'插件 (Beta)'. Sidebar labels should remain stable; the Beta status is already communicated by the warning callout on the page itself.Was this helpful? React with 👍 or 👎 to provide feedback.