diff --git a/pkg/actionpins/README.md b/pkg/actionpins/README.md index abe347e8911..d8e07cb9354 100644 --- a/pkg/actionpins/README.md +++ b/pkg/actionpins/README.md @@ -54,10 +54,10 @@ fmt.Println(reference) // actions/checkout@ # v5 ## Dependencies **Internal**: -- `pkg/console` — warning message formatting -- `pkg/gitutil` — dynamic SHA resolution via GitHub API/CLI helpers -- `pkg/logger` — debug logging -- `pkg/semverutil` — semantic version compatibility checks +- `github.com/github/gh-aw/pkg/console` — warning message formatting +- `github.com/github/gh-aw/pkg/gitutil` — dynamic SHA resolution via GitHub API/CLI helpers +- `github.com/github/gh-aw/pkg/logger` — debug logging +- `github.com/github/gh-aw/pkg/semverutil` — semantic version compatibility checks ## Thread Safety diff --git a/pkg/agentdrain/README.md b/pkg/agentdrain/README.md index 222c5beb1b1..a9a78c18f60 100644 --- a/pkg/agentdrain/README.md +++ b/pkg/agentdrain/README.md @@ -247,8 +247,8 @@ if report.IsNewTemplate { ## Dependencies **Internal**: -- `pkg/logger` — debug logging -- `pkg/sliceutil` — slice utilities for cluster management +- `github.com/github/gh-aw/pkg/logger` — debug logging +- `github.com/github/gh-aw/pkg/sliceutil` — slice utilities for cluster management ## Default Weights diff --git a/pkg/cli/README.md b/pkg/cli/README.md index 05a353c1030..f0ef575117c 100644 --- a/pkg/cli/README.md +++ b/pkg/cli/README.md @@ -445,24 +445,24 @@ err := cli.RunHealth(cli.HealthConfig{ ## Dependencies **Internal**: -- `pkg/workflow` — workflow compilation and data types -- `pkg/parser` — markdown frontmatter parsing -- `pkg/console` — terminal output formatting -- `pkg/logger` — structured debug logging -- `pkg/constants` — engine names, job names, feature flags -- `pkg/agentdrain` — Drain log anomaly detection for audit analysis -- `pkg/envutil` — environment variable reading with bounds validation -- `pkg/semverutil` — semantic version comparison for dependency checks -- `pkg/sliceutil` — slice utilities -- `pkg/stats` — incremental statistics for health metrics -- `pkg/styles` — terminal color styles and lipgloss configuration -- `pkg/timeutil` — human-readable duration formatting -- `pkg/tty` — terminal detection -- `pkg/types` — shared MCP server configuration types -- `pkg/fileutil` — file system helpers -- `pkg/gitutil` — Git and GitHub CLI helpers -- `pkg/repoutil` — repository name parsing and normalization -- `pkg/stringutil` — string manipulation and sanitization utilities +- `github.com/github/gh-aw/pkg/workflow` — workflow compilation and data types +- `github.com/github/gh-aw/pkg/parser` — markdown frontmatter parsing +- `github.com/github/gh-aw/pkg/console` — terminal output formatting +- `github.com/github/gh-aw/pkg/logger` — structured debug logging +- `github.com/github/gh-aw/pkg/constants` — engine names, job names, feature flags +- `github.com/github/gh-aw/pkg/agentdrain` — Drain log anomaly detection for audit analysis +- `github.com/github/gh-aw/pkg/envutil` — environment variable reading with bounds validation +- `github.com/github/gh-aw/pkg/semverutil` — semantic version comparison for dependency checks +- `github.com/github/gh-aw/pkg/sliceutil` — slice utilities +- `github.com/github/gh-aw/pkg/stats` — incremental statistics for health metrics +- `github.com/github/gh-aw/pkg/styles` — terminal color styles and lipgloss configuration +- `github.com/github/gh-aw/pkg/timeutil` — human-readable duration formatting +- `github.com/github/gh-aw/pkg/tty` — terminal detection +- `github.com/github/gh-aw/pkg/types` — shared MCP server configuration types +- `github.com/github/gh-aw/pkg/fileutil` — file system helpers +- `github.com/github/gh-aw/pkg/gitutil` — Git and GitHub CLI helpers +- `github.com/github/gh-aw/pkg/repoutil` — repository name parsing and normalization +- `github.com/github/gh-aw/pkg/stringutil` — string manipulation and sanitization utilities **External**: - `github.com/spf13/cobra` — CLI framework diff --git a/pkg/console/README.md b/pkg/console/README.md index 5e16b8c692b..9ccab4b1855 100644 --- a/pkg/console/README.md +++ b/pkg/console/README.md @@ -863,9 +863,9 @@ if err != nil || !confirmed { ## Dependencies **Internal**: -- `pkg/logger` — debug-level console logging -- `pkg/styles` — adaptive color constants and pre-configured lipgloss styles -- `pkg/tty` — terminal detection for spinner and progress bar +- `github.com/github/gh-aw/pkg/logger` — debug-level console logging +- `github.com/github/gh-aw/pkg/styles` — adaptive color constants and pre-configured lipgloss styles +- `github.com/github/gh-aw/pkg/tty` — terminal detection for spinner and progress bar **External**: - `charm.land/lipgloss/v2` — terminal styling and layout diff --git a/pkg/envutil/README.md b/pkg/envutil/README.md index 4f39dda91fb..40b05853f18 100644 --- a/pkg/envutil/README.md +++ b/pkg/envutil/README.md @@ -46,8 +46,8 @@ timeout := envutil.GetIntFromEnv("GH_AW_TIMEOUT", 60, 1, 3600, nil) ## Dependencies **Internal**: -- `pkg/console` — warning message formatting -- `pkg/logger` — debug logging +- `github.com/github/gh-aw/pkg/console` — warning message formatting +- `github.com/github/gh-aw/pkg/logger` — debug logging ## Design Notes diff --git a/pkg/fileutil/README.md b/pkg/fileutil/README.md index 9969dac2a5c..faa9e3d0316 100644 --- a/pkg/fileutil/README.md +++ b/pkg/fileutil/README.md @@ -45,7 +45,7 @@ if err := fileutil.CopyFile("source.txt", "destination.txt"); err != nil { ## Dependencies **Internal**: -- `pkg/logger` — debug logging +- `github.com/github/gh-aw/pkg/logger` — debug logging ## Design Notes diff --git a/pkg/gitutil/README.md b/pkg/gitutil/README.md index da92e2db9de..b04425d223b 100644 --- a/pkg/gitutil/README.md +++ b/pkg/gitutil/README.md @@ -53,7 +53,7 @@ content, err := gitutil.ReadFileFromHEADWithRoot("go.mod", root) ## Dependencies **Internal**: -- `pkg/logger` — debug logging +- `github.com/github/gh-aw/pkg/logger` — debug logging ## Design Notes diff --git a/pkg/logger/README.md b/pkg/logger/README.md index a85fc18eb75..f7d79ff4533 100644 --- a/pkg/logger/README.md +++ b/pkg/logger/README.md @@ -222,8 +222,8 @@ slogLogger.Warn("something unusual happened", "count", 42) ## Dependencies **Internal**: -- `pkg/timeutil` — time-diff formatting for log output -- `pkg/tty` — terminal detection for color support +- `github.com/github/gh-aw/pkg/timeutil` — time-diff formatting for log output +- `github.com/github/gh-aw/pkg/tty` — terminal detection for color support ## Implementation Notes diff --git a/pkg/parser/README.md b/pkg/parser/README.md index 598c954061c..6e491c789d7 100644 --- a/pkg/parser/README.md +++ b/pkg/parser/README.md @@ -252,16 +252,16 @@ Import caching is crucial for performance and cycle detection. The `ImportCache` ## Dependencies **Internal**: -- `pkg/console` — parser-facing warning/error message formatting -- `pkg/constants` — shared parser constants and default values -- `pkg/fileutil` — file existence and path helper utilities -- `pkg/gitutil` — Git remote and host detection helpers -- `pkg/jsonutil` — compact JSON marshaling for frontmatter hash computation -- `pkg/types` — `BaseMCPServerConfig` -- `pkg/typeutil` — safe type conversion helpers for dynamic frontmatter -- `pkg/logger` — debug logging -- `pkg/sliceutil` — slice helper utilities for validation and merging -- `pkg/stringutil` — string normalization and ANSI/format helpers +- `github.com/github/gh-aw/pkg/console` — parser-facing warning/error message formatting +- `github.com/github/gh-aw/pkg/constants` — shared parser constants and default values +- `github.com/github/gh-aw/pkg/fileutil` — file existence and path helper utilities +- `github.com/github/gh-aw/pkg/gitutil` — Git remote and host detection helpers +- `github.com/github/gh-aw/pkg/jsonutil` — compact JSON marshaling for frontmatter hash computation +- `github.com/github/gh-aw/pkg/types` — `BaseMCPServerConfig` +- `github.com/github/gh-aw/pkg/typeutil` — safe type conversion helpers for dynamic frontmatter +- `github.com/github/gh-aw/pkg/logger` — debug logging +- `github.com/github/gh-aw/pkg/sliceutil` — slice helper utilities for validation and merging +- `github.com/github/gh-aw/pkg/stringutil` — string normalization and ANSI/format helpers **External**: - `github.com/santhosh-tekuri/jsonschema/v6` — JSON schema validation diff --git a/pkg/repoutil/README.md b/pkg/repoutil/README.md index b13a742ebb7..1e14d142051 100644 --- a/pkg/repoutil/README.md +++ b/pkg/repoutil/README.md @@ -29,7 +29,7 @@ if err != nil { ## Dependencies **Internal**: -- `pkg/logger` — debug logging +- `github.com/github/gh-aw/pkg/logger` — debug logging ## Design Notes diff --git a/pkg/semverutil/README.md b/pkg/semverutil/README.md index 1d7d05c064c..d66ab3ca822 100644 --- a/pkg/semverutil/README.md +++ b/pkg/semverutil/README.md @@ -123,7 +123,7 @@ semverutil.IsCompatible("v6.0.0", "v5") // false ## Dependencies **Internal**: -- `pkg/logger` — debug logging +- `github.com/github/gh-aw/pkg/logger` — debug logging **External**: - `golang.org/x/mod/semver` — canonical semver parsing and comparison diff --git a/pkg/stringutil/README.md b/pkg/stringutil/README.md index 675688df0ea..fa3b56570b4 100644 --- a/pkg/stringutil/README.md +++ b/pkg/stringutil/README.md @@ -216,7 +216,7 @@ if err := stringutil.ValidateCopilotPAT(token); err != nil { ## Dependencies **Internal**: -- `pkg/logger` — debug logging +- `github.com/github/gh-aw/pkg/logger` — debug logging ## Design Notes diff --git a/pkg/typeutil/README.md b/pkg/typeutil/README.md index 5743ce87724..2de339876bf 100644 --- a/pkg/typeutil/README.md +++ b/pkg/typeutil/README.md @@ -94,7 +94,7 @@ n := typeutil.SafeUint64ToInt(uint64Value) ## Dependencies **Internal**: -- `pkg/logger` — debug logging +- `github.com/github/gh-aw/pkg/logger` — debug logging ## Design Notes diff --git a/pkg/workflow/README.md b/pkg/workflow/README.md index 94c8e74a8c8..38291e17536 100644 --- a/pkg/workflow/README.md +++ b/pkg/workflow/README.md @@ -507,17 +507,17 @@ pkg/workflow ── FrontmatterConfig (typed structs) ## Dependencies **Internal**: -- `pkg/parser` — frontmatter extraction and import processing -- `pkg/constants` — engine names, feature flags, job/step IDs -- `pkg/console` — terminal formatting -- `pkg/logger` — debug logging -- `pkg/actionpins` — action pin data and pin lookup helpers -- `pkg/jsonutil` — compact JSON marshaling for AWF configuration serialization -- `pkg/semverutil` — semantic version helpers -- `pkg/typeutil` — safe type conversions -- `pkg/tty` — terminal capability detection -- `pkg/stringutil`, `pkg/fileutil`, `pkg/gitutil`, `pkg/sliceutil` — utilities -- `pkg/types` — shared MCP types +- `github.com/github/gh-aw/pkg/parser` — frontmatter extraction and import processing +- `github.com/github/gh-aw/pkg/constants` — engine names, feature flags, job/step IDs +- `github.com/github/gh-aw/pkg/console` — terminal formatting +- `github.com/github/gh-aw/pkg/logger` — debug logging +- `github.com/github/gh-aw/pkg/actionpins` — action pin data and pin lookup helpers +- `github.com/github/gh-aw/pkg/jsonutil` — compact JSON marshaling for AWF configuration serialization +- `github.com/github/gh-aw/pkg/semverutil` — semantic version helpers +- `github.com/github/gh-aw/pkg/typeutil` — safe type conversions +- `github.com/github/gh-aw/pkg/tty` — terminal capability detection +- `github.com/github/gh-aw/pkg/stringutil`, `github.com/github/gh-aw/pkg/fileutil`, `github.com/github/gh-aw/pkg/gitutil`, `github.com/github/gh-aw/pkg/sliceutil` — utilities +- `github.com/github/gh-aw/pkg/types` — shared MCP types **External**: - `github.com/goccy/go-yaml` — YAML 1.1/1.2 compatible marshaling