A community based topic aggregation platform built on atproto

test: update test data generation scripts for new namespace

Update all test comment generation scripts to use
social.coves.community.comment namespace in URI construction.

Scripts updated:
- generate_deep_thread.go: Creates nested comment threads
- generate_nba_comments.go: Generates NBA discussion comments
- generate_test_comments.go: Creates general test comments

All scripts now generate comment URIs with the correct namespace
pattern: at://did/social.coves.community.comment/rkey

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

+1 -1
scripts/generate_deep_thread.go
···
func createComment(db *sql.DB, user *User, content, parentURI, parentCID string, createdAt time.Time) (*Comment, error) {
rkey := generateTID()
-
uri := fmt.Sprintf("at://%s/social.coves.feed.comment/%s", user.DID, rkey)
+
uri := fmt.Sprintf("at://%s/social.coves.community.comment/%s", user.DID, rkey)
cid := fmt.Sprintf("bafy%s", rkey)
comment := &Comment{
+1 -1
scripts/generate_nba_comments.go
···
func createComment(db *sql.DB, user *User, content, parentURI, parentCID string, createdAt time.Time) (*Comment, error) {
rkey := generateTID()
-
uri := fmt.Sprintf("at://%s/social.coves.feed.comment/%s", user.DID, rkey)
+
uri := fmt.Sprintf("at://%s/social.coves.community.comment/%s", user.DID, rkey)
cid := fmt.Sprintf("bafy%s", rkey)
comment := &Comment{
+1 -1
scripts/generate_test_comments.go
···
func createComment(db *sql.DB, user *User, content, parentURI, parentCID string, createdAt time.Time) (*Comment, error) {
rkey := generateTID()
-
uri := fmt.Sprintf("at://%s/social.coves.feed.comment/%s", user.DID, rkey)
+
uri := fmt.Sprintf("at://%s/social.coves.community.comment/%s", user.DID, rkey)
cid := fmt.Sprintf("bafy%s", rkey)
comment := &Comment{