docs(repo): define local-first PR workflow#192
Merged
Conversation
Reviewer's GuideDocuments a local-first, slice-oriented contribution workflow for QuantLab by adding a CONTRIBUTING guide, aligning the PR template, and linking the workflow from the README. Flow diagram for deciding when to push early vs follow local-first ruleflowchart TD
A[Start new QuantLab slice] --> B[Work locally on changes]
B --> C[Do you have a coherent slice with validation and PR body?]
C -->|Yes| D[Push branch to origin]
D --> E[Open focused PR]
E --> F[Review and merge]
F --> G[Let branch be deleted and clean up locals]
C -->|No| H[Is there a good reason to push early?]
H -->|Yes: multi-session, risky, collaborative, stacked| I[Push early]
I --> J[Optionally open draft PR if useful for coordination]
J --> B
H -->|No| K[Continue working locally]
K --> B
File-Level Changes
Assessment against linked issues
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR defines a repository-level local-first development workflow for QuantLab.
Changes included:
Why
The recent advice to work locally first and push only when the PR is coherent is directionally right for QuantLab.
It does not literally reduce model tokens by itself, but it does reduce:
That makes the repo easier to operate and keeps the development workflow aligned with QuantLab's slice-based style.
Scope
This PR does not:
It focuses only on documenting the preferred workflow and aligning repo guidance with it.
Validation
Validated with:
Notes
Closes #191
Summary by Sourcery
Document a local-first, slice-oriented contribution workflow and align repository guidance with it.
Enhancements:
Documentation: