mirror of
https://github.com/github/awesome-copilot.git
synced 2026-02-20 02:15:12 +00:00
All 5 Go recipes and their markdown docs used incorrect API patterns that don't match the real github.com/github/copilot-sdk/go v0.1.23: - copilot.NewClient() -> copilot.NewClient(nil) (*ClientOptions param) - client.Start() -> client.Start(ctx) (context.Context required) - copilot.SessionConfig -> &copilot.SessionConfig (pointer required) - session.On(func(event copilot.Event)) -> session.On(func(event copilot.SessionEvent)) - Type assertions -> event.Type string check + *event.Data.Content deref - session.WaitForIdle() -> session.SendAndWait(ctx, ...) (WaitForIdle doesn't exist) - copilot.SystemMessage -> copilot.SystemMessageConfig All 5 recipes verified to compile against SDK v0.1.23.
71 lines
1.5 KiB
Go
71 lines
1.5 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
copilot "github.com/github/copilot-sdk/go"
|
|
)
|
|
|
|
func main() {
|
|
ctx := context.Background()
|
|
|
|
// Create and start client
|
|
client := copilot.NewClient(nil)
|
|
if err := client.Start(ctx); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
defer client.Stop()
|
|
|
|
// Create session
|
|
session, err := client.CreateSession(ctx, &copilot.SessionConfig{
|
|
Model: "gpt-5",
|
|
})
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
defer session.Destroy()
|
|
|
|
// Event handler
|
|
session.On(func(event copilot.SessionEvent) {
|
|
switch event.Type {
|
|
case "assistant.message":
|
|
if event.Data.Content != nil {
|
|
fmt.Printf("\nCopilot: %s\n", *event.Data.Content)
|
|
}
|
|
case "tool.execution_start":
|
|
if event.Data.ToolName != nil {
|
|
fmt.Printf(" → Running: %s\n", *event.Data.ToolName)
|
|
}
|
|
case "tool.execution_complete":
|
|
if event.Data.ToolName != nil {
|
|
fmt.Printf(" ✓ Completed: %s\n", *event.Data.ToolName)
|
|
}
|
|
}
|
|
})
|
|
|
|
// Ask Copilot to organize files
|
|
// Change this to your target folder
|
|
homeDir, _ := os.UserHomeDir()
|
|
targetFolder := filepath.Join(homeDir, "Downloads")
|
|
|
|
prompt := fmt.Sprintf(`
|
|
Analyze the files in "%s" and organize them into subfolders.
|
|
|
|
1. First, list all files and their metadata
|
|
2. Preview grouping by file extension
|
|
3. Create appropriate subfolders (e.g., "images", "documents", "videos")
|
|
4. Move each file to its appropriate subfolder
|
|
|
|
Please confirm before moving any files.
|
|
`, targetFolder)
|
|
|
|
_, err = session.SendAndWait(ctx, copilot.MessageOptions{Prompt: prompt})
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|