mirror of
https://github.com/github/awesome-copilot.git
synced 2026-02-20 02:15:12 +00:00
Add iterative RALPH-loop (Read, Act, Log, Persist, Halt) pattern implementations for all four supported languages: - C#/.NET: ralph-loop.cs with documentation - Node.js/TypeScript: ralph-loop.ts with documentation - Python: ralph_loop.py with documentation (async API) - Go: ralph-loop.go with documentation Each recipe demonstrates: - Self-referential iteration where AI reviews its own output - Completion promise detection to halt the loop - Max iteration safety limits - File persistence between iterations Verified against real Copilot SDK APIs: - Python: fully verified end-to-end with github-copilot-sdk - Node.js: fully verified end-to-end with @github/copilot-sdk - C#: compiles and runs successfully with GitHub.Copilot.SDK - Go: compiles against github.com/github/copilot-sdk/go v0.1.23
GitHub Copilot Cookbook
A collection of practical recipes and examples for working with GitHub Copilot tools and features. Each recipe provides focused, copy-paste-ready code snippets and real-world examples to help you accomplish common tasks.
What's in the Cookbook
The cookbook is organized by tool or product, with recipes collected by language where applicable:
GitHub Copilot SDK
Ready-to-use recipes for building with the GitHub Copilot SDK across multiple languages.
- Copilot SDK Cookbook - Recipes for .NET, Go, Node.js, and Python
- Error handling, session management, file operations, and more
- Runnable examples for each language
- Best practices and complete implementation guides
Getting Started
- Browse the tool or product folder that matches what you want to build
- Find the recipe that solves your use case
- Copy the code snippet or check the
recipe/subfolder for complete, runnable examples - Refer to the language-specific documentation for setup and execution instructions
Planned Expansions
The cookbook is designed to grow alongside the GitHub Copilot ecosystem. Future additions may include recipes for:
- Additional Copilot tools and integrations
- Advanced patterns and workflows
- Integration with external services and APIs
- Language-specific optimizations and best practices
Contributing
Have a recipe to share? We'd love to include it! See CONTRIBUTING.md for guidelines on submitting new recipes.
Resources
Official Documentation
External Cookbooks
- Microsoft Copilot Adventures - Interactive adventures and tutorials for learning GitHub Copilot
- GitHub Copilot Chat Cookbook - Official cookbook with Copilot Chat examples and techniques