一键导入
find-examples
Find and inspect GitHub code examples for specific dependencies and languages. Use this to see how a library or framework is used in projects.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Find and inspect GitHub code examples for specific dependencies and languages. Use this to see how a library or framework is used in projects.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | find-examples |
| description | Find and inspect GitHub code examples for specific dependencies and languages. Use this to see how a library or framework is used in projects. |
Find GitHub code examples for dependencies.
Run the github_search.py script. If the target language lacks examples, include related languages supported by the SDK.
python3 scripts/github_search.py <dependency> --lang <lang1,lang2> --limit 5
Example (Genkit Go/JS):
python3 find-examples/scripts/github_search.py "genkit" --lang "go,typescript"
Review the results. The script tags each repository with its language. Prefer the target language when high-quality results exist. If the target language has few results, select a repository from a related language instead. For example, a TypeScript Genkit example can guide a Go implementation.
mkdir -p _examples
Clone the selected repositories into the _examples folder.
cd _examples && git clone <repo_url>
After cloning, search for implementation details with list_files, smart_read, or grep_search.
When translating an example from another language:
DefineFlow in JS usually maps to DefineFlow in Go).grep_search inside cloned repositories of large frameworks.A comprehensive developer guide containing the entire a2ui.org documentation suite. Contains full specs for A2UI v0.9.1, JSON schemas, Agent (Python/ADK) & Renderer (React/Angular/Flutter) SDK guides, concept definitions, quickstarts, and open-source examples. Use this for ANY question or coding task related to Agent-Driven User Interfaces.
Analyze Tenkai agent experiments to find success factors, failure modes, and run patterns.
Go development practices and style guidelines covering concurrency safety, package layout (avoiding pkg/), and PR review checklists.
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.
Official style guide and compliance rules for the Google Developers Blog. Activate to draft, edit, and validate technical articles to ensure they meet legal standards, the correct professional tone, and readability targets (Gunning Fog Index).
Definitive guide for authoring high-quality Google Codelabs. Activate to enforce the .lab.md format specifications, metadata requirements (duration, authors), and provide validation tools for structural correctness.