[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-google-cloud-go-project-setup":3,"mdc-345iag-key":34,"related-org-google-cloud-go-project-setup":469,"related-repo-google-cloud-go-project-setup":656},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"go-project-setup","set up idiomatic Go projects","Standardized setup for new Go (Golang) projects and services. Activate to ensure clean, idiomatic project structures (Standard Layout) and implement production-ready patterns (graceful shutdown, package separation) from day one.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"google-cloud","Google Cloud","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fgoogle-cloud.png","GoogleCloudPlatform",[13,17,20],{"name":14,"slug":15,"type":16},"Architecture","architecture","tag",{"name":18,"slug":19,"type":16},"Engineering","engineering",{"name":21,"slug":22,"type":16},"Go","go",329,"https:\u002F\u002Fgithub.com\u002FGoogleCloudPlatform\u002Fdevrel-demos","2026-07-12T07:39:19.123365",null,166,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"This repo is for code that supports talks, blogs, and other activities the Google Cloud Developer Relations team engages in.","https:\u002F\u002Fgithub.com\u002FGoogleCloudPlatform\u002Fdevrel-demos\u002Ftree\u002FHEAD\u002Fagents\u002Fskills\u002Fgo-project-setup","---\nname: go-project-setup\ndescription: >\n  Standardized setup for new Go (Golang) projects and services. Activate to ensure clean, idiomatic project structures (Standard Layout) and implement production-ready patterns (graceful shutdown, package separation) from day one.\n---\n\n# Go Project Setup\n\nThis skill guides the creation of clean, idiomatic Go project structures.\n\n## Core Mandates\n1.  **Standard Layout Only**: Use the official Go project layout (`cmd\u002F`, `internal\u002F`).\n    *   **NEVER** create a `pkg\u002F` directory. (It is an anti-pattern common in Kubernetes but not idiomatic Go).\n2.  **Flat by Default**: Start with a flat structure (all files in root) for simple apps. Only introduce `cmd\u002F` and `internal\u002F` when multiple binaries or private packages are needed.\n3.  **Modern Go**: Ensure `go.mod` specifies the latest stable Go version (currently 1.24+).\n\n## Workflow\n\n### 1. Determine Scope\nAsk the user: \"Is this a simple tool, a library, or a multi-service repo?\"\n\n### 2. Select and Use Template\n**MANDATORY**: You MUST read and use the templates provided in the `assets\u002F` directory. They establish idiomatic patterns like graceful shutdown, `run` functions, and package separation.\n\n*   **Simple CLI \u002F Tool**: `assets\u002Fcli-simple`. Flat structure.\n*   **Cobra CLI**: `assets\u002Fcli-cobra`. For complex CLI tools.\n*   **Library**: `assets\u002Flibrary`. Package in root, `internal\u002F` for hidden logic.\n*   **Application \u002F Service**: `assets\u002Fwebservice`.\n    *   `cmd\u002Fapp-name\u002Fmain.go`: Entry point using the `run` function pattern.\n    *   `internal\u002F`: Private application logic.\n*   **MCP Server**: `assets\u002Fmcp-server`.\n*   **Game**: `assets\u002Fgame`. Using Ebitengine.\n\n### 3. Initialize\n1.  **Create Directory**: `mkdir my-app`\n2.  **Init Module**: `go mod init github.com\u002Fuser\u002Fmy-app`\n3.  **Linting**: (Optional) Initialize `.golangci.yml` if the project requires rigorous style enforcement.\n4.  **Apply Template**: Copy and adapt the files from the chosen template in `assets\u002F`. Ensure module names are updated.\n5.  **Verify**: Run `go mod tidy` and `go build .\u002F...`.\n\n## References\n*   `references\u002Fproject_layout.md`: Official Go Module Layout guide.\n",{"data":35,"body":36},{"name":4,"description":6},{"type":37,"children":38},"root",[39,47,53,60,157,163,170,175,181,207,351,357,449,455],{"type":40,"tag":41,"props":42,"children":43},"element","h1",{"id":4},[44],{"type":45,"value":46},"text","Go Project Setup",{"type":40,"tag":48,"props":49,"children":50},"p",{},[51],{"type":45,"value":52},"This skill guides the creation of clean, idiomatic Go project structures.",{"type":40,"tag":54,"props":55,"children":57},"h2",{"id":56},"core-mandates",[58],{"type":45,"value":59},"Core Mandates",{"type":40,"tag":61,"props":62,"children":63},"ol",{},[64,115,139],{"type":40,"tag":65,"props":66,"children":67},"li",{},[68,74,76,83,85,91,93],{"type":40,"tag":69,"props":70,"children":71},"strong",{},[72],{"type":45,"value":73},"Standard Layout Only",{"type":45,"value":75},": Use the official Go project layout (",{"type":40,"tag":77,"props":78,"children":80},"code",{"className":79},[],[81],{"type":45,"value":82},"cmd\u002F",{"type":45,"value":84},", ",{"type":40,"tag":77,"props":86,"children":88},{"className":87},[],[89],{"type":45,"value":90},"internal\u002F",{"type":45,"value":92},").\n",{"type":40,"tag":94,"props":95,"children":96},"ul",{},[97],{"type":40,"tag":65,"props":98,"children":99},{},[100,105,107,113],{"type":40,"tag":69,"props":101,"children":102},{},[103],{"type":45,"value":104},"NEVER",{"type":45,"value":106}," create a ",{"type":40,"tag":77,"props":108,"children":110},{"className":109},[],[111],{"type":45,"value":112},"pkg\u002F",{"type":45,"value":114}," directory. (It is an anti-pattern common in Kubernetes but not idiomatic Go).",{"type":40,"tag":65,"props":116,"children":117},{},[118,123,125,130,132,137],{"type":40,"tag":69,"props":119,"children":120},{},[121],{"type":45,"value":122},"Flat by Default",{"type":45,"value":124},": Start with a flat structure (all files in root) for simple apps. Only introduce ",{"type":40,"tag":77,"props":126,"children":128},{"className":127},[],[129],{"type":45,"value":82},{"type":45,"value":131}," and ",{"type":40,"tag":77,"props":133,"children":135},{"className":134},[],[136],{"type":45,"value":90},{"type":45,"value":138}," when multiple binaries or private packages are needed.",{"type":40,"tag":65,"props":140,"children":141},{},[142,147,149,155],{"type":40,"tag":69,"props":143,"children":144},{},[145],{"type":45,"value":146},"Modern Go",{"type":45,"value":148},": Ensure ",{"type":40,"tag":77,"props":150,"children":152},{"className":151},[],[153],{"type":45,"value":154},"go.mod",{"type":45,"value":156}," specifies the latest stable Go version (currently 1.24+).",{"type":40,"tag":54,"props":158,"children":160},{"id":159},"workflow",[161],{"type":45,"value":162},"Workflow",{"type":40,"tag":164,"props":165,"children":167},"h3",{"id":166},"_1-determine-scope",[168],{"type":45,"value":169},"1. Determine Scope",{"type":40,"tag":48,"props":171,"children":172},{},[173],{"type":45,"value":174},"Ask the user: \"Is this a simple tool, a library, or a multi-service repo?\"",{"type":40,"tag":164,"props":176,"children":178},{"id":177},"_2-select-and-use-template",[179],{"type":45,"value":180},"2. Select and Use Template",{"type":40,"tag":48,"props":182,"children":183},{},[184,189,191,197,199,205],{"type":40,"tag":69,"props":185,"children":186},{},[187],{"type":45,"value":188},"MANDATORY",{"type":45,"value":190},": You MUST read and use the templates provided in the ",{"type":40,"tag":77,"props":192,"children":194},{"className":193},[],[195],{"type":45,"value":196},"assets\u002F",{"type":45,"value":198}," directory. They establish idiomatic patterns like graceful shutdown, ",{"type":40,"tag":77,"props":200,"children":202},{"className":201},[],[203],{"type":45,"value":204},"run",{"type":45,"value":206}," functions, and package separation.",{"type":40,"tag":94,"props":208,"children":209},{},[210,228,245,269,317,334],{"type":40,"tag":65,"props":211,"children":212},{},[213,218,220,226],{"type":40,"tag":69,"props":214,"children":215},{},[216],{"type":45,"value":217},"Simple CLI \u002F Tool",{"type":45,"value":219},": ",{"type":40,"tag":77,"props":221,"children":223},{"className":222},[],[224],{"type":45,"value":225},"assets\u002Fcli-simple",{"type":45,"value":227},". Flat structure.",{"type":40,"tag":65,"props":229,"children":230},{},[231,236,237,243],{"type":40,"tag":69,"props":232,"children":233},{},[234],{"type":45,"value":235},"Cobra CLI",{"type":45,"value":219},{"type":40,"tag":77,"props":238,"children":240},{"className":239},[],[241],{"type":45,"value":242},"assets\u002Fcli-cobra",{"type":45,"value":244},". For complex CLI tools.",{"type":40,"tag":65,"props":246,"children":247},{},[248,253,254,260,262,267],{"type":40,"tag":69,"props":249,"children":250},{},[251],{"type":45,"value":252},"Library",{"type":45,"value":219},{"type":40,"tag":77,"props":255,"children":257},{"className":256},[],[258],{"type":45,"value":259},"assets\u002Flibrary",{"type":45,"value":261},". Package in root, ",{"type":40,"tag":77,"props":263,"children":265},{"className":264},[],[266],{"type":45,"value":90},{"type":45,"value":268}," for hidden logic.",{"type":40,"tag":65,"props":270,"children":271},{},[272,277,278,284,286],{"type":40,"tag":69,"props":273,"children":274},{},[275],{"type":45,"value":276},"Application \u002F Service",{"type":45,"value":219},{"type":40,"tag":77,"props":279,"children":281},{"className":280},[],[282],{"type":45,"value":283},"assets\u002Fwebservice",{"type":45,"value":285},".\n",{"type":40,"tag":94,"props":287,"children":288},{},[289,307],{"type":40,"tag":65,"props":290,"children":291},{},[292,298,300,305],{"type":40,"tag":77,"props":293,"children":295},{"className":294},[],[296],{"type":45,"value":297},"cmd\u002Fapp-name\u002Fmain.go",{"type":45,"value":299},": Entry point using the ",{"type":40,"tag":77,"props":301,"children":303},{"className":302},[],[304],{"type":45,"value":204},{"type":45,"value":306}," function pattern.",{"type":40,"tag":65,"props":308,"children":309},{},[310,315],{"type":40,"tag":77,"props":311,"children":313},{"className":312},[],[314],{"type":45,"value":90},{"type":45,"value":316},": Private application logic.",{"type":40,"tag":65,"props":318,"children":319},{},[320,325,326,332],{"type":40,"tag":69,"props":321,"children":322},{},[323],{"type":45,"value":324},"MCP Server",{"type":45,"value":219},{"type":40,"tag":77,"props":327,"children":329},{"className":328},[],[330],{"type":45,"value":331},"assets\u002Fmcp-server",{"type":45,"value":333},".",{"type":40,"tag":65,"props":335,"children":336},{},[337,342,343,349],{"type":40,"tag":69,"props":338,"children":339},{},[340],{"type":45,"value":341},"Game",{"type":45,"value":219},{"type":40,"tag":77,"props":344,"children":346},{"className":345},[],[347],{"type":45,"value":348},"assets\u002Fgame",{"type":45,"value":350},". Using Ebitengine.",{"type":40,"tag":164,"props":352,"children":354},{"id":353},"_3-initialize",[355],{"type":45,"value":356},"3. Initialize",{"type":40,"tag":61,"props":358,"children":359},{},[360,375,390,408,425],{"type":40,"tag":65,"props":361,"children":362},{},[363,368,369],{"type":40,"tag":69,"props":364,"children":365},{},[366],{"type":45,"value":367},"Create Directory",{"type":45,"value":219},{"type":40,"tag":77,"props":370,"children":372},{"className":371},[],[373],{"type":45,"value":374},"mkdir my-app",{"type":40,"tag":65,"props":376,"children":377},{},[378,383,384],{"type":40,"tag":69,"props":379,"children":380},{},[381],{"type":45,"value":382},"Init Module",{"type":45,"value":219},{"type":40,"tag":77,"props":385,"children":387},{"className":386},[],[388],{"type":45,"value":389},"go mod init github.com\u002Fuser\u002Fmy-app",{"type":40,"tag":65,"props":391,"children":392},{},[393,398,400,406],{"type":40,"tag":69,"props":394,"children":395},{},[396],{"type":45,"value":397},"Linting",{"type":45,"value":399},": (Optional) Initialize ",{"type":40,"tag":77,"props":401,"children":403},{"className":402},[],[404],{"type":45,"value":405},".golangci.yml",{"type":45,"value":407}," if the project requires rigorous style enforcement.",{"type":40,"tag":65,"props":409,"children":410},{},[411,416,418,423],{"type":40,"tag":69,"props":412,"children":413},{},[414],{"type":45,"value":415},"Apply Template",{"type":45,"value":417},": Copy and adapt the files from the chosen template in ",{"type":40,"tag":77,"props":419,"children":421},{"className":420},[],[422],{"type":45,"value":196},{"type":45,"value":424},". Ensure module names are updated.",{"type":40,"tag":65,"props":426,"children":427},{},[428,433,435,441,442,448],{"type":40,"tag":69,"props":429,"children":430},{},[431],{"type":45,"value":432},"Verify",{"type":45,"value":434},": Run ",{"type":40,"tag":77,"props":436,"children":438},{"className":437},[],[439],{"type":45,"value":440},"go mod tidy",{"type":45,"value":131},{"type":40,"tag":77,"props":443,"children":445},{"className":444},[],[446],{"type":45,"value":447},"go build .\u002F...",{"type":45,"value":333},{"type":40,"tag":54,"props":450,"children":452},{"id":451},"references",[453],{"type":45,"value":454},"References",{"type":40,"tag":94,"props":456,"children":457},{},[458],{"type":40,"tag":65,"props":459,"children":460},{},[461,467],{"type":40,"tag":77,"props":462,"children":464},{"className":463},[],[465],{"type":45,"value":466},"references\u002Fproject_layout.md",{"type":45,"value":468},": Official Go Module Layout guide.",{"items":470,"total":655},[471,489,505,525,539,550,564,581,598,611,627,637],{"slug":472,"name":472,"fn":473,"description":474,"org":475,"tags":476,"stars":486,"repoUrl":487,"updatedAt":488},"kb-search","search and extract local knowledge base documents","Allows listing, searching and extracting information from local knowledge base documents for information about tables\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[477,480,483],{"name":478,"slug":479,"type":16},"Documentation","documentation",{"name":481,"slug":482,"type":16},"Knowledge Base","knowledge-base",{"name":484,"slug":485,"type":16},"Search","search",6749,"https:\u002F\u002Fgithub.com\u002FGoogleCloudPlatform\u002Fknowledge-catalog","2026-07-12T07:38:52.157375",{"slug":490,"name":491,"fn":492,"description":493,"org":494,"tags":495,"stars":486,"repoUrl":487,"updatedAt":504},"knowledgecatalogdiscoveryagent","knowledge_catalog_discovery_agent","search and rank Knowledge Catalog data entries","Analyzes user queries, extracts relevant predicates, and utilizes Knowledge Catalog Search to find and rank the most relevant data entries. Engages with the user throughout the process.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[496,499,500,503],{"name":497,"slug":498,"type":16},"Data Analysis","data-analysis",{"name":9,"slug":8,"type":16},{"name":501,"slug":502,"type":16},"Knowledge Management","knowledge-management",{"name":484,"slug":485,"type":16},"2026-07-12T07:38:22.196851",{"slug":506,"name":506,"fn":507,"description":508,"org":509,"tags":510,"stars":522,"repoUrl":523,"updatedAt":524},"contributing","contribute to Cloud Foundation Fabric","End-to-end workflow for contributing to Cloud Foundation Fabric: triaging GitHub issues, proactive feature development, validating with tests and Policy Troubleshooter, and submitting sanitized Pull Requests. Use when addressing a Fabric GitHub issue, developing a module or FAST stage change, or preparing a branch for a pull request.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[511,514,515,518,519],{"name":512,"slug":513,"type":16},"Automation","automation",{"name":18,"slug":19,"type":16},{"name":516,"slug":517,"type":16},"GitHub","github",{"name":9,"slug":8,"type":16},{"name":520,"slug":521,"type":16},"Pull Requests","pull-requests",2062,"https:\u002F\u002Fgithub.com\u002FGoogleCloudPlatform\u002Fcloud-foundation-fabric","2026-07-31T06:23:36.935005",{"slug":526,"name":526,"fn":527,"description":528,"org":529,"tags":530,"stars":522,"repoUrl":523,"updatedAt":538},"fabric-builder","generate Terraform code for Google Cloud","Generates idiomatic Cloud Foundation Fabric (CFF) Terraform code using CFF modules. Use when users ask to create GCP resources, use Fabric modules, or generate Terraform code for Google Cloud.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[531,532,535],{"name":9,"slug":8,"type":16},{"name":533,"slug":534,"type":16},"Infrastructure as Code","infrastructure-as-code",{"name":536,"slug":537,"type":16},"Terraform","terraform","2026-07-12T07:38:23.514555",{"slug":540,"name":540,"fn":541,"description":542,"org":543,"tags":544,"stars":522,"repoUrl":523,"updatedAt":549},"fast-0-org-setup-prereqs","prepare prerequisites for FAST 0-org-setup","Guides the user step-by-step through the prerequisites for the FAST 0-org-setup stage, supporting both Standard GCP and Google Cloud Dedicated (GCD) environments. Use when a user asks to prepare or run prerequisites for 0-org-setup or bootstrap the FAST landing zone.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[545,546],{"name":9,"slug":8,"type":16},{"name":547,"slug":548,"type":16},"Operations","operations","2026-07-12T07:38:28.127148",{"slug":551,"name":551,"fn":552,"description":553,"org":554,"tags":555,"stars":561,"repoUrl":562,"updatedAt":563},"agent-aware-cli","design agent-aware command-line interfaces","Guide for designing and implementing command-line interfaces (CLIs) that are equally usable by human developers and automated coding agents. Use when the user wants to build a CLI, apply CLI best practices, or use Go with Cobra and Viper.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[556,559,560],{"name":557,"slug":558,"type":16},"CLI","cli",{"name":18,"slug":19,"type":16},{"name":9,"slug":8,"type":16},1150,"https:\u002F\u002Fgithub.com\u002FGoogleCloudPlatform\u002Fvertex-ai-creative-studio","2026-07-12T07:39:08.41406",{"slug":565,"name":565,"fn":566,"description":567,"org":568,"tags":569,"stars":561,"repoUrl":562,"updatedAt":580},"build-mcp-genmedia","build and configure GenAI MCP servers","Builds the mcp-genmedia Go MCP servers (nanobanana, veo, lyria, gemini-multimodal, chirp3-hd, avtool) from source and wires them into settings.json. Use this skill whenever the MCP tools are missing or broken — typically at the start of a new session, after a container restart, or when \u002Ftmp has been wiped. The prebuilt binaries in \u002Fworkspace\u002F.local\u002Fbin\u002F have no exec bit and live on a noexec mount; this skill compiles fresh executables into \u002Ftmp\u002Fbin\u002F where execution is allowed.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[570,573,574,577],{"name":571,"slug":572,"type":16},"API Development","api-development",{"name":9,"slug":8,"type":16},{"name":575,"slug":576,"type":16},"LLM","llm",{"name":578,"slug":579,"type":16},"MCP","mcp","2026-07-12T07:39:10.911302",{"slug":582,"name":582,"fn":583,"description":584,"org":585,"tags":586,"stars":561,"repoUrl":562,"updatedAt":597},"genmedia-audio-engineer","synthesize and mix audio content","Expert in audio synthesis, music generation, and mixing. Use when creating podcasts, background scores, or multi-track audio layering using mcp-chirp3-go, mcp-lyria-go, mcp-gemini-go, mcp-nanobanana-go, and mcp-avtool-go.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[587,590,593,594],{"name":588,"slug":589,"type":16},"Audio","audio",{"name":591,"slug":592,"type":16},"Creative","creative",{"name":9,"slug":8,"type":16},{"name":595,"slug":596,"type":16},"Vertex AI","vertex-ai","2026-07-12T07:39:16.623879",{"slug":599,"name":599,"fn":600,"description":601,"org":602,"tags":603,"stars":561,"repoUrl":562,"updatedAt":610},"genmedia-image-artist","generate and edit AI images","Expert in AI image generation and editing. Use when the user needs high-quality textures, character-consistent visuals, or image-to-image editing using mcp-nanobanana-go.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[604,605,606,609],{"name":591,"slug":592,"type":16},{"name":9,"slug":8,"type":16},{"name":607,"slug":608,"type":16},"Image Generation","image-generation",{"name":595,"slug":596,"type":16},"2026-07-12T07:39:15.372822",{"slug":612,"name":612,"fn":613,"description":614,"org":615,"tags":616,"stars":561,"repoUrl":562,"updatedAt":626},"genmedia-producer","produce multi-step media content","Expert media production assistant. Use when requested to help with storyboarding, podcast creation, audio assembly, or complex multi-step media workflows using the GenMedia MCP servers (Veo, Lyria, Gemini TTS, NanoBanana).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[617,618,619,620,623],{"name":588,"slug":589,"type":16},{"name":591,"slug":592,"type":16},{"name":9,"slug":8,"type":16},{"name":621,"slug":622,"type":16},"Media","media",{"name":624,"slug":625,"type":16},"Video","video","2026-07-12T07:39:09.672849",{"slug":628,"name":628,"fn":629,"description":630,"org":631,"tags":632,"stars":561,"repoUrl":562,"updatedAt":636},"genmedia-video-editor","edit and compose video content","Expert in video composition, editing, and format conversion. Use when the user wants to generate high-quality video, overlay images on video, concatenate clips, create GIFs, or sync audio to video using mcp-avtool-go and mcp-veo-go.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[633,634,635],{"name":591,"slug":592,"type":16},{"name":9,"slug":8,"type":16},{"name":624,"slug":625,"type":16},"2026-07-12T07:39:13.749081",{"slug":638,"name":638,"fn":639,"description":640,"org":641,"tags":642,"stars":561,"repoUrl":562,"updatedAt":654},"genmedia-voice-director","generate expressive text-to-speech with Gemini","Expert in casting, directing, and generating expressive text-to-speech using Gemini TTS. Use this when the user needs virtual voice actor personas, expressive speech generation, or multiple variations of a voiceover (like \"take 3 on the bounce\").",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[643,644,645,648,651],{"name":588,"slug":589,"type":16},{"name":591,"slug":592,"type":16},{"name":646,"slug":647,"type":16},"Gemini","gemini",{"name":649,"slug":650,"type":16},"Speech","speech",{"name":652,"slug":653,"type":16},"Text-to-Speech","text-to-speech","2026-07-12T07:39:17.86673",80,{"items":657,"total":690},[658,664,676],{"slug":4,"name":4,"fn":5,"description":6,"org":659,"tags":660,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[661,662,663],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"slug":665,"name":665,"fn":666,"description":667,"org":668,"tags":669,"stars":23,"repoUrl":24,"updatedAt":675},"latest-software-version","retrieve latest software and model versions","Real-time source of truth for software and model versions. Activate when adding dependencies, installing packages, or identifying Gemini model names. Bypasses internal knowledge cutoffs by querying live registries (NPM, PyPI, Go Proxy) and official documentation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[670,671,672],{"name":646,"slug":647,"type":16},{"name":9,"slug":8,"type":16},{"name":673,"slug":674,"type":16},"Reference","reference","2026-07-12T07:39:21.624989",{"slug":677,"name":677,"fn":678,"description":679,"org":680,"tags":681,"stars":23,"repoUrl":24,"updatedAt":689},"video-description","generate video descriptions from transcripts","Generates optimized descriptions for video platforms from transcripts and supplementary material. Use when the user asks for a video description or provides a transcript for video preparation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[682,685,688],{"name":683,"slug":684,"type":16},"Communications","communications",{"name":686,"slug":687,"type":16},"Content Creation","content-creation",{"name":624,"slug":625,"type":16},"2026-07-12T07:39:20.352155",3]