···11blank_issues_enabled: true
22contact_links:
33 - name: File issue in barazo-workspace
44- url: https://github.com/barazo-forum/barazo-workspace/issues/new/choose
44+ url: https://github.com/singi-labs/barazo-workspace/issues/new/choose
55 about: We track all issues centrally in barazo-workspace. Please file there for cross-repo features, general feedback, or if unsure where an issue belongs.
+1-1
.github/SECURITY.md
···34343535### Supply Chain
36363737-- **npm package tampering** -- the published `@barazo-forum/lexicons` package containing code or types not present in the source repo
3737+- **npm package tampering** -- the published `@singi-labs/lexicons` package containing code or types not present in the source repo
3838- **Build script injection** -- malicious code in the type generation pipeline that could execute during `npm install` or build
3939- **Dependency confusion** -- packages with similar names that could be installed instead of the legitimate package
4040
···11# Barazo Lexicons -- Schema Definitions
2233<!-- Auto-generated from barazo-workspace. To propose changes, edit the source:
44- https://github.com/barazo-forum/barazo-workspace/tree/main/agents-md -->
44+ https://github.com/singi-labs/barazo-workspace/tree/main/agents-md -->
5566-MIT | Part of [github.com/barazo-forum](https://github.com/barazo-forum)
66+MIT | Part of [github.com/singi-labs](https://github.com/singi-labs)
7788Lexicon schemas for the Barazo forum platform. Defines all `forum.barazo.*` record types and generates TypeScript types consumed by barazo-api and barazo-web.
99···41414242Open-source forum software built on the [AT Protocol](https://atproto.com/). Portable identity, member-owned data, no lock-in.
43434444-- **Organization:** [github.com/barazo-forum](https://github.com/barazo-forum)
4444+- **Organization:** [github.com/singi-labs](https://github.com/singi-labs)
4545- **License:** AGPL-3.0 (backend) / MIT (frontend, lexicons, deploy) / CC BY-SA 4.0 + MIT (docs) / Proprietary (website)
4646-- **Contributing:** See [CONTRIBUTING.md](https://github.com/barazo-forum/.github/blob/main/CONTRIBUTING.md)
4646+- **Contributing:** See [CONTRIBUTING.md](https://github.com/singi-labs/.github/blob/main/CONTRIBUTING.md)
47474848### Coding Standards
4949
+1-1
LICENSE
···11MIT License
2233-Copyright (c) 2026 barazo-forum
33+Copyright (c) 2026 singi-labs
4455Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
+19-19
README.md
···11<div align="center">
2233<picture>
44- <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/barazo-forum/.github/main/assets/logo-dark.svg">
55- <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/barazo-forum/.github/main/assets/logo-light.svg">
66- <img alt="Barazo Logo" src="https://raw.githubusercontent.com/barazo-forum/.github/main/assets/logo-dark.svg" width="120">
44+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/singi-labs/.github/main/assets/logo-dark.svg">
55+ <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/singi-labs/.github/main/assets/logo-light.svg">
66+ <img alt="Barazo Logo" src="https://raw.githubusercontent.com/singi-labs/.github/main/assets/logo-dark.svg" width="120">
77</picture>
8899# Barazo Lexicons
···12121313[]()
1414[](https://opensource.org/licenses/MIT)
1515-[](https://github.com/barazo-forum/barazo-lexicons/actions/workflows/ci.yml)
1515+[](https://github.com/singi-labs/barazo-lexicons/actions/workflows/ci.yml)
1616[](https://nodejs.org/)
1717[](https://www.typescriptlang.org/)
1818···5151 ForumBarazoTopicReply,
5252 ForumBarazoInteractionReaction,
5353 ForumBarazoActorPreferences,
5454-} from '@barazo-forum/lexicons'
5454+} from '@singi-labs/lexicons'
55555656// Record type
5757type Post = ForumBarazoTopicPost.Record
···7373 topicReplySchema,
7474 reactionSchema,
7575 actorPreferencesSchema,
7676-} from '@barazo-forum/lexicons'
7676+} from '@singi-labs/lexicons'
77777878const result = topicPostSchema.safeParse(input)
7979if (result.success) {
···8484**Lexicon ID Constants:**
85858686```typescript
8787-import { LEXICON_IDS, ids } from '@barazo-forum/lexicons'
8787+import { LEXICON_IDS, ids } from '@singi-labs/lexicons'
88888989LEXICON_IDS.TopicPost // "forum.barazo.topic.post"
9090LEXICON_IDS.TopicReply // "forum.barazo.topic.reply"
···9696**Raw Lexicon Schemas:**
97979898```typescript
9999-import { schemas } from '@barazo-forum/lexicons'
9999+import { schemas } from '@singi-labs/lexicons'
100100// Array of LexiconDoc objects for all forum.barazo.* schemas
101101```
102102···109109Configure GitHub Packages access in `.npmrc`:
110110111111```
112112-@barazo-forum:registry=https://npm.pkg.github.com
112112+@singi-labs:registry=https://npm.pkg.github.com
113113```
114114115115Install:
116116117117```bash
118118-pnpm add @barazo-forum/lexicons
118118+pnpm add @singi-labs/lexicons
119119```
120120121121Workspace consumers (`barazo-api`, `barazo-web`) are already linked via pnpm workspace.
···133133pnpm typecheck # Type check
134134```
135135136136-See [CONTRIBUTING.md](https://github.com/barazo-forum/.github/blob/main/CONTRIBUTING.md) for branching strategy, commit format, and code review process.
136136+See [CONTRIBUTING.md](https://github.com/singi-labs/.github/blob/main/CONTRIBUTING.md) for branching strategy, commit format, and code review process.
137137138138---
139139140140## Related Repositories
141141142142-| Repository | Description | License |
143143-| ---------------------------------------------------------------- | --------------------------------------------- | -------- |
144144-| [barazo-api](https://github.com/barazo-forum/barazo-api) | AppView backend (Fastify, firehose, REST API) | AGPL-3.0 |
145145-| [barazo-web](https://github.com/barazo-forum/barazo-web) | Forum frontend (Next.js, Tailwind) | MIT |
146146-| [barazo-deploy](https://github.com/barazo-forum/barazo-deploy) | Docker Compose deployment templates | MIT |
147147-| [barazo-website](https://github.com/barazo-forum/barazo-website) | Marketing + documentation site | MIT |
142142+| Repository | Description | License |
143143+| -------------------------------------------------------------- | --------------------------------------------- | -------- |
144144+| [barazo-api](https://github.com/singi-labs/barazo-api) | AppView backend (Fastify, firehose, REST API) | AGPL-3.0 |
145145+| [barazo-web](https://github.com/singi-labs/barazo-web) | Forum frontend (Next.js, Tailwind) | MIT |
146146+| [barazo-deploy](https://github.com/singi-labs/barazo-deploy) | Docker Compose deployment templates | MIT |
147147+| [barazo-website](https://github.com/singi-labs/barazo-website) | Marketing + documentation site | MIT |
148148149149---
150150···161161## Community
162162163163- **Website:** [barazo.forum](https://barazo.forum)
164164-- **Discussions:** [GitHub Discussions](https://github.com/orgs/barazo-forum/discussions)
165165-- **Issues:** [Report bugs](https://github.com/barazo-forum/barazo-lexicons/issues)
164164+- **Discussions:** [GitHub Discussions](https://github.com/orgs/singi-labs/discussions)
165165+- **Issues:** [Report bugs](https://github.com/singi-labs/barazo-lexicons/issues)
166166167167---
168168