Skip to content

Commit e794aad

Browse files
committed
Fix broken references
Signed-off-by: David Gageot <david.gageot@docker.com>
1 parent f87c79d commit e794aad

4 files changed

Lines changed: 22 additions & 23 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ agents:
2828
Be helpful, accurate, and concise in your responses.
2929
```
3030
31-
More examples can be found [here](/examples/)!
31+
More examples can be found [here](/examples/README.md)!
3232
3333
### 🎯 Key Features
3434

docs/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ $ task build-local
7474

7575
## Project Architecture
7676

77-
More info about the architecture behind `cagent` can be found [here](/docs/ARCHITECTURE.md)
77+
More info about the architecture behind `cagent` can be found [here](/docs/architecture.md)
7878

7979
## Opening issues
8080

examples/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ A coordinator agent usually makes them work together and checks that the work is
4545

4646
| Name | Description/Purpose | Filesystem | Shell | Todo | Think | Memory | MCP Servers | Sub-agents |
4747
| ------------------------------------ | --------------------------------------- | ---------- | ----- | ---- | ----- | ------ | ------------------------------------------------------------------------------ | ---------- |
48-
| [agent.yaml](agent.yaml) | Docker Expert Assistant | | | | | | ||
4948
| [blog.yaml](blog.yaml) | Technical blog writing workflow | | | || | [duckduckgo-mcp-server](https://hub.docker.com/mcp/server/duckduckgo/overview) ||
5049
| [dev-team.yaml](dev-team.yaml) | Development team coordinator |||||| ||
5150
| [multi-code.yaml](multi-code.yaml) | Technical lead and project coordination |||||| ||

internal/tui/styles/styles.go

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -32,63 +32,63 @@ var (
3232
var (
3333
// Base application style
3434
AppStyle = lipgloss.NewStyle().
35-
Padding(0, 1, 0, 1)
35+
Padding(0, 1, 0, 1)
3636

3737
// Text styles
3838
HighlightStyle = lipgloss.NewStyle().
39-
Bold(true).
40-
Foreground(highlight)
39+
Bold(true).
40+
Foreground(highlight)
4141

4242
MutedStyle = lipgloss.NewStyle().
43-
Foreground(muted)
43+
Foreground(muted)
4444

4545
SubtleStyle = lipgloss.NewStyle().
46-
Foreground(subtle)
46+
Foreground(subtle)
4747

4848
SecondaryStyle = lipgloss.NewStyle().
49-
Foreground(secondary)
49+
Foreground(secondary)
5050

5151
// Status styles
5252
SuccessStyle = lipgloss.NewStyle().
53-
Foreground(success)
53+
Foreground(success)
5454

5555
ErrorStyle = lipgloss.NewStyle().
56-
Foreground(errorColor)
56+
Foreground(errorColor)
5757

5858
WarningStyle = lipgloss.NewStyle().
59-
Foreground(warning)
59+
Foreground(warning)
6060

6161
ActiveStyle = lipgloss.NewStyle().
62-
Foreground(active)
62+
Foreground(active)
6363

6464
InProgressStyle = lipgloss.NewStyle().
65-
Foreground(inProgress)
65+
Foreground(inProgress)
6666

6767
PendingStyle = lipgloss.NewStyle().
68-
Foreground(pending)
68+
Foreground(pending)
6969

7070
// Layout styles
7171
HeaderStyle = lipgloss.NewStyle().
72-
Bold(true).
73-
Foreground(highlight).
74-
Padding(0, 0, 1, 0)
72+
Bold(true).
73+
Foreground(highlight).
74+
Padding(0, 0, 1, 0)
7575

7676
BaseStyle = lipgloss.NewStyle()
7777

7878
BorderStyle = lipgloss.NewStyle().
79-
Border(lipgloss.RoundedBorder()).
80-
BorderForeground(borderPrimary)
79+
Border(lipgloss.RoundedBorder()).
80+
BorderForeground(borderPrimary)
8181

8282
// Input styles
8383
InputStyle = lipgloss.NewStyle().
84-
Padding(2, 0, 1, 0)
84+
Padding(2, 0, 1, 0)
8585

8686
FocusedStyle = lipgloss.NewStyle().
87-
Padding(2, 0, 1, 0)
87+
Padding(2, 0, 1, 0)
8888

8989
// Layout helpers
9090
CenterStyle = lipgloss.NewStyle().
91-
Align(lipgloss.Center, lipgloss.Center)
91+
Align(lipgloss.Center, lipgloss.Center)
9292

9393
// Deprecated styles (kept for backward compatibility)
9494
StatusStyle = MutedStyle

0 commit comments

Comments
 (0)