@calcit/procs 0.12.52 → 0.12.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.yarn/install-state.gz +0 -0
- package/README.md +9 -10
- package/RFCs/03-18-query-def-tree-show-chunked-display-plan.md +1 -1
- package/RFCs/04-13-type-slot-mechanism-rfc.md +516 -115
- package/RFCs/04-16-wasm-data-structures.md +1 -1
- package/RFCs/07-06-semantic-tree-navigation-rfc.md +10 -10
- package/RFCs/07-26-agent-docs-and-evaluation-rfc.md +33 -0
- package/RFCs/07-26-agent-machine-protocol-rfc.md +102 -0
- package/RFCs/07-26-safe-structured-editing-rfc.md +66 -0
- package/RFCs/07-26-static-semantic-analysis-rfc.md +105 -0
- package/RFCs/07-28-git-module-store-rfc.md +59 -0
- package/RFCs/07-28-persistent-tree-cursor-rfc.md +287 -0
- package/RFCs/README.md +9 -2
- package/editing-history/2026-02-23-2321-ns-imports-code-fixes.md +7 -7
- package/editing-history/2026-02-27-2200-split-def-command.md +3 -3
- package/editing-history/2026-02-27-2212-tree-raise-wrap.md +4 -4
- package/editing-history/2026-03-10-1040-edit-schema-primitive-tag-support.md +4 -4
- package/editing-history/2026-07-26-1313-cli-long-option-hints.md +14 -0
- package/editing-history/2026-07-26-1341-method-display-literals.md +5 -0
- package/editing-history/2026-07-26-2104-agent-semantic-interface-rfc.md +11 -0
- package/editing-history/2026-07-26-2107-static-analysis-agent-cli.md +30 -0
- package/editing-history/2026-07-28-1346-edit-transaction.md +27 -0
- package/editing-history/2026-07-28-1454-persistent-tree-cursor.md +30 -0
- package/editing-history/2026-07-28-1651-cursor-focus-stack-clipboard.md +30 -0
- package/editing-history/2026-07-28-1719-cursor-navigation-search-selection.md +21 -0
- package/editing-history/2026-07-28-1958-agent-rfc-split.md +14 -0
- package/editing-history/2026-07-28-2004-cursor-editing-docs.md +14 -0
- package/editing-history/2026-07-28-2132-cursor-recoverable-clipboard.md +18 -0
- package/editing-history/2026-07-28-2151-cursor-native-structural-editing.md +20 -0
- package/editing-history/2026-07-28-2158-document-cursor-native-workflows.md +13 -0
- package/editing-history/2026-07-29-0022-add-cursor-cli-options.md +7 -0
- package/editing-history/2026-07-29-0022-audit-cursor-development-scenarios.md +6 -0
- package/editing-history/2026-07-29-0022-complete-cursor-structural-edits.md +8 -0
- package/editing-history/2026-07-29-0022-document-cursor-edit-recipes.md +8 -0
- package/editing-history/2026-07-29-0022-echo-cursor-commands.md +6 -0
- package/editing-history/2026-07-29-0022-edit-target-cursor-alias.md +6 -0
- package/editing-history/2026-07-29-0022-guide-agents-through-cursor-workflows.md +7 -0
- package/editing-history/2026-07-29-0022-query-from-active-cursor.md +8 -0
- package/editing-history/2026-07-29-0022-tree-target-cursor-alias.md +5 -0
- package/editing-history/2026-07-29-1242-agent-guide-cold-start-validation.md +15 -0
- package/editing-history/2026-07-29-1242-cirru-quote-input-errors.md +13 -0
- package/editing-history/2026-07-29-1242-internal-wasm-doc-boundary.md +13 -0
- package/editing-history/2026-07-30-1130-pr-281-review-fixes.md +5 -0
- package/editing-history/20260728-1500-caps-module-status.md +17 -0
- package/editing-history/20260728-1501-release-0.12.53.md +6 -0
- package/editing-history/20260729-1421-consolidate-local-state-and-cursor-tools.md +22 -0
- package/editing-history/20260729-1422-document-calcit-local-state.md +15 -0
- package/editing-history/20260729-1952-strengthen-polymorphism-diagnostics.md +21 -0
- package/editing-history/202607301429-entry-type-slots.md +29 -0
- package/editing-history/202607301435-release-0.12.54.md +22 -0
- package/editing-history/archived/2026-03-20-1229-query-window-3-with-parent-preview.md +5 -5
- package/editing-history/archived/2026-03-23-1137-command-echo-tool-output-cleanup.md +2 -2
- package/lib/calcit.procs.d.mts +1 -0
- package/lib/package.json +3 -2
- package/package.json +3 -2
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/README.md
CHANGED
|
@@ -31,20 +31,19 @@ Build and install with Rust:
|
|
|
31
31
|
# get Rust
|
|
32
32
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
|
33
33
|
|
|
34
|
-
# get Calcit
|
|
35
|
-
cargo install calcit
|
|
34
|
+
# get Calcit user-facing tools
|
|
35
|
+
cargo install calcit --bin cr --bin caps
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
Installed binaries:
|
|
39
39
|
|
|
40
|
-
- `
|
|
41
|
-
- `cr-wasm`, standalone WASM codegen tool
|
|
40
|
+
- `cr`, the runtime and JS compiler
|
|
42
41
|
- `caps`, for downloading dependencies declared in `deps.cirru`
|
|
43
42
|
|
|
44
|
-
When installing from source,
|
|
43
|
+
When installing from source, install the same public tools:
|
|
45
44
|
|
|
46
45
|
```bash
|
|
47
|
-
cargo install --path . --bin cr --bin
|
|
46
|
+
cargo install --path . --bin cr --bin caps
|
|
48
47
|
```
|
|
49
48
|
|
|
50
49
|
To use Calcit in GitHub Actions, try [setup-cr](https://github.com/calcit-lang/setup-cr).
|
|
@@ -163,9 +162,9 @@ cargo run --bin cr -- calcit/test.cirru js && yarn try-js
|
|
|
163
162
|
# run snippet
|
|
164
163
|
cargo run --bin cr -- eval 'range 100'
|
|
165
164
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
165
|
+
# internal compiler/WASM validation when working on this repository
|
|
166
|
+
cargo run --bin cr -- calcit/test.cirru ir
|
|
167
|
+
yarn try-wasm
|
|
169
168
|
```
|
|
170
169
|
|
|
171
170
|
For repository development, the usual validation flow is:
|
|
@@ -184,7 +183,7 @@ yarn check-all
|
|
|
184
183
|
|
|
185
184
|
Other tools:
|
|
186
185
|
|
|
187
|
-
- [Error Viewer](https://github.com/calcit-lang/calcit-error-viewer) for displaying `.calcit
|
|
186
|
+
- [Error Viewer](https://github.com/calcit-lang/calcit-error-viewer) for displaying `.calcit/error.cirru`
|
|
188
187
|
- [IR Viewer](https://github.com/calcit-lang/calcit-ir-viewer) for rendering `program-ir.cirru`
|
|
189
188
|
|
|
190
189
|
Some resources:
|