Conversation
There was a problem hiding this comment.
Pull request overview
Updates packaging metadata and publishing workflow configuration, while cleaning up tracked per-branch KB artifacts that should not live in the repository.
Changes:
- Adjusted
binpaths /filesformatting and updatedrepository.urlin CLI and MCPpackage.json. - Removed committed
.kb/branches/**artifacts and updated.gitignorerules for branch KB data. - Updated the npm publish GitHub Actions workflow to use Node.js 24 and added an explicit npm auth/tooling verification step.
Reviewed changes
Copilot reviewed 6 out of 7 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
packages/mcp/package.json |
Tweaks package metadata for publishing (bin path, files list formatting, repository URL). |
packages/cli/package.json |
Tweaks package metadata for publishing (bin path, files list formatting, repository URL). |
.kb/branches/main/kb.rdf |
Removes previously tracked branch KB RDF file. |
.kb/branches/develop/kb.rdf |
Removes previously tracked branch KB RDF file. |
.kb/branches/develop/sync-cache.json |
Removes previously tracked sync cache artifact. |
.gitignore |
Updates ignore patterns for .kb/branches and sync cache artifacts. |
.github/workflows/publish.yml |
Updates Node version and adds a step to verify npm auth/tooling before publishing. |
You can also share your feedback on Copilot code review. Take the survey.
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/Looted/kibi.git" | ||
| "url": "git+https://github.com/Looted/kibi.git" |
There was a problem hiding this comment.
This switches repository.url to git+https://..., but other packages in the monorepo still use plain https://... (e.g. packages/core/package.json, packages/vscode/package.json). It’d be better to standardize the repository URL format across packages so registry metadata stays consistent.
| "url": "git+https://github.com/Looted/kibi.git" | |
| "url": "https://github.com/Looted/kibi.git" |
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/Looted/kibi.git" | ||
| "url": "git+https://github.com/Looted/kibi.git" |
There was a problem hiding this comment.
This changes the repository URL format to git+https://..., but other packages in the repo still use plain https://... (e.g. packages/core/package.json, packages/vscode/package.json). Consider standardizing the repository.url format across packages to avoid inconsistent metadata on registries.
| "url": "git+https://github.com/Looted/kibi.git" | |
| "url": "https://github.com/Looted/kibi.git" |
|
@copilot open a new pull request to apply changes based on the comments in this thread |
Co-authored-by: Looted <6255880+Looted@users.noreply.github.com>
Standardize repository.url format across all packages
No description provided.