Skip to content
Merged
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
9 changes: 4 additions & 5 deletions scratchpad/architecture.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Architecture Diagram

> Last updated: 2026-04-04 · Source: Issue (see PR for link)
> Last updated: 2026-04-05 · Source: [Issue #aw_arch001](https://github.com/github/gh-aw/issues)

Copilot AI Apr 5, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The link target points to the repo’s Issues list (/issues) rather than a specific issue, but the anchor text implies a concrete issue ("Issue #aw_arch001"). Please link directly to the referenced issue (e.g., /issues/<number>) or adjust the link text to match what it actually points to.

Suggested change
> Last updated: 2026-04-05 · Source: [Issue #aw_arch001](https://github.com/github/gh-aw/issues)
> Last updated: 2026-04-05 · Source: [gh-aw issues list](https://github.com/github/gh-aw/issues)

Copilot uses AI. Check for mistakes.

## Overview

Expand Down Expand Up @@ -35,9 +35,9 @@ This diagram shows the package structure and dependencies of the `gh-aw` codebas
│ ┌──────────┐ ┌──────────────┐ ┌────────────┐ ┌───────────┐ ┌──────────┐ ┌──────────┐ │
│ │pkg/logger│ │pkg/stringutil│ │pkg/fileutil│ │pkg/gitutil│ │pkg/styles│ │ pkg/tty │ │
│ └──────────┘ └──────────────┘ └────────────┘ └───────────┘ └──────────┘ └──────────┘ │
│ ┌───────────┐ ┌─────────────┐ ┌─────────────┐ ┌──────────────┐ ┌────────────┐ ┌────────────┐
│ │pkg/envutil│ │pkg/repoutil │ │pkg/sliceutil│ │pkg/semverutil│ │pkg/timeutil│ │pkg/mathutil│
│ └───────────┘ └─────────────┘ └─────────────┘ └──────────────┘ └────────────┘ └────────────┘
│ ┌───────────┐ ┌─────────────┐ ┌─────────────┐ ┌──────────────┐ ┌────────────┐
│ │pkg/envutil│ │pkg/repoutil │ │pkg/sliceutil│ │pkg/semverutil│ │pkg/timeutil│
│ └───────────┘ └─────────────┘ └─────────────┘ └──────────────┘ └────────────┘
│ ┌──────────────┐ │
│ │ pkg/testutil │ (test support only) │
│ └──────────────┘ │
Expand Down Expand Up @@ -70,5 +70,4 @@ This diagram shows the package structure and dependencies of the `gh-aw` codebas
| pkg/sliceutil | Utility | Generic slice utility functions |
| pkg/semverutil | Utility | Semantic versioning primitives |
| pkg/timeutil | Utility | Time formatting utilities |
| pkg/mathutil | Utility | Basic mathematical utility functions |
| pkg/testutil | Utility | Test support utilities (test-only) |
Loading