Skip to content

chore: Linear bootstrap script; retire GitHub milestone tracking - #34

Merged
DevVig merged 1 commit into
mainfrom
chore/linear-tracking-cleanup
Jul 18, 2026
Merged

DevVig merged 1 commit into
mainfrom
chore/linear-tracking-cleanup

Conversation

@DevVig

@DevVig DevVig commented Jul 18, 2026

Copy link
Copy Markdown
Owner

Summary

  • Add scripts/bootstrap-linear-project.mjs to create the VIGDEV Linear project + Phase A/B issues
  • Document that Linear is source of truth; GitHub milestones were closed

Test plan

  • LINEAR_API_KEY=… node scripts/bootstrap-linear-project.mjs
  • Confirm project + issues in Linear

Made with Cursor

GitHub issues/milestones were a temporary stand-in. Linear (VIGDEV) is the
source of truth — bootstrap via scripts/bootstrap-linear-project.mjs.
Copilot AI review requested due to automatic review settings July 18, 2026 12:35
@coderabbitai

coderabbitai Bot commented Jul 18, 2026

Copy link
Copy Markdown

Warning

Review limit reached

You’ve reached a temporary PR review limit under our Fair Usage Limits Policy.

Your recent review volume is higher than typical usage, so adaptive limits are currently applied.

Next review available in: 28 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

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 configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: f6d05965-b6dd-486b-b935-67ab26461a68

📥 Commits

Reviewing files that changed from the base of the PR and between 525dd07 and a78c477.

📒 Files selected for processing (2)
  • docs/project-tracking.md
  • scripts/bootstrap-linear-project.mjs

Comment @coderabbitai help to get the list of available commands.

@DevVig
DevVig merged commit 2ec1975 into main Jul 18, 2026
7 checks passed
@DevVig
DevVig deleted the chore/linear-tracking-cleanup branch July 18, 2026 12:35

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.mjs to create the VIGDEV Linear project and seed Phase A (done/open) and Phase B (blocked) issues.
  • Update docs/project-tracking.md to 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.

Comment on lines +12 to +26
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;
}
Comment on lines +143 to +144
const project = projectCreate.projectCreate.project;
console.log("project", project.url || project.id);
Comment thread docs/project-tracking.md

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants