Version: 1.0
Date: March 23, 2025
Status: Active
This document provides guidance on implementing the Semantic Seed Venture Studio Coding Standards (SSCS) for the OpenCap Data Infrastructure project. Following these standards ensures consistent tracking across the codebase, proper workflow in Shortcut, and alignment with the project's branching strategy.
All backlog items now have IDs following this pattern:
- OCDI-XXX - OpenCap Data Infrastructure items
- OCAE-XXX - OpenCap API Enhancement items
Stories are classified into three types:
- [Feature] - New functionality being added to the platform
- [Bug] - Issues that need to be fixed
- [Chore] - Maintenance tasks and technical debt
We use the Fibonacci scale for estimating work:
- 0 points - Quick fixes (typos, minor UI tweaks)
- 1 point - Straightforward tasks where the solution is clear
- 2 points - Slightly more complex but well-defined tasks
- 3, 5, 8 points - Larger tasks (anything larger should be broken down)
- In Shortcut, move the top unstarted story to "In Progress"
- Note the ID (e.g., OCDI-001) and type (Feature, Bug, Chore)
Create a branch following the naming convention:
git checkout -b feature/OCDI-001 # For features
git checkout -b bug/OCDI-002 # For bugs
git checkout -b chore/OCDI-003 # For chores
Follow Test-Driven Development principles:
- First commit - Create failing tests:
git commit -m "WIP: OCDI-001: Red tests for Neo4j connector"
- Second commit - Make tests pass:
git commit -m "WIP: OCDI-001: Green tests for Neo4j connector"
- Final commit - Refactor and finalize:
git commit -m "OCDI-001: Implement Neo4j connector with tests"
Even for incomplete work, commit daily with a "WIP:" prefix:
git commit -m "WIP: OCDI-001: Progress on Neo4j connection error handling"
When the story is complete:
- Push your branch to GitHub:
git push origin feature/OCDI-001
-
Create a Pull Request with:
- Title: "OCDI-001: Implement Neo4j connector"
- Description: Include story details and acceptance criteria
-
Mark the story "Finished" in Shortcut
- Address any review comments
- Upon approval, merge to main branch
- Mark the story "Delivered" in Shortcut
Here's a full example of implementing story OCDI-001:
# Day 1
git checkout -b feature/OCDI-001
# Write failing tests
git commit -m "WIP: OCDI-001: Red tests for Neo4j connector"
git push origin feature/OCDI-001
# Day 2
# Make tests pass
git commit -m "WIP: OCDI-001: Green tests for Neo4j connector"
git push origin feature/OCDI-001
# Day 3
# Refactor and finalize
git commit -m "OCDI-001: Implement Neo4j connector with tests"
git push origin feature/OCDI-001
# Create PR and mark as Finished in Shortcut
To maintain high velocity:
- Commit at least once daily, even for work in progress
- Keep PRs small and focused on a single story
- Break down large stories into smaller ones
- Use the TDD workflow to maintain steady progress
- Always include the story ID in branch names and commit messages
- Use the WIP: prefix for work in progress
- Never push directly to main branch
- Always write tests before implementing features
- Commit daily to maintain visibility