truecourse 0.6.8 → 0.6.9
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/README.md +5 -2
- package/cli.mjs +139065 -88357
- package/package.json +1 -1
- package/public/assets/index-BSvl_ppF.css +1 -0
- package/public/assets/index-k591_LO0.js +810 -0
- package/public/index.html +2 -2
- package/server.mjs +140665 -88822
- package/wasm/tree-sitter-c_sharp.wasm +0 -0
- package/public/assets/index-BABCLoif.js +0 -765
- package/public/assets/index-DK_4amwn.css +0 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
</p>
|
|
8
8
|
|
|
9
9
|
<p align="center">
|
|
10
|
-
<em>1,
|
|
10
|
+
<em>1,500+ deterministic rules, 100 LLM rules. JavaScript, TypeScript, Python, C#.</em>
|
|
11
11
|
</p>
|
|
12
12
|
|
|
13
13
|
<p align="center">
|
|
@@ -315,15 +315,18 @@ The first `truecourse analyze` (or `truecourse add`) in a fresh repo asks whethe
|
|
|
315
315
|
|---|---|
|
|
316
316
|
| JavaScript / TypeScript | Supported |
|
|
317
317
|
| Python | Supported |
|
|
318
|
-
| C# |
|
|
318
|
+
| C# | Supported * |
|
|
319
319
|
| Go | Planned |
|
|
320
320
|
| Rust | Planned |
|
|
321
321
|
| PHP | Planned |
|
|
322
322
|
|
|
323
|
+
\* Analyzing C# requires the .NET 8 SDK — its **semantic** rules run in a Roslyn host (build-required; analysis fails fast without it). See [Prerequisites](#prerequisites).
|
|
324
|
+
|
|
323
325
|
## Prerequisites
|
|
324
326
|
|
|
325
327
|
- Node.js >= 20
|
|
326
328
|
- [Claude Code](https://docs.anthropic.com/en/docs/claude-code) CLI on your PATH — optional. The default `cli` transport spawns it for LLM-powered work; deterministic rules and the `agent` transport (below) don't need it.
|
|
329
|
+
- [.NET 8 SDK](https://dotnet.microsoft.com/download) — **required to analyze C#** (not needed for other languages). C#'s semantic rules run in a Roslyn host you build once (`dotnet build -c Release tools/csharp-roslyn-host`, or point `TRUECOURSE_ROSLYN_HOST` at a prebuilt binary). Analyzing a repo that contains C# without the host **fails fast** with a build-the-host message — there is deliberately no tree-sitter-only fallback, since a silent half-analysis is worse than a clear error.
|
|
327
330
|
|
|
328
331
|
## LLM transport (`--llm-transport`)
|
|
329
332
|
|