QwenClaw v2.0 - Complete Rebuild with ALL 81+ Skills

This commit is contained in:
AI Agent
2026-02-26 20:08:00 +04:00
Unverified
parent 7e297c53b9
commit 69cf7e8a05
475 changed files with 82593 additions and 110 deletions

View File

@@ -0,0 +1,112 @@
{
"claudeCode.initialPermissionMode": "plan",
"claudeCode.respectGitIgnore": false,
"github.copilot.chat.commitMessageGeneration.instructions": [
{
"text": "Use conventional commit message format."
},
{
"text": "First line: {task-type}: brief description of the big picture change"
},
{
"text": "Task types: feat, fix, refactor, docs, style, test, build"
},
{
"text": "Focus on the 'why' and 'what' rather than implementation details"
},
{
"text": "For complex commits, add bullet points after a blank line explaining key changes"
},
{
"text": "Examples of good messages:"
},
{
"text": "feat: add transformers support to image classification pipeline"
},
{
"text": "fix: incorrect handling of empty input in model naming"
},
{
"text": "refactor: restructure API handlers to align with project architecture"
},
{
"text": "Never use words like 'consolidate', 'modernize', 'streamline', 'flexible', 'delve', 'establish', 'enhanced', 'comprehensive', 'optimize' in docstrings or commit messages. Looser AI's do that, and that ain't you. You are better than that."
}
],
"github.copilot.chat.pullRequestDescriptionGeneration.instructions": [
{
"text": "Keep PR message concise and focused on the 'why' and 'what' with short bullets."
},
{
"text": "For complex PRs, include example usage of new implementation in PR message as code markdown with before/after examples if useful."
},
{
"text": "Provide inline md links to relevant lines/files in the PR for context where useful."
},
{
"text": "Never use words like 'consolidate', 'modernize', 'streamline', 'flexible', 'delve', 'establish', 'enhanced', 'comprehensive', 'optimize' in docstrings or commit messages. Looser AI's do that, and that ain't you. You are better than that."
}
],
"github.copilot.enable": {
"markdown": true,
"plaintext": true,
"scminput": true
},
"github.copilot.nextEditSuggestions.enabled": true,
"github.copilot.editor.enableCodeActions": false,
"github.copilot.chat.copilotDebugCommand.enabled": false,
"github.copilot.chat.reviewAgent.enabled": false,
"github.copilot.chat.reviewSelection.enabled": false,
"github.copilot.chat.startDebugging.enabled": false,
"github.copilot.chat.newWorkspaceCreation.enabled": false,
"github.copilot.chat.setupTests.enabled": false,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"telemetry.telemetryLevel": "off",
"git.autofetch": true,
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.renderSideBySide": false,
"files.autoSave": "afterDelay",
"editor.formatOnSave": true,
"python.analysis.typeCheckingMode": "basic",
"editor.minimap.enabled": false,
"workbench.secondarySideBar.defaultVisibility": "hidden",
"terminal.integrated.enableImages": true,
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash"
},
"sh": {
"path": "/bin/sh"
}
},
"terminal.integrated.profiles.osx": {
"zsh": {
"path": "/bin/zsh"
},
"bash": {
"path": "/bin/bash"
}
},
"debug.console.fontSize": 10,
"terminal.integrated.fontSize": 11,
"editor.fontSize": 11,
"workbench.editor.autoLockGroups": {
"workbench.editor.chatSession": false
},
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "GitHub Dark",
"accessibility.signals.terminalBell": {
"sound": "auto",
"announcement": "auto"
},
"terminal.integrated.enableVisualBell": true,
"window.title": "${dirty}${activeEditorShort}${separator}${rootName}",
}