Part of Connapse — open-source AI knowledge management platform.
This guide walks through the manual GitHub repository configuration needed to complete Phase 2 of the public release preparation.
The following items require manual configuration through the GitHub web interface:
- ✅ Issue Templates - Created as files (automated)
- ✅ PR Template - Created as file (automated)
- ✅ Status Badges - Added to README.md (automated)
⚠️ Repository Settings - Requires manual configuration (see below)
Location: Repository home page → "About" section (gear icon)
Open-source AI-powered knowledge management platform for AI agents. Transform documents into searchable knowledge with hybrid vector + keyword search. Built with .NET 10 Blazor.
Add the following topics to improve discoverability:
dotnet
dotnet10
blazor
ai
artificial-intelligence
knowledge-management
rag
retrieval-augmented-generation
vector-search
pgvector
postgresql
minio
s3
ollama
embeddings
hybrid-search
mcp
model-context-protocol
document-processing
semantic-search
How to add:
- Click the gear icon next to "About" on the repository home page
- Add the description in the "Description" field
- Add topics in the "Topics" field (comma-separated or space-separated)
- Check "Releases" if you want to show releases in the sidebar
- Click "Save changes"
Location: Settings → Features → Discussions
Steps:
- Go to repository Settings
- Scroll to "Features" section
- Check "Discussions"
- Click "Set up discussions"
- GitHub will create a default discussion structure
Categories to create (after enabling):
- 📣 Announcements (format: Announcement)
- 💡 Ideas (format: Discussion)
- 🙏 Q&A (format: Q&A)
- 🎉 Show and Tell (format: Discussion)
- 💬 General (format: Discussion)
Location: Settings → Security → Code security and analysis
Steps:
- Go to repository Settings
- Click "Security" in the left sidebar
- Enable the following:
- ✅ Dependency graph (shows project dependencies)
- ✅ Dependabot alerts (security vulnerability alerts)
- ✅ Dependabot security updates (automated security PRs)
⚠️ Dependabot version updates (optional - creates PRs for dependency updates)- ✅ Secret scanning (detects committed secrets)
- ✅ Private vulnerability reporting (allows secure vulnerability disclosure)
Private Vulnerability Reporting:
- This enables the "Security Advisories" feature
- Users can privately report security issues
- You receive email notifications
Location: Settings → Branches → Add branch protection rule
For main branch:
main
- ✅ Require pull request before merging
- ✅ Require approvals: 1 (if you have collaborators)
- ✅ Dismiss stale pull request approvals when new commits are pushed
- ✅ Require status checks to pass before merging
- ✅ Require branches to be up to date before merging
- Select: "build", "test" (after CI workflow is created)
- ✅ Require conversation resolution before merging
- ❌ Require signed commits (optional, more strict)
- ❌ Require linear history (optional, prevents merge commits)
- ✅ Include administrators (apply rules to admins too)
- ✅ Allow force pushes - OFF (prevent force push to main)
- ✅ Allow deletions - OFF (prevent branch deletion)
Location: Issues → Labels
Add custom labels (in addition to defaults):
| Label | Color | Description |
|---|---|---|
needs-triage |
#d73a4a |
Needs initial review and categorization |
good first issue |
#7057ff |
Good for newcomers |
help wanted |
#008672 |
Extra attention is needed |
priority: critical |
#b60205 |
Critical priority |
priority: high |
#d93f0b |
High priority |
priority: medium |
#fbca04 |
Medium priority |
priority: low |
#0e8a16 |
Low priority |
type: bug |
#d73a4a |
Something isn't working |
type: feature |
#a2eeef |
New feature or request |
type: docs |
#0075ca |
Documentation improvements |
type: refactor |
#d4c5f9 |
Code refactoring |
type: test |
#bfd4f2 |
Testing improvements |
area: web-ui |
#c2e0c6 |
Web UI/Blazor components |
area: api |
#c2e0c6 |
REST API endpoints |
area: cli |
#c2e0c6 |
Command-line interface |
area: mcp |
#c2e0c6 |
MCP server |
area: ingestion |
#c2e0c6 |
Document ingestion pipeline |
area: search |
#c2e0c6 |
Search functionality |
area: database |
#c2e0c6 |
Database/PostgreSQL |
area: storage |
#c2e0c6 |
MinIO/S3 storage |
security |
#ee0701 |
Security-related |
breaking-change |
#b60205 |
Introduces breaking changes |
dependencies |
#0366d6 |
Dependency updates |
Location: Settings → General
- ✅ Wikis - Optional (if you want a wiki)
- ✅ Issues - Required (enabled by default)
- ✅ Sponsorships - Optional (GitHub Sponsors)
- ✅ Projects - Optional (project boards)
- ✅ Discussions - Enabled in step 2
- ✅ Allow merge commits - Optional
- ✅ Allow squash merging - Recommended (cleaner history)
- ✅ Allow rebase merging - Optional
- ✅ Always suggest updating pull request branches
- ✅ Automatically delete head branches (cleanup merged branches)
- ❌ Do not archive this repository (keep it active)
After pushing to GitHub, update the badge URLs in README.md:
The badge URLs in README.md already use the correct repository path (Destrayon/Connapse):
[](https://github.com/Destrayon/Connapse/actions)
[](https://github.com/Destrayon/Connapse/actions)
[](CONTRIBUTING.md)
[](https://github.com/Destrayon/Connapse/issues)
[](https://github.com/Destrayon/Connapse/stargazers)Also update URLs in:
- .github/ISSUE_TEMPLATE/config.yml
- Any CI/CD workflows that reference the repository
Create .github/workflows/ci.yml to enable the build badge:
name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --configuration Release --verbosity normalThis will:
- ✅ Run builds on every push to main/develop
- ✅ Run builds on every pull request
- ✅ Execute all tests
- ✅ Update the build badge status
After completing the manual configuration:
- Repository description is set
- Topics/tags are added (for discoverability)
- GitHub Discussions is enabled
- Security tab is enabled with alerts
- Branch protection rules are configured for
main - Custom issue labels are created
- Pull request settings are configured
- Badge URLs in README.md are updated with correct username
- (Optional) CI/CD workflow is created and running
- Test all issue templates by creating test issues
- Test PR template by creating a test PR
All repository URLs and badge paths use Destrayon/Connapse. If you fork this repository, update these references to match your fork's path.
- Topics: Help users discover your project through GitHub search
- Discussions: Better for Q&A than issues, reduces issue clutter
- Security Tab: Critical for responsible disclosure of vulnerabilities
- Branch Protection: Prevents accidental direct commits to main
- Labels: Helps organize and prioritize issues effectively
- CI/CD: Automated quality checks, builds trust with contributors
Last Updated: 2026-02-08 Part of Public Release Preparation - Phase 2