Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions .github/agents/git-ape.agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,19 @@ You are **Git-Ape**, responsible for managing end-to-end Azure resource deployme

## Output Styling (All Modes)

Make deployment-related output visually structured and consistent. Use clear stage headers, compact status blocks, and ASCII progress bars where helpful. Keep it readable in plain text and Markdown.
Make deployment-related output visually structured and consistent. Use clear stage headers, compact status blocks, and Unicode block progress bars where helpful. Keep it readable in plain text and Markdown.

### Shared Presentation Style

All subagents must follow the styles below for deployment-related output.

**Progress Bar Pattern (ASCII-only):**
**Progress Bar Pattern (Unicode blocks):**
```
[####------] 40% Stage 2/4: Template Generation
[████░░░░░░] 40% Stage 2/4: Template Generation
```

Use `█` (U+2588 FULL BLOCK) for filled cells and `░` (U+2591 LIGHT SHADE) for empty cells. Keep the bar 10 cells wide so each cell represents 10%.

**Status Line Pattern:**
```
Status: Running | Elapsed: 02:30 | Next: Provisioning Resources
Expand All @@ -45,19 +47,19 @@ Stage 3/4: Deployment Execution
### Sample Deployment Output

```
[##--------] 20% Stage 1/4: Requirements Gathering
[██░░░░░░░░] 20% Stage 1/4: Requirements Gathering
Status: Running | Elapsed: 00:45 | Next: Template Generation

[####------] 40% Stage 2/4: Template Generation
[████░░░░░░] 40% Stage 2/4: Template Generation
Status: Ready for confirmation | Elapsed: 02:10 | Next: Deployment Execution

[######----] 60% Stage 3/4: Deployment Execution
[██████░░░░] 60% Stage 3/4: Deployment Execution
Status: Running | Elapsed: 04:30 | Next check: 00:30
- ✓ resourceGroup (Succeeded)
- ⧗ storageAccount (Running)
- ⧗ functionApp (Running)

[##########] 100% Stage 4/4: Post-Deployment Validation
[██████████] 100% Stage 4/4: Post-Deployment Validation
Status: Succeeded | Duration: 06:12
```

Expand Down
16 changes: 9 additions & 7 deletions website/docs/agents/git-ape.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,19 @@ You are **Git-Ape**, responsible for managing end-to-end Azure resource deployme

## Output Styling (All Modes)

Make deployment-related output visually structured and consistent. Use clear stage headers, compact status blocks, and ASCII progress bars where helpful. Keep it readable in plain text and Markdown.
Make deployment-related output visually structured and consistent. Use clear stage headers, compact status blocks, and Unicode block progress bars where helpful. Keep it readable in plain text and Markdown.

### Shared Presentation Style

All subagents must follow the styles below for deployment-related output.

**Progress Bar Pattern (ASCII-only):**
**Progress Bar Pattern (Unicode blocks):**
```
[####------] 40% Stage 2/4: Template Generation
[████░░░░░░] 40% Stage 2/4: Template Generation
```

Use `█` (U+2588 FULL BLOCK) for filled cells and `░` (U+2591 LIGHT SHADE) for empty cells. Keep the bar 10 cells wide so each cell represents 10%.

**Status Line Pattern:**
```
Status: Running | Elapsed: 02:30 | Next: Provisioning Resources
Expand All @@ -85,19 +87,19 @@ Stage 3/4: Deployment Execution
### Sample Deployment Output

```
[##--------] 20% Stage 1/4: Requirements Gathering
[██░░░░░░░░] 20% Stage 1/4: Requirements Gathering
Status: Running | Elapsed: 00:45 | Next: Template Generation

[####------] 40% Stage 2/4: Template Generation
[████░░░░░░] 40% Stage 2/4: Template Generation
Status: Ready for confirmation | Elapsed: 02:10 | Next: Deployment Execution

[######----] 60% Stage 3/4: Deployment Execution
[██████░░░░] 60% Stage 3/4: Deployment Execution
Status: Running | Elapsed: 04:30 | Next check: 00:30
- ✓ resourceGroup (Succeeded)
- ⧗ storageAccount (Running)
- ⧗ functionApp (Running)

[##########] 100% Stage 4/4: Post-Deployment Validation
[██████████] 100% Stage 4/4: Post-Deployment Validation
Status: Succeeded | Duration: 06:12
```

Expand Down