diff --git a/README.md b/README.md index 61d38a1..2738808 100644 --- a/README.md +++ b/README.md @@ -114,7 +114,7 @@ discrawl --version Build from source: ```bash -git clone https://github.com/steipete/discrawl.git +git clone https://github.com/openclaw/discrawl.git cd discrawl go build -o bin/discrawl ./cmd/discrawl ./bin/discrawl --version diff --git a/cmd/discrawl/main.go b/cmd/discrawl/main.go index b083f3a..1f3c534 100644 --- a/cmd/discrawl/main.go +++ b/cmd/discrawl/main.go @@ -7,7 +7,7 @@ import ( "os/signal" "syscall" - "github.com/steipete/discrawl/internal/cli" + "github.com/openclaw/discrawl/internal/cli" ) func main() { diff --git a/cmd/discrawl/main_test.go b/cmd/discrawl/main_test.go index 5892f8e..6d3127d 100644 --- a/cmd/discrawl/main_test.go +++ b/cmd/discrawl/main_test.go @@ -11,8 +11,8 @@ import ( "testing" "time" - "github.com/steipete/discrawl/internal/config" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/config" + "github.com/openclaw/discrawl/internal/store" ) func TestMainHelpAndVersion(t *testing.T) { diff --git a/docs/README.md b/docs/README.md index 0c4b53c..4e022f2 100644 --- a/docs/README.md +++ b/docs/README.md @@ -38,4 +38,4 @@ discrawl tail ## Where to file issues -`https://github.com/steipete/discrawl/issues`. Contact: [steipete@gmail.com](contact.html). +`https://github.com/openclaw/discrawl/issues`. Contact: [steipete@gmail.com](contact.html). diff --git a/docs/RELEASING.md b/docs/RELEASING.md index 2748348..437c923 100644 --- a/docs/RELEASING.md +++ b/docs/RELEASING.md @@ -7,7 +7,7 @@ summary: "Release checklist for discrawl (GitHub release binaries via GoReleaser Always do all steps below. No partial releases. Assumptions: -- Repo: `steipete/discrawl` +- Repo: `openclaw/discrawl` - Binary: `discrawl` - GoReleaser config: `.goreleaser.yaml` - Homebrew tap repo: `~/Projects/homebrew-tap` @@ -82,7 +82,7 @@ After tagging a real release: Useful commands: ```sh -curl -L -o /tmp/discrawl-darwin-arm64.tgz https://github.com/steipete/discrawl/releases/download/vX.Y.Z/discrawl_X.Y.Z_darwin_arm64.tar.gz +curl -L -o /tmp/discrawl-darwin-arm64.tgz https://github.com/openclaw/discrawl/releases/download/vX.Y.Z/discrawl_X.Y.Z_darwin_arm64.tar.gz shasum -a 256 /tmp/discrawl-darwin-arm64.tgz brew uninstall discrawl || true brew install steipete/tap/discrawl @@ -92,7 +92,7 @@ brew info steipete/tap/discrawl ## Notes -- Build-time version stamping comes from `-X github.com/steipete/discrawl/internal/cli.version={{ .Version }}` +- Build-time version stamping comes from `-X github.com/openclaw/discrawl/internal/cli.version={{ .Version }}` - If release workflow needs a rerun: ```sh diff --git a/docs/contact.md b/docs/contact.md index f2bc323..7e2d332 100644 --- a/docs/contact.md +++ b/docs/contact.md @@ -3,5 +3,5 @@ Discord archive search and analysis tooling. - Email: [steipete@gmail.com](mailto:steipete@gmail.com) -- Source: [github.com/steipete/discrawl](https://github.com/steipete/discrawl) -- Issues: [github.com/steipete/discrawl/issues](https://github.com/steipete/discrawl/issues) +- Source: [github.com/openclaw/discrawl](https://github.com/openclaw/discrawl) +- Issues: [github.com/openclaw/discrawl/issues](https://github.com/openclaw/discrawl/issues) diff --git a/docs/install.md b/docs/install.md index 002107d..cf8ca87 100644 --- a/docs/install.md +++ b/docs/install.md @@ -16,7 +16,7 @@ The tap auto-installs from `steipete/tap`. Requires Go `1.26+`. ```bash -git clone https://github.com/steipete/discrawl.git +git clone https://github.com/openclaw/discrawl.git cd discrawl go build -o bin/discrawl ./cmd/discrawl ./bin/discrawl --version diff --git a/go.mod b/go.mod index 38d3a27..fdebb09 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/steipete/discrawl +module github.com/openclaw/discrawl go 1.26.2 diff --git a/internal/cli/admin_commands.go b/internal/cli/admin_commands.go index 3cf04b6..5ccbe9b 100644 --- a/internal/cli/admin_commands.go +++ b/internal/cli/admin_commands.go @@ -13,12 +13,12 @@ import ( "syscall" "time" - "github.com/steipete/discrawl/internal/config" - "github.com/steipete/discrawl/internal/discord" - "github.com/steipete/discrawl/internal/discorddesktop" - "github.com/steipete/discrawl/internal/embed" - "github.com/steipete/discrawl/internal/store" - "github.com/steipete/discrawl/internal/syncer" + "github.com/openclaw/discrawl/internal/config" + "github.com/openclaw/discrawl/internal/discord" + "github.com/openclaw/discrawl/internal/discorddesktop" + "github.com/openclaw/discrawl/internal/embed" + "github.com/openclaw/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/syncer" ) type syncSources struct { diff --git a/internal/cli/analytics.go b/internal/cli/analytics.go index 11824a6..463734a 100644 --- a/internal/cli/analytics.go +++ b/internal/cli/analytics.go @@ -7,7 +7,7 @@ import ( "io" "strings" - "github.com/steipete/discrawl/internal/report" + "github.com/openclaw/discrawl/internal/report" ) func (r *runtime) runAnalytics(args []string) error { diff --git a/internal/cli/analytics_test.go b/internal/cli/analytics_test.go index 524e3a2..6afb878 100644 --- a/internal/cli/analytics_test.go +++ b/internal/cli/analytics_test.go @@ -10,8 +10,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/config" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/config" + "github.com/openclaw/discrawl/internal/store" ) func TestAnalyticsCommand(t *testing.T) { diff --git a/internal/cli/cli.go b/internal/cli/cli.go index 67a3b6f..0556ce6 100644 --- a/internal/cli/cli.go +++ b/internal/cli/cli.go @@ -11,12 +11,12 @@ import ( "time" "github.com/bwmarrin/discordgo" - "github.com/steipete/discrawl/internal/config" - "github.com/steipete/discrawl/internal/discord" - "github.com/steipete/discrawl/internal/embed" - "github.com/steipete/discrawl/internal/share" - "github.com/steipete/discrawl/internal/store" - "github.com/steipete/discrawl/internal/syncer" + "github.com/openclaw/discrawl/internal/config" + "github.com/openclaw/discrawl/internal/discord" + "github.com/openclaw/discrawl/internal/embed" + "github.com/openclaw/discrawl/internal/share" + "github.com/openclaw/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/syncer" ) type cliError struct { diff --git a/internal/cli/cli_test.go b/internal/cli/cli_test.go index d681308..b5f14ff 100644 --- a/internal/cli/cli_test.go +++ b/internal/cli/cli_test.go @@ -18,11 +18,11 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/config" - discordclient "github.com/steipete/discrawl/internal/discord" - "github.com/steipete/discrawl/internal/share" - "github.com/steipete/discrawl/internal/store" - "github.com/steipete/discrawl/internal/syncer" + "github.com/openclaw/discrawl/internal/config" + discordclient "github.com/openclaw/discrawl/internal/discord" + "github.com/openclaw/discrawl/internal/share" + "github.com/openclaw/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/syncer" ) func TestHelpAndVersion(t *testing.T) { diff --git a/internal/cli/digest.go b/internal/cli/digest.go index 81618bf..f9df26f 100644 --- a/internal/cli/digest.go +++ b/internal/cli/digest.go @@ -9,7 +9,7 @@ import ( "strings" "time" - "github.com/steipete/discrawl/internal/report" + "github.com/openclaw/discrawl/internal/report" ) func (r *runtime) runDigest(args []string) error { diff --git a/internal/cli/digest_test.go b/internal/cli/digest_test.go index 5fe53bb..f89d873 100644 --- a/internal/cli/digest_test.go +++ b/internal/cli/digest_test.go @@ -10,8 +10,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/config" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/config" + "github.com/openclaw/discrawl/internal/store" ) func TestParseLookback(t *testing.T) { diff --git a/internal/cli/direct_messages.go b/internal/cli/direct_messages.go index d417e0c..642ee41 100644 --- a/internal/cli/direct_messages.go +++ b/internal/cli/direct_messages.go @@ -8,7 +8,7 @@ import ( "strings" "time" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) const defaultDMLast = 50 diff --git a/internal/cli/helpers.go b/internal/cli/helpers.go index 2cdf8c1..de94866 100644 --- a/internal/cli/helpers.go +++ b/internal/cli/helpers.go @@ -6,7 +6,7 @@ import ( "strings" "time" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func (r *runtime) resolveSyncGuilds(guild, guilds string) []string { diff --git a/internal/cli/mentions.go b/internal/cli/mentions.go index b742e25..070ebf6 100644 --- a/internal/cli/mentions.go +++ b/internal/cli/mentions.go @@ -8,7 +8,7 @@ import ( "strings" "time" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func (r *runtime) runMentions(args []string) error { diff --git a/internal/cli/messages.go b/internal/cli/messages.go index 49b536a..ab3214c 100644 --- a/internal/cli/messages.go +++ b/internal/cli/messages.go @@ -8,7 +8,7 @@ import ( "strings" "time" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) const defaultMessageLimit = 200 diff --git a/internal/cli/output.go b/internal/cli/output.go index 22e07ab..46a3633 100644 --- a/internal/cli/output.go +++ b/internal/cli/output.go @@ -11,10 +11,10 @@ import ( "text/tabwriter" "time" - "github.com/steipete/discrawl/internal/discorddesktop" - "github.com/steipete/discrawl/internal/report" - "github.com/steipete/discrawl/internal/store" - "github.com/steipete/discrawl/internal/syncer" + "github.com/openclaw/discrawl/internal/discorddesktop" + "github.com/openclaw/discrawl/internal/report" + "github.com/openclaw/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/syncer" ) func (r *runtime) print(value any) error { diff --git a/internal/cli/output_test.go b/internal/cli/output_test.go index 8f34869..844754b 100644 --- a/internal/cli/output_test.go +++ b/internal/cli/output_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/store" - "github.com/steipete/discrawl/internal/syncer" + "github.com/openclaw/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/syncer" ) func TestPrintRows(t *testing.T) { diff --git a/internal/cli/query_commands.go b/internal/cli/query_commands.go index f2d6706..1fc698f 100644 --- a/internal/cli/query_commands.go +++ b/internal/cli/query_commands.go @@ -9,9 +9,9 @@ import ( "os" "strings" - "github.com/steipete/discrawl/internal/config" - "github.com/steipete/discrawl/internal/embed" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/config" + "github.com/openclaw/discrawl/internal/embed" + "github.com/openclaw/discrawl/internal/store" ) func (r *runtime) runSearch(args []string) error { diff --git a/internal/cli/query_sync.go b/internal/cli/query_sync.go index 39ecd7b..8e01158 100644 --- a/internal/cli/query_sync.go +++ b/internal/cli/query_sync.go @@ -6,7 +6,7 @@ import ( "slices" "strings" - "github.com/steipete/discrawl/internal/syncer" + "github.com/openclaw/discrawl/internal/syncer" ) func (r *runtime) syncMessagesQuery(channel, guild, guilds string) error { diff --git a/internal/cli/query_sync_test.go b/internal/cli/query_sync_test.go index 2e3d19d..85dd582 100644 --- a/internal/cli/query_sync_test.go +++ b/internal/cli/query_sync_test.go @@ -8,8 +8,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/config" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/config" + "github.com/openclaw/discrawl/internal/store" ) func TestMessageSyncOptionsNumericChannelID(t *testing.T) { diff --git a/internal/cli/report_commands.go b/internal/cli/report_commands.go index 9e395b2..271ce4a 100644 --- a/internal/cli/report_commands.go +++ b/internal/cli/report_commands.go @@ -5,7 +5,7 @@ import ( "flag" "io" - "github.com/steipete/discrawl/internal/report" + "github.com/openclaw/discrawl/internal/report" ) func (r *runtime) runReport(args []string) error { diff --git a/internal/cli/share_commands.go b/internal/cli/share_commands.go index 176c67c..94a7f2b 100644 --- a/internal/cli/share_commands.go +++ b/internal/cli/share_commands.go @@ -6,10 +6,10 @@ import ( "io" "os" - "github.com/steipete/discrawl/internal/config" - "github.com/steipete/discrawl/internal/report" - "github.com/steipete/discrawl/internal/share" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/config" + "github.com/openclaw/discrawl/internal/report" + "github.com/openclaw/discrawl/internal/share" + "github.com/openclaw/discrawl/internal/store" ) func (r *runtime) runPublish(args []string) error { diff --git a/internal/cli/share_update.go b/internal/cli/share_update.go index 078ebb0..7e07bdb 100644 --- a/internal/cli/share_update.go +++ b/internal/cli/share_update.go @@ -6,7 +6,7 @@ import ( "strings" "time" - "github.com/steipete/discrawl/internal/share" + "github.com/openclaw/discrawl/internal/share" ) type shareUpdateMode string diff --git a/internal/cli/sync_lock.go b/internal/cli/sync_lock.go index 16f5ac6..3d81414 100644 --- a/internal/cli/sync_lock.go +++ b/internal/cli/sync_lock.go @@ -8,7 +8,7 @@ import ( "strings" "time" - "github.com/steipete/discrawl/internal/config" + "github.com/openclaw/discrawl/internal/config" ) func (r *runtime) withSyncLock(fn func() error) error { diff --git a/internal/discorddesktop/import.go b/internal/discorddesktop/import.go index 53bc203..6fb1944 100644 --- a/internal/discorddesktop/import.go +++ b/internal/discorddesktop/import.go @@ -20,7 +20,7 @@ import ( "time" "unicode" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) const ( diff --git a/internal/discorddesktop/import_helpers_test.go b/internal/discorddesktop/import_helpers_test.go index 749adb1..ba1632a 100644 --- a/internal/discorddesktop/import_helpers_test.go +++ b/internal/discorddesktop/import_helpers_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func TestFileFingerprintStatusHelpers(t *testing.T) { diff --git a/internal/discorddesktop/import_pipeline_test.go b/internal/discorddesktop/import_pipeline_test.go index 79cd5b1..4f72ce6 100644 --- a/internal/discorddesktop/import_pipeline_test.go +++ b/internal/discorddesktop/import_pipeline_test.go @@ -10,7 +10,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func TestImportFastCacheSkipsUnroutedCacheDataUnlessFullCache(t *testing.T) { diff --git a/internal/discorddesktop/import_run.go b/internal/discorddesktop/import_run.go index cc35727..f85862b 100644 --- a/internal/discorddesktop/import_run.go +++ b/internal/discorddesktop/import_run.go @@ -4,7 +4,7 @@ import ( "context" "os" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) type importRun struct { diff --git a/internal/discorddesktop/import_test.go b/internal/discorddesktop/import_test.go index 2587ba0..782963f 100644 --- a/internal/discorddesktop/import_test.go +++ b/internal/discorddesktop/import_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func TestDesktopPathAndImportHelpers(t *testing.T) { diff --git a/internal/embed/provider.go b/internal/embed/provider.go index e65edb5..4396ae9 100644 --- a/internal/embed/provider.go +++ b/internal/embed/provider.go @@ -11,7 +11,7 @@ import ( "strings" "time" - "github.com/steipete/discrawl/internal/config" + "github.com/openclaw/discrawl/internal/config" ) const ( diff --git a/internal/embed/provider_test.go b/internal/embed/provider_test.go index e3058e3..e700b32 100644 --- a/internal/embed/provider_test.go +++ b/internal/embed/provider_test.go @@ -11,7 +11,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/config" + "github.com/openclaw/discrawl/internal/config" ) func TestOllamaProviderEmbeds(t *testing.T) { diff --git a/internal/report/digest.go b/internal/report/digest.go index 3688b5f..d558d25 100644 --- a/internal/report/digest.go +++ b/internal/report/digest.go @@ -7,7 +7,7 @@ import ( "strings" "time" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) // DigestOptions controls how a Digest is built. diff --git a/internal/report/digest_test.go b/internal/report/digest_test.go index 7f3d1ac..f7d549e 100644 --- a/internal/report/digest_test.go +++ b/internal/report/digest_test.go @@ -8,7 +8,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func TestBuildDigest(t *testing.T) { diff --git a/internal/report/quiet.go b/internal/report/quiet.go index 70fe162..6fb6f90 100644 --- a/internal/report/quiet.go +++ b/internal/report/quiet.go @@ -8,7 +8,7 @@ import ( "strings" "time" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) // QuietOptions controls how a Quiet report is built. diff --git a/internal/report/quiet_test.go b/internal/report/quiet_test.go index 9f6fe2e..c7064f7 100644 --- a/internal/report/quiet_test.go +++ b/internal/report/quiet_test.go @@ -8,7 +8,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func TestBuildQuiet(t *testing.T) { diff --git a/internal/report/report.go b/internal/report/report.go index 94c7104..889a6c2 100644 --- a/internal/report/report.go +++ b/internal/report/report.go @@ -14,7 +14,7 @@ import ( "text/template" "time" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) const ( diff --git a/internal/report/report_test.go b/internal/report/report_test.go index 8ed8a4c..72faeeb 100644 --- a/internal/report/report_test.go +++ b/internal/report/report_test.go @@ -10,7 +10,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func TestBuildRenderAndUpdateReadme(t *testing.T) { diff --git a/internal/report/trends.go b/internal/report/trends.go index e47ac33..8665f0b 100644 --- a/internal/report/trends.go +++ b/internal/report/trends.go @@ -8,7 +8,7 @@ import ( "strings" "time" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) const ( diff --git a/internal/report/trends_test.go b/internal/report/trends_test.go index 737f94d..8f183fc 100644 --- a/internal/report/trends_test.go +++ b/internal/report/trends_test.go @@ -8,7 +8,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func TestBuildTrends(t *testing.T) { diff --git a/internal/share/share.go b/internal/share/share.go index 5f9b2d1..dd2bccc 100644 --- a/internal/share/share.go +++ b/internal/share/share.go @@ -17,7 +17,7 @@ import ( "strings" "time" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) const ( diff --git a/internal/share/share_test.go b/internal/share/share_test.go index 787d6a9..121cce0 100644 --- a/internal/share/share_test.go +++ b/internal/share/share_test.go @@ -16,7 +16,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func TestExportImportRoundTrip(t *testing.T) { diff --git a/internal/store/embeddings.go b/internal/store/embeddings.go index 9133a15..8c487ba 100644 --- a/internal/store/embeddings.go +++ b/internal/store/embeddings.go @@ -9,7 +9,7 @@ import ( "strings" "time" - "github.com/steipete/discrawl/internal/embed" + "github.com/openclaw/discrawl/internal/embed" ) const ( diff --git a/internal/store/store_write_test.go b/internal/store/store_write_test.go index 4f02cab..b39ce07 100644 --- a/internal/store/store_write_test.go +++ b/internal/store/store_write_test.go @@ -12,7 +12,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/embed" + "github.com/openclaw/discrawl/internal/embed" ) func TestUpsertMessagesBatch(t *testing.T) { diff --git a/internal/syncer/channel_catalog.go b/internal/syncer/channel_catalog.go index c62bddc..8433e29 100644 --- a/internal/syncer/channel_catalog.go +++ b/internal/syncer/channel_catalog.go @@ -8,7 +8,7 @@ import ( "time" "github.com/bwmarrin/discordgo" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) type channelCatalogMode int diff --git a/internal/syncer/channel_catalog_test.go b/internal/syncer/channel_catalog_test.go index 3b7d089..d02860a 100644 --- a/internal/syncer/channel_catalog_test.go +++ b/internal/syncer/channel_catalog_test.go @@ -10,7 +10,7 @@ import ( "github.com/bwmarrin/discordgo" "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func errMissingAccess() error { diff --git a/internal/syncer/enrichment.go b/internal/syncer/enrichment.go index ddd064e..efc29cd 100644 --- a/internal/syncer/enrichment.go +++ b/internal/syncer/enrichment.go @@ -13,7 +13,7 @@ import ( "github.com/bwmarrin/discordgo" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) const ( diff --git a/internal/syncer/extracted_test.go b/internal/syncer/extracted_test.go index 1361f1e..f6a1739 100644 --- a/internal/syncer/extracted_test.go +++ b/internal/syncer/extracted_test.go @@ -9,7 +9,7 @@ import ( "github.com/bwmarrin/discordgo" "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func TestBuildMessageMutationsTracksNewest(t *testing.T) { diff --git a/internal/syncer/message_sync.go b/internal/syncer/message_sync.go index 4f61a38..8ac86c8 100644 --- a/internal/syncer/message_sync.go +++ b/internal/syncer/message_sync.go @@ -7,7 +7,7 @@ import ( "time" "github.com/bwmarrin/discordgo" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func (s *Syncer) syncMessageChannels( diff --git a/internal/syncer/message_sync_timeout_test.go b/internal/syncer/message_sync_timeout_test.go index a2b682c..523956f 100644 --- a/internal/syncer/message_sync_timeout_test.go +++ b/internal/syncer/message_sync_timeout_test.go @@ -9,7 +9,7 @@ import ( "github.com/bwmarrin/discordgo" "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func TestSyncDefersSlowChannelAfterChannelTimeout(t *testing.T) { diff --git a/internal/syncer/records.go b/internal/syncer/records.go index 3b12541..a0415f0 100644 --- a/internal/syncer/records.go +++ b/internal/syncer/records.go @@ -8,7 +8,7 @@ import ( "unicode" "github.com/bwmarrin/discordgo" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" "golang.org/x/text/unicode/norm" ) diff --git a/internal/syncer/syncer.go b/internal/syncer/syncer.go index 923bfe7..13d0ba9 100644 --- a/internal/syncer/syncer.go +++ b/internal/syncer/syncer.go @@ -9,8 +9,8 @@ import ( "time" "github.com/bwmarrin/discordgo" - discordclient "github.com/steipete/discrawl/internal/discord" - "github.com/steipete/discrawl/internal/store" + discordclient "github.com/openclaw/discrawl/internal/discord" + "github.com/openclaw/discrawl/internal/store" ) type Client interface { diff --git a/internal/syncer/syncer_history_test.go b/internal/syncer/syncer_history_test.go index 70668e3..7cffc53 100644 --- a/internal/syncer/syncer_history_test.go +++ b/internal/syncer/syncer_history_test.go @@ -10,7 +10,7 @@ import ( "github.com/bwmarrin/discordgo" "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func TestSyncFullBackfillResumesFromCheckpoint(t *testing.T) { diff --git a/internal/syncer/syncer_tail_test.go b/internal/syncer/syncer_tail_test.go index 004ca1d..507a9fd 100644 --- a/internal/syncer/syncer_tail_test.go +++ b/internal/syncer/syncer_tail_test.go @@ -10,7 +10,7 @@ import ( "github.com/bwmarrin/discordgo" "github.com/stretchr/testify/require" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func TestNormalizeMessageIncludesRichFields(t *testing.T) { diff --git a/internal/syncer/syncer_test.go b/internal/syncer/syncer_test.go index 142c5e0..06deb0b 100644 --- a/internal/syncer/syncer_test.go +++ b/internal/syncer/syncer_test.go @@ -11,8 +11,8 @@ import ( "github.com/bwmarrin/discordgo" "github.com/stretchr/testify/require" - discordclient "github.com/steipete/discrawl/internal/discord" - "github.com/steipete/discrawl/internal/store" + discordclient "github.com/openclaw/discrawl/internal/discord" + "github.com/openclaw/discrawl/internal/store" ) type fakeClient struct { diff --git a/internal/syncer/tail.go b/internal/syncer/tail.go index 1fa55f5..eab8811 100644 --- a/internal/syncer/tail.go +++ b/internal/syncer/tail.go @@ -5,7 +5,7 @@ import ( "time" "github.com/bwmarrin/discordgo" - "github.com/steipete/discrawl/internal/store" + "github.com/openclaw/discrawl/internal/store" ) func (s *Syncer) RunTail(ctx context.Context, guildIDs []string, repairEvery time.Duration) error { diff --git a/scripts/build-docs-site.mjs b/scripts/build-docs-site.mjs index bea1956..426e250 100644 --- a/scripts/build-docs-site.mjs +++ b/scripts/build-docs-site.mjs @@ -5,7 +5,7 @@ import path from "node:path"; const root = process.cwd(); const docsDir = path.join(root, "docs"); const outDir = path.join(root, "dist", "docs-site"); -const repoEditBase = "https://github.com/steipete/discrawl/edit/main/docs"; +const repoEditBase = "https://github.com/openclaw/discrawl/edit/main/docs"; const siteUrl = "https://discrawl.sh"; const sections = [ @@ -280,7 +280,7 @@ function layout({ page, html, toc, prev, next, sectionName }) { @@ -309,7 +309,7 @@ function standardHero(page, sectionName, editUrl) {

${escapeHtml(page.title)}

- github + github edit
`; @@ -334,7 +334,7 @@ function landingHero(rootPrefix) {

Discrawl mirrors Discord guilds into local SQLite so you can grep, query, and run analytics on org memory without depending on Discord search. Bring a bot token, or read everything offline from a Git snapshot.

Get started - View on GitHub + View on GitHub