Skip to content

sync(agent-skills): update website docs to match codegen v10.5.0-beta.4#125

Merged
JusterZhu merged 3 commits into
mainfrom
feat/sync-agent-skills-to-v10.5.0-beta.4
Jun 17, 2026
Merged

sync(agent-skills): update website docs to match codegen v10.5.0-beta.4#125
JusterZhu merged 3 commits into
mainfrom
feat/sync-agent-skills-to-v10.5.0-beta.4

Conversation

@JusterZhu

Copy link
Copy Markdown
Collaborator

Summary

Sync the Agent Skills website documentation pages with the tmpgeneralupdate-skill-codegen source changes.

Changes

Version bump: v0.0.1-beta.1 → v0.0.2-beta.1 (targets NuGet GeneralUpdate.Core 10.5.0-beta.4)

API migration across all pages:

  • ConfiginfoUpdateRequest (GeneralUpdate.Core.Configuration)
  • AppType from class → enum (added OssClient/OssUpgrade)
  • Added SetSource(), AuthScheme, AddListenerProgress(), DiffPipelineBuilder
  • Bowl: BowlContext + LaunchAsync() (v10.5 fully functional)
  • Bowl/Core: no type conflict, can reference together

New pages (2 new skills):

  • generalupdate-migration.md — v9.x → v10 / dev-branch → stable migration
  • generalupdate-security-audit.md — 14-item security audit matrix

Added content:

  • Developer integration roadmap with 7 entry points
  • Unified pre-integration verification checklist
  • Detailed strategy decision tree (19 combinations)
  • Strategy-specific verification checklists
  • Anti-pattern checklists for all skill pages

Infrastructure:

  • Registered new pages in sidebars.js
  • English i18n fully synchronized with Chinese docs

🤖 Generated with Claude Code

- Bump version from 0.0.1-beta.1 to 0.0.2-beta.1
- Configinfo → UpdateRequest API across all pages
- Add AppType enum, SetSource(), AddListenerProgress() coverage
- Add 2 new skills: generalupdate-migration, generalupdate-security-audit
- Add developer integration roadmap and unified verification checklist
- Update Bowl section: BowlContext + LaunchAsync (v10.5.0-beta.4)
- Update DiffPipelineBuilder differential engine section
- Add detailed strategy decision tree with 19 combinations
- Add anti-pattern checklists to all skill pages
- Update English i18n to match Chinese docs
- Register new pages in sidebars.js

Co-Authored-By: Claude <noreply@anthropic.com>
Copilot AI review requested due to automatic review settings June 17, 2026 04:51

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR synchronizes the Agent Skills documentation (CN + EN) with the updated skill/codegen surface targeting GeneralUpdate.Core 10.5.0-beta.4, and registers two new Agent Skills pages in the Docusaurus sidebar.

Changes:

  • Bumps the documented Agent Skills suite version to 0.0.2-beta.1 and updates all pages from ConfiginfoUpdateRequest and other v10.5 API changes.
  • Adds two new skills/pages: migration and security audit, and wires them into website/sidebars.js.
  • Expands each skill page with additional checklists/anti-pattern guidance and updated examples.

Reviewed changes

Copilot reviewed 17 out of 17 changed files in this pull request and generated 11 comments.

