chore: Linear bootstrap script; retire GitHub milestone tracking - #34
Conversation
GitHub issues/milestones were a temporary stand-in. Linear (VIGDEV) is the source of truth — bootstrap via scripts/bootstrap-linear-project.mjs.
|
Warning Review limit reachedYou’ve reached a temporary PR review limit under our Fair Usage Limits Policy. Next review available in: 28 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
Comment |
There was a problem hiding this comment.
Pull request overview
This PR introduces a Node-based bootstrap script to create a Linear project for Microbridge (including Phase A/B issues) and updates documentation to establish Linear as the project-tracking source of truth instead of GitHub milestones.
Changes:
- Add
scripts/bootstrap-linear-project.mjsto create the VIGDEV Linear project and seed Phase A (done/open) and Phase B (blocked) issues. - Update
docs/project-tracking.mdto point contributors to Linear and document how to run the bootstrap script. - Document closure of GitHub milestone-based planning.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| scripts/bootstrap-linear-project.mjs | Adds a Linear GraphQL bootstrapper to create a project, label, and seed issues for Phase A/B. |
| docs/project-tracking.md | Updates tracking guidance to use Linear as source of truth and documents bootstrap usage. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| async function gql(query, variables) { | ||
| const res = await fetch("https://api.linear.app/graphql", { | ||
| method: "POST", | ||
| headers: { | ||
| "Content-Type": "application/json", | ||
| Authorization: KEY, | ||
| }, | ||
| body: JSON.stringify({ query, variables }), | ||
| }); | ||
| const json = await res.json(); | ||
| if (json.errors?.length) { | ||
| throw new Error(JSON.stringify(json.errors, null, 2)); | ||
| } | ||
| return json.data; | ||
| } |
| const project = projectCreate.projectCreate.project; | ||
| console.log("project", project.url || project.id); |
|
|
||
| Linear MCP/API was not available in the agent environment that created this | ||
| release train. Until Linear is wired, use GitHub milestones on this repo: | ||
| ## Bootstrap / recreate Linear project |
Summary
scripts/bootstrap-linear-project.mjsto create the VIGDEV Linear project + Phase A/B issuesTest plan
LINEAR_API_KEY=… node scripts/bootstrap-linear-project.mjsMade with Cursor