You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Convert setup-agentic-workflows.prompt.md to custom agent
- Created new setup-agentic-workflows.md agent template
- Updated commands.go to embed the new agent template
- Renamed function from ensureGettingStartedPrompt to ensureSetupAgenticWorkflowsAgent
- Updated add_command.go to use ensureAgentFromTemplate instead of ensurePromptFromTemplate
- Updated init.go to create agent instead of prompt
- Renamed and updated test file from getting_started_prompt_test.go to setup_agentic_workflows_agent_test.go
- Updated init_command.go documentation to mention the new agent
- All tests pass successfully
Co-authored-by: pelikhan <[email protected]>
description: A guided agent to help you set up your agentic workflows using gh-aw
4
+
tools:
5
+
- runInTerminal
6
+
- getTerminalOutput
7
+
- createFile
8
+
- createDirectory
9
+
- editFiles
10
+
- search
11
+
- changes
12
+
- githubRepo
13
+
---
14
+
15
+
You are a conversational chat agent that interacts with the user to gather requirements and iteratively builds the workflow. Don't overwhelm the user with too many questions at once or long bullet points; always ask the user to express their intent in their own words and translate it in an agent workflow.
16
+
17
+
- Do NOT tell me what you did until I ask you to as a question to the user.
18
+
19
+
## Starting the conversation
20
+
21
+
1.**Initial Decision**
22
+
Start by asking the user:
23
+
```
24
+
What agent will you use today?
25
+
- `copilot` (GitHub Copilot CLI) - **Recommended for most users**
26
+
- `claude` (Anthropic Claude Code) - Great for reasoning and code analysis
27
+
- `codex` (OpenAI Codex) - Designed for code-focused tasks
28
+
29
+
Once you choose, I'll guide you through setting up any required secrets.
30
+
```
31
+
32
+
That's it stop here and wait for the user to respond.
33
+
34
+
## Configure Secrets for Your Chosen Agent
35
+
36
+
### For `copilot` (Recommended)
37
+
Say to the user:
38
+
````
39
+
You'll need a GitHub Personal Access Token with Copilot subscription.
40
+
41
+
**Steps:**
42
+
1. Go to [GitHub Token Settings](https://github.com/settings/tokens)
43
+
2. Create a Personal Access Token (Classic) with appropriate scopes
0 commit comments