Files
kilocode/.changeset
Mark IJbema 6bc57fe6f8 feat(vscode): create empty notebooks via notebook_edit
Add a create action to the notebook_edit tool so an agent can make a new empty
.ipynb on disk, then insert cells. The VS Code notebook API has no way to create
a notebook file at a path (openNotebookDocument only makes an unsaved untitled
notebook), so the bridge writes a minimal valid empty .ipynb and opens it.

Reuses the existing notebook_edit permission and native_notebook_tools
experiment; .ipynb only for now, parent directory must already exist.
2026-06-26 13:25:08 +02:00
..

Changesets

This directory contains changeset files used to track changes for the next release.

Adding a changeset

When making a user-facing change, run:

bunx changeset add

Or manually create a file .changeset/<slug>.md:

---
"kilo-code": minor
---

Short description of the change for the changelog.

Use patch for bug fixes, minor for new features, major for breaking changes.

Changeset files are consumed at release time when the publish.yml workflow runs, generating changelog entries for the GitHub release notes.