https://github.com/block/builder-syndicate
An enterprise knowledge aggregator that unifies links and internal posts so teams and individuals find what matters, stay current, and learn from each other faster.
https://github.com/block/builder-syndicate
Last synced: 5 days ago
JSON representation
An enterprise knowledge aggregator that unifies links and internal posts so teams and individuals find what matters, stay current, and learn from each other faster.
- Host: GitHub
- URL: https://github.com/block/builder-syndicate
- Owner: block
- License: apache-2.0
- Created: 2025-11-17T18:50:30.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2026-05-18T01:38:15.000Z (17 days ago)
- Last Synced: 2026-05-23T05:30:58.352Z (11 days ago)
- Language: Kotlin
- Size: 223 KB
- Stars: 2
- Watchers: 0
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: CODEOWNERS
- Governance: GOVERNANCE.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# Builder Syndicate
**Builder Syndicate** is a knowledge-sharing platform designed for builders of all kinds. It helps
contributors surface what matters, spark meaningful discussion, and learn from each other — with
intelligent tooling that gets out of your way. Built for professionals who value signal over noise,
knowing one builder's noise is another's symphony.
## Getting Started
### Code Formatting
This project uses [kotlin-formatter](https://github.com/block/kotlin-formatter) to maintain consistent code style. Formatting is enforced in CI and via pre-commit hooks.
**Setup (one-time):**
```bash
lefthook install
```
This installs a pre-commit hook that automatically formats your Kotlin code before each commit.
**Manual formatting:**
```bash
# Format all Kotlin files
gradle applyFormatting
# Check formatting (same as CI)
gradle checkFormatting
```
**IDE Plugin (recommended):**
Install the [kotlin-formatter IntelliJ plugin](https://plugins.jetbrains.com/plugin/26482-kotlin-formatter) to format on save.