[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-qwen-youtube-transcript-extractor":3,"mdc--kpp805-key":35,"related-org-qwen-youtube-transcript-extractor":372,"related-repo-qwen-youtube-transcript-extractor":555},{"slug":4,"name":5,"fn":6,"description":7,"org":8,"tags":13,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":30,"sourceUrl":33,"mdContent":34},"youtube-transcript-extractor","YouTube Transcript Extractor","extract YouTube video transcripts","Extracts timestamped transcripts from YouTube videos for translation, summarization, and content creation.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},"qwen","Qwen","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fqwen.png","QwenLM",[14,18,21],{"name":15,"slug":16,"type":17},"Content Creation","content-creation","tag",{"name":19,"slug":20,"type":17},"Summarization","summarization",{"name":22,"slug":23,"type":17},"Transcription","transcription",136,"https:\u002F\u002Fgithub.com\u002FQwenLM\u002Fqwen-code-examples","2026-07-16T06:00:51.814338",null,40,[],{"repoUrl":25,"stars":24,"forks":28,"topics":31,"description":32},[],"A collection of practical examples and best practices for Qwen Code","https:\u002F\u002Fgithub.com\u002FQwenLM\u002Fqwen-code-examples\u002Ftree\u002FHEAD\u002Fskills\u002Fyoutube-transcript-extractor","---\nname: YouTube Transcript Extractor\ndescription: Extracts timestamped transcripts from YouTube videos for translation, summarization, and content creation.\n---\n\n# YouTube Transcript Extractor\n\n## What You Get\n\n- **Terminal Output**: Prints the transcript with `[HH:MM:SS]` timestamps.\n- **Local File**: Writes `youtube_transcript_{video_id}.txt` in the **current working directory**.\n  - Includes the source video URL and the full transcript content.\n\n## Requirements\n\n- Python 3.9+ (Recommended)\n- Network environment that can access YouTube transcript APIs.\n- Python Dependencies:\n  - `youtube-transcript-api`\n\n## Quick Start\n\n### Step 1: (Optional) Create a Virtual Environment\n\n```bash\npython3 -m venv .venv\nsource .venv\u002Fbin\u002Factivate\npython -m pip install -U pip\n```\n\n### Step 2: Install Dependencies\n\n```bash\npython -m pip install youtube-transcript-api\n```\n\n### Step 3: Extract Transcript\n\nRun from the repository root (recommended for the clearest path):\n\n```bash\npython skills\u002Fyoutube-transcript-extractor\u002Fscripts\u002Fget_youtube_transcript.py \"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=IDSAMqip6ms\"\n```\n\n- The transcript will be saved to `youtube_transcript_{video_id}.txt` in the current working directory.\n\n## Step 4: Convert Transcript to Reader-Friendly Markdown\n\nOutput `youtube_transcript_{video_id}.md`. Note: Ensure the content is not altered or truncated.\n",{"data":36,"body":37},{"name":5,"description":7},{"type":38,"children":39},"root",[40,47,54,112,118,148,154,161,248,254,285,291,297,332,347,353,366],{"type":41,"tag":42,"props":43,"children":44},"element","h1",{"id":4},[45],{"type":46,"value":5},"text",{"type":41,"tag":48,"props":49,"children":51},"h2",{"id":50},"what-you-get",[52],{"type":46,"value":53},"What You Get",{"type":41,"tag":55,"props":56,"children":57},"ul",{},[58,79],{"type":41,"tag":59,"props":60,"children":61},"li",{},[62,68,70,77],{"type":41,"tag":63,"props":64,"children":65},"strong",{},[66],{"type":46,"value":67},"Terminal Output",{"type":46,"value":69},": Prints the transcript with ",{"type":41,"tag":71,"props":72,"children":74},"code",{"className":73},[],[75],{"type":46,"value":76},"[HH:MM:SS]",{"type":46,"value":78}," timestamps.",{"type":41,"tag":59,"props":80,"children":81},{},[82,87,89,95,97,102,104],{"type":41,"tag":63,"props":83,"children":84},{},[85],{"type":46,"value":86},"Local File",{"type":46,"value":88},": Writes ",{"type":41,"tag":71,"props":90,"children":92},{"className":91},[],[93],{"type":46,"value":94},"youtube_transcript_{video_id}.txt",{"type":46,"value":96}," in the ",{"type":41,"tag":63,"props":98,"children":99},{},[100],{"type":46,"value":101},"current working directory",{"type":46,"value":103},".\n",{"type":41,"tag":55,"props":105,"children":106},{},[107],{"type":41,"tag":59,"props":108,"children":109},{},[110],{"type":46,"value":111},"Includes the source video URL and the full transcript content.",{"type":41,"tag":48,"props":113,"children":115},{"id":114},"requirements",[116],{"type":46,"value":117},"Requirements",{"type":41,"tag":55,"props":119,"children":120},{},[121,126,131],{"type":41,"tag":59,"props":122,"children":123},{},[124],{"type":46,"value":125},"Python 3.9+ (Recommended)",{"type":41,"tag":59,"props":127,"children":128},{},[129],{"type":46,"value":130},"Network environment that can access YouTube transcript APIs.",{"type":41,"tag":59,"props":132,"children":133},{},[134,136],{"type":46,"value":135},"Python Dependencies:\n",{"type":41,"tag":55,"props":137,"children":138},{},[139],{"type":41,"tag":59,"props":140,"children":141},{},[142],{"type":41,"tag":71,"props":143,"children":145},{"className":144},[],[146],{"type":46,"value":147},"youtube-transcript-api",{"type":41,"tag":48,"props":149,"children":151},{"id":150},"quick-start",[152],{"type":46,"value":153},"Quick Start",{"type":41,"tag":155,"props":156,"children":158},"h3",{"id":157},"step-1-optional-create-a-virtual-environment",[159],{"type":46,"value":160},"Step 1: (Optional) Create a Virtual Environment",{"type":41,"tag":162,"props":163,"children":168},"pre",{"className":164,"code":165,"language":166,"meta":167,"style":167},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","python3 -m venv .venv\nsource .venv\u002Fbin\u002Factivate\npython -m pip install -U pip\n","bash","",[169],{"type":41,"tag":71,"props":170,"children":171},{"__ignoreMap":167},[172,200,215],{"type":41,"tag":173,"props":174,"children":177},"span",{"class":175,"line":176},"line",1,[178,184,190,195],{"type":41,"tag":173,"props":179,"children":181},{"style":180},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[182],{"type":46,"value":183},"python3",{"type":41,"tag":173,"props":185,"children":187},{"style":186},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[188],{"type":46,"value":189}," -m",{"type":41,"tag":173,"props":191,"children":192},{"style":186},[193],{"type":46,"value":194}," venv",{"type":41,"tag":173,"props":196,"children":197},{"style":186},[198],{"type":46,"value":199}," .venv\n",{"type":41,"tag":173,"props":201,"children":203},{"class":175,"line":202},2,[204,210],{"type":41,"tag":173,"props":205,"children":207},{"style":206},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[208],{"type":46,"value":209},"source",{"type":41,"tag":173,"props":211,"children":212},{"style":186},[213],{"type":46,"value":214}," .venv\u002Fbin\u002Factivate\n",{"type":41,"tag":173,"props":216,"children":218},{"class":175,"line":217},3,[219,224,228,233,238,243],{"type":41,"tag":173,"props":220,"children":221},{"style":180},[222],{"type":46,"value":223},"python",{"type":41,"tag":173,"props":225,"children":226},{"style":186},[227],{"type":46,"value":189},{"type":41,"tag":173,"props":229,"children":230},{"style":186},[231],{"type":46,"value":232}," pip",{"type":41,"tag":173,"props":234,"children":235},{"style":186},[236],{"type":46,"value":237}," install",{"type":41,"tag":173,"props":239,"children":240},{"style":186},[241],{"type":46,"value":242}," -U",{"type":41,"tag":173,"props":244,"children":245},{"style":186},[246],{"type":46,"value":247}," pip\n",{"type":41,"tag":155,"props":249,"children":251},{"id":250},"step-2-install-dependencies",[252],{"type":46,"value":253},"Step 2: Install Dependencies",{"type":41,"tag":162,"props":255,"children":257},{"className":164,"code":256,"language":166,"meta":167,"style":167},"python -m pip install youtube-transcript-api\n",[258],{"type":41,"tag":71,"props":259,"children":260},{"__ignoreMap":167},[261],{"type":41,"tag":173,"props":262,"children":263},{"class":175,"line":176},[264,268,272,276,280],{"type":41,"tag":173,"props":265,"children":266},{"style":180},[267],{"type":46,"value":223},{"type":41,"tag":173,"props":269,"children":270},{"style":186},[271],{"type":46,"value":189},{"type":41,"tag":173,"props":273,"children":274},{"style":186},[275],{"type":46,"value":232},{"type":41,"tag":173,"props":277,"children":278},{"style":186},[279],{"type":46,"value":237},{"type":41,"tag":173,"props":281,"children":282},{"style":186},[283],{"type":46,"value":284}," youtube-transcript-api\n",{"type":41,"tag":155,"props":286,"children":288},{"id":287},"step-3-extract-transcript",[289],{"type":46,"value":290},"Step 3: Extract Transcript",{"type":41,"tag":292,"props":293,"children":294},"p",{},[295],{"type":46,"value":296},"Run from the repository root (recommended for the clearest path):",{"type":41,"tag":162,"props":298,"children":300},{"className":164,"code":299,"language":166,"meta":167,"style":167},"python skills\u002Fyoutube-transcript-extractor\u002Fscripts\u002Fget_youtube_transcript.py \"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=IDSAMqip6ms\"\n",[301],{"type":41,"tag":71,"props":302,"children":303},{"__ignoreMap":167},[304],{"type":41,"tag":173,"props":305,"children":306},{"class":175,"line":176},[307,311,316,322,327],{"type":41,"tag":173,"props":308,"children":309},{"style":180},[310],{"type":46,"value":223},{"type":41,"tag":173,"props":312,"children":313},{"style":186},[314],{"type":46,"value":315}," skills\u002Fyoutube-transcript-extractor\u002Fscripts\u002Fget_youtube_transcript.py",{"type":41,"tag":173,"props":317,"children":319},{"style":318},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[320],{"type":46,"value":321}," \"",{"type":41,"tag":173,"props":323,"children":324},{"style":186},[325],{"type":46,"value":326},"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=IDSAMqip6ms",{"type":41,"tag":173,"props":328,"children":329},{"style":318},[330],{"type":46,"value":331},"\"\n",{"type":41,"tag":55,"props":333,"children":334},{},[335],{"type":41,"tag":59,"props":336,"children":337},{},[338,340,345],{"type":46,"value":339},"The transcript will be saved to ",{"type":41,"tag":71,"props":341,"children":343},{"className":342},[],[344],{"type":46,"value":94},{"type":46,"value":346}," in the current working directory.",{"type":41,"tag":48,"props":348,"children":350},{"id":349},"step-4-convert-transcript-to-reader-friendly-markdown",[351],{"type":46,"value":352},"Step 4: Convert Transcript to Reader-Friendly Markdown",{"type":41,"tag":292,"props":354,"children":355},{},[356,358,364],{"type":46,"value":357},"Output ",{"type":41,"tag":71,"props":359,"children":361},{"className":360},[],[362],{"type":46,"value":363},"youtube_transcript_{video_id}.md",{"type":46,"value":365},". Note: Ensure the content is not altered or truncated.",{"type":41,"tag":367,"props":368,"children":369},"style",{},[370],{"type":46,"value":371},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":373,"total":554},[374,389,408,424,440,454,470,484,497,511,523,538],{"slug":375,"name":375,"fn":376,"description":377,"org":378,"tags":379,"stars":386,"repoUrl":387,"updatedAt":388},"batch","execute parallel batch operations on files","Execute batch operations on multiple files in parallel. Automatically discovers files, splits into chunks, and processes with parallel worker agents. Use `\u002Fbatch` followed by operation and file pattern.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[380,383],{"name":381,"slug":382,"type":17},"Automation","automation",{"name":384,"slug":385,"type":17},"Concurrency","concurrency",26008,"https:\u002F\u002Fgithub.com\u002FQwenLM\u002Fqwen-code","2026-07-20T05:58:45.650067",{"slug":390,"name":390,"fn":391,"description":392,"org":393,"tags":394,"stars":386,"repoUrl":387,"updatedAt":407},"cua-driver-rs","drive native GUI applications via MCP","Drive a native GUI app (macOS, Windows, Linux) via the cua-driver CLI (default) or MCP server — snapshot its accessibility tree, click\u002Ftype\u002Fscroll by element_index or pixel coords, verify via re-snapshot, all without bringing the target to the foreground. Use when the user asks you to operate, drive, automate, or perform a GUI task in a real application on the host.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[395,398,401,404],{"name":396,"slug":397,"type":17},"Accessibility","accessibility",{"name":399,"slug":400,"type":17},"Browser Automation","browser-automation",{"name":402,"slug":403,"type":17},"Desktop","desktop",{"name":405,"slug":406,"type":17},"MCP","mcp","2026-07-16T05:59:28.687299",{"slug":409,"name":409,"fn":410,"description":411,"org":412,"tags":413,"stars":386,"repoUrl":387,"updatedAt":423},"dataviz","design and validate data visualizations","Design guidance for charts, graphs, dashboards, maps, and data visualizations, including a local palette validator.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[414,417,420],{"name":415,"slug":416,"type":17},"Charts","charts",{"name":418,"slug":419,"type":17},"Dashboards","dashboards",{"name":421,"slug":422,"type":17},"Data Visualization","data-visualization","2026-07-16T05:59:28.31755",{"slug":425,"name":425,"fn":426,"description":427,"org":428,"tags":429,"stars":386,"repoUrl":387,"updatedAt":439},"extension-creator","create Qwen Code extensions","Create, scaffold, customize, validate, and locally test Qwen Code extensions. Use when the user wants a new Qwen Code extension, needs help choosing an extension template, wants to add QWEN.md context, commands, skills, agents, MCP servers, settings, hooks, channels, or LSP servers, or asks how to link and test an extension locally. Invoke with `\u002Fextension-creator` followed by an extension path and optional template name.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[430,433,436],{"name":431,"slug":432,"type":17},"Coding","coding",{"name":434,"slug":435,"type":17},"Documentation","documentation",{"name":437,"slug":438,"type":17},"Plugin Development","plugin-development","2026-07-16T05:59:24.818967",{"slug":441,"name":441,"fn":442,"description":443,"org":444,"tags":445,"stars":386,"repoUrl":387,"updatedAt":453},"loop","run scheduled or self-paced prompt loops","Create a loop that runs a prompt now and follows up either on a fixed schedule or through self-paced wakeups. Usage - \u002Floop check the build, \u002Floop 5m check the build, \u002Floop check the PR every 30m. \u002Floop list to show jobs, \u002Floop clear to cancel all.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[446,447,450],{"name":381,"slug":382,"type":17},{"name":448,"slug":449,"type":17},"Productivity","productivity",{"name":451,"slug":452,"type":17},"Scheduling","scheduling","2026-07-16T05:59:25.50027",{"slug":455,"name":455,"fn":456,"description":457,"org":458,"tags":459,"stars":386,"repoUrl":387,"updatedAt":469},"new-app","build new applications from scratch","Workflow for creating new applications from scratch. Covers requirements gathering, tech stack selection, scaffolding, implementation, and delivery of a functional prototype.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[460,463,466],{"name":461,"slug":462,"type":17},"Engineering","engineering",{"name":464,"slug":465,"type":17},"Prototyping","prototyping",{"name":467,"slug":468,"type":17},"Web Development","web-development","2026-07-16T05:59:25.157573",{"slug":471,"name":471,"fn":472,"description":473,"org":474,"tags":475,"stars":386,"repoUrl":387,"updatedAt":483},"qc-helper","provide Qwen Code usage and configuration support","Answer any question about Qwen Code usage, features, configuration, and troubleshooting by referencing the official user documentation. Also helps users view or modify their settings.json. Invoke with `\u002Fqc-helper` followed by a question, e.g. `\u002Fqc-helper how do I configure MCP servers?` or `\u002Fqc-helper change approval mode to yolo`.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[476,479,480],{"name":477,"slug":478,"type":17},"Configuration","configuration",{"name":434,"slug":435,"type":17},{"name":481,"slug":482,"type":17},"Reference","reference","2026-07-16T05:59:29.118413",{"slug":485,"name":485,"fn":486,"description":487,"org":488,"tags":489,"stars":386,"repoUrl":387,"updatedAt":496},"review","review code for quality and security","Review changed code for correctness, security, code quality, and performance. Use when the user asks to review code changes, a PR, or specific files. Invoke with `\u002Freview`, `\u002Freview \u003Cpr-number>`, `\u002Freview \u003Cfile-path>`, or `\u002Freview \u003Cpr-number> --comment` to post inline comments on the PR. Add `--effort low|medium|high` to trade depth for speed (defaults to high for PRs, medium for local changes).",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[490,493],{"name":491,"slug":492,"type":17},"Code Review","code-review",{"name":494,"slug":495,"type":17},"Security","security","2026-07-30T05:30:17.682893",{"slug":498,"name":498,"fn":499,"description":500,"org":501,"tags":502,"stars":386,"repoUrl":387,"updatedAt":510},"simplify","clean up and simplify code changes","Review recent code changes for reuse, code quality, and efficiency, then directly apply straightforward cleanup improvements. Use when the user wants a post-implementation cleanup pass, pre-PR polish, or asks to simplify\u002Frefine recent changes. Invoke with `\u002Fsimplify` or `\u002Fsimplify \u003Cfocus>`.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[503,506,507],{"name":504,"slug":505,"type":17},"Code Analysis","code-analysis",{"name":461,"slug":462,"type":17},{"name":508,"slug":509,"type":17},"Performance","performance","2026-07-20T05:58:46.653811",{"slug":512,"name":512,"fn":513,"description":514,"org":515,"tags":516,"stars":386,"repoUrl":387,"updatedAt":522},"stuck","diagnose and debug stuck Qwen Code sessions","Diagnose frozen, stuck, or slow Qwen Code sessions on this machine. Scans for problematic processes, high CPU\u002Fmemory usage, hung subprocesses, and debug logs. Use \u002Fstuck or \u002Fstuck \u003CPID> to focus on a specific process.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[517,520,521],{"name":518,"slug":519,"type":17},"Debugging","debugging",{"name":461,"slug":462,"type":17},{"name":508,"slug":509,"type":17},"2026-07-16T05:59:25.838629",{"slug":524,"name":524,"fn":525,"description":526,"org":527,"tags":528,"stars":535,"repoUrl":536,"updatedAt":537},"open-computer-use","configure Open Computer Use MCP server","Platform-neutral guidance for using Open Computer Use, the open-source Computer Use MCP server and CLI for macOS, Linux, and Windows. Use when an agent needs to install, verify, troubleshoot, configure, or operate Open Computer Use through its native CLI, stdio MCP server, or direct Computer Use tool calls.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[529,530,533,534],{"name":381,"slug":382,"type":17},{"name":531,"slug":532,"type":17},"CLI","cli",{"name":402,"slug":403,"type":17},{"name":405,"slug":406,"type":17},176,"https:\u002F\u002Fgithub.com\u002FQwenLM\u002Fopen-computer-use","2026-07-16T05:59:22.010839",{"slug":539,"name":539,"fn":540,"description":541,"org":542,"tags":543,"stars":24,"repoUrl":25,"updatedAt":553},"auto-pr","automate pull request submission and review","Automated PR submission assistant, including code review, documentation generation, and PR creation",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[544,545,546,547,550],{"name":381,"slug":382,"type":17},{"name":491,"slug":492,"type":17},{"name":434,"slug":435,"type":17},{"name":548,"slug":549,"type":17},"GitHub","github",{"name":551,"slug":552,"type":17},"Pull Requests","pull-requests","2026-07-16T06:00:01.890524",21,{"items":556,"total":662},[557,565,580,599,609,620,647],{"slug":539,"name":539,"fn":540,"description":541,"org":558,"tags":559,"stars":24,"repoUrl":25,"updatedAt":553},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[560,561,562,563,564],{"name":381,"slug":382,"type":17},{"name":491,"slug":492,"type":17},{"name":434,"slug":435,"type":17},{"name":548,"slug":549,"type":17},{"name":551,"slug":552,"type":17},{"slug":566,"name":566,"fn":567,"description":568,"org":569,"tags":570,"stars":24,"repoUrl":25,"updatedAt":579},"browser-use","automate web browser interactions","Control browser pages using the Playwright MCP server. Use when the user asks to open, inspect, navigate, click, type, test, or automate websites, localhost web apps, browser tabs, forms, and web UI.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[571,572,573,576],{"name":399,"slug":400,"type":17},{"name":405,"slug":406,"type":17},{"name":574,"slug":575,"type":17},"Playwright","playwright",{"name":577,"slug":578,"type":17},"Testing","testing","2026-07-16T06:00:52.14183",{"slug":581,"name":581,"fn":582,"description":583,"org":584,"tags":585,"stars":24,"repoUrl":25,"updatedAt":598},"codegraph-qa","analyze codebases using CodeScope","Use CodeScope to analyze any indexed codebase via its graph database (neug) and vector index (zvec). Supports Python, JavaScript\u002FTypeScript, C, and Java (including Hadoop-scale repositories). Covers call graphs, dependency analysis, dead code detection, hotspots, module coupling, architectural layering, commit history, change attribution, semantic code search, impact analysis, full architecture reports, and bug root cause analysis from GitHub issues. Use this skill whenever the user asks about code structure, code dependencies, who calls what, why something changed, finding similar functions, generating architecture reports, understanding module boundaries, analyzing GitHub issues\u002Fbugs, finding bug root causes, understanding why a project has many bugs, tracing bugs to code, indexing Java projects, or any question that benefits from a code knowledge graph — even if they don't mention \"CodeScope\" by name. If a `.codegraph` or similar index directory exists in the workspace, this skill applies.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[586,587,590,593,595],{"name":504,"slug":505,"type":17},{"name":588,"slug":589,"type":17},"Java","java",{"name":591,"slug":592,"type":17},"JavaScript","javascript",{"name":594,"slug":223,"type":17},"Python",{"name":596,"slug":597,"type":17},"TypeScript","typescript","2026-07-16T06:01:30.356708",{"slug":600,"name":600,"fn":601,"description":602,"org":603,"tags":604,"stars":24,"repoUrl":25,"updatedAt":608},"computer-use","control local desktop applications","Control the local desktop using the `computer` MCP tool from computer-use-mcp. Use when the user asks to operate local Mac\u002FWindows apps, inspect the screen, click UI, type text, press shortcuts, scroll, drag, or interact with native GUI software.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[605,606,607],{"name":381,"slug":382,"type":17},{"name":402,"slug":403,"type":17},{"name":405,"slug":406,"type":17},"2026-07-16T05:59:22.346785",{"slug":610,"name":610,"fn":611,"description":612,"org":613,"tags":614,"stars":24,"repoUrl":25,"updatedAt":619},"computer-use-hybrid","control desktop apps with hybrid context","Control native macOS, Windows, and Linux desktop apps through the `open-computer-use` MCP server. Use when the user asks to operate local apps with accessibility-tree context plus screenshots, inspect the screen, click UI, type text, press shortcuts, scroll, drag, or interact with OS-level GUI software.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[615,616,617,618],{"name":396,"slug":397,"type":17},{"name":381,"slug":382,"type":17},{"name":402,"slug":403,"type":17},{"name":405,"slug":406,"type":17},"2026-07-16T06:00:52.479995",{"slug":621,"name":621,"fn":622,"description":623,"org":624,"tags":625,"stars":24,"repoUrl":25,"updatedAt":646},"dashboard-builder","build full-stack dashboard applications","Build full-stack dashboard applications using React\u002FNext.js + shadcn\u002Fui + Tailwind CSS + Recharts + Express with customizable data sources. Use when creating data visualization dashboards, business intelligence interfaces, monitoring systems, KPI displays, analytics platforms, or any project requiring data visualization with modern UI components and dynamic effects.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[626,627,628,631,634,637,640,643],{"name":418,"slug":419,"type":17},{"name":421,"slug":422,"type":17},{"name":629,"slug":630,"type":17},"Express","express",{"name":632,"slug":633,"type":17},"Frontend","frontend",{"name":635,"slug":636,"type":17},"Next.js","next-js",{"name":638,"slug":639,"type":17},"React","react",{"name":641,"slug":642,"type":17},"shadcn\u002Fui","shadcn-ui",{"name":644,"slug":645,"type":17},"Tailwind CSS","tailwind-css","2026-07-16T06:01:27.983011",{"slug":648,"name":648,"fn":649,"description":650,"org":651,"tags":652,"stars":24,"repoUrl":25,"updatedAt":661},"image-generation","generate images from text descriptions","Image generation skill based on Alibaba Cloud DashScope, supporting the creation of high-quality hand-drawn or standard images from user descriptions.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[653,656,659],{"name":654,"slug":655,"type":17},"Creative","creative",{"name":657,"slug":658,"type":17},"Generative Art","generative-art",{"name":660,"slug":648,"type":17},"Image Generation","2026-07-16T06:01:27.641573",10]