Show a summary per file
File Description
website/sidebars.js Registers the new Agent Skills pages in the sidebar.
website/i18n/en/docusaurus-plugin-content-docs/current/agent-skills/overview.md EN overview updated to v10.5 docs + adds roadmap/checklists + lists new pages.
website/i18n/en/docusaurus-plugin-content-docs/current/agent-skills/generalupdate-init.md EN init guide migrated to UpdateRequest/v10.5 features + adds checklists.
website/i18n/en/docusaurus-plugin-content-docs/current/agent-skills/generalupdate-ui.md EN UI skill updated for v10.5 + adds verification/anti-pattern sections.
website/i18n/en/docusaurus-plugin-content-docs/current/agent-skills/generalupdate-strategy.md EN strategy guide updated to v10.5 + expands decision tree/checklists.
website/i18n/en/docusaurus-plugin-content-docs/current/agent-skills/generalupdate-advanced.md EN advanced guide updated to v10.5 + expands pipeline/diff/bowl/AOT sections.
website/i18n/en/docusaurus-plugin-content-docs/current/agent-skills/generalupdate-troubleshoot.md EN troubleshooting expanded with symptom collection + BM25 search workflow.
website/i18n/en/docusaurus-plugin-content-docs/current/agent-skills/generalupdate-migration.md New EN migration page for v9→v10.5 and dev→beta.4 paths.
website/i18n/en/docusaurus-plugin-content-docs/current/agent-skills/generalupdate-security-audit.md New EN security audit matrix + report template/checklist.
website/docs/agent-skills/overview.md CN overview updated to v10.5 docs + adds roadmap/checklists + lists new pages.
website/docs/agent-skills/generalupdate-init.md CN init guide migrated to UpdateRequest/v10.5 features + adds checklists.
website/docs/agent-skills/generalupdate-ui.md CN UI skill updated for v10.5 + adds verification/anti-pattern sections.
website/docs/agent-skills/generalupdate-strategy.md CN strategy guide updated to v10.5 + expands decision tree/checklists.
website/docs/agent-skills/generalupdate-advanced.md CN advanced guide updated to v10.5 + expands pipeline/diff/bowl/AOT sections.
website/docs/agent-skills/generalupdate-troubleshoot.md CN troubleshooting expanded with symptom collection + BM25 search workflow.
website/docs/agent-skills/generalupdate-migration.md New CN migration page for v9→v10.5 and dev→beta.4 paths.
website/docs/agent-skills/generalupdate-security-audit.md New CN security audit matrix + report template/checklist.
Comments suppressed due to low confidence (1)

website/docs/agent-skills/generalupdate-advanced.md:248

  • 这里引用了 GeneralUpdate.Differential.Matchers,但仓库里现有的差分示例/文档(如 website/docs/doc/GeneralUpdate.Core.md)里 DefaultCleanMatcher/DefaultDirtyMatcher 是通过 GeneralUpdate.Core.Differential 引入的。当前 using 很可能不正确,用户照抄会编译失败。
using GeneralUpdate.Differential.Matchers;

// 自定义清理匹配器
var cleanMatcher = new DefaultCleanMatcher();  // 或实现 ICleanMatcher
var dirtyMatcher = new DefaultDirtyMatcher();  // 或实现 IDirtyMatcher

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

├── Match found → Provide root cause + fix + code
└── No match → Execute 6-step universal diagnostic
2. Symptom Matching
├── Priority: python3 scripts/search.py "<symptom>" --domain issue
├── 找到匹配的 Q/C/H/M/L → 给出根因 + 修复 + 代码
└── 未找到匹配 → 执行通用诊断流程(6步骤)
2. 症状匹配
├── 优先:python3 scripts/search.py "<症状>" --domain issue
Comment thread website/docs/agent-skills/generalupdate-troubleshoot.md Outdated
Comment thread website/docs/agent-skills/generalupdate-troubleshoot.md Outdated
Comment thread website/docs/agent-skills/generalupdate-troubleshoot.md Outdated
JusterZhu and others added 2 commits June 17, 2026 13:05
- Fix namespace: GeneralUpdate.Differential.Matchers → GeneralUpdate.Core.Differential
- Fix log glob: generalupdate-trace *.log → generalupdate-trace-*.log
- Fix skill path: skills/ → .claude/skills/ in search commands
- Fix event count: 6 → 7 events (missing AddListenerProgress)

Co-Authored-By: Claude <noreply@anthropic.com>
<T> outside backticks was parsed as JSX tag by Docusaurus MDX, causing
CI build failure. Added backticks around Hooks<T>() and Strategy<T>().

Co-Authored-By: Claude <noreply@anthropic.com>
@JusterZhu JusterZhu merged commit d69dde7 into main Jun 17, 2026
2 checks passed
@JusterZhu JusterZhu deleted the feat/sync-agent-skills-to-v10.5.0-beta.4 branch June 19, 2026 12:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants