Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the project’s Calcit/Cumulo dependencies and snapshot, adds a new :sleep diary field surfaced in the UI, and migrates the JavaScript toolchain from a Yarn v1 lockfile to a Yarn Berry lockfile (with a new .yarnrc.yml).
Changes:
- Upgrade Calcit tooling/dependencies (
deps.cirru,@calcit/procs) and update snapshot/code to newer stdlib date/time APIs. - Extend diary schema/UI to capture and display a new
:sleepfield. - Switch to Yarn Berry lockfile format, add Yarn config, and remove outdated LLM guide docs.
Reviewed changes
Copilot reviewed 7 out of 10 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
package.json |
Bumps @calcit/procs and participates in the Yarn Berry migration. |
yarn.lock |
Regenerated from Yarn v1 to Yarn Berry lockfile (v8 metadata). |
.yarnrc.yml |
Configures Yarn to use node-modules linker. |
.gitignore |
Ignores Yarn .yarn/*.gz artifacts (e.g., install state). |
deps.cirru |
Upgrades Calcit version and several Calcit/Respo/Cumulo module versions. |
compact.cirru |
Snapshot updates + UI/schema changes for :sleep + date/time API adjustments. |
Agents.md |
Replaces the “Related: Respo UI” link with CLI-based pointers. |
llms/Respo.md |
Deleted (previous LLM Respo development guide). |
llms/Calcit.md |
Deleted (previous Calcit agent guide). |
Comments suppressed due to low confidence (1)
package.json:22
- This PR switches the repo from a Yarn v1 lockfile to a Yarn Berry lockfile (
__metadata.version: 8). Without pinning the Yarn version (e.g., via apackageManagerfield inpackage.jsonand/oryarnPathin.yarnrc.yml), different developer/CI environments may run different Yarn majors and either fail to install or regenerateyarn.lockin a different format.
"license": "MIT",
"dependencies": {
"@calcit/procs": "^0.12.4",
"copy-to-clipboard": "^3.3.3",
"luxon": "^3.7.2",
"shortid": "^2.2.17"
},
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| 要求查看 Calcit 命令行工具的用法: | ||
|
|
||
| ```bash | ||
| cr docs agents --full | ||
| ``` | ||
|
|
||
| 按需查看 Respo 模块的具体用法 | ||
|
|
||
| ```bash | ||
| cr libs readme respo.calcit -f docs/Respo-Agent.md | ||
| ``` |
There was a problem hiding this comment.
llms/Respo.md and llms/Calcit.md were removed in this PR, but Agents.md still references ./llms/Respo.md later in the document (e.g. in the UI section / Further Reading). Please update the remaining references (or add replacement links) so the guide doesn’t contain broken links after merge.
No description provided.