mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 11:41:04 +00:00
feat: replace qwen-settings-config with bundled qc-helper skill
- Remove project-level qwen-settings-config skill and its references/ - Create bundled qc-helper skill at packages/core/src/skills/bundled/ that references docs/users/ for answering usage/config questions - Update copy_bundle_assets.js to copy docs/users/ into dist/bundled/qc-helper/docs/ - Update dev.js to create symlink for dev mode docs access - Add bundled docs directory verification in prepare-package.js - Revert doc-update skills (docs-audit-and-refresh, docs-update-from-diff) to main branch versions
This commit is contained in:
parent
8f7f57f5a8
commit
7a6b725b0c
15 changed files with 216 additions and 2032 deletions
|
|
@ -41,6 +41,13 @@ if (!fs.existsSync(vendorDir)) {
|
|||
process.exit(1);
|
||||
}
|
||||
|
||||
const bundledDocsDir = path.join(distDir, 'bundled', 'qc-helper', 'docs');
|
||||
if (!fs.existsSync(bundledDocsDir)) {
|
||||
console.error(`Error: Bundled docs not found at ${bundledDocsDir}`);
|
||||
console.error('Please run "npm run bundle" first');
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
// Copy README and LICENSE
|
||||
console.log('Copying documentation files...');
|
||||
const filesToCopy = ['README.md', 'LICENSE'];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